sha
null
last_modified
null
library_name
stringclasses
154 values
text
stringlengths
1
900k
metadata
stringlengths
2
348k
pipeline_tag
stringclasses
45 values
id
stringlengths
5
122
tags
sequencelengths
1
1.84k
created_at
stringlengths
25
25
arxiv
sequencelengths
0
201
languages
sequencelengths
0
1.83k
tags_str
stringlengths
17
9.34k
text_str
stringlengths
0
389k
text_lists
sequencelengths
0
722
processed_texts
sequencelengths
1
723
tokens_length
sequencelengths
1
723
input_texts
sequencelengths
1
61
embeddings
sequencelengths
768
768
null
null
transformers
## A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT) DialoGPT is a SOTA large-scale pretrained dialogue response generation model for multiturn conversations. The [human evaluation results](https://github.com/dreasysnail/Dialogpt_dev#human-evaluation) indicate that the response generated from DialoGPT is comparable to human response quality under a single-turn conversation Turing test. The model is trained on 147M multi-turn dialogue from Reddit discussion thread. * Multi-turn generation examples from an interactive environment: |Role | Response | |---------|--------| |User | Does money buy happiness? | | Bot | Depends how much money you spend on it .| |User | What is the best way to buy happiness ? | | Bot | You just have to be a millionaire by your early 20s, then you can be happy . | |User |This is so difficult ! | | Bot | You have no idea how hard it is to be a millionaire and happy . There is a reason the rich have a lot of money | Please find the information about preprocessing, training and full details of the DialoGPT in the [original DialoGPT repository](https://github.com/microsoft/DialoGPT) ArXiv paper: [https://arxiv.org/abs/1911.00536](https://arxiv.org/abs/1911.00536) ### How to use Now we are ready to try out how the model works as a chatting partner! ```python from transformers import AutoModelForCausalLM, AutoTokenizer import torch tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-large") model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-large") # Let's chat for 5 lines for step in range(5): # encode the new user input, add the eos_token and return a tensor in Pytorch new_user_input_ids = tokenizer.encode(input(">> User:") + tokenizer.eos_token, return_tensors='pt') # append the new user input tokens to the chat history bot_input_ids = torch.cat([chat_history_ids, new_user_input_ids], dim=-1) if step > 0 else new_user_input_ids # generated a response while limiting the total chat history to 1000 tokens, chat_history_ids = model.generate(bot_input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id) # pretty print last ouput tokens from bot print("DialoGPT: {}".format(tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True))) ```
{"license": "mit", "tags": ["conversational"], "thumbnail": "https://huggingface.co/front/thumbnails/dialogpt.png"}
text-generation
Leostronkest/DialoGPT
[ "transformers", "pytorch", "tf", "jax", "gpt2", "text-generation", "conversational", "arxiv:1911.00536", "license:mit", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "1911.00536" ]
[]
TAGS #transformers #pytorch #tf #jax #gpt2 #text-generation #conversational #arxiv-1911.00536 #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT) ------------------------------------------------------------------------------ DialoGPT is a SOTA large-scale pretrained dialogue response generation model for multiturn conversations. The human evaluation results indicate that the response generated from DialoGPT is comparable to human response quality under a single-turn conversation Turing test. The model is trained on 147M multi-turn dialogue from Reddit discussion thread. * Multi-turn generation examples from an interactive environment: Please find the information about preprocessing, training and full details of the DialoGPT in the original DialoGPT repository ArXiv paper: URL ### How to use Now we are ready to try out how the model works as a chatting partner!
[ "### How to use\n\n\nNow we are ready to try out how the model works as a chatting partner!" ]
[ "TAGS\n#transformers #pytorch #tf #jax #gpt2 #text-generation #conversational #arxiv-1911.00536 #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### How to use\n\n\nNow we are ready to try out how the model works as a chatting partner!" ]
[ 70, 22 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #gpt2 #text-generation #conversational #arxiv-1911.00536 #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### How to use\n\n\nNow we are ready to try out how the model works as a chatting partner!" ]
[ 0.004303682129830122, 0.034444935619831085, -0.0025463870260864496, 0.03405347466468811, 0.11956650763750076, 0.003379775444045663, 0.1635882705450058, 0.1068524643778801, 0.025803543627262115, -0.08799251168966293, 0.10809239000082016, 0.19237466156482697, 0.02540387399494648, 0.15423522889614105, -0.07334763556718826, -0.2370157092809677, 0.02032933384180069, 0.04282856360077858, -0.0031592559535056353, 0.13993963599205017, 0.17521999776363373, -0.032049939036369324, 0.08441811800003052, 0.04202449694275856, -0.14808455109596252, -0.005472724791616201, -0.011036324314773083, -0.09403574466705322, 0.13586466014385223, 0.07674334198236465, 0.023457884788513184, 0.11145893484354019, -0.017298812046647072, -0.09683051705360413, 0.041813626885414124, -0.02001686580479145, -0.04665196314454079, 0.05547870695590973, 0.0271337628364563, -0.011292261071503162, 0.2105386108160019, 0.1553271859884262, 0.005425566341727972, 0.06195734068751335, -0.16491664946079254, -0.0577336885035038, -0.05607117339968681, 0.031174607574939728, 0.06145474314689636, 0.0929645225405693, -0.005572067573666573, 0.181907057762146, -0.06485280394554138, 0.07988114655017853, 0.08562522381544113, -0.3756633698940277, -0.02122698538005352, 0.1302087903022766, 0.13713805377483368, 0.0630168691277504, -0.01923394948244095, 0.03996044397354126, 0.053164198994636536, 0.029253726825118065, 0.016155458986759186, -0.042746394872665405, -0.051304612308740616, -0.0011073692003265023, -0.11072524636983871, -0.07993253320455551, 0.3071719706058502, -0.0008353893645107746, 0.002310906769707799, -0.05152890458703041, -0.05191953107714653, 0.016719527542591095, -0.03311416879296303, -0.11309050768613815, -0.03819528594613075, 0.07380115985870361, -0.012918476015329361, -0.15889231860637665, -0.13313356041908264, -0.05659077689051628, -0.08949863910675049, 0.12114822119474411, -0.0023679027799516916, 0.05401941016316414, -0.1924637109041214, 0.09636745601892471, -0.002659938298165798, -0.061551034450531006, 0.007931474596261978, -0.11880583316087723, 0.06156119704246521, -0.02147706411778927, 0.015070793218910694, -0.06279118359088898, 0.09121345728635788, 0.1208832636475563, -0.007722822483628988, 0.024751296266913414, -0.02223777584731579, 0.08445573598146439, 0.05128142610192299, 0.03594939410686493, 0.04470546916127205, -0.03718060627579689, 0.03696611151099205, -0.0801728293299675, -0.03429841995239258, -0.0275611262768507, -0.1909913271665573, -0.014504924416542053, -0.03226945549249649, 0.06090879440307617, 0.03944497928023338, 0.11966785788536072, -0.0021145183127373457, -0.050477076321840286, 0.10921946167945862, -0.009470807388424873, -0.012957152910530567, -0.011589985340833664, -0.04387226700782776, 0.0023132648784667253, 0.04153028503060341, 0.031857218593358994, -0.07512801140546799, -0.025199586525559425, -0.0224147941917181, -0.06082938238978386, -0.08200450986623764, -0.06890299171209335, 0.03010639362037182, -0.00102278555277735, -0.004741337150335312, -0.19726531207561493, -0.10636261850595474, 0.008565225638449192, 0.05632700398564339, -0.029687577858567238, -0.12428122758865356, -0.09249496459960938, 0.004154658410698175, 0.035300638526678085, -0.06627748161554337, 0.0024490568321198225, -0.05229635909199715, 0.061431635171175, -0.0062468708492815495, 0.09849444776773453, -0.16978956758975983, 0.06022840365767479, -0.07339996844530106, -0.024274900555610657, -0.026243140920996666, 0.07883276790380478, -0.040289297699928284, 0.09329086542129517, -0.0518638975918293, 0.00922552589327097, -0.07231635600328445, 0.046027135103940964, -0.00923242699354887, 0.1927405446767807, -0.09768927097320557, -0.04198657348752022, 0.26816675066947937, -0.10586173087358475, -0.24724476039409637, 0.1069442629814148, -0.012551029212772846, 0.1561405062675476, 0.11019844561815262, 0.16038839519023895, 0.07763039320707321, -0.06899750977754593, 0.11042442172765732, 0.11060574650764465, -0.18013155460357666, -0.09726693481206894, 0.0419960618019104, 0.007274945732206106, -0.15582363307476044, 0.024971283972263336, 0.03134164214134216, 0.10036870837211609, -0.06920360773801804, -0.04089777544140816, -0.02123156189918518, -0.05670897662639618, 0.020555546507239342, -0.014634360559284687, 0.051368314772844315, -0.0758996233344078, -0.02642459236085415, -0.04797714948654175, 0.03147314488887787, -0.0073629762046039104, 0.008342687971889973, -0.15276207029819489, 0.09175151586532593, 0.046955179423093796, 0.07536979764699936, -0.10600805282592773, -0.014065228402614594, -0.017910731956362724, 0.15902072191238403, 0.08030972629785538, 0.17296282947063446, 0.06432826071977615, -0.0635899156332016, 0.028510689735412598, 0.023613998666405678, 0.1453172117471695, -0.000023194743334897794, -0.049273569136857986, -0.0729813352227211, 0.05579358711838722, -0.06263630837202072, 0.05668860673904419, -0.0725860744714737, 0.00018377415835857391, -0.037574563175439835, 0.08724159747362137, -0.04410966858267784, 0.0766531452536583, -0.027180520817637444, -0.02726569026708603, -0.049286987632513046, 0.0016710334457457066, 0.12541890144348145, 0.036790136247873306, -0.08073225617408752, 0.25142234563827515, -0.08294397592544556, 0.15260852873325348, 0.15360070765018463, -0.2120663970708847, -0.012341931462287903, -0.05513102188706398, -0.04438287392258644, 0.024323785677552223, 0.05982925370335579, -0.0028453811537474394, 0.15135763585567474, -0.03957280516624451, 0.1831548660993576, -0.06957782059907913, -0.001194370910525322, 0.0002426176070002839, -0.08899060636758804, 0.0006963468040339649, 0.07234672456979752, 0.07955966144800186, -0.24294255673885345, 0.08392389863729477, 0.10391414910554886, 0.062199290841817856, 0.16145803034305573, 0.011212892830371857, 0.012142221443355083, 0.008763075806200504, 0.056546639651060104, -0.025841055437922478, -0.017224645242094994, -0.25682488083839417, -0.029257411137223244, 0.0693574994802475, 0.03121991455554962, 0.09615544229745865, -0.08062722533941269, -0.03617756441235542, 0.025250347331166267, -0.05989556387066841, 0.011570592410862446, 0.11174606531858444, -0.012965378351509571, 0.11937616020441055, 0.03439819812774658, -0.1092338040471077, 0.09599059075117111, 0.0010615773499011993, -0.11541154235601425, 0.14806534349918365, -0.07755590975284576, -0.2954603135585785, -0.1042688861489296, -0.15567894279956818, 0.018444573506712914, 0.02441384457051754, 0.12973637878894806, -0.059286389499902725, -0.029366962611675262, -0.008859827183187008, -0.029153114184737206, -0.09968043118715286, -0.027015885338187218, -0.00022172804165165871, 0.030093632638454437, -0.028370341286063194, -0.12442954629659653, -0.04679662361741066, 0.02710973471403122, -0.0581841766834259, 0.10896164923906326, -0.13081108033657074, 0.0910174548625946, 0.14972849190235138, -0.06274691224098206, 0.1110035702586174, -0.02925088442862034, 0.24911242723464966, -0.07758978754281998, 0.01042503584176302, 0.1883247047662735, 0.0004633162170648575, 0.053676530718803406, 0.09743446856737137, 0.0026927709113806486, -0.049756746739149094, 0.0465376079082489, -0.061990950256586075, -0.08982542902231216, -0.23658670485019684, -0.13359348475933075, -0.07992558926343918, 0.0654670000076294, 0.014003892429172993, 0.060776080936193466, 0.16142910718917847, 0.09118065237998962, 0.0012536291033029556, -0.0036252376157790422, 0.011940188705921173, 0.08588525652885437, 0.1783839911222458, -0.06291975826025009, 0.10336204618215561, -0.08911936730146408, -0.13006280362606049, 0.08449164032936096, 0.01151062548160553, 0.028480881825089455, 0.12628288567066193, 0.08594765514135361, 0.08308030664920807, 0.10639113187789917, 0.12431523948907852, 0.07917090505361557, 0.009970330633223057, -0.03764738887548447, -0.051473528146743774, -0.037118688225746155, -0.05125953257083893, 0.036276817321777344, 0.04668759927153587, -0.14610235393047333, -0.014599489979445934, -0.05633152648806572, 0.038618091493844986, 0.10556107759475708, 0.04629935696721077, -0.20389972627162933, -0.01664067432284355, 0.009026133455336094, -0.04131973907351494, -0.09932561963796616, 0.0569627620279789, -0.006273047532886267, -0.1461380273103714, 0.0216924250125885, -0.0268638227134943, 0.1510331779718399, -0.04537563398480415, 0.047430723905563354, -0.02567979134619236, -0.05859658122062683, 0.011747139506042004, 0.14327453076839447, -0.3571387827396393, 0.2091873437166214, -0.02116827480494976, -0.012010940350592136, -0.0974779799580574, -0.04556015133857727, 0.02153337188065052, 0.09536591917276382, 0.09650608152151108, -0.018104666844010353, -0.015872642397880554, 0.006383609492331743, -0.033278536051511765, 0.04799363389611244, 0.051985252648591995, -0.0041609033942222595, 0.002368486952036619, -0.07001490145921707, 0.001122295274399221, -0.026906803250312805, 0.045101139694452286, -0.06287038326263428, -0.14164210855960846, 0.04861399158835411, 0.06630685925483704, 0.10056935995817184, 0.03161297366023064, 0.01370538305491209, -0.09714192152023315, 0.1750110238790512, 0.0349733866751194, -0.07740968465805054, -0.0908036008477211, -0.07091190665960312, -0.005047425162047148, -0.04741349816322327, 0.024258777499198914, -0.053107138723134995, 0.04034652188420296, -0.0691814050078392, -0.18243397772312164, 0.05297936126589775, -0.10182169824838638, -0.008962915278971195, -0.019473129883408546, 0.1742994338274002, 0.01449905801564455, 0.0026341325137764215, 0.0978766456246376, -0.07314133644104004, -0.1075587272644043, -0.10494283586740494, 0.014161801896989346, -0.028209352865815163, 0.002708266256377101, -0.0488191656768322, -0.003964567091315985, 0.024465195834636688, -0.035361357033252716, -0.03804155811667442, 0.2673584222793579, 0.13724620640277863, -0.08132892102003098, 0.1491440087556839, 0.10811669379472733, -0.061202507466077805, -0.2389436513185501, -0.15276433527469635, -0.04868068918585777, -0.008941009640693665, -0.03871723636984825, -0.1088707223534584, -0.03261306509375572, -0.06022065877914429, -0.04550781846046448, 0.0755409523844719, -0.2445099800825119, -0.06050616130232811, 0.15722410380840302, -0.02633490227162838, 0.329028457403183, -0.11344942450523376, -0.0978194996714592, -0.057393644005060196, -0.19821853935718536, 0.2028576135635376, -0.07739558070898056, 0.08372106403112411, -0.00827448908239603, 0.1401480734348297, 0.03664484620094299, -0.01676785945892334, 0.06393497437238693, -0.08189846575260162, -0.041994858533144, -0.14489887654781342, -0.04847579076886177, 0.015035503543913364, -0.014452509582042694, 0.12901295721530914, -0.05429665371775627, 0.05718546733260155, -0.10419555753469467, -0.045016150921583176, -0.07137129455804825, 0.05310961976647377, 0.012222644872963428, -0.05791603401303291, -0.07111921161413193, -0.04734000563621521, 0.007170379161834717, 0.026729434728622437, 0.11991267651319504, -0.09181652218103409, 0.15337832272052765, 0.1610061079263687, 0.22224797308444977, -0.144612655043602, -0.00844234973192215, -0.049447208642959595, -0.07100339978933334, 0.06435618549585342, -0.12165183573961258, 0.01559016015380621, 0.08902911096811295, -0.036112379282712936, 0.11020771414041519, 0.05889733508229256, -0.06885121762752533, 0.014136560261249542, 0.14738263189792633, -0.20618915557861328, -0.11397403478622437, -0.10802263766527176, 0.11946549266576767, 0.0607893131673336, 0.08399319648742676, 0.15276585519313812, -0.05322929099202156, -0.019598351791501045, 0.0021241058129817247, -0.009287376888096333, -0.09656891971826553, 0.006369801703840494, 0.07088764756917953, 0.02220728062093258, -0.10827904939651489, 0.03316475823521614, 0.02903606742620468, -0.11182120442390442, 0.007902598939836025, 0.11350378394126892, -0.11445531249046326, -0.1180947795510292, -0.009644780308008194, 0.13586430251598358, -0.14860695600509644, -0.09628918021917343, -0.01392837893217802, -0.079554982483387, 0.0422997921705246, 0.09795486181974411, 0.03162378817796707, 0.07392217963933945, -0.021862538531422615, 0.014947843737900257, -0.0529404878616333, -0.002105564810335636, -0.013586032204329967, -0.027138492092490196, -0.12096966058015823, 0.08508261293172836, -0.01829645223915577, 0.12726597487926483, -0.08473065495491028, -0.07345522195100784, -0.1458013355731964, 0.032134655863046646, -0.09376121312379837, -0.0515412800014019, -0.11046665906906128, -0.03899194300174713, 0.03685552999377251, -0.02009035460650921, -0.043690990656614304, -0.023897984996438026, -0.09441208094358444, 0.01072282437235117, -0.00006716170901199803, 0.022270822897553444, -0.052545011043548584, 0.036393776535987854, 0.03603673726320267, 0.0013009222457185388, 0.09230563789606094, 0.10109153389930725, -0.07854917645454407, 0.04231749847531319, -0.15326537191867828, -0.044496726244688034, 0.056583646684885025, 0.008841373026371002, 0.08718568086624146, 0.02811085432767868, 0.00945188570767641, 0.08537258952856064, -0.012488353997468948, 0.03286053240299225, 0.04281601309776306, -0.08293989300727844, 0.038570430129766464, 0.025997867807745934, -0.1089477464556694, -0.021311700344085693, 0.011402676813304424, 0.027196362614631653, 0.06771356612443924, 0.10890412330627441, -0.07612872868776321, 0.06212041899561882, -0.07630017399787903, 0.02942799963057041, 0.016852790489792824, -0.0979679599404335, -0.01430873479694128, -0.10891110450029373, -0.009834815748035908, -0.02226809225976467, 0.18063600361347198, 0.10588101297616959, -0.015179641544818878, 0.019458990544080734, -0.03693341091275215, 0.0508541576564312, -0.05089482665061951, 0.18712584674358368, 0.0423736572265625, -0.006019683554768562, -0.06879416853189468, 0.07788052409887314, -0.030970728024840355, -0.05936408042907715, 0.08604665845632553, 0.008970283903181553, -0.04114406183362007, 0.06704124063253403, 0.091123066842556, 0.01285256166011095, -0.08750232309103012, -0.17327965795993805, 0.01898100972175598, 0.0662340521812439, -0.07806143164634705, 0.13755853474140167, 0.14464762806892395, -0.047789279371500015, 0.04173119366168976, -0.03374297544360161, -0.03323015198111534, -0.14770852029323578, -0.1504940241575241, -0.10854581743478775, -0.20540036261081696, 0.004114380571991205, -0.09595558792352676, 0.06003689765930176, 0.00022178578365128487, 0.048006489872932434, -0.11923793703317642, 0.03163867071270943, -0.0006667127017863095, -0.10625916719436646, 0.062291815876960754, -0.05651358142495155, 0.053669754415750504, -0.10881752520799637, 0.013300850987434387, -0.07886016368865967, 0.013769623823463917, -0.016818955540657043, 0.052986446768045425, -0.011319375596940517, 0.007711168844252825, -0.06423414498567581, -0.05640747770667076, -0.045274924486875534, 0.08909892290830612, 0.035869162529706955, 0.10493162274360657, 0.005356548819690943, -0.025622278451919556, 0.010179256089031696, 0.21078045666217804, -0.04346257448196411, -0.11000960320234299, -0.1006062850356102, 0.2281397134065628, -0.02165173925459385, 0.06986142694950104, -0.007344415877014399, 0.004879354033619165, -0.07271221280097961, 0.3307282030582428, 0.30573770403862, -0.09420955181121826, -0.005358785390853882, -0.028874343261122704, 0.03906005993485451, 0.05883800610899925, 0.1414627581834793, 0.0631430521607399, 0.2609442472457886, -0.06172763183712959, -0.004099096637219191, -0.05040162801742554, 0.044037532061338425, -0.02982214093208313, 0.09420284628868103, 0.03768423572182655, -0.0497966967523098, 0.02240750379860401, 0.13436993956565857, -0.19617025554180145, 0.04018024355173111, -0.17600704729557037, -0.10233896970748901, -0.052005987614393234, -0.007477979641407728, 0.059262823313474655, 0.023064324632287025, 0.09533008188009262, -0.025930022820830345, -0.018703518435359, 0.04129311069846153, -0.007307395339012146, -0.17629176378250122, 0.004018024075776339, 0.1209232434630394, -0.08741637319326401, 0.06333649903535843, -0.01351090520620346, 0.10502761602401733, 0.07757627218961716, 0.035711620002985, -0.06447306275367737, 0.06552257388830185, -0.000879027706105262, -0.03346569091081619, 0.04352797195315361, -0.01927211880683899, 0.025142772123217583, -0.06995926052331924, 0.009546223096549511, -0.22204673290252686, 0.04902074113488197, 0.04910053685307503, 0.000865371257532388, -0.08039139956235886, 0.10667764395475388, -0.06614125519990921, 0.11472763866186142, 0.11049067229032516, -0.028980085626244545, -0.011858712881803513, -0.04629555717110634, 0.025140410289168358, -0.005256983917206526, -0.07553143054246902, -0.08213882148265839, -0.13192199170589447, -0.1172124519944191, 0.04833705350756645, -0.02917342633008957, -0.21488189697265625, 0.016703838482499123, -0.0733584463596344, 0.02206600457429886, -0.060768093913793564, 0.058766286820173264, 0.15526609122753143, 0.038100723177194595, 0.010014261119067669, 0.06352207809686661, 0.020354347303509712, 0.09506714344024658, -0.102014921605587, -0.0666809156537056 ]
null
null
transformers
# scibert-wechsel-korean Scibert(🇺🇸) converted into Korean(🇰🇷) using WECHSEL technique. ### Description - SciBERT is trained on papers from the corpus of semanticscholar.org. Corpus size is 1.14M papers, 3.1B tokens. - Wechsel is converting embedding layer's subword tokens from source language to target language. - SciBERT trained with English language is converted into Korean langauge using Wechsel technique. - Korean tokenizer is selected with KLUE PLMs' tokenizers due to its similar vocab size(32000) and performance. ### Reference - [Scibert](https://github.com/allenai/scibert) - [WECHSEL](https://github.com/CPJKU/wechsel) - [Korean Language Understanding Evaluation](https://github.com/KLUE-benchmark/KLUE)
{}
fill-mask
LeverageX/scibert-wechsel-korean
[ "transformers", "pytorch", "bert", "fill-mask", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us
# scibert-wechsel-korean Scibert(🇺🇸) converted into Korean(🇰🇷) using WECHSEL technique. ### Description - SciBERT is trained on papers from the corpus of URL. Corpus size is 1.14M papers, 3.1B tokens. - Wechsel is converting embedding layer's subword tokens from source language to target language. - SciBERT trained with English language is converted into Korean langauge using Wechsel technique. - Korean tokenizer is selected with KLUE PLMs' tokenizers due to its similar vocab size(32000) and performance. ### Reference - Scibert - WECHSEL - Korean Language Understanding Evaluation
[ "# scibert-wechsel-korean\n\nScibert(🇺🇸) converted into Korean(🇰🇷) using WECHSEL technique.", "### Description\n- SciBERT is trained on papers from the corpus of URL. Corpus size is 1.14M papers, 3.1B tokens. \n- Wechsel is converting embedding layer's subword tokens from source language to target language. \n- SciBERT trained with English language is converted into Korean langauge using Wechsel technique.\n- Korean tokenizer is selected with KLUE PLMs' tokenizers due to its similar vocab size(32000) and performance.", "### Reference\n- Scibert\n- WECHSEL\n- Korean Language Understanding Evaluation" ]
[ "TAGS\n#transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n", "# scibert-wechsel-korean\n\nScibert(🇺🇸) converted into Korean(🇰🇷) using WECHSEL technique.", "### Description\n- SciBERT is trained on papers from the corpus of URL. Corpus size is 1.14M papers, 3.1B tokens. \n- Wechsel is converting embedding layer's subword tokens from source language to target language. \n- SciBERT trained with English language is converted into Korean langauge using Wechsel technique.\n- Korean tokenizer is selected with KLUE PLMs' tokenizers due to its similar vocab size(32000) and performance.", "### Reference\n- Scibert\n- WECHSEL\n- Korean Language Understanding Evaluation" ]
[ 36, 28, 106, 17 ]
[ "passage: TAGS\n#transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n# scibert-wechsel-korean\n\nScibert(🇺🇸) converted into Korean(🇰🇷) using WECHSEL technique.### Description\n- SciBERT is trained on papers from the corpus of URL. Corpus size is 1.14M papers, 3.1B tokens. \n- Wechsel is converting embedding layer's subword tokens from source language to target language. \n- SciBERT trained with English language is converted into Korean langauge using Wechsel technique.\n- Korean tokenizer is selected with KLUE PLMs' tokenizers due to its similar vocab size(32000) and performance.### Reference\n- Scibert\n- WECHSEL\n- Korean Language Understanding Evaluation" ]
[ 0.0354456827044487, -0.20215168595314026, -0.0007328829960897565, 0.04757886752486229, 0.10376705229282379, -0.03404134884476662, 0.02691842056810856, 0.062032055109739304, 0.15713511407375336, 0.04477581009268761, 0.07344924658536911, 0.04686097055673599, 0.06898703426122665, 0.08828001469373703, -0.06006152555346489, -0.41830310225486755, 0.10687444359064102, -0.012221087701618671, 0.14575742185115814, 0.060294654220342636, 0.08470220118761063, -0.09860331565141678, 0.10231982916593552, -0.0036218431778252125, -0.16957856714725494, 0.007599976379424334, -0.033919744193553925, -0.014736093580722809, 0.0035535944625735283, -0.01631847210228443, 0.06816473603248596, -0.006182547193020582, 0.00567203015089035, -0.12991759181022644, 0.013351542875170708, -0.0392112210392952, 0.04600007086992264, 0.024541551247239113, -0.07353726774454117, 0.05039437487721443, 0.16451889276504517, -0.18952378630638123, -0.08274313807487488, -0.009741569869220257, 0.013159076683223248, -0.06522978097200394, -0.06822359561920166, 0.07681769132614136, 0.0589747354388237, -0.01076447032392025, -0.022484950721263885, 0.12923668324947357, -0.07207954674959183, 0.1504618227481842, 0.11869305372238159, -0.3500540256500244, -0.06078002229332924, 0.04929213970899582, 0.04319821670651436, 0.11825288087129593, -0.10648072510957718, 0.0470566526055336, 0.08196210861206055, 0.01125327404588461, 0.06106395646929741, -0.14956289529800415, -0.2725086808204651, 0.02435852773487568, -0.08895046263933182, 0.057441066950559616, 0.18554745614528656, 0.002530136611312628, -0.07286043465137482, -0.024855639785528183, -0.020359572023153305, -0.08770182728767395, -0.013200975954532623, -0.025404565036296844, 0.003913580905646086, -0.059907060116529465, 0.06391424685716629, -0.08112071454524994, -0.06744091957807541, -0.10819253325462341, -0.17685025930404663, 0.3983156681060791, 0.07082211226224899, 0.06623391062021255, -0.010752198286354542, 0.010260830633342266, -0.0634489580988884, -0.17643703520298004, -0.10599450021982193, -0.084050752222538, -0.09965656697750092, 0.031808722764253616, -0.028691571205854416, -0.19098582863807678, 0.00854277703911066, 0.020920274779200554, -0.027099814265966415, 0.10634857416152954, 0.02369365468621254, 0.07125324755907059, 0.11385530978441238, 0.26391035318374634, -0.030341356992721558, 0.1259259730577469, -0.028778046369552612, -0.06847929209470749, 0.09657122939825058, -0.03133226931095123, -0.1152118518948555, -0.09802405536174774, 0.07394041866064072, -0.007210598327219486, -0.17521116137504578, 0.18170630931854248, 0.004542834125459194, 0.011499928310513496, 0.01700783148407936, -0.10280127078294754, -0.01104454044252634, 0.004575744736939669, -0.04088336601853371, 0.32454922795295715, -0.019276339560747147, -0.026114758104085922, -0.05045200511813164, 0.09151694923639297, -0.030032996088266373, 0.08790040761232376, -0.029146691784262657, -0.13167762756347656, -0.0055147744715213776, -0.09636243432760239, 0.010529765859246254, -0.1705511212348938, -0.11047568917274475, -0.015951018780469894, -0.005942783784121275, -0.03243571147322655, 0.04590693488717079, -0.06449852138757706, -0.07832416146993637, 0.022023797035217285, -0.05842726677656174, -0.010667907074093819, -0.015395700931549072, 0.02343587949872017, -0.03787478804588318, 0.11933448910713196, -0.1903778612613678, 0.014285116456449032, -0.11783716827630997, -0.0043377140536904335, -0.2952837347984314, 0.028309116140007973, -0.12874172627925873, 0.09304927289485931, -0.05563506484031677, -0.09301410615444183, -0.08222644776105881, 0.048685044050216675, -0.005212949588894844, 0.09763498604297638, -0.16466642916202545, -0.011210558004677296, 0.11525426805019379, -0.12697337567806244, -0.029021525755524635, 0.21472503244876862, 0.009968005120754242, 0.02372373826801777, 0.06825770437717438, 0.26010802388191223, 0.11656221002340317, -0.11164158582687378, -0.045978475362062454, 0.15596462786197662, -0.038827329874038696, -0.008268937468528748, 0.06510096043348312, 0.08951672911643982, -0.04374010115861893, 0.10899467021226883, -0.02399887517094612, 0.015087996609508991, -0.03338859602808952, 0.033610645681619644, -0.057943880558013916, -0.06242306903004646, 0.08324014395475388, 0.016769403591752052, 0.1420745998620987, -0.07319143414497375, 0.020434658974409103, 0.14345374703407288, 0.042039401829242706, -0.026766085997223854, 0.028672192245721817, -0.04792546108365059, -0.005138769280165434, 0.07645931094884872, 0.042628414928913116, -0.060080911964178085, -0.03930853679776192, 0.07112707197666168, 0.07746271789073944, 0.0037875790148973465, 0.08895187079906464, 0.022066429257392883, -0.015810679644346237, -0.004570084158331156, 0.07053408026695251, 0.057056326419115067, 0.026759566739201546, -0.062097303569316864, -0.005646872334182262, -0.05284895747900009, -0.05140015855431557, -0.10337067395448685, 0.04584641754627228, 0.011034136638045311, 0.0756278783082962, 0.027504118159413338, -0.00976486410945654, 0.029489217326045036, 0.03094439022243023, 0.11483679711818695, -0.007434428203850985, 0.04211115092039108, -0.0158843994140625, 0.015941685065627098, -0.025746481493115425, 0.2390725314617157, -0.04376205429434776, -0.039817534387111664, 0.113737553358078, 0.07117060571908951, -0.0011866382556036115, -0.08835262060165405, 0.03481601923704147, -0.026511147618293762, -0.020757462829351425, -0.14557476341724396, 0.206135094165802, -0.006214497145265341, 0.11910868436098099, -0.06041456758975983, -0.03772002458572388, -0.005321715027093887, -0.07743482291698456, -0.008109021000564098, 0.10777155309915543, -0.08419128507375717, -0.32752007246017456, 0.13082656264305115, -0.014877177774906158, -0.1434044986963272, 0.23082278668880463, -0.058077871799468994, 0.010208111256361008, -0.011940807104110718, 0.030196284875273705, -0.07161758840084076, 0.06304061412811279, -0.0272099357098341, -0.09338037669658661, 0.021882547065615654, 0.04180479422211647, -0.00464473245665431, -0.04221703112125397, 0.019218578934669495, -0.006840487010776997, -0.055152881890535355, -0.03343142569065094, 0.11397681385278702, 0.026580212637782097, 0.03585920110344887, -0.0192335844039917, 0.01733337715268135, -0.030374063178896904, -0.022131746634840965, -0.057890791445970535, 0.13350416719913483, -0.07371848076581955, -0.0511898398399353, -0.16028398275375366, -0.000177864043507725, -0.0040742866694927216, -0.057817988097667694, 0.013760015368461609, -0.06413795799016953, -0.033797480165958405, -0.10435375571250916, -0.01709386333823204, -0.0019307995680719614, 0.03748658671975136, -0.041363559663295746, -0.06093640252947807, -0.13377957046031952, -0.055006783455610275, -0.0877244770526886, -0.0729919970035553, 0.02116834558546543, 0.06963391602039337, -0.11828867346048355, 0.08069498836994171, 0.023680923506617546, -0.05536103621125221, 0.013439519330859184, -0.025940697640180588, 0.01858603022992611, -0.02095111832022667, 0.06878001242876053, 0.1314154714345932, -0.08836694061756134, 0.055768098682165146, 0.06562488526105881, -0.009290347807109356, 0.04459896683692932, 0.05782032012939453, -0.02493179589509964, -0.12024512141942978, -0.23260796070098877, -0.01135912537574768, -0.1216442659497261, 0.11420093476772308, -0.02676636539399624, 0.006116217467933893, -0.08214312046766281, 0.0726006031036377, 0.025292331352829933, 0.11023296415805817, -0.007983437739312649, 0.022856131196022034, 0.09372260421514511, 0.06405123323202133, 0.07341187447309494, -0.10911939293146133, -0.048327427357435226, 0.023130305111408234, 0.022205578163266182, 0.12024003267288208, -0.05768768489360809, 0.12332703173160553, -0.029028194025158882, 0.08538249135017395, 0.08164053410291672, 0.14075782895088196, -0.07618236541748047, -0.03126300871372223, -0.01415838859975338, -0.023096054792404175, -0.030227908864617348, 0.07593071460723877, 0.01788223907351494, 0.023706886917352676, -0.051809728145599365, 0.09441281110048294, 0.1341078281402588, 0.23570051789283752, 0.028056925162672997, -0.1311032772064209, -0.09165242314338684, 0.07878429442644119, -0.06615050137042999, -0.002505786716938019, 0.05725623294711113, 0.3610633611679077, -0.1467791050672531, 0.12364640831947327, -0.00324372760951519, 0.08266269415616989, -0.06275217980146408, 0.07794605940580368, -0.019571730867028236, 0.06932653486728668, 0.014616511762142181, 0.04261891171336174, -0.21639156341552734, 0.19444170594215393, 0.007404707837849855, 0.01990671642124653, -0.09793917089700699, -0.02557295560836792, 0.044436439871788025, 0.023342324420809746, 0.07365323603153229, 0.029623044654726982, -0.23754893243312836, -0.08140288293361664, -0.07119324058294296, 0.09851470589637756, 0.1246773973107338, 0.08913733810186386, 0.03289249539375305, -0.02083418518304825, -0.010881544090807438, -0.05717072635889053, 0.04575774446129799, -0.04576477035880089, -0.013661823235452175, -0.07039494067430496, 0.08587595820426941, -0.08393017947673798, 0.0741487517952919, -0.025768060237169266, -0.17735818028450012, 0.1724565476179123, 0.014587883837521076, -0.07415931671857834, -0.0950963944196701, 0.029589395970106125, 0.03560397028923035, -0.11939960718154907, -0.04823131114244461, -0.04373490810394287, 0.018166538327932358, 0.011429398320615292, -0.12804237008094788, 0.056230589747428894, 0.011036213487386703, -0.025921104475855827, 0.020316140726208687, 0.003451136639341712, -0.015543686226010323, 0.009263669140636921, 0.02088858000934124, -0.023330459371209145, 0.05450586974620819, -0.1897323876619339, 0.032069433480501175, 0.1060878336429596, 0.021984022110700607, 0.09781526774168015, -0.14403066039085388, -0.06331750750541687, -0.03746720775961876, 0.038706906139850616, 0.14344695210456848, 0.06553928554058075, -0.05721870809793472, 0.019629985094070435, 0.0837504044175148, 0.005567772779613733, -0.3214283883571625, -0.07959618419408798, 0.022535011172294617, 0.12428601831197739, -0.006584687624126673, -0.06900537014007568, 0.054936595261096954, 0.13300031423568726, 0.0033506990876048803, -0.09667856991291046, -0.16354075074195862, -0.10138138383626938, 0.051658399403095245, 0.04442644491791725, 0.29176339507102966, -0.0839465856552124, -0.09506676346063614, -0.029942981898784637, -0.21951715648174286, 0.03740278258919716, -0.22654365003108978, 0.0740182027220726, -0.03310021013021469, 0.053045473992824554, 0.055673498660326004, -0.019153952598571777, 0.1256875991821289, 0.03229530155658722, 0.04611281678080559, -0.07716573774814606, -0.11658100038766861, -0.020778045058250427, -0.050223011523485184, 0.2850974202156067, -0.3052813708782196, 0.05448184907436371, -0.023300286382436752, 0.008471498265862465, -0.09467960894107819, 0.03940654546022415, 0.053520988672971725, -0.023003701120615005, -0.095412977039814, 0.023126617074012756, -0.02067752555012703, 0.022362254559993744, 0.19446709752082825, -0.02462855353951454, -0.022286154329776764, 0.1760164052248001, 0.13659074902534485, 0.08904662728309631, 0.15536387264728546, -0.01065879873931408, -0.028736315667629242, 0.11740084737539291, -0.07593172788619995, 0.013499540276825428, 0.11004824191331863, 0.030049258843064308, -0.003628130303695798, 0.04020172357559204, -0.05795218423008919, 0.06475372612476349, 0.018499338999390602, -0.10902611911296844, -0.13796254992485046, -0.02122761681675911, -0.02014297991991043, 0.046913761645555496, 0.06497602164745331, 0.10922511667013168, -0.10592591017484665, -0.02102171629667282, -0.029941685497760773, -0.03019852191209793, -0.02855750545859337, 0.038706280291080475, 0.048334743827581406, 0.06255529820919037, -0.05433277785778046, 0.05734342336654663, -0.041932400315999985, 0.06352218985557556, 0.05708019435405731, 0.10252377390861511, -0.14467093348503113, -0.04163012653589249, 0.043468743562698364, -0.008219915442168713, 0.10372190177440643, -0.044122666120529175, -0.05746954306960106, -0.2096066176891327, -0.0799633115530014, 0.20608115196228027, 0.08753184974193573, 0.05977751314640045, -0.023197516798973083, -0.008434150367975235, -0.03347191587090492, 0.052572473883628845, -0.0358426570892334, 0.069484643638134, -0.1345375031232834, 0.06369887292385101, -0.06479872763156891, 0.19383135437965393, -0.06901796162128448, 0.023183360695838928, -0.17289043962955475, -0.00038031136500649154, -0.0778169333934784, 0.00272474717348814, -0.07356657832860947, -0.07166337966918945, 0.006456844508647919, -0.10569222271442413, -0.03590226173400879, 0.010594158433377743, -0.08121012151241302, 0.04354378208518028, -0.010429589077830315, 0.03939066827297211, -0.03746848553419113, -0.051749616861343384, 0.10869099944829941, -0.06027493625879288, 0.052549637854099274, 0.12887458503246307, -0.09246828407049179, 0.1439209133386612, -0.1926061064004898, 0.015386125072836876, 0.14015229046344757, 0.05454310029745102, 0.07165731489658356, 0.11470777541399002, -0.03723647817969322, 0.04698126018047333, 0.1522335708141327, 0.027435582131147385, 0.11895105242729187, -0.057007599622011185, 0.019377510994672775, -0.031484052538871765, -0.0860198587179184, -0.1012551337480545, 0.0479515939950943, 0.08783223479986191, 0.09826261550188065, 0.09339307993650436, -0.08346758782863617, -0.0020112721249461174, -0.04307665675878525, 0.04689395800232887, 0.03954777866601944, -0.18655844032764435, -0.05066338926553726, -0.07965011894702911, 0.043356265872716904, -0.011488176882266998, 0.10230918973684311, 0.03247791901230812, -0.16467821598052979, -0.01162432786077261, -0.0820130854845047, -0.029868224635720253, 0.05450042337179184, 0.2092665284872055, 0.011776831932365894, -0.047018907964229584, -0.07485239952802658, -0.055654894560575485, -0.021602898836135864, 0.05130673572421074, 0.27513420581817627, 0.15822620689868927, -0.03445599228143692, 0.21050411462783813, 0.05665029212832451, 0.060026541352272034, -0.024927565827965736, -0.11178918182849884, -0.14528968930244446, 0.06192765384912491, -0.035724569112062454, 0.1115763708949089, 0.12402350455522537, -0.1301109939813614, 0.04649060219526291, 0.007716893684118986, -0.10765909403562546, -0.14624720811843872, -0.13348375260829926, -0.09083598852157593, -0.08548031002283096, 0.007607280742377043, -0.08255628496408463, 0.01951461099088192, 0.03586342930793762, 0.028690729290246964, 0.008263812400400639, 0.1389884501695633, -0.02008642815053463, -0.03437770903110504, 0.18169726431369781, -0.06077942997217178, -0.03996378928422928, 0.021066443994641304, -0.059767358005046844, -0.007216832600533962, -0.013694570399820805, 0.012485534884035587, 0.06533171981573105, -0.0031686245929449797, 0.0014151358045637608, -0.07772493362426758, -0.07835530489683151, -0.049281045794487, -0.0001799208839656785, 0.02893136255443096, -0.0768999457359314, 0.1129692941904068, -0.08678299933671951, -0.04725854843854904, 0.06838073581457138, -0.037183891981840134, -0.023521998897194862, -0.13349604606628418, 0.2861204147338867, 0.04430413991212845, 0.0340341255068779, -0.00011891532631125301, -0.06221691891551018, -0.06659334152936935, 0.16441300511360168, 0.08831433951854706, -0.007473272737115622, 0.04801643639802933, -0.11367408186197281, 0.014874354004859924, 0.056040361523628235, 0.1469791829586029, 0.030277501791715622, 0.12459313869476318, 0.038680300116539, 0.06400787830352783, -0.01646035723388195, -0.06954933702945709, -0.08289100229740143, -0.023734668269753456, 0.018162865191698074, -0.08376028388738632, -0.14278805255889893, 0.053107958287000656, -0.21374854445457458, 0.06585489958524704, 0.054440710693597794, -0.03663913905620575, -0.07841825485229492, 0.03610676899552345, 0.03710293397307396, 0.1055418848991394, 0.10091622173786163, -0.10645493119955063, 0.039686184376478195, 0.01799081452190876, 0.017523866146802902, -0.05338355898857117, 0.013494416140019894, 0.08408751338720322, -0.008177272044122219, 0.016091400757431984, 0.023316169157624245, 0.16717278957366943, 0.05044490098953247, 0.008619205094873905, -0.012159585021436214, 0.08043739944696426, -0.03315475955605507, -0.10384854674339294, -0.0033856602385640144, 0.1097973883152008, -0.03143169730901718, -0.02117864601314068, 0.009636139497160912, -0.014242264442145824, -0.028954101726412773, -0.060935262590646744, 0.011554298922419548, -0.10992807894945145, 0.0011064716381952167, -0.07257474213838577, 0.09977511316537857, 0.2660810351371765, 0.014401878230273724, -0.022304607555270195, -0.007614499889314175, 0.04228691756725311, -0.0371100939810276, -0.06878270208835602, -0.08636456727981567, -0.10900232195854187, -0.04371229186654091, 0.06393084675073624, -0.0022232658229768276, -0.10602430999279022, 0.01398557610809803, -0.17546206712722778, 0.01433553732931614, -0.028901411220431328, -0.04449155554175377, 0.12202020734548569, -0.014539480209350586, -0.013603179715573788, -0.2146230787038803, 0.03282437473535538, 0.04895208775997162, -0.09506259858608246, -0.1051245629787445 ]
null
null
transformers
# Jake99 DialoGPT model
{"tags": ["conversational"]}
text-generation
Leviii03/Dialogpt-small-Jake99
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Jake99 DialoGPT model
[ "# Jake99 DialoGPT model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Jake99 DialoGPT model" ]
[ 51, 9 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Jake99 DialoGPT model" ]
[ -0.030847297981381416, 0.0994415134191513, -0.005009496118873358, 0.002523164264857769, 0.13061362504959106, -0.024874253198504448, 0.15904301404953003, 0.13865342736244202, -0.024304896593093872, -0.04270927608013153, 0.1463879495859146, 0.16714024543762207, 0.017589524388313293, 0.14137597382068634, -0.05767178535461426, -0.29260560870170593, 0.06707914173603058, 0.04510881379246712, 0.06691816449165344, 0.12224345654249191, 0.09182838350534439, -0.04100530594587326, 0.08033302426338196, 0.0042185550555586815, -0.1540195196866989, 0.015167147852480412, 0.02078426256775856, -0.1168709471821785, 0.10085013508796692, 0.060717660933732986, 0.041928257793188095, 0.029017731547355652, -0.04886864498257637, -0.129594624042511, 0.029074368998408318, -0.008130655623972416, -0.04053341597318649, 0.04077957943081856, 0.03690165653824806, -0.06729638576507568, 0.11749731749296188, 0.12952373921871185, 0.015833362936973572, 0.0428391695022583, -0.14606228470802307, 0.003423449583351612, 0.0027812570333480835, 0.08399812877178192, 0.09287965297698975, 0.10001686960458755, -0.04589863494038582, 0.09172143042087555, -0.07069135457277298, 0.12297343462705612, 0.11337079107761383, -0.28537094593048096, -0.017485251650214195, 0.11364096403121948, 0.058143094182014465, 0.06416749954223633, -0.013898292556405067, 0.07452307641506195, 0.030425438657402992, -0.003368416568264365, -0.031749412417411804, -0.06699339300394058, -0.10829076170921326, 0.002216218039393425, -0.09806448221206665, -0.0340198278427124, 0.2747390568256378, -0.041853226721286774, 0.05971257761120796, -0.10623274743556976, -0.0934203714132309, -0.0646655410528183, -0.044518619775772095, -0.03097909688949585, -0.08987659215927124, 0.07025927305221558, -0.01186343003064394, -0.0706421509385109, -0.11118505895137787, -0.034542083740234375, -0.16224023699760437, 0.15725135803222656, 0.030579429119825363, 0.03706863150000572, -0.22384214401245117, 0.10395509749650955, -0.02286387048661709, -0.10121415555477142, 0.03453098610043526, -0.08774340897798538, 0.020998310297727585, 0.019497791305184364, -0.037446051836013794, -0.03885120898485184, 0.07206524163484573, 0.10399182885885239, 0.05019458010792732, 0.035129014402627945, -0.019363492727279663, 0.0594165176153183, 0.044076427817344666, 0.10909169912338257, -0.004698861390352249, -0.04942519962787628, 0.03046799823641777, -0.07736687362194061, -0.009641436859965324, -0.07770096510648727, -0.18909791111946106, -0.010397294536232948, 0.0961327850818634, 0.055173128843307495, 0.05212802439928055, 0.11603376269340515, -0.0018709562718868256, -0.04955187067389488, 0.010935761034488678, -0.036172814667224884, -0.01791934110224247, -0.0029158671386539936, -0.009710489772260189, 0.1512783020734787, 0.017639022320508957, 0.03704577311873436, -0.13773773610591888, 0.022523313760757446, -0.050518572330474854, -0.014705623500049114, -0.023575231432914734, -0.049283094704151154, 0.00881517119705677, -0.0049866680055856705, 0.016636088490486145, -0.14803023636341095, -0.17087909579277039, -0.010972809977829456, -0.0122708510607481, -0.02102542668581009, -0.12308394908905029, -0.09942051768302917, -0.011434453539550304, 0.0409778468310833, -0.08875369280576706, -0.030499791726469994, -0.05003805086016655, 0.07837427407503128, -0.04490978643298149, 0.08845299482345581, -0.08260340243577957, 0.08088454604148865, -0.0821082815527916, -0.029387906193733215, -0.12243577837944031, 0.1211480125784874, -0.01171179860830307, 0.09640555083751678, -0.007944845594465733, -0.008191807195544243, -0.054450660943984985, 0.06760594248771667, -0.04561566933989525, 0.22728407382965088, -0.09371253848075867, -0.11807429790496826, 0.2814820408821106, -0.06755589693784714, -0.1261812448501587, 0.12394264340400696, -0.0020872335880994797, 0.08918038755655289, 0.15289601683616638, 0.24311119318008423, 0.03137403354048729, 0.0081824641674757, 0.062358662486076355, 0.10735928267240524, -0.07378154993057251, -0.014600561931729317, 0.004277748055756092, -0.015880996361374855, -0.0747179314494133, 0.03646615147590637, 0.06886802613735199, 0.06673284620046616, -0.04396360367536545, -0.018979717046022415, -0.0028060413897037506, -0.006677261553704739, 0.0722791776061058, -0.021952593699097633, 0.12199647724628448, -0.05378004536032677, -0.05848441272974014, -0.009206106886267662, 0.028317011892795563, -0.05080654099583626, 0.03739607706665993, -0.08227090537548065, 0.08567125350236893, 0.00027848780155181885, 0.06163875758647919, -0.11813600361347198, -0.08085796236991882, -0.03544509410858154, 0.1549810916185379, 0.0324987918138504, 0.11636322736740112, 0.04835177958011627, -0.03978202864527702, 0.0029128133319318295, 0.002131233923137188, 0.17160271108150482, -0.008870423771440983, -0.07673139870166779, -0.08709437400102615, 0.08584821224212646, -0.06095096841454506, 0.09170182049274445, -0.046715058386325836, 0.021403534337878227, 0.01344120129942894, 0.10445120930671692, -0.021601330488920212, 0.0054042586125433445, 0.014966935850679874, -0.02029062621295452, -0.039591893553733826, -0.009512343443930149, 0.08856354653835297, -0.007299551274627447, -0.08819075673818588, 0.22109943628311157, -0.19615933299064636, 0.18843156099319458, 0.19570428133010864, -0.19550055265426636, -0.0037314030341804028, -0.0959094911813736, -0.022063199430704117, -0.000030613504350185394, 0.05901365727186203, -0.035810813307762146, 0.2461007535457611, -0.014129333198070526, 0.1774228811264038, -0.04224769026041031, -0.033874280750751495, -0.02996736951172352, -0.06612230092287064, 0.03367201238870621, 0.09498003870248795, 0.054748982191085815, -0.1270752251148224, 0.16101467609405518, 0.07625965029001236, 0.04878411814570427, 0.18151061236858368, 0.020374374464154243, -0.0006949580274522305, 0.06667391955852509, 0.015025082044303417, -0.04840909317135811, -0.06904008984565735, -0.2837892770767212, -0.04719512164592743, 0.07226777076721191, 0.05095212534070015, 0.12127526104450226, -0.09810525178909302, -0.02959888055920601, 0.0018608896061778069, -0.014222708530724049, 0.038094472140073776, 0.09422718733549118, 0.023029077798128128, 0.12068039178848267, -0.010777554474771023, -0.0750257596373558, 0.05974731594324112, 0.011254007928073406, -0.09580878168344498, 0.18857666850090027, -0.10678783059120178, -0.3571234941482544, -0.11617109179496765, -0.22966653108596802, -0.06783684343099594, 0.04852953180670738, 0.1036815345287323, -0.12216734141111374, -0.026489902287721634, -0.017119010910391808, 0.07946264743804932, -0.12972654402256012, 0.00039437570376321673, -0.022326398640871048, -0.014503838494420052, -0.10991689562797546, -0.08585046231746674, -0.05713585764169693, -0.02191169373691082, -0.06243136525154114, 0.10478073358535767, -0.15051160752773285, 0.020601889118552208, 0.23495548963546753, 0.02987540327012539, 0.06591632962226868, -0.03505776450037956, 0.18543002009391785, -0.10109084099531174, -0.012531496584415436, 0.17916885018348694, -0.05852815508842468, 0.05765930563211441, 0.114397794008255, -0.015601545572280884, -0.07159600406885147, 0.0210878849029541, -0.040701888501644135, -0.07252360135316849, -0.21224793791770935, -0.13176991045475006, -0.08598791062831879, 0.12176504731178284, 0.056983739137649536, 0.053309351205825806, 0.15770898759365082, 0.07104294747114182, -0.04308810830116272, -0.0032078400254249573, 0.053300440311431885, 0.09996490180492401, 0.241474911570549, -0.0912199318408966, 0.14954380691051483, -0.0035381093621253967, -0.13891029357910156, 0.06426341831684113, 0.05199158564209938, 0.05370023474097252, 0.07289138436317444, 0.06761696189641953, -0.009083173237740993, 0.05226518213748932, 0.13525260984897614, 0.07582098245620728, 0.03812094405293465, -0.04702720046043396, -0.023908914998173714, -0.0365326888859272, -0.05341363698244095, 0.04713742434978485, 0.04586154222488403, -0.16228324174880981, -0.03880583122372627, -0.02675827592611313, 0.049279071390628815, 0.03458627313375473, 0.08525481820106506, -0.1929154396057129, -0.013303070329129696, 0.07601690292358398, -0.0700557678937912, -0.133906751871109, 0.10447629541158676, -0.008127948269248009, -0.1405855417251587, 0.043351851403713226, 0.001988139934837818, 0.1344754844903946, -0.11954639852046967, 0.06292497366666794, -0.1539025604724884, -0.08173055201768875, -0.00573352724313736, 0.11523015797138214, -0.2493913173675537, 0.165445476770401, -0.010565400123596191, -0.05262932926416397, -0.10370710492134094, 0.005559206008911133, 0.005670845042914152, 0.11168953776359558, 0.10566441714763641, -0.004518049769103527, -0.0123545927926898, -0.005442098714411259, -0.087438203394413, 0.025008905678987503, 0.0742998719215393, -0.04047652333974838, -0.018696732819080353, -0.036832183599472046, 0.015400618314743042, -0.0272049717605114, -0.07569777965545654, 0.03765653073787689, -0.17473654448986053, 0.08303582668304443, 0.0621175691485405, 0.13988366723060608, 0.015870656818151474, -0.04428182169795036, -0.07926075905561447, 0.276010125875473, -0.01116846688091755, -0.11138294637203217, -0.0874037966132164, -0.04834984615445137, 0.04316868260502815, -0.0575164332985878, 0.015918569639325142, -0.05562378838658333, 0.038109190762043, -0.08035703748464584, -0.17380478978157043, 0.12467391043901443, -0.09560151398181915, -0.030838746577501297, -0.028551941737532616, 0.22223803400993347, -0.02286052703857422, 0.029094014316797256, 0.04022141546010971, -0.006628141738474369, -0.11608006060123444, -0.09607790410518646, -0.01313047669827938, 0.05301464721560478, -0.009073042310774326, 0.030254241079092026, 0.01738799549639225, -0.030287930741906166, -0.0745021253824234, -0.01396669540554285, 0.33613714575767517, 0.13612158596515656, -0.03466479480266571, 0.1646384447813034, 0.12903890013694763, -0.06529214978218079, -0.26835936307907104, -0.12179774791002274, -0.07428999990224838, -0.04422612860798836, -0.09814713895320892, -0.15338988602161407, 0.08073127269744873, -0.015321019105613232, -0.018381094560027122, 0.11276062577962875, -0.283953458070755, -0.11280675232410431, 0.19591957330703735, -0.030042733997106552, 0.41486936807632446, -0.0959589034318924, -0.08304957300424576, -0.049052558839321136, -0.12831760942935944, 0.1102878600358963, 0.009498268365859985, 0.1041305661201477, -0.00298177357763052, 0.18567942082881927, 0.052030742168426514, -0.008462377823889256, 0.07790573686361313, 0.020211365073919296, -0.06470220535993576, -0.1093638613820076, -0.054811540991067886, -0.0019445382058620453, 0.008372897282242775, 0.054187797009944916, -0.061585456132888794, 0.025959597900509834, -0.19121956825256348, -0.06067371740937233, -0.08556904643774033, 0.024172812700271606, 0.02344658225774765, -0.06817245483398438, -0.002137684728950262, -0.07138504087924957, 0.008424827829003334, 0.015942620113492012, 0.13895760476589203, -0.11088058352470398, 0.1470497101545334, 0.1298898458480835, 0.12192083150148392, -0.15742483735084534, -0.04178687185049057, -0.05540211498737335, -0.06311286985874176, 0.07369803637266159, -0.09904499351978302, 0.012996014207601547, 0.11029708385467529, -0.0342898815870285, 0.07956916838884354, 0.08018912374973297, -0.013560973107814789, 0.003930320031940937, 0.09445130825042725, -0.26690295338630676, -0.05506499856710434, -0.08639945834875107, 0.06838074326515198, 0.06323981285095215, 0.09323210269212723, 0.20417648553848267, -0.027413252741098404, -0.03407686576247215, 0.004403987899422646, 0.030392460525035858, -0.03255710005760193, 0.08266870677471161, -0.008435067720711231, 0.029512515291571617, -0.16587071120738983, 0.04488455504179001, -0.003284878097474575, -0.08602786064147949, 0.033250853419303894, 0.16361866891384125, -0.10048747062683105, -0.10067533701658249, -0.06067153066396713, 0.13598310947418213, -0.12406918406486511, -0.025474227964878082, -0.02657834067940712, -0.1331111192703247, 0.06553438305854797, 0.10985226184129715, 0.03992314636707306, 0.06394676864147186, -0.08874087035655975, -0.04085226356983185, -0.02941816672682762, -0.004458996467292309, 0.049804672598838806, -0.013643564656376839, -0.06381437182426453, 0.08423048257827759, -0.025210276246070862, 0.09663689136505127, -0.09081193804740906, -0.10555402934551239, -0.14165940880775452, 0.037467945367097855, -0.10666617006063461, -0.08847509324550629, -0.10404757410287857, -0.026523476466536522, -0.008400347083806992, -0.01840181089937687, -0.0390465222299099, -0.051648251712322235, -0.11007186770439148, 0.03748764097690582, -0.04743214324116707, 0.0018294770270586014, -0.06087411940097809, 0.04016232118010521, 0.04537852108478546, -0.02567409723997116, 0.14978058636188507, 0.1444811373949051, -0.09983769804239273, 0.09819526970386505, -0.08736361563205719, -0.07319959253072739, 0.10168333351612091, 0.011673393659293652, 0.04918922483921051, 0.05929256230592728, -0.007643069140613079, 0.04901658743619919, 0.03761128708720207, 0.052038878202438354, 0.020852595567703247, -0.09367857128381729, 0.013744650408625603, -0.022473547607660294, -0.12105321884155273, -0.05334567278623581, -0.016634829342365265, 0.046042829751968384, 0.04556569457054138, 0.07024620473384857, -0.06636559963226318, 0.10981419682502747, -0.0628478080034256, 0.032733459025621414, 0.03120226226747036, -0.1677640825510025, 0.04519059136509895, -0.088666632771492, 0.04830693453550339, 0.012694431468844414, 0.22709310054779053, 0.014139218255877495, -0.006430807523429394, 0.02172919362783432, 0.043264053761959076, 0.07104542851448059, -0.0065879980102181435, 0.21586090326309204, 0.10409026592969894, -0.050768449902534485, -0.09958043694496155, 0.0864684134721756, 0.042215146124362946, 0.005630815401673317, 0.09478937834501266, -0.061557136476039886, -0.04511431232094765, 0.08347383141517639, -0.013547832146286964, 0.03808029368519783, -0.1404699981212616, -0.14605167508125305, -0.03837611526250839, 0.06363831460475922, -0.04853557422757149, 0.10505830496549606, 0.17200180888175964, -0.007035477086901665, 0.019089533016085625, 0.0027296210173517466, -0.07049894332885742, -0.17301133275032043, -0.20195597410202026, -0.07846849411725998, -0.16335394978523254, 0.008255558088421822, -0.14466339349746704, 0.04426934942603111, 0.032192010432481766, 0.09167537093162537, -0.07514914125204086, 0.09665541350841522, 0.0757446438074112, -0.11732318997383118, 0.07980075478553772, -0.04157106205821037, 0.09889791905879974, -0.043610937893390656, -0.00799643062055111, -0.06063976138830185, 0.040362607687711716, 0.016988350078463554, 0.045311443507671356, -0.04275084286928177, 0.01714322343468666, -0.09914842247962952, -0.08724579215049744, -0.058054327964782715, 0.057963427156209946, 0.0066575235687196255, 0.1637030839920044, 0.013724320568144321, -0.0355052649974823, 0.012671477161347866, 0.21436791121959686, -0.08038493245840073, -0.06865839660167694, -0.05405706167221069, 0.2075968086719513, -0.011469803750514984, 0.10385560244321823, -0.03139910101890564, 0.021647488698363304, -0.10615228116512299, 0.33129703998565674, 0.263080358505249, -0.06966462731361389, 0.003979634493589401, -0.014816456474363804, 0.03702850267291069, 0.09012925624847412, 0.0995439812541008, 0.08709774911403656, 0.28300386667251587, -0.055278874933719635, -0.00571944797411561, -0.010630594566464424, -0.0469527542591095, -0.08140255510807037, 0.03366849943995476, 0.07180523872375488, -0.06397883594036102, -0.04142962396144867, 0.11852642893791199, -0.23481839895248413, 0.09924082458019257, -0.16261619329452515, -0.17539653182029724, -0.08084291964769363, 0.007959662936627865, 0.13718584179878235, 0.03190947696566582, 0.0991971343755722, -0.0029538823291659355, -0.050647374242544174, 0.02956530638039112, 0.009372210130095482, -0.2013937085866928, -0.01319604180753231, 0.0675167441368103, -0.054236408323049545, -0.05435962975025177, -0.014437868259847164, 0.05334457755088806, 0.06754522025585175, 0.04234619438648224, -0.016023751348257065, 0.04565921053290367, -0.006711839232593775, -0.06515373289585114, 0.013940050266683102, 0.0762585923075676, 0.011034324765205383, -0.06796728074550629, 0.08081473410129547, -0.1520315408706665, 0.02535005286335945, -0.028828423470258713, -0.018964571878314018, -0.021297648549079895, 0.015616382472217083, -0.05290491506457329, 0.08129262179136276, 0.10064391791820526, -0.025962432846426964, -0.021232180297374725, -0.03093661367893219, -0.026034556329250336, -0.01902741752564907, -0.09670277684926987, -0.08375988900661469, -0.16725456714630127, -0.13394948840141296, 0.0933324471116066, -0.003885282902047038, -0.17939069867134094, 0.04448962211608887, -0.1280125379562378, 0.05405338108539581, -0.1318703591823578, 0.11569131910800934, 0.04767961800098419, 0.016190053895115852, 0.006731382571160793, -0.002274257829412818, 0.049383744597435, 0.09472793340682983, -0.13126564025878906, -0.08942809700965881 ]
null
null
transformers
[bert-base-uncased](https://huggingface.co/bert-base-uncased) fine-tuned on the [QNLI](https://huggingface.co/datasets/glue) dataset for 2 epochs. The fine-tuning process was performed on 2x NVIDIA GeForce GTX 1080 Ti GPUs (11GB). The parameters are: ``` max_seq_length=512 per_device_train_batch_size=8 gradient_accumulation_steps=2 total train batch size (w. parallel, distributed & accumulation) = 32 learning_rate=3e-5 ``` ## Evaluation results eval_accuracy = 0.916895 ## More information The QNLI (Question-answering NLI) dataset is a Natural Language Inference dataset automatically derived from the Stanford Question Answering Dataset v1.1 (SQuAD). SQuAD v1.1 consists of question-paragraph pairs, where one of the sentences in the paragraph (drawn from Wikipedia) contains the answer to the corresponding question (written by an annotator). The dataset was converted into sentence pair classification by forming a pair between each question and each sentence in the corresponding context, and filtering out pairs with low lexical overlap between the question and the context sentence. The task is to determine whether the context sentence contains the answer to the question. This modified version of the original task removes the requirement that the model select the exact answer, but also removes the simplifying assumptions that the answer is always present in the input and that lexical overlap is a reliable cue. The QNLI dataset is part of GLEU benchmark. (source: https://paperswithcode.com/dataset/qnli)
{}
text-classification
Li/bert-base-uncased-qnli
[ "transformers", "pytorch", "safetensors", "bert", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #safetensors #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us
bert-base-uncased fine-tuned on the QNLI dataset for 2 epochs. The fine-tuning process was performed on 2x NVIDIA GeForce GTX 1080 Ti GPUs (11GB). The parameters are: ## Evaluation results eval_accuracy = 0.916895 ## More information The QNLI (Question-answering NLI) dataset is a Natural Language Inference dataset automatically derived from the Stanford Question Answering Dataset v1.1 (SQuAD). SQuAD v1.1 consists of question-paragraph pairs, where one of the sentences in the paragraph (drawn from Wikipedia) contains the answer to the corresponding question (written by an annotator). The dataset was converted into sentence pair classification by forming a pair between each question and each sentence in the corresponding context, and filtering out pairs with low lexical overlap between the question and the context sentence. The task is to determine whether the context sentence contains the answer to the question. This modified version of the original task removes the requirement that the model select the exact answer, but also removes the simplifying assumptions that the answer is always present in the input and that lexical overlap is a reliable cue. The QNLI dataset is part of GLEU benchmark. (source: URL
[ "## Evaluation results\n\neval_accuracy = 0.916895", "## More information\n\nThe QNLI (Question-answering NLI) dataset is a Natural Language Inference dataset automatically derived from the Stanford Question Answering Dataset v1.1 (SQuAD). SQuAD v1.1 consists of question-paragraph pairs, where one of the sentences in the paragraph (drawn from Wikipedia) contains the answer to the corresponding question (written by an annotator). The dataset was converted into sentence pair classification by forming a pair between each question and each sentence in the corresponding context, and filtering out pairs with low lexical overlap between the question and the context sentence. The task is to determine whether the context sentence contains the answer to the question. This modified version of the original task removes the requirement that the model select the exact answer, but also removes the simplifying assumptions that the answer is always present in the input and that lexical overlap is a reliable cue. The QNLI dataset is part of GLEU benchmark.\n\n(source: URL" ]
[ "TAGS\n#transformers #pytorch #safetensors #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n", "## Evaluation results\n\neval_accuracy = 0.916895", "## More information\n\nThe QNLI (Question-answering NLI) dataset is a Natural Language Inference dataset automatically derived from the Stanford Question Answering Dataset v1.1 (SQuAD). SQuAD v1.1 consists of question-paragraph pairs, where one of the sentences in the paragraph (drawn from Wikipedia) contains the answer to the corresponding question (written by an annotator). The dataset was converted into sentence pair classification by forming a pair between each question and each sentence in the corresponding context, and filtering out pairs with low lexical overlap between the question and the context sentence. The task is to determine whether the context sentence contains the answer to the question. This modified version of the original task removes the requirement that the model select the exact answer, but also removes the simplifying assumptions that the answer is always present in the input and that lexical overlap is a reliable cue. The QNLI dataset is part of GLEU benchmark.\n\n(source: URL" ]
[ 41, 15, 227 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n## Evaluation results\n\neval_accuracy = 0.916895## More information\n\nThe QNLI (Question-answering NLI) dataset is a Natural Language Inference dataset automatically derived from the Stanford Question Answering Dataset v1.1 (SQuAD). SQuAD v1.1 consists of question-paragraph pairs, where one of the sentences in the paragraph (drawn from Wikipedia) contains the answer to the corresponding question (written by an annotator). The dataset was converted into sentence pair classification by forming a pair between each question and each sentence in the corresponding context, and filtering out pairs with low lexical overlap between the question and the context sentence. The task is to determine whether the context sentence contains the answer to the question. This modified version of the original task removes the requirement that the model select the exact answer, but also removes the simplifying assumptions that the answer is always present in the input and that lexical overlap is a reliable cue. The QNLI dataset is part of GLEU benchmark.\n\n(source: URL" ]
[ -0.03631213307380676, 0.11423022300004959, -0.0005694185383617878, 0.04736654460430145, 0.05645956099033356, 0.06505417078733444, 0.0038335572462528944, 0.10149305313825607, -0.02583640068769455, 0.08176219463348389, 0.015771184116601944, 0.11914467811584473, 0.0461374968290329, 0.016231544315814972, -0.024770604446530342, -0.10683401674032211, 0.11565230786800385, 0.04376142472028732, 0.03200693801045418, 0.07642440497875214, 0.04571147635579109, -0.11080474406480789, 0.025014543905854225, -0.01505957916378975, 0.02937588095664978, 0.000952518021222204, 0.06121204420924187, -0.0071886200457811356, 0.13111421465873718, 0.12986837327480316, 0.044114191085100174, 0.10251057893037796, -0.023516496643424034, -0.19938725233078003, 0.015407347120344639, 0.042943548411130905, -0.030886612832546234, 0.025727011263370514, -0.03518286719918251, 0.06541386991739273, -0.008476235903799534, 0.023413415998220444, 0.020019009709358215, 0.051902636885643005, -0.09470371156930923, -0.07410189509391785, -0.16173586249351501, 0.02574082463979721, 0.1035035252571106, 0.12420744448900223, -0.04946728050708771, 0.18199461698532104, -0.08745460212230682, 0.04779151454567909, 0.11131182312965393, -0.22891777753829956, 0.031996943056583405, 0.07187236845493317, -0.012663887813687325, 0.0460527166724205, -0.03934368118643761, 0.07994487881660461, -0.018912527710199356, 0.010114227421581745, -0.0047851144336164, -0.11056704074144363, -0.14631856977939606, 0.0032136207446455956, -0.09504124522209167, -0.027402600273489952, 0.1780427247285843, 0.013545496389269829, -0.056649889796972275, -0.0249482374638319, -0.07849624752998352, 0.08015912771224976, -0.018629685044288635, -0.05953812599182129, -0.015262661501765251, 0.020374737679958344, -0.009241679683327675, -0.2064862996339798, -0.06297396868467331, -0.08988690376281738, -0.10658340901136398, 0.07121334969997406, 0.06032460927963257, 0.03477087244391441, -0.07160136103630066, 0.10291680693626404, -0.06013790890574455, -0.02842983603477478, -0.10418549925088882, -0.05099344253540039, -0.07731790095567703, 0.016181526705622673, -0.07357823103666306, -0.16908669471740723, -0.012985690496861935, 0.15284967422485352, -0.04558853432536125, 0.005840454250574112, -0.0790647491812706, 0.050532255321741104, 0.03646114096045494, 0.2887814939022064, -0.07202818989753723, -0.07484938204288483, 0.10027998685836792, 0.06375423073768616, 0.06169325113296509, -0.06943311542272568, -0.039090320467948914, -0.06896264106035233, 0.04935228452086449, 0.14779764413833618, 0.08686043322086334, 0.09516852349042892, -0.008970010094344616, -0.061458785086870193, 0.024202479049563408, -0.11385875195264816, -0.030568186193704605, -0.03702768310904503, -0.020157627761363983, -0.03880292549729347, 0.07660731673240662, -0.009934931062161922, -0.10343106091022491, -0.03300747275352478, -0.10812857747077942, -0.05486318841576576, -0.029378466308116913, -0.09265202283859253, -0.011249787174165249, -0.12394706159830093, -0.048995740711688995, -0.04696626588702202, -0.20253294706344604, -0.04621196165680885, -0.03888724744319916, 0.041138291358947754, -0.03421259671449661, -0.044652488082647324, 0.0827958732843399, -0.11381486803293228, -0.020924590528011322, -0.06639416515827179, -0.009441668167710304, 0.05924830213189125, -0.06102818250656128, 0.0039888895116746426, -0.20795074105262756, 0.0678333044052124, -0.11740247160196304, 0.04090819135308266, -0.11760205775499344, 0.09804844856262207, -0.06553426384925842, -0.05712316557765007, -0.04487299546599388, -0.0675368458032608, -0.0026902644895017147, 0.005953281186521053, -0.017967142164707184, 0.09323503077030182, -0.11784622073173523, -0.045077476650476456, 0.12142559885978699, -0.15905387699604034, -0.0623459555208683, 0.0633445680141449, -0.05598893389105797, 0.08846085518598557, 0.1458684802055359, 0.1396428942680359, 0.13658827543258667, 0.031774476170539856, -0.1443130075931549, -0.0163887906819582, -0.017414666712284088, 0.1189873069524765, 0.0031334932427853346, -0.019447989761829376, -0.07140713930130005, 0.05714588612318039, -0.1391647458076477, -0.024985305964946747, 0.003231216222047806, -0.10293206572532654, -0.010431142523884773, -0.031332552433013916, 0.003868082305416465, -0.04734637215733528, 0.025165395811200142, 0.11059728264808655, -0.054935261607170105, 0.0069822147488594055, 0.10567646473646164, -0.09841415286064148, 0.08565187454223633, -0.06599711626768112, 0.0867605209350586, -0.03689968213438988, 0.05829234421253204, -0.18929791450500488, -0.1680402159690857, 0.04914625361561775, -0.032604627311229706, 0.019472243264317513, 0.03202344477176666, -0.05130188539624214, -0.019802957773208618, -0.07214084267616272, -0.0012407159665599465, -0.13209396600723267, -0.04244014993309975, -0.0820668488740921, -0.02916434407234192, -0.06655364483594894, -0.0016114087775349617, 0.024394752457737923, -0.03014734759926796, 0.018231960013508797, -0.07370208203792572, -0.047675881534814835, 0.03600031137466431, -0.002754800720140338, -0.008879519067704678, 0.04314703494310379, -0.04550711810588837, -0.012566712684929371, -0.015248383395373821, -0.006224719807505608, -0.11972799897193909, 0.13434404134750366, -0.16548822820186615, -0.12412372976541519, 0.05490254983305931, -0.007083069998770952, 0.015327472239732742, 0.031295087188482285, -0.0627913698554039, 0.01513872854411602, -0.0485905259847641, -0.03072824701666832, 0.10883744806051254, 0.05339745059609413, 0.062482528388500214, -0.09960594773292542, -0.00397066492587328, -0.06258775293827057, 0.05382363498210907, -0.03328899294137955, -0.032334811985492706, 0.13360978662967682, -0.12563556432724, 0.04169059544801712, 0.004281976725906134, 0.015738362446427345, 0.13411042094230652, -0.002664664527401328, -0.07752013951539993, -0.04414476454257965, -0.03932804986834526, -0.03448263183236122, 0.12546736001968384, 0.002303928602486849, 0.07854031026363373, 0.08337520807981491, 0.04083140194416046, 0.07008305937051773, -0.06858724355697632, 0.00613163597881794, 0.026268724352121353, -0.05795718729496002, -0.11957167088985443, -0.014697987586259842, 0.043586622923612595, 0.0955510213971138, -0.01605149917304516, 0.11540751904249191, -0.03137696534395218, 0.011260878294706345, -0.07811930775642395, 0.18367788195610046, -0.07940283417701721, -0.33620670437812805, -0.13853026926517487, 0.07604047656059265, -0.13274715840816498, 0.021497108042240143, 0.04184205085039139, -0.00773946288973093, -0.0801226794719696, -0.09682125598192215, 0.15838930010795593, -0.007324660196900368, -0.03489910438656807, -0.09259360283613205, -0.01705445535480976, -0.034754227846860886, -0.13022500276565552, 0.010288177989423275, -0.08415292203426361, -0.13255514204502106, 0.0003076170978602022, -0.06878989934921265, 0.09854772686958313, 0.050643522292375565, -0.019978037104010582, -0.016813745722174644, -0.06758832931518555, 0.20778076350688934, -0.06574144959449768, 0.07532355189323425, 0.10085918754339218, -0.023513874039053917, 0.00967536773532629, 0.06875275820493698, -0.06838811933994293, -0.07326643913984299, -0.00811888836324215, 0.15444669127464294, -0.03384390473365784, -0.21183253824710846, -0.07295376062393188, -0.01230048667639494, 0.01188192144036293, -0.012059512548148632, 0.04521701857447624, 0.0864846259355545, 0.06904523819684982, -0.1137198880314827, 0.035229455679655075, -0.05080252140760422, 0.01198817789554596, 0.15517404675483704, -0.09197404235601425, 0.13178883492946625, -0.04662613570690155, -0.010070491582155228, 0.11243072897195816, 0.0889735072851181, 0.28516528010368347, -0.047879938036203384, 0.0711958110332489, 0.08473402261734009, 0.13826300203800201, -0.01057402603328228, 0.09028561413288116, -0.04290258139371872, 0.02747410349547863, -0.028030361980199814, -0.04251039773225784, -0.007209104020148516, 0.016620242968201637, 0.06703527271747589, -0.027516894042491913, -0.07238854467868805, 0.05522162467241287, 0.09061965346336365, 0.20833608508110046, -0.037078458815813065, -0.06403901427984238, -0.062057070434093475, 0.024723168462514877, 0.03429597243666649, -0.05990803241729736, 0.02788245677947998, 0.07565268129110336, -0.028676463291049004, -0.00021739510702900589, -0.023170147091150284, 0.08495502918958664, -0.0712672621011734, 0.04418347775936127, -0.06814947724342346, -0.121256984770298, -0.01886262185871601, 0.11504064500331879, -0.17593106627464294, 0.13548001646995544, 0.07768009603023529, 0.0033982342574745417, -0.040224943310022354, -0.03860726207494736, 0.00026392543804831803, 0.12101855874061584, 0.18323878943920135, 0.015480552799999714, -0.06876193732023239, -0.11957767605781555, -0.09161731600761414, 0.1353386491537094, 0.0680336207151413, -0.03934929147362709, 0.1322120875120163, -0.05691054090857506, 0.06449609249830246, 0.02128719538450241, 0.10122343897819519, -0.0336679108440876, -0.20079095661640167, 0.03935116156935692, 0.08147112280130386, 0.020332621410489082, -0.040455516427755356, -0.013060014694929123, 0.12664265930652618, 0.21925872564315796, -0.062121085822582245, -0.038410648703575134, -0.11947751045227051, 0.05479591339826584, 0.13166269659996033, -0.1162719875574112, 0.027446795254945755, -0.012040595524013042, 0.01044029276818037, -0.06287986040115356, -0.16072291135787964, 0.012759297154843807, -0.02892661839723587, -0.08885715156793594, 0.00841932836920023, 0.07054881006479263, 0.02912021614611149, 0.0536947064101696, 0.05177263915538788, -0.041198983788490295, -0.0014485969441011548, -0.15457160770893097, -0.06039587780833244, 0.07896962761878967, 0.03321297466754913, 0.0796317532658577, -0.18710286915302277, -0.027214838191866875, -0.10182362049818039, 0.06285225600004196, 0.19384469091892242, 0.13818413019180298, -0.07585997879505157, 0.12255949527025223, 0.15549564361572266, -0.08786927163600922, -0.2474517822265625, -0.029995964840054512, -0.0793580710887909, -0.02346234954893589, 0.08903666585683823, -0.19085747003555298, -0.002551495097577572, 0.0692322626709938, -0.016710512340068817, 0.022224120795726776, -0.1724979281425476, -0.08458437025547028, 0.12434114515781403, 0.07475421577692032, 0.28452253341674805, -0.0649283304810524, 0.0010975284967571497, 0.0096436757594347, -0.06864932924509048, 0.16141310334205627, -0.005551174283027649, 0.1521235555410385, -0.02941911108791828, 0.020770613104104996, 0.05998454988002777, -0.02323661558330059, 0.08287037163972855, -0.022124676033854485, 0.11056610941886902, 0.010851016268134117, -0.10732772946357727, 0.161557137966156, -0.04618130624294281, 0.12857846915721893, 0.04304230585694313, 0.13935592770576477, -0.016183683648705482, -0.07633248716592789, -0.10578123480081558, 0.04886816442012787, -0.059806738048791885, -0.059769339859485626, -0.0837327241897583, 0.0620780847966671, 0.09511347860097885, 0.021485313773155212, 0.09471043199300766, -0.0350482352077961, 0.03318716958165169, 0.02964339591562748, 0.017787380144000053, -0.012566238641738892, -0.05845075100660324, 0.02121528424322605, -0.026115886867046356, 0.1332463026046753, 0.024752309545874596, 0.13408243656158447, 0.07713989913463593, 0.026561494916677475, 0.09685737639665604, 0.05113397538661957, -0.053738340735435486, 0.017202826216816902, 0.010528873652219772, -0.18262328207492828, -0.20737120509147644, -0.03522166237235069, -0.09801077097654343, -0.08439179509878159, 0.025891967117786407, 0.1535337120294571, 0.04771075025200844, -0.043504565954208374, -0.009047584608197212, 0.03809143602848053, 0.033705465495586395, 0.08430130779743195, 0.014469302259385586, -0.0049735610373318195, -0.08912667632102966, 0.11407674849033356, 0.0980546846985817, -0.12894409894943237, 0.0689411610364914, -0.0906141996383667, -0.08623530715703964, -0.06220967322587967, -0.10369469225406647, 0.012611668556928635, -0.1346767097711563, -0.04822254180908203, -0.13488592207431793, -0.055680301040410995, 0.004921209067106247, 0.12193349003791809, -0.0326816588640213, 0.1660252809524536, -0.02843390591442585, -0.0358402356505394, -0.03673694282770157, 0.06779719889163971, -0.10600318759679794, 0.021029572933912277, -0.02161289192736149, 0.030209677293896675, 0.013517762534320354, 0.13558486104011536, -0.05424007400870323, -0.03987069055438042, -0.07362890988588333, -0.011842784471809864, -0.10202883183956146, -0.015248662792146206, 0.004477047361433506, -0.03496162220835686, -0.04036774858832359, -0.015703320503234863, -0.036801423877477646, 0.0430174320936203, -0.0619979090988636, -0.04105892777442932, -0.06517626345157623, -0.012827970087528229, -0.1564207673072815, 0.016144223511219025, 0.01772012561559677, -0.011084498837590218, 0.11795563250780106, 0.04899563640356064, 0.0028357559349387884, 0.11113373190164566, -0.03177950531244278, -0.03399396687746048, -0.04941217228770256, 0.062206242233514786, 0.0021031186915934086, -0.06160200387239456, 0.014336854219436646, 0.00643858453258872, -0.035293277353048325, 0.0064135026186704636, -0.03351064771413803, -0.11929889768362045, 0.05381087213754654, -0.00137028016615659, -0.023223625496029854, 0.002530320081859827, 0.022800851613283157, -0.0394856296479702, 0.015490510500967503, 0.09382304549217224, -0.0019910624250769615, 0.004386475309729576, -0.1837269365787506, -0.005004258826375008, 0.004906786605715752, 0.014868193306028843, -0.07080630213022232, -0.11142953485250473, -0.006683059968054295, 0.001043071853928268, 0.20092454552650452, -0.04635374993085861, 0.07480364292860031, 0.008614088408648968, 0.04639774560928345, 0.026271650567650795, -0.06477774679660797, 0.16802607476711273, 0.02384515292942524, -0.05832214653491974, 0.06529626995325089, 0.04211880639195442, -0.03185918927192688, 0.08410385251045227, 0.19026271998882294, 0.018757551908493042, 0.14573834836483002, 0.0487343966960907, 0.0386456660926342, -0.016216693446040154, -0.025430968031287193, -0.06434253603219986, -0.03076099045574665, -0.013744843192398548, 0.04320435971021652, 0.021942414343357086, 0.11679956316947937, -0.10321531444787979, 0.17286986112594604, 0.11386840790510178, -0.0699206069111824, -0.16284018754959106, -0.11910249292850494, -0.08946147561073303, -0.03556302189826965, -0.013286985456943512, -0.16460829973220825, -0.024005163460969925, 0.0405399464070797, -0.01575208455324173, -0.08453164994716644, 0.14220020174980164, -0.13898175954818726, -0.10495718568563461, 0.008774898946285248, 0.019084753468632698, -0.04569726437330246, 0.02903500199317932, 0.05073709785938263, 0.09871863573789597, 0.04805156588554382, 0.06850218772888184, 0.05230594053864479, 0.07738108932971954, 0.06924894452095032, -0.06303928792476654, -0.008128057233989239, -0.055002763867378235, -0.0013439180329442024, 0.0748656615614891, 0.1650276482105255, -0.013497897423803806, -0.023210324347019196, 0.015200800262391567, 0.2571626901626587, -0.012476152740418911, -0.025843476876616478, -0.1323571503162384, 0.25144895911216736, 0.1303153783082962, -0.015326702035963535, 0.027040256187319756, -0.09820422530174255, 0.05147228389978409, 0.1953841894865036, 0.10484084486961365, -0.012410840950906277, -0.0032487765420228243, -0.010912119410932064, 0.030178295448422432, 0.0325680635869503, 0.051157932728528976, 0.06572125852108002, 0.19684191048145294, -0.02458808571100235, -0.037689872086048126, -0.03216858208179474, 0.03046318143606186, 0.033821456134319305, 0.18376889824867249, 0.03959018737077713, -0.002565452130511403, -0.09522943943738937, -0.0036615622229874134, -0.04017605260014534, -0.09346291422843933, -0.02624746784567833, -0.14506188035011292, -0.0736624002456665, -0.03597676008939743, -0.009684556163847446, -0.09009185433387756, 0.03820677846670151, 0.007676646113395691, -0.024597810581326485, 0.17415043711662292, -0.013875347562134266, -0.14974650740623474, -0.10432663559913635, 0.13951684534549713, 0.07020597904920578, 0.1621895581483841, 0.03156109154224396, -0.09075617045164108, 0.02770027332007885, -0.04790303483605385, -0.026758454740047455, 0.17844454944133759, -0.0017704806523397565, -0.06499216705560684, -0.008446753025054932, 0.0784081220626831, 0.03134124353528023, 0.12078730016946793, 0.03299514576792717, -0.002232258440926671, 0.06561914831399918, -0.1029263287782669, -0.13957852125167847, -0.07819265872240067, 0.03044719249010086, -0.06890071928501129, 0.13264203071594238, 0.14932137727737427, 0.012941692024469376, 0.033635709434747696, -0.1093977689743042, 0.04334447905421257, 0.00874300953000784, 0.09261573851108551, -0.03212914615869522, -0.05780678987503052, 0.0863242894411087, -0.015581275336444378, -0.04131516441702843, -0.28454363346099854, -0.0022757318802177906, 0.039130475372076035, -0.05967003107070923, 0.04327569156885147, 0.13106027245521545, 0.02296844869852066, 0.01972290873527527, -0.029532011598348618, -0.18471764028072357, 0.07058665156364441, 0.03152742236852646, -0.09809993207454681, -0.10192099213600159 ]
null
null
transformers
[roberta-base](https://huggingface.co/roberta-base) fine-tuned on the [SQuAD2](https://rajpurkar.github.io/SQuAD-explorer) dataset for 2 epochs. The fine-tuning process was performed on a single NVIDIA Tesla T4 GPU (15GB). The hyperparameters are: ``` max_seq_length=512 per_device_train_batch_size=8 gradient_accumulation_steps=4 total train batch size (w. parallel, distributed & accumulation) = 32 learning_rate=3e-5 ``` ## Evaluation results ``` "eval_exact": 80.33352985766024, "eval_f1": 83.38322909593009, "eval_HasAns_exact": 77.81713900134953, "eval_HasAns_f1": 83.925283241562, "eval_HasAns_total": 5928, "eval_NoAns_exact": 82.84272497897393, "eval_NoAns_f1": 82.84272497897393, "eval_NoAns_total": 5945, "eval_best_exact": 80.33352985766024, "eval_best_exact_thresh": 0.0, "eval_best_f1": 83.38322909593005, "eval_best_f1_thresh": 0.0, "eval_samples": 11955, "eval_total": 11873, ``` ## More information Stanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable. SQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering. (https://rajpurkar.github.io/SQuAD-explorer/)
{}
question-answering
Li/roberta-base-squad2
[ "transformers", "pytorch", "safetensors", "roberta", "question-answering", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #safetensors #roberta #question-answering #endpoints_compatible #region-us
roberta-base fine-tuned on the SQuAD2 dataset for 2 epochs. The fine-tuning process was performed on a single NVIDIA Tesla T4 GPU (15GB). The hyperparameters are: ## Evaluation results ## More information Stanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable. SQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering. (URL
[ "## Evaluation results", "## More information\n\nStanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable.\n\nSQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering. (URL" ]
[ "TAGS\n#transformers #pytorch #safetensors #roberta #question-answering #endpoints_compatible #region-us \n", "## Evaluation results", "## More information\n\nStanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable.\n\nSQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering. (URL" ]
[ 35, 4, 150 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #roberta #question-answering #endpoints_compatible #region-us \n## Evaluation results## More information\n\nStanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable.\n\nSQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering. (URL" ]
[ -0.052366890013217926, 0.07767724990844727, -0.005949599668383598, 0.049820028245449066, 0.10430055111646652, 0.02203257568180561, 0.07517682760953903, 0.05543781444430351, 0.07505118101835251, 0.0704798772931099, 0.11662178486585617, 0.06206606328487396, -0.026799330487847328, 0.021347355097532272, -0.10381177812814713, -0.08091022819280624, 0.0024198286700993776, -0.013121020048856735, 0.04162319377064705, 0.10155317187309265, 0.03185347095131874, -0.11216434836387634, 0.008166923187673092, -0.07769885659217834, 0.02692386321723461, -0.04092656075954437, 0.04316004365682602, -0.06094735860824585, 0.0999789610505104, 0.029686234891414642, 0.11571941524744034, 0.0782126858830452, -0.0384485125541687, -0.12655296921730042, 0.04777116701006889, -0.012894660234451294, 0.023597288876771927, 0.03568064048886299, -0.028236888349056244, -0.013826974667608738, -0.09348969906568527, -0.0311206616461277, -0.013346949592232704, 0.021309543401002884, -0.10181622952222824, -0.15227022767066956, -0.06615588814020157, 0.027644358575344086, 0.07799330353736877, 0.0634835809469223, -0.03963210806250572, 0.14244893193244934, -0.07212827354669571, 0.07291846722364426, 0.18822799623012543, -0.28759056329727173, -0.044137850403785706, 0.011354201473295689, -0.0057010347954928875, 0.08475171029567719, -0.09615294635295868, 0.05273681506514549, -0.008006061427295208, 0.02921236678957939, -0.016355978325009346, -0.08936673402786255, -0.15238633751869202, -0.012161369435489178, -0.06431209295988083, 0.007709631696343422, 0.23513413965702057, 0.0055524124763906, -0.04431502893567085, -0.1117158979177475, -0.05249495431780815, 0.2352912575006485, 0.0031608669087290764, -0.07555819302797318, -0.02227557823061943, 0.02479144185781479, -0.16581273078918457, -0.03578011319041252, -0.0990462526679039, -0.08469070494174957, -0.16497009992599487, 0.10172535479068756, 0.0073431916534900665, 0.08113186806440353, -0.13939277827739716, 0.05497249588370323, 0.032928090542554855, -0.07182017713785172, -0.06087736412882805, -0.06252126395702362, -0.05886632204055786, 0.014339088462293148, -0.05964874103665352, -0.049268610775470734, 0.14759096503257751, 0.15860870480537415, -0.040764182806015015, 0.012271341867744923, 0.036127712577581406, 0.055833667516708374, 0.09791688621044159, 0.05436199903488159, -0.05947248637676239, -0.11067423969507217, 0.061881132423877716, -0.04195500910282135, 0.08499046415090561, -0.030960600823163986, -0.013753430917859077, -0.06260590255260468, 0.11694815009832382, 0.05976124480366707, 0.12792548537254333, 0.04598937928676605, -0.05128181725740433, 0.04010012373328209, -0.10804939270019531, -0.006084505468606949, -0.03343302756547928, 0.02881677635014057, -0.05010385066270828, 0.06499098986387253, -0.011676439084112644, 0.030168263241648674, -0.03120143711566925, 0.0579146072268486, -0.03683212772011757, -0.05177482217550278, 0.016374263912439346, -0.03248748183250427, 0.0602368488907814, -0.0551682747900486, 0.012479977682232857, -0.12061870098114014, -0.173508882522583, -0.03690637648105621, -0.004478571470826864, -0.019086796790361404, 0.0396660715341568, -0.007055195514112711, 0.04786184802651405, -0.042524419724941254, -0.06202378869056702, 0.023021996021270752, -0.012804507277905941, 0.11584992706775665, 0.02567015215754509, 0.11746251583099365, -0.10277445614337921, 0.0035811683628708124, -0.10904338955879211, 0.0257364884018898, -0.018237335607409477, 0.05287832394242287, -0.019896801561117172, 0.04556255415081978, -0.024830397218465805, -0.03886541724205017, -0.048457179218530655, -0.01962704211473465, 0.0966353639960289, 0.19117729365825653, -0.010612325742840767, 0.044193390756845474, 0.12665463984012604, -0.09356250613927841, -0.19640856981277466, 0.18674759566783905, -0.028121549636125565, 0.07837248593568802, 0.1031658947467804, 0.15323752164840698, 0.020558254793286324, -0.07043297588825226, -0.08490251749753952, 0.06266771256923676, -0.11602647602558136, 0.020570755004882812, 0.020158469676971436, 0.05926642566919327, -0.003038802184164524, 0.05886073410511017, 0.006224116310477257, -0.04866242781281471, -0.07432689517736435, -0.08651477843523026, -0.05070473626255989, -0.03850116953253746, -0.0021612371783703566, 0.05014419928193092, 0.03248428925871849, -0.038996677845716476, 0.004721644334495068, -0.1110539585351944, -0.029833221808075905, -0.02817254140973091, 0.04432572424411774, -0.08070391416549683, 0.1700015664100647, -0.054457250982522964, 0.031116575002670288, -0.1919270157814026, -0.1427941918373108, -0.049994174391031265, 0.2158650904893875, -0.05274973809719086, 0.10660748928785324, 0.030212361365556717, -0.05122751370072365, -0.04237012192606926, 0.022145070135593414, 0.10219887644052505, -0.0411069318652153, -0.11340145021677017, -0.02277963235974312, 0.03483867272734642, -0.053493089973926544, 0.050530992448329926, -0.033931437879800797, -0.013314235024154186, 0.008464392274618149, -0.023814985528588295, 0.00367018417455256, 0.006687866058200598, 0.04722262918949127, 0.01127309538424015, -0.017728395760059357, 0.02867528423666954, 0.11472374945878983, 0.035971030592918396, -0.16437643766403198, -0.039069902151823044, -0.021068401634693146, 0.09435784816741943, 0.07580655068159103, -0.11976078152656555, -0.06658892333507538, -0.034632500261068344, -0.03665323182940483, -0.01892673410475254, -0.1107017993927002, 0.001364248339086771, 0.11622481048107147, 0.059967685490846634, 0.02523033320903778, -0.05309266224503517, 0.011249285191297531, 0.017481384798884392, -0.08661042898893356, 0.04770958796143532, 0.0907566100358963, -0.08306264132261276, -0.13618606328964233, 0.054483115673065186, 0.049913160502910614, -0.053544919937849045, 0.048051707446575165, -0.016916560009121895, -0.0363612100481987, -0.04505215585231781, 0.08302877098321915, -0.007977667264640331, 0.04598848149180412, -0.053277648985385895, 0.012260260060429573, 0.06458836793899536, 0.018945110961794853, 0.003444539150223136, -0.11161322146654129, -0.022426538169384003, -0.07740692794322968, -0.035711124539375305, -0.14327573776245117, 0.07553083449602127, -0.012389135546982288, 0.10532408952713013, 0.05424921214580536, 0.06575413048267365, 0.03950600326061249, -0.05090790241956711, -0.07575365155935287, 0.14132797718048096, 0.03799201920628548, -0.22961777448654175, -0.02424115315079689, 0.05181464925408363, 0.01801707036793232, 0.012607971206307411, 0.070986308157444, 0.011636975221335888, -0.0019414060516282916, -0.021714704111218452, -0.023883920162916183, 0.03586166352033615, -0.02765665389597416, -0.03115798346698284, 0.0240725539624691, -0.036848001182079315, -0.05332956090569496, -0.002095023635774851, -0.11160777509212494, -0.11406271904706955, 0.13322073221206665, -0.08418932557106018, 0.13041232526302338, -0.024640927091240883, 0.01263421680778265, -0.025548430159687996, -0.04925549030303955, 0.19160038232803345, -0.04049842059612274, 0.029659103602170944, 0.09572228789329529, -0.03860693797469139, 0.07066184282302856, 0.09205379337072372, -0.02578883059322834, -0.0631384626030922, 0.08715755492448807, 0.013280780054628849, -0.09884350746870041, -0.1964670717716217, 0.010845410637557507, -0.041530199348926544, 0.0420183502137661, -0.03656129166483879, -0.018967170268297195, -0.10566309094429016, 0.1328393965959549, 0.002641290193423629, -0.050599467009305954, -0.03516627848148346, 0.05456119775772095, 0.14687083661556244, 0.008336682803928852, 0.13450486958026886, -0.07174501568078995, -0.047621700912714005, 0.0728127658367157, 0.0682906061410904, 0.3095908463001251, -0.0919715166091919, -0.004510305821895599, 0.08392176032066345, 0.15099120140075684, 0.022806746885180473, 0.06813027709722519, -0.06115102395415306, -0.006961280945688486, -0.07171373069286346, 0.006489746738225222, -0.10521376132965088, 0.015194904059171677, 0.024572748690843582, -0.03775133937597275, -0.06303221732378006, 0.07310710847377777, 0.08984120190143585, 0.2574094831943512, 0.07372229546308517, -0.032675087451934814, -0.09557419270277023, 0.10549315065145493, 0.026749812066555023, -0.02094283327460289, 0.08134955912828445, 0.1355532854795456, -0.13467156887054443, -0.008557811379432678, -0.001034436863847077, 0.12972193956375122, -0.07087261974811554, 0.023647215217351913, -0.20900370180606842, -0.11710275709629059, 0.002073222305625677, 0.0878196731209755, -0.22032283246517181, 0.12202731519937515, 0.011576884426176548, 0.061165522783994675, -0.05731106176972389, -0.0813155546784401, -0.008797445334494114, 0.021721942350268364, 0.1955243945121765, 0.017516376450657845, -0.045604441314935684, -0.034713394939899445, -0.06538688391447067, 0.11998532712459564, 0.02647695131599903, 0.04575781151652336, 0.05464910715818405, -0.008504078723490238, 0.027580907568335533, 0.000639502250123769, 0.07328948378562927, -0.006016962230205536, -0.07324680685997009, -0.031840354204177856, 0.10669649392366409, -0.006748211570084095, -0.01973450370132923, -0.030058693140745163, 0.008183694444596767, 0.12385867536067963, -0.14781834185123444, -0.11459242552518845, -0.07452571392059326, 0.06295228004455566, 0.005921817384660244, -0.0851445347070694, -0.03360876441001892, -0.049747221171855927, -0.07853411883115768, 0.03287799283862114, -0.049687061458826065, 0.05811208859086037, -0.07863126695156097, -0.11822055280208588, -0.07274745404720306, 0.03892618790268898, -0.00031801205477677286, 0.021814608946442604, 0.051856230944395065, 0.013938679359853268, -0.08062951266765594, -0.14844541251659393, 0.03196822106838226, -0.06357275694608688, 0.12285041809082031, 0.05627821013331413, -0.04033651575446129, -0.07548616081476212, -0.010462699458003044, -0.019507167860865593, 0.22750787436962128, 0.10752364248037338, -0.0872083380818367, 0.08448252081871033, 0.31877708435058594, -0.025974879041314125, -0.2831082046031952, -0.08217185735702515, -0.022315673530101776, -0.03326130658388138, 0.013405933976173401, -0.06492078304290771, 0.1452234536409378, 0.06668217480182648, -0.01784200221300125, -0.020933758467435837, -0.06817112118005753, -0.04871261864900589, 0.0878564789891243, 0.07429233938455582, 0.5267441868782043, -0.20424215495586395, -0.06361166387796402, -0.011049269698560238, -0.1802251935005188, 0.12391877174377441, -0.1420879364013672, 0.10307779908180237, -0.04219559207558632, 0.0815349668264389, 0.008963045664131641, -0.08499102294445038, 0.07390348613262177, 0.020156869664788246, 0.03974025696516037, -0.040585149079561234, -0.11227481067180634, 0.11731662601232529, -0.011780309490859509, 0.08045049756765366, 0.01824626885354519, 0.10193859040737152, -0.020539239048957825, -0.02392597496509552, -0.07703232765197754, 0.03274495527148247, -0.03272159397602081, -0.05867454782128334, -0.037716154009103775, 0.056234609335660934, 0.03385397419333458, 0.012804756872355938, 0.15285801887512207, -0.08297356963157654, 0.12980185449123383, 0.02571721374988556, 0.14096355438232422, -0.014724766835570335, 0.015692219138145447, -0.04772072657942772, -0.08801352977752686, 0.07789469510316849, -0.08490540087223053, 0.08920284360647202, 0.12347433716058731, 0.06027867645025253, 0.031294550746679306, 0.08863948285579681, 0.01243686955422163, 0.13036352396011353, 0.043993767350912094, -0.19867508113384247, -0.1521180123090744, 0.03768213465809822, -0.07489778846502304, -0.0983889251947403, 0.12301646918058395, 0.12242589890956879, 0.044016145169734955, -0.0035619342233985662, -0.015040567144751549, 0.02351868711411953, 0.05028216913342476, 0.1085112988948822, 0.069650799036026, 0.03499196842312813, -0.047472771257162094, 0.02692103385925293, -0.004717924166470766, -0.03539692610502243, -0.0025497202295809984, -0.025453567504882812, -0.13514088094234467, -0.05823548138141632, -0.09541880339384079, 0.008787057362496853, 0.02373444102704525, -0.09165779501199722, -0.07507746666669846, -0.04152243956923485, -0.012427992187440395, 0.0350235290825367, 0.06529183685779572, 0.06844776123762131, 0.024427268654108047, -0.03123268112540245, 0.0009201571228913963, 0.05756453052163124, 0.039819907397031784, -0.03235817700624466, -0.01549130491912365, -0.08320928364992142, -0.017954571172595024, 0.08345573395490646, -0.07703720033168793, -0.09754485636949539, -0.18985378742218018, 0.0721246749162674, -0.2348979413509369, 0.057040031999349594, -0.09091629087924957, -0.019529227167367935, -0.03109896369278431, -0.09769559651613235, -0.06872005760669708, 0.03703390061855316, 0.009308046661317348, 0.027316762134432793, 0.002246516291052103, -0.0023099964018911123, -0.16021613776683807, -0.06446041166782379, 0.06151561066508293, -0.021684523671865463, 0.12840935587882996, 0.08736243844032288, -0.11580520123243332, -0.03280491754412651, -0.1997426450252533, -0.04204167053103447, -0.02792021818459034, 0.038706496357917786, 0.013025444000959396, -0.05058905854821205, -0.010226234793663025, 0.049467023462057114, 0.10048507153987885, 0.0959157943725586, 0.1337870955467224, -0.09265173971652985, 0.10206487029790878, -0.04533858969807625, -0.09914156049489975, -0.09375941008329391, -0.04864835739135742, 0.06476796418428421, 0.12156732380390167, 0.18955154716968536, -0.05230250209569931, 0.06119849160313606, -0.09098391979932785, 0.025571275502443314, 0.049754127860069275, -0.04174201563000679, -0.01802193559706211, -0.04532226175069809, 0.021751362830400467, -0.014598372392356396, 0.1388363540172577, -0.10486339032649994, 0.06832491606473923, 0.009334050118923187, 0.10922862589359283, -0.0008713221759535372, -0.05847637355327606, 0.09146855771541595, 0.05303165689110756, -0.0790085420012474, -0.01499590277671814, 0.05248628184199333, -0.04912245273590088, -0.019950417801737785, 0.13581840693950653, 0.07116042822599411, 0.08836793154478073, 0.056300606578588486, -0.05476054921746254, 0.11061415076255798, 0.03883292153477669, 0.020208826288580894, -0.06973042339086533, -0.020208114758133888, 0.0030596666038036346, -0.0530792661011219, 0.11514729261398315, -0.04441022500395775, 0.031056618317961693, -0.09283526241779327, -0.04489225521683693, -0.12398626655340195, -0.049585096538066864, -0.09495537728071213, 0.0021385829895734787, 0.054109420627355576, -0.09389941394329071, -0.09755723178386688, 0.05552635341882706, 0.05477382615208626, -0.05562803894281387, 0.015125973150134087, 0.0128469942137599, -0.013689401559531689, 0.05807602405548096, -0.006727821659296751, 0.02429458312690258, 0.08431192487478256, 0.019650503993034363, 0.006333005614578724, 0.06557884812355042, 0.02925156243145466, 0.072663314640522, -0.005872418638318777, -0.007669528946280479, -0.10648823529481888, -0.06567347049713135, -0.08987012505531311, 0.06401566416025162, 0.008145371451973915, 0.10005182027816772, 0.040382541716098785, 0.007104136981070042, 0.04955300688743591, 0.2546694576740265, -0.06016296520829201, -0.09278903156518936, -0.1333117038011551, 0.13011030852794647, -0.05596201866865158, -0.002592150354757905, 0.02663111686706543, -0.08453486114740372, 0.054897572845220566, 0.26246729493141174, 0.0929984375834465, -0.12126980721950531, 0.00021141275647096336, 0.019011467695236206, 0.005431372672319412, 0.051611535251140594, 0.08156416565179825, 0.07728888094425201, 0.30983129143714905, -0.06333314627408981, -0.00488708633929491, -0.05025453120470047, -0.013775140978395939, -0.04787815734744072, 0.039979733526706696, -0.02552644908428192, 0.04274902492761612, -0.12319857627153397, 0.1109740138053894, -0.14779239892959595, -0.14725613594055176, -0.007225108332931995, -0.06455540657043457, -0.08518156409263611, 0.021890368312597275, 0.048558153212070465, -0.009055821225047112, 0.05199500545859337, -0.0061422777362167835, 0.10090766102075577, -0.004885748494416475, 0.013025863096117973, -0.03795406594872475, 0.09018169343471527, 0.07235300540924072, 0.019079383462667465, 0.06304727494716644, 0.018993185833096504, 0.1384914070367813, 0.08443930000066757, 0.0004701091966126114, -0.06747594475746155, 0.12712562084197998, 0.06141350418329239, -0.06179676949977875, -0.008721612393856049, 0.0075510041788220406, 0.013156859204173088, 0.00847720354795456, 0.13201898336410522, -0.017423920333385468, 0.03513288125395775, 0.0881461501121521, 0.0041526323184370995, -0.19168680906295776, 0.07487130165100098, -0.04280185326933861, 0.05760131776332855, 0.012376480735838413, -0.029650170356035233, -0.008787975646555424, -0.011894606053829193, 0.016906607896089554, -0.04576815292239189, -0.05402150750160217, -0.02933565340936184, -0.1165873110294342, 0.048310358077287674, 0.05557592213153839, -0.004974232986569405, -0.2159421294927597, -0.022783838212490082, 0.02882508933544159, -0.006208694539964199, 0.01796509139239788, 0.00975780375301838, 0.03248525783419609, -0.009928356856107712, -0.021901370957493782, -0.16872775554656982, -0.012409694492816925, 0.080816350877285, -0.03648317605257034, -0.11730501800775528 ]
null
null
transformers
At its core it uses an BERT-Base model (bert-base-uncased) fine-tuned on the MS MARCO passage classification task using the Sim-Pair marking strategy that highlights exact term matches between the query and the passage via marker tokens (#). It can be loaded using the TF/AutoModelForSequenceClassification classes. Refer to our [github repository](https://github.com/BOUALILILila/ExactMatchMarking) for a usage example for ad hoc ranking.
{}
text-classification
LilaBoualili/bert-sim-pair
[ "transformers", "pytorch", "tf", "jax", "bert", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us
At its core it uses an BERT-Base model (bert-base-uncased) fine-tuned on the MS MARCO passage classification task using the Sim-Pair marking strategy that highlights exact term matches between the query and the passage via marker tokens (#). It can be loaded using the TF/AutoModelForSequenceClassification classes. Refer to our github repository for a usage example for ad hoc ranking.
[]
[ "TAGS\n#transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 42 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.012978160753846169, 0.04332396760582924, -0.007450425531715155, 0.044066667556762695, 0.1801418662071228, 0.05004086345434189, 0.059478338807821274, 0.12274254858493805, 0.05964304506778717, -0.05366957560181618, 0.10698546469211578, 0.22510619461536407, -0.02612144872546196, 0.12622258067131042, -0.11148211359977722, -0.2926732897758484, 0.04022616520524025, 0.0599503368139267, -0.02070973813533783, 0.11176998913288116, 0.09400483965873718, -0.07132333517074585, 0.07971389591693878, -0.052247706800699234, -0.14493927359580994, 0.048297446221113205, 0.06485690921545029, -0.1320372074842453, 0.10253582894802094, 0.07230827212333679, 0.13067853450775146, 0.04038124531507492, -0.06553509831428528, -0.11954349279403687, 0.04402868077158928, 0.009812562726438046, -0.1006685122847557, 0.044682908803224564, 0.07672218978404999, -0.0955110415816307, 0.05344296619296074, 0.05509388446807861, 0.027068590745329857, 0.06204519420862198, -0.156533345580101, -0.10846411436796188, -0.005684448406100273, 0.056477781385183334, 0.04630635678768158, 0.04894021153450012, 0.005784159060567617, 0.16440050303936005, -0.11575605720281601, 0.14242811501026154, 0.10060048848390579, -0.30799728631973267, -0.031183307990431786, 0.08888045698404312, 0.022853029891848564, 0.06419042497873306, -0.05800650268793106, 0.04860955849289894, 0.03417554125189781, 0.012672146782279015, 0.027977267280220985, -0.08564790338277817, -0.14191274344921112, 0.030478736385703087, -0.08324426412582397, -0.0342007540166378, 0.22438456118106842, -0.03630218654870987, 0.0543396882712841, 0.0005461968830786645, -0.0894731655716896, -0.04061136394739151, -0.023548424243927002, -0.01077257003635168, -0.04773872345685959, 0.06389988213777542, 0.03180829808115959, -0.008789614774286747, -0.10023970901966095, 0.025575876235961914, -0.21298693120479584, 0.19406548142433167, 0.010625844821333885, 0.050813011825084686, -0.18822035193443298, 0.047895535826683044, 0.011179523542523384, -0.10446596145629883, 0.05290189012885094, -0.10360164195299149, 0.006418094038963318, -0.05154281482100487, -0.04396234452724457, -0.04791706055402756, 0.08153974264860153, 0.12912346422672272, 0.036010634154081345, 0.06168365478515625, -0.0536385215818882, 0.07820441573858261, 0.026931602507829666, 0.10901639610528946, 0.022075684741139412, -0.0359695740044117, 0.06116088479757309, -0.12353475391864777, -0.0347583033144474, -0.07202620804309845, -0.15001630783081055, -0.02013598009943962, 0.08601241558790207, 0.07848615944385529, 0.0075507317669689655, 0.10403870791196823, -0.048355527222156525, -0.040466099977493286, 0.05951421335339546, -0.07593700289726257, 0.010255003347992897, 0.012166304513812065, 0.03397562727332115, 0.08664626628160477, -0.008014188148081303, -0.010840797796845436, -0.07289475947618484, 0.1062188372015953, -0.06315779685974121, -0.01307783741503954, -0.01732049323618412, -0.08034057915210724, 0.0416811965405941, -0.11314929276704788, 0.034418318420648575, -0.18632778525352478, -0.0867268443107605, 0.02466898038983345, 0.023175830021500587, -0.0036204832140356302, -0.043223097920417786, -0.006279166787862778, -0.009511148557066917, 0.04458554461598396, -0.038404688239097595, -0.041792143136262894, -0.07110201567411423, 0.10709395259618759, -0.040683504194021225, 0.07793822884559631, -0.12091999500989914, 0.06323502212762833, -0.08094821125268936, -0.037938714027404785, -0.1436057686805725, 0.02991032414138317, -0.04593498259782791, 0.17670950293540955, 0.009418158791959286, -0.03916691616177559, -0.06738578528165817, 0.050432536751031876, -0.08597487956285477, 0.1705693155527115, -0.10300006717443466, -0.10601698607206345, 0.21991145610809326, -0.08743619918823242, -0.1644926518201828, 0.09817764908075333, -0.006140566896647215, 0.030860306695103645, 0.10291383415460587, 0.19254423677921295, 0.10059843957424164, -0.015188057906925678, 0.10986637324094772, 0.1311812847852707, -0.09155552089214325, -0.07171490788459778, -0.005814383737742901, 0.013628879562020302, -0.16161437332630157, 0.04645570367574692, 0.07627911865711212, 0.09003730118274689, -0.05481500178575516, -0.032769881188869476, -0.012475966475903988, -0.010916692204773426, 0.10393679887056351, 0.05213615298271179, 0.11180645227432251, -0.09013810008764267, -0.002224808093160391, -0.017459897324442863, -0.01285821758210659, 0.03754090517759323, 0.013647175393998623, -0.07400903850793839, 0.10128079354763031, 0.03261538967490196, 0.038047853857278824, -0.205581396818161, -0.10506993532180786, -0.0037359115667641163, 0.16178801655769348, -0.004980077035725117, 0.12318283319473267, 0.05619083717465401, -0.06245030090212822, -0.028903339058160782, -0.014972786419093609, 0.17612993717193604, 0.028861980885267258, -0.04913661256432533, -0.10117287933826447, 0.07131381332874298, -0.06819925457239151, -0.006267969962209463, -0.08530781418085098, 0.013039042241871357, 0.10426401346921921, 0.11923491209745407, 0.02954317256808281, 0.06759738177061081, -0.020594840869307518, 0.04103267565369606, -0.05869079753756523, 0.005469475872814655, 0.0981106162071228, -0.0028663245029747486, -0.07072939723730087, 0.16919517517089844, -0.1291256546974182, 0.3507203757762909, 0.20170475542545319, -0.2761940658092499, -0.035514578223228455, 0.002199725015088916, -0.007138977292925119, 0.024464845657348633, 0.05174493417143822, -0.007252239156514406, 0.0816536396741867, -0.025272812694311142, 0.19664928317070007, -0.04529561102390289, -0.06305950880050659, 0.004951695911586285, -0.02556869015097618, -0.036898087710142136, 0.09194354712963104, 0.06216674670577049, -0.2614777982234955, 0.1870390921831131, 0.24219481647014618, 0.04200459644198418, 0.19497330486774445, -0.02086019702255726, 0.03482464700937271, 0.07864365726709366, -0.03906875103712082, -0.02108515053987503, -0.052882298827171326, -0.18514537811279297, -0.0364396795630455, 0.06771469861268997, 0.02317972481250763, 0.04500219225883484, -0.09731448441743851, -0.04856543987989426, 0.002298858482390642, 0.01597858965396881, -0.026174454018473625, 0.10048872232437134, 0.06319081038236618, 0.13153816759586334, -0.003106128890067339, -0.08400371670722961, 0.11410646885633469, 0.005260337144136429, -0.09981141239404678, 0.18042722344398499, -0.156314417719841, -0.3460919260978699, -0.10735659301280975, -0.1782291680574417, -0.0067190127447247505, 0.03000956028699875, 0.09850343316793442, -0.10634345561265945, -0.033060070127248764, 0.03284640610218048, -0.012809914536774158, -0.0816664919257164, 0.05599410459399223, -0.07325680553913116, 0.0646258220076561, -0.04085307568311691, -0.06152711808681488, -0.07787903398275375, -0.01816270686686039, -0.026292216032743454, 0.15070725977420807, -0.13831758499145508, 0.07136847823858261, 0.16576094925403595, -0.022289633750915527, 0.07650682330131531, -0.054549600929021835, 0.19885610044002533, -0.10296139866113663, 0.007779101841151714, 0.15963411331176758, -0.07891964167356491, 0.06331165879964828, 0.13643257319927216, 0.02745460905134678, -0.06552928686141968, 0.030233554542064667, -0.029010772705078125, -0.08516567945480347, -0.21309635043144226, -0.10727180540561676, -0.12787868082523346, 0.0693494901061058, 0.05446862801909447, 0.07731571048498154, 0.1531781107187271, 0.03990456461906433, 0.014457213692367077, 0.018062198534607887, 0.020818745717406273, 0.0704876258969307, 0.2125411182641983, 0.005360316950827837, 0.12566837668418884, -0.05727369338274002, -0.1188129410147667, 0.10055915266275406, -0.009957531467080116, 0.07098867744207382, 0.092038094997406, 0.008551113307476044, 0.007143025752156973, 0.08397624641656876, 0.14700289070606232, 0.11908629536628723, 0.013966327533125877, -0.035226285457611084, -0.03342920169234276, -0.01501465868204832, -0.04417838156223297, 0.008903167210519314, 0.05768493935465813, -0.12988770008087158, -0.07928520441055298, -0.14412985742092133, 0.0859234631061554, 0.08759444952011108, 0.04389340803027153, -0.19357506930828094, 0.01313148345798254, 0.07732202857732773, -0.03393232822418213, -0.09923391789197922, 0.07957471162080765, -0.0256402175873518, -0.1451755166053772, 0.11192978918552399, -0.027145400643348694, 0.12941546738147736, -0.04387110844254494, 0.08131285011768341, -0.011684808880090714, -0.11681845784187317, 0.012432873249053955, 0.09650768339633942, -0.30779802799224854, 0.21976694464683533, 0.01928086206316948, -0.07266698777675629, -0.07390384376049042, -0.03318638727068901, 0.05107714235782623, 0.22322584688663483, 0.08365670591592789, 0.0071785361506044865, -0.037957191467285156, -0.15128692984580994, 0.009881515987217426, 0.010437638498842716, 0.11411333829164505, -0.0405908040702343, -0.02388889156281948, -0.04794318228960037, -0.031789422035217285, -0.013200843706727028, -0.0067294808104634285, 0.008559755980968475, -0.1483292132616043, 0.06475125253200531, 0.017082348465919495, 0.04932650178670883, 0.012914108112454414, -0.04992445185780525, -0.1058477908372879, 0.18640151619911194, -0.060622867196798325, -0.07034534960985184, -0.13170942664146423, -0.07262479513883591, 0.01710459217429161, -0.08137626945972443, 0.04509428143501282, -0.07501614838838577, 0.013380223885178566, -0.04950862005352974, -0.22684811055660248, 0.14673565328121185, -0.1106371060013771, -0.03487327694892883, -0.06513967365026474, 0.14730527997016907, -0.0842413678765297, 0.027835646644234657, 0.02957865409553051, 0.000237262764130719, -0.05669243261218071, -0.06844421476125717, 0.008633880876004696, -0.028022507205605507, 0.023595616221427917, 0.026873987168073654, -0.09857222437858582, -0.05149772763252258, -0.029958872124552727, 0.008896863088011742, 0.27680882811546326, 0.1670258492231369, -0.06433916091918945, 0.15123355388641357, 0.10237762331962585, -0.06550213694572449, -0.3153405785560608, -0.07067323476076126, -0.10113058984279633, -0.05253861844539642, -0.023213086649775505, -0.14529207348823547, 0.10049093514680862, -0.022217631340026855, -0.005236598663032055, 0.11152709275484085, -0.145676389336586, -0.08063279092311859, 0.17675936222076416, -0.01169637218117714, 0.367031067609787, -0.12309647351503372, -0.08422616124153137, -0.0257070641964674, -0.12489580363035202, 0.1566237211227417, -0.025920214131474495, 0.06804210692644119, -0.0050880201160907745, 0.02517467550933361, 0.043971020728349686, -0.01833891123533249, 0.06599549949169159, -0.013579864986240864, 0.02171383984386921, -0.11258846521377563, -0.11226401478052139, 0.030177168548107147, -0.00730818510055542, -0.017102086916565895, -0.01317990105599165, 0.011035946197807789, -0.15898285806179047, -0.028331592679023743, -0.08936396986246109, 0.05447729304432869, 0.020979685708880424, -0.048674702644348145, 0.01947268657386303, -0.00407650601118803, -0.0009614856098778546, -0.022911708801984787, 0.24349361658096313, -0.04985634237527847, 0.20501010119915009, 0.09174475818872452, 0.15300476551055908, -0.16572463512420654, 0.018394114449620247, -0.06760561466217041, -0.0650775209069252, 0.06484107673168182, -0.08986455202102661, 0.07695946097373962, 0.11744482815265656, -0.04599355533719063, 0.07697378844022751, 0.11252884566783905, 0.037301987409591675, -0.05367483198642731, 0.16100072860717773, -0.23955774307250977, 0.022822167724370956, -0.0827927365899086, -0.04184706136584282, 0.07454679161310196, 0.0413217768073082, 0.13639111816883087, 0.03530426695942879, -0.043425172567367554, 0.009943075478076935, -0.01993875578045845, -0.011377980001270771, 0.04941035807132721, 0.07998369634151459, 0.036241546273231506, -0.127724751830101, 0.035259541124105453, 0.04482205957174301, -0.16129514575004578, -0.008664797060191631, 0.1730453222990036, -0.1578354686498642, -0.1262923777103424, 0.007742241490632296, 0.14198684692382812, -0.09135232120752335, -0.031438201665878296, -0.060132719576358795, -0.12725800275802612, 0.07284373044967651, 0.25894105434417725, 0.10116425901651382, 0.08729783445596695, -0.03697063773870468, -0.04388992115855217, 0.020885759964585304, 0.01595025509595871, -0.014745257794857025, 0.020765405148267746, -0.13631011545658112, 0.05345448851585388, -0.02177666313946247, 0.16924162209033966, -0.10197456926107407, -0.06149643287062645, -0.19020706415176392, 0.029578840360045433, -0.06012190505862236, -0.03925862908363342, -0.04682718589901924, -0.017611587420105934, 0.012048764154314995, -0.06310149282217026, -0.03736605495214462, -0.060287829488515854, -0.12767553329467773, 0.036270737648010254, 0.005350747611373663, 0.05034841597080231, -0.05183513090014458, -0.05810429900884628, 0.08905773609876633, -0.032753124833106995, 0.10728707164525986, 0.10013051331043243, -0.0855872705578804, 0.117222860455513, -0.13342884182929993, -0.10511238873004913, 0.12077708542346954, 0.028635060414671898, 0.07822927087545395, 0.07835457473993301, 0.042623039335012436, 0.047948651015758514, 0.004492026753723621, 0.07435332983732224, 0.053418759256601334, -0.11628934741020203, 0.04236496984958649, -0.017802182585000992, -0.1774119883775711, -0.03637482225894928, -0.0351983942091465, 0.0996076762676239, -0.011990156024694443, 0.12407713383436203, -0.06135038658976555, 0.08015622198581696, -0.06454247981309891, 0.006739314645528793, -0.01790500245988369, -0.20978260040283203, -0.0708213597536087, -0.07318954169750214, 0.029965126886963844, -0.011128557845950127, 0.19591659307479858, 0.06913489103317261, 0.0319981649518013, 0.06175713613629341, 0.0310115497559309, 0.006992944981902838, 0.015517883002758026, 0.1703265905380249, 0.0754433274269104, -0.05942070484161377, -0.0701989009976387, 0.06050143390893936, 0.013767524622380733, -0.0038862156216055155, 0.14637957513332367, 0.05384483188390732, -0.04334253445267677, 0.05393987149000168, -0.006520075723528862, 0.03673883154988289, -0.07701384276151657, -0.1832193285226822, -0.023507680743932724, 0.0869818776845932, 0.00840381346642971, 0.04058874770998955, 0.12366398423910141, -0.024356894195079803, 0.04185893386602402, -0.06088036671280861, -0.04258038103580475, -0.1866993010044098, -0.08172629028558731, -0.09754591435194016, -0.09760493785142899, 0.0016323220916092396, -0.08527683466672897, 0.0023363421205431223, 0.03519267588853836, 0.06481748074293137, -0.04856455698609352, 0.06127168983221054, 0.02518833801150322, -0.07109874486923218, 0.10054033994674683, -0.023914888501167297, 0.02262515015900135, -0.02517090179026127, -0.013178291730582714, -0.13474947214126587, -0.02814430743455887, -0.07136816531419754, 0.025584017857909203, -0.057708192616701126, 0.007026653736829758, -0.14305062592029572, -0.12516984343528748, -0.019075309857726097, 0.03675251826643944, -0.052159227430820465, 0.11093847453594208, 0.011201907880604267, 0.009039338678121567, 0.049128517508506775, 0.2012510746717453, -0.05676351860165596, -0.046734850853681564, -0.055592261254787445, 0.2586926519870758, 0.05706396326422691, 0.10761837661266327, -0.0020975100342184305, -0.0024317100178450346, -0.07449929416179657, 0.31389710307121277, 0.2955772280693054, -0.06510346382856369, 0.054500363767147064, 0.018206806853413582, 0.03506786376237869, 0.14051738381385803, 0.1601453274488449, 0.0865769311785698, 0.22536684572696686, -0.06050490960478783, -0.024926770478487015, -0.02849609963595867, 0.000244457449298352, -0.09914455562829971, 0.08232346177101135, 0.08535241335630417, -0.0424174927175045, -0.04609082639217377, 0.10565126687288284, -0.18212376534938812, 0.11280491203069687, -0.009778259322047234, -0.2153957039117813, -0.07569281756877899, -0.054018083959817886, 0.08757146447896957, 0.0016255197115242481, 0.07558492571115494, -0.010469096712768078, -0.09922951459884644, 0.01843380182981491, 0.027105342596769333, -0.21906815469264984, -0.043459612876176834, 0.08526850491762161, -0.07011063396930695, 0.01413501612842083, -0.030878907069563866, 0.030309539288282394, 0.07286052405834198, 0.04602065682411194, -0.008074160665273666, 0.030680667608976364, 0.005988823249936104, -0.021416928619146347, -0.009496812708675861, 0.02447492629289627, 0.011663242243230343, -0.07705793529748917, 0.07111967355012894, -0.14510144293308258, 0.03661796823143959, -0.08402175456285477, -0.06293704360723495, -0.00886134710162878, 0.06624176353216171, -0.055790361016988754, 0.059556957334280014, 0.12259872257709503, 0.0037719879765063524, -0.025832394137978554, -0.06908757239580154, -0.0384402796626091, 0.02969057485461235, -0.1253954917192459, -0.14015717804431915, -0.07115596532821655, -0.09522800892591476, 0.07163199037313461, -0.00856182724237442, -0.14836765825748444, -0.00581695418804884, -0.1122141182422638, 0.05599601939320564, -0.17892256379127502, 0.10324830561876297, 0.049629874527454376, 0.021411657333374023, -0.0026252379175275564, -0.03683947026729584, 0.051148902624845505, 0.07220999896526337, -0.13487952947616577, -0.06859134882688522 ]
null
null
transformers
At its core it uses a BERT-Base model (bert-base-uncased) fine-tuned on the MS MARCO passage classification task. It can be loaded using the TF/AutoModelForSequenceClassification classes. Refer to our [github repository](https://github.com/BOUALILILila/ExactMatchMarking) for a usage example for ad hoc ranking.
{}
text-classification
LilaBoualili/bert-vanilla
[ "transformers", "pytorch", "tf", "jax", "bert", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us
At its core it uses a BERT-Base model (bert-base-uncased) fine-tuned on the MS MARCO passage classification task. It can be loaded using the TF/AutoModelForSequenceClassification classes. Refer to our github repository for a usage example for ad hoc ranking.
[]
[ "TAGS\n#transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 42 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.012978160753846169, 0.04332396760582924, -0.007450425531715155, 0.044066667556762695, 0.1801418662071228, 0.05004086345434189, 0.059478338807821274, 0.12274254858493805, 0.05964304506778717, -0.05366957560181618, 0.10698546469211578, 0.22510619461536407, -0.02612144872546196, 0.12622258067131042, -0.11148211359977722, -0.2926732897758484, 0.04022616520524025, 0.0599503368139267, -0.02070973813533783, 0.11176998913288116, 0.09400483965873718, -0.07132333517074585, 0.07971389591693878, -0.052247706800699234, -0.14493927359580994, 0.048297446221113205, 0.06485690921545029, -0.1320372074842453, 0.10253582894802094, 0.07230827212333679, 0.13067853450775146, 0.04038124531507492, -0.06553509831428528, -0.11954349279403687, 0.04402868077158928, 0.009812562726438046, -0.1006685122847557, 0.044682908803224564, 0.07672218978404999, -0.0955110415816307, 0.05344296619296074, 0.05509388446807861, 0.027068590745329857, 0.06204519420862198, -0.156533345580101, -0.10846411436796188, -0.005684448406100273, 0.056477781385183334, 0.04630635678768158, 0.04894021153450012, 0.005784159060567617, 0.16440050303936005, -0.11575605720281601, 0.14242811501026154, 0.10060048848390579, -0.30799728631973267, -0.031183307990431786, 0.08888045698404312, 0.022853029891848564, 0.06419042497873306, -0.05800650268793106, 0.04860955849289894, 0.03417554125189781, 0.012672146782279015, 0.027977267280220985, -0.08564790338277817, -0.14191274344921112, 0.030478736385703087, -0.08324426412582397, -0.0342007540166378, 0.22438456118106842, -0.03630218654870987, 0.0543396882712841, 0.0005461968830786645, -0.0894731655716896, -0.04061136394739151, -0.023548424243927002, -0.01077257003635168, -0.04773872345685959, 0.06389988213777542, 0.03180829808115959, -0.008789614774286747, -0.10023970901966095, 0.025575876235961914, -0.21298693120479584, 0.19406548142433167, 0.010625844821333885, 0.050813011825084686, -0.18822035193443298, 0.047895535826683044, 0.011179523542523384, -0.10446596145629883, 0.05290189012885094, -0.10360164195299149, 0.006418094038963318, -0.05154281482100487, -0.04396234452724457, -0.04791706055402756, 0.08153974264860153, 0.12912346422672272, 0.036010634154081345, 0.06168365478515625, -0.0536385215818882, 0.07820441573858261, 0.026931602507829666, 0.10901639610528946, 0.022075684741139412, -0.0359695740044117, 0.06116088479757309, -0.12353475391864777, -0.0347583033144474, -0.07202620804309845, -0.15001630783081055, -0.02013598009943962, 0.08601241558790207, 0.07848615944385529, 0.0075507317669689655, 0.10403870791196823, -0.048355527222156525, -0.040466099977493286, 0.05951421335339546, -0.07593700289726257, 0.010255003347992897, 0.012166304513812065, 0.03397562727332115, 0.08664626628160477, -0.008014188148081303, -0.010840797796845436, -0.07289475947618484, 0.1062188372015953, -0.06315779685974121, -0.01307783741503954, -0.01732049323618412, -0.08034057915210724, 0.0416811965405941, -0.11314929276704788, 0.034418318420648575, -0.18632778525352478, -0.0867268443107605, 0.02466898038983345, 0.023175830021500587, -0.0036204832140356302, -0.043223097920417786, -0.006279166787862778, -0.009511148557066917, 0.04458554461598396, -0.038404688239097595, -0.041792143136262894, -0.07110201567411423, 0.10709395259618759, -0.040683504194021225, 0.07793822884559631, -0.12091999500989914, 0.06323502212762833, -0.08094821125268936, -0.037938714027404785, -0.1436057686805725, 0.02991032414138317, -0.04593498259782791, 0.17670950293540955, 0.009418158791959286, -0.03916691616177559, -0.06738578528165817, 0.050432536751031876, -0.08597487956285477, 0.1705693155527115, -0.10300006717443466, -0.10601698607206345, 0.21991145610809326, -0.08743619918823242, -0.1644926518201828, 0.09817764908075333, -0.006140566896647215, 0.030860306695103645, 0.10291383415460587, 0.19254423677921295, 0.10059843957424164, -0.015188057906925678, 0.10986637324094772, 0.1311812847852707, -0.09155552089214325, -0.07171490788459778, -0.005814383737742901, 0.013628879562020302, -0.16161437332630157, 0.04645570367574692, 0.07627911865711212, 0.09003730118274689, -0.05481500178575516, -0.032769881188869476, -0.012475966475903988, -0.010916692204773426, 0.10393679887056351, 0.05213615298271179, 0.11180645227432251, -0.09013810008764267, -0.002224808093160391, -0.017459897324442863, -0.01285821758210659, 0.03754090517759323, 0.013647175393998623, -0.07400903850793839, 0.10128079354763031, 0.03261538967490196, 0.038047853857278824, -0.205581396818161, -0.10506993532180786, -0.0037359115667641163, 0.16178801655769348, -0.004980077035725117, 0.12318283319473267, 0.05619083717465401, -0.06245030090212822, -0.028903339058160782, -0.014972786419093609, 0.17612993717193604, 0.028861980885267258, -0.04913661256432533, -0.10117287933826447, 0.07131381332874298, -0.06819925457239151, -0.006267969962209463, -0.08530781418085098, 0.013039042241871357, 0.10426401346921921, 0.11923491209745407, 0.02954317256808281, 0.06759738177061081, -0.020594840869307518, 0.04103267565369606, -0.05869079753756523, 0.005469475872814655, 0.0981106162071228, -0.0028663245029747486, -0.07072939723730087, 0.16919517517089844, -0.1291256546974182, 0.3507203757762909, 0.20170475542545319, -0.2761940658092499, -0.035514578223228455, 0.002199725015088916, -0.007138977292925119, 0.024464845657348633, 0.05174493417143822, -0.007252239156514406, 0.0816536396741867, -0.025272812694311142, 0.19664928317070007, -0.04529561102390289, -0.06305950880050659, 0.004951695911586285, -0.02556869015097618, -0.036898087710142136, 0.09194354712963104, 0.06216674670577049, -0.2614777982234955, 0.1870390921831131, 0.24219481647014618, 0.04200459644198418, 0.19497330486774445, -0.02086019702255726, 0.03482464700937271, 0.07864365726709366, -0.03906875103712082, -0.02108515053987503, -0.052882298827171326, -0.18514537811279297, -0.0364396795630455, 0.06771469861268997, 0.02317972481250763, 0.04500219225883484, -0.09731448441743851, -0.04856543987989426, 0.002298858482390642, 0.01597858965396881, -0.026174454018473625, 0.10048872232437134, 0.06319081038236618, 0.13153816759586334, -0.003106128890067339, -0.08400371670722961, 0.11410646885633469, 0.005260337144136429, -0.09981141239404678, 0.18042722344398499, -0.156314417719841, -0.3460919260978699, -0.10735659301280975, -0.1782291680574417, -0.0067190127447247505, 0.03000956028699875, 0.09850343316793442, -0.10634345561265945, -0.033060070127248764, 0.03284640610218048, -0.012809914536774158, -0.0816664919257164, 0.05599410459399223, -0.07325680553913116, 0.0646258220076561, -0.04085307568311691, -0.06152711808681488, -0.07787903398275375, -0.01816270686686039, -0.026292216032743454, 0.15070725977420807, -0.13831758499145508, 0.07136847823858261, 0.16576094925403595, -0.022289633750915527, 0.07650682330131531, -0.054549600929021835, 0.19885610044002533, -0.10296139866113663, 0.007779101841151714, 0.15963411331176758, -0.07891964167356491, 0.06331165879964828, 0.13643257319927216, 0.02745460905134678, -0.06552928686141968, 0.030233554542064667, -0.029010772705078125, -0.08516567945480347, -0.21309635043144226, -0.10727180540561676, -0.12787868082523346, 0.0693494901061058, 0.05446862801909447, 0.07731571048498154, 0.1531781107187271, 0.03990456461906433, 0.014457213692367077, 0.018062198534607887, 0.020818745717406273, 0.0704876258969307, 0.2125411182641983, 0.005360316950827837, 0.12566837668418884, -0.05727369338274002, -0.1188129410147667, 0.10055915266275406, -0.009957531467080116, 0.07098867744207382, 0.092038094997406, 0.008551113307476044, 0.007143025752156973, 0.08397624641656876, 0.14700289070606232, 0.11908629536628723, 0.013966327533125877, -0.035226285457611084, -0.03342920169234276, -0.01501465868204832, -0.04417838156223297, 0.008903167210519314, 0.05768493935465813, -0.12988770008087158, -0.07928520441055298, -0.14412985742092133, 0.0859234631061554, 0.08759444952011108, 0.04389340803027153, -0.19357506930828094, 0.01313148345798254, 0.07732202857732773, -0.03393232822418213, -0.09923391789197922, 0.07957471162080765, -0.0256402175873518, -0.1451755166053772, 0.11192978918552399, -0.027145400643348694, 0.12941546738147736, -0.04387110844254494, 0.08131285011768341, -0.011684808880090714, -0.11681845784187317, 0.012432873249053955, 0.09650768339633942, -0.30779802799224854, 0.21976694464683533, 0.01928086206316948, -0.07266698777675629, -0.07390384376049042, -0.03318638727068901, 0.05107714235782623, 0.22322584688663483, 0.08365670591592789, 0.0071785361506044865, -0.037957191467285156, -0.15128692984580994, 0.009881515987217426, 0.010437638498842716, 0.11411333829164505, -0.0405908040702343, -0.02388889156281948, -0.04794318228960037, -0.031789422035217285, -0.013200843706727028, -0.0067294808104634285, 0.008559755980968475, -0.1483292132616043, 0.06475125253200531, 0.017082348465919495, 0.04932650178670883, 0.012914108112454414, -0.04992445185780525, -0.1058477908372879, 0.18640151619911194, -0.060622867196798325, -0.07034534960985184, -0.13170942664146423, -0.07262479513883591, 0.01710459217429161, -0.08137626945972443, 0.04509428143501282, -0.07501614838838577, 0.013380223885178566, -0.04950862005352974, -0.22684811055660248, 0.14673565328121185, -0.1106371060013771, -0.03487327694892883, -0.06513967365026474, 0.14730527997016907, -0.0842413678765297, 0.027835646644234657, 0.02957865409553051, 0.000237262764130719, -0.05669243261218071, -0.06844421476125717, 0.008633880876004696, -0.028022507205605507, 0.023595616221427917, 0.026873987168073654, -0.09857222437858582, -0.05149772763252258, -0.029958872124552727, 0.008896863088011742, 0.27680882811546326, 0.1670258492231369, -0.06433916091918945, 0.15123355388641357, 0.10237762331962585, -0.06550213694572449, -0.3153405785560608, -0.07067323476076126, -0.10113058984279633, -0.05253861844539642, -0.023213086649775505, -0.14529207348823547, 0.10049093514680862, -0.022217631340026855, -0.005236598663032055, 0.11152709275484085, -0.145676389336586, -0.08063279092311859, 0.17675936222076416, -0.01169637218117714, 0.367031067609787, -0.12309647351503372, -0.08422616124153137, -0.0257070641964674, -0.12489580363035202, 0.1566237211227417, -0.025920214131474495, 0.06804210692644119, -0.0050880201160907745, 0.02517467550933361, 0.043971020728349686, -0.01833891123533249, 0.06599549949169159, -0.013579864986240864, 0.02171383984386921, -0.11258846521377563, -0.11226401478052139, 0.030177168548107147, -0.00730818510055542, -0.017102086916565895, -0.01317990105599165, 0.011035946197807789, -0.15898285806179047, -0.028331592679023743, -0.08936396986246109, 0.05447729304432869, 0.020979685708880424, -0.048674702644348145, 0.01947268657386303, -0.00407650601118803, -0.0009614856098778546, -0.022911708801984787, 0.24349361658096313, -0.04985634237527847, 0.20501010119915009, 0.09174475818872452, 0.15300476551055908, -0.16572463512420654, 0.018394114449620247, -0.06760561466217041, -0.0650775209069252, 0.06484107673168182, -0.08986455202102661, 0.07695946097373962, 0.11744482815265656, -0.04599355533719063, 0.07697378844022751, 0.11252884566783905, 0.037301987409591675, -0.05367483198642731, 0.16100072860717773, -0.23955774307250977, 0.022822167724370956, -0.0827927365899086, -0.04184706136584282, 0.07454679161310196, 0.0413217768073082, 0.13639111816883087, 0.03530426695942879, -0.043425172567367554, 0.009943075478076935, -0.01993875578045845, -0.011377980001270771, 0.04941035807132721, 0.07998369634151459, 0.036241546273231506, -0.127724751830101, 0.035259541124105453, 0.04482205957174301, -0.16129514575004578, -0.008664797060191631, 0.1730453222990036, -0.1578354686498642, -0.1262923777103424, 0.007742241490632296, 0.14198684692382812, -0.09135232120752335, -0.031438201665878296, -0.060132719576358795, -0.12725800275802612, 0.07284373044967651, 0.25894105434417725, 0.10116425901651382, 0.08729783445596695, -0.03697063773870468, -0.04388992115855217, 0.020885759964585304, 0.01595025509595871, -0.014745257794857025, 0.020765405148267746, -0.13631011545658112, 0.05345448851585388, -0.02177666313946247, 0.16924162209033966, -0.10197456926107407, -0.06149643287062645, -0.19020706415176392, 0.029578840360045433, -0.06012190505862236, -0.03925862908363342, -0.04682718589901924, -0.017611587420105934, 0.012048764154314995, -0.06310149282217026, -0.03736605495214462, -0.060287829488515854, -0.12767553329467773, 0.036270737648010254, 0.005350747611373663, 0.05034841597080231, -0.05183513090014458, -0.05810429900884628, 0.08905773609876633, -0.032753124833106995, 0.10728707164525986, 0.10013051331043243, -0.0855872705578804, 0.117222860455513, -0.13342884182929993, -0.10511238873004913, 0.12077708542346954, 0.028635060414671898, 0.07822927087545395, 0.07835457473993301, 0.042623039335012436, 0.047948651015758514, 0.004492026753723621, 0.07435332983732224, 0.053418759256601334, -0.11628934741020203, 0.04236496984958649, -0.017802182585000992, -0.1774119883775711, -0.03637482225894928, -0.0351983942091465, 0.0996076762676239, -0.011990156024694443, 0.12407713383436203, -0.06135038658976555, 0.08015622198581696, -0.06454247981309891, 0.006739314645528793, -0.01790500245988369, -0.20978260040283203, -0.0708213597536087, -0.07318954169750214, 0.029965126886963844, -0.011128557845950127, 0.19591659307479858, 0.06913489103317261, 0.0319981649518013, 0.06175713613629341, 0.0310115497559309, 0.006992944981902838, 0.015517883002758026, 0.1703265905380249, 0.0754433274269104, -0.05942070484161377, -0.0701989009976387, 0.06050143390893936, 0.013767524622380733, -0.0038862156216055155, 0.14637957513332367, 0.05384483188390732, -0.04334253445267677, 0.05393987149000168, -0.006520075723528862, 0.03673883154988289, -0.07701384276151657, -0.1832193285226822, -0.023507680743932724, 0.0869818776845932, 0.00840381346642971, 0.04058874770998955, 0.12366398423910141, -0.024356894195079803, 0.04185893386602402, -0.06088036671280861, -0.04258038103580475, -0.1866993010044098, -0.08172629028558731, -0.09754591435194016, -0.09760493785142899, 0.0016323220916092396, -0.08527683466672897, 0.0023363421205431223, 0.03519267588853836, 0.06481748074293137, -0.04856455698609352, 0.06127168983221054, 0.02518833801150322, -0.07109874486923218, 0.10054033994674683, -0.023914888501167297, 0.02262515015900135, -0.02517090179026127, -0.013178291730582714, -0.13474947214126587, -0.02814430743455887, -0.07136816531419754, 0.025584017857909203, -0.057708192616701126, 0.007026653736829758, -0.14305062592029572, -0.12516984343528748, -0.019075309857726097, 0.03675251826643944, -0.052159227430820465, 0.11093847453594208, 0.011201907880604267, 0.009039338678121567, 0.049128517508506775, 0.2012510746717453, -0.05676351860165596, -0.046734850853681564, -0.055592261254787445, 0.2586926519870758, 0.05706396326422691, 0.10761837661266327, -0.0020975100342184305, -0.0024317100178450346, -0.07449929416179657, 0.31389710307121277, 0.2955772280693054, -0.06510346382856369, 0.054500363767147064, 0.018206806853413582, 0.03506786376237869, 0.14051738381385803, 0.1601453274488449, 0.0865769311785698, 0.22536684572696686, -0.06050490960478783, -0.024926770478487015, -0.02849609963595867, 0.000244457449298352, -0.09914455562829971, 0.08232346177101135, 0.08535241335630417, -0.0424174927175045, -0.04609082639217377, 0.10565126687288284, -0.18212376534938812, 0.11280491203069687, -0.009778259322047234, -0.2153957039117813, -0.07569281756877899, -0.054018083959817886, 0.08757146447896957, 0.0016255197115242481, 0.07558492571115494, -0.010469096712768078, -0.09922951459884644, 0.01843380182981491, 0.027105342596769333, -0.21906815469264984, -0.043459612876176834, 0.08526850491762161, -0.07011063396930695, 0.01413501612842083, -0.030878907069563866, 0.030309539288282394, 0.07286052405834198, 0.04602065682411194, -0.008074160665273666, 0.030680667608976364, 0.005988823249936104, -0.021416928619146347, -0.009496812708675861, 0.02447492629289627, 0.011663242243230343, -0.07705793529748917, 0.07111967355012894, -0.14510144293308258, 0.03661796823143959, -0.08402175456285477, -0.06293704360723495, -0.00886134710162878, 0.06624176353216171, -0.055790361016988754, 0.059556957334280014, 0.12259872257709503, 0.0037719879765063524, -0.025832394137978554, -0.06908757239580154, -0.0384402796626091, 0.02969057485461235, -0.1253954917192459, -0.14015717804431915, -0.07115596532821655, -0.09522800892591476, 0.07163199037313461, -0.00856182724237442, -0.14836765825748444, -0.00581695418804884, -0.1122141182422638, 0.05599601939320564, -0.17892256379127502, 0.10324830561876297, 0.049629874527454376, 0.021411657333374023, -0.0026252379175275564, -0.03683947026729584, 0.051148902624845505, 0.07220999896526337, -0.13487952947616577, -0.06859134882688522 ]
null
null
transformers
At its core it uses an ELECTRA-Base model (google/electra-base-discriminator) fine-tuned on the MS MARCO passage classification task using the Sim-Pair marking strategy that highlights exact term matches between the query and the passage via marker tokens (#). It can be loaded using the TF/AutoModelForSequenceClassification classes but it follows the same classification layer defined for BERT similarly to the TFElectraRelevanceHead in the Capreolus BERT-MaxP implementation. Refer to our [github repository](https://github.com/BOUALILILila/ExactMatchMarking) for a usage example for ad hoc ranking.
{}
text-classification
LilaBoualili/electra-sim-pair
[ "transformers", "pytorch", "tf", "electra", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us
At its core it uses an ELECTRA-Base model (google/electra-base-discriminator) fine-tuned on the MS MARCO passage classification task using the Sim-Pair marking strategy that highlights exact term matches between the query and the passage via marker tokens (#). It can be loaded using the TF/AutoModelForSequenceClassification classes but it follows the same classification layer defined for BERT similarly to the TFElectraRelevanceHead in the Capreolus BERT-MaxP implementation. Refer to our github repository for a usage example for ad hoc ranking.
[]
[ "TAGS\n#transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 40 ]
[ "passage: TAGS\n#transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.034931812435388565, 0.05133892223238945, -0.007088001351803541, 0.03883369266986847, 0.21984872221946716, 0.0435006357729435, 0.02479550987482071, 0.10967662185430527, 0.05456019937992096, -0.027096033096313477, 0.10571634769439697, 0.24393989145755768, -0.022465886548161507, 0.14956620335578918, -0.13087326288223267, -0.31124550104141235, 0.05396761745214462, 0.06510135531425476, -0.030948473140597343, 0.11054908484220505, 0.10167989134788513, -0.06474984437227249, 0.07625791430473328, -0.03740688040852547, -0.12736016511917114, 0.05172206461429596, 0.04343106970191002, -0.1611105352640152, 0.11824651062488556, 0.09812688827514648, 0.13916391134262085, 0.028748897835612297, -0.06067398563027382, -0.12171279639005661, 0.047745153307914734, 0.006868354976177216, -0.11736951023340225, 0.038811907172203064, 0.05892203003168106, -0.11631064116954803, 0.11338125914335251, 0.06100701168179512, 0.03453359007835388, 0.05807856097817421, -0.15478183329105377, -0.0671243742108345, -0.0010185025166720152, 0.0432114340364933, 0.05979588255286217, 0.05344681814312935, 0.002802362432703376, 0.17266882956027985, -0.11686129122972488, 0.1376263052225113, 0.07458468526601791, -0.2696961462497711, -0.022914350032806396, 0.06214120611548424, 0.031254664063453674, 0.041729748249053955, -0.03107447549700737, 0.04579692706465721, 0.04060451686382294, 0.01866094022989273, 0.015599403530359268, -0.05673587694764137, -0.13315244019031525, 0.035774774849414825, -0.09451498836278915, -0.04898933321237564, 0.2345610111951828, -0.03569736331701279, 0.06310169398784637, -0.0098462188616395, -0.09811735898256302, -0.05855381116271019, -0.0014335340820252895, 0.0044149355962872505, -0.06776110827922821, 0.05724077299237251, 0.06286880373954773, 0.01375906728208065, -0.10849623382091522, 0.03320189565420151, -0.23387180268764496, 0.24187417328357697, 0.017623649910092354, 0.04929369315505028, -0.17011773586273193, 0.04913422837853432, 0.02130637690424919, -0.10024558752775192, 0.04024815186858177, -0.10259473323822021, -0.0029150424525141716, -0.06031525135040283, -0.06989308446645737, -0.06481613218784332, 0.09848029911518097, 0.16913188993930817, 0.06687954813241959, 0.05519839748740196, -0.02108413726091385, 0.07109545916318893, 0.051465071737766266, 0.10264821350574493, 0.011090773157775402, -0.009093782864511013, 0.05816108360886574, -0.14382602274417877, -0.01964479684829712, -0.07722215354442596, -0.15501834452152252, -0.035259220749139786, 0.06074810400605202, 0.09238637238740921, 0.003549793269485235, 0.09048455208539963, -0.04785824939608574, -0.039572857320308685, 0.08776214718818665, -0.08928284049034119, -0.002925930079072714, 0.003380808047950268, -0.002548827324062586, 0.10401380807161331, 0.0016960068605840206, -0.004673343151807785, -0.09918622672557831, 0.10019423812627792, -0.0568179115653038, -0.016449876129627228, -0.0031519331969320774, -0.0884992852807045, 0.04325466230511665, -0.15935641527175903, 0.04485276713967323, -0.21868358552455902, -0.10050680488348007, 0.017112014815211296, 0.009167750366032124, -0.007826652377843857, -0.05770425498485565, -0.015617993660271168, 0.0029302448965609074, 0.043281540274620056, -0.03926357999444008, -0.09320637583732605, -0.07526463270187378, 0.10973849892616272, -0.025011224672198296, 0.0761844590306282, -0.1241147518157959, 0.07054807245731354, -0.07338891178369522, -0.055143605917692184, -0.13656258583068848, 0.04103537276387215, -0.025226019322872162, 0.16590259969234467, 0.0018757801735773683, -0.055542826652526855, -0.05421922355890274, 0.06447785347700119, -0.07694755494594574, 0.17293429374694824, -0.0760887861251831, -0.10766411572694778, 0.20061804354190826, -0.11776978522539139, -0.14914508163928986, 0.09702253341674805, -0.00029521097894757986, -0.003779360558837652, 0.10391707718372345, 0.1392717957496643, 0.10418694466352463, -0.020775767043232918, 0.08348341286182404, 0.08135520666837692, -0.1308133751153946, -0.09212470054626465, -0.006175982765853405, 0.017587168142199516, -0.12441685795783997, 0.038779065012931824, 0.09585616737604141, 0.10185882449150085, -0.05141918361186981, -0.021608302369713783, -0.01440176647156477, -0.004786889534443617, 0.14224229753017426, 0.053900059312582016, 0.09003717452287674, -0.08822591602802277, -0.016833199188113213, -0.003930289763957262, -0.0008461719262413681, 0.021795613691210747, 0.002160039497539401, -0.0995260551571846, 0.11161050200462341, 0.02601948380470276, 0.030368398874998093, -0.21963734924793243, -0.11784756183624268, -0.026054419577121735, 0.15123820304870605, 0.00159532914403826, 0.13094089925289154, 0.03373958170413971, -0.05033111944794655, -0.014554331079125404, -0.020271021872758865, 0.16209663450717926, 0.01761586032807827, -0.03633314371109009, -0.07312352955341339, 0.06668152660131454, -0.0737883523106575, 0.0032293363474309444, -0.12005928158760071, 0.022875912487506866, 0.09042132645845413, 0.12949560582637787, 0.01893024332821369, 0.08341067284345627, -0.015440241433680058, 0.05735274404287338, -0.08370322734117508, 0.011114093475043774, 0.08110965043306351, 0.001128270523622632, -0.08142515271902084, 0.13967297971248627, -0.16492076218128204, 0.3244531452655792, 0.18519292771816254, -0.26334381103515625, -0.043640248477458954, -0.011793237179517746, -0.003790194634348154, 0.028070319443941116, 0.018792174756526947, -0.005810195580124855, 0.08548181504011154, -0.01992059499025345, 0.20227280259132385, -0.03721758350729942, -0.055162325501441956, 0.007170553784817457, -0.0343041867017746, -0.026508597657084465, 0.09234809875488281, 0.10041934996843338, -0.24877028167247772, 0.17822252213954926, 0.15847748517990112, 0.027112839743494987, 0.1786709874868393, -0.008439045399427414, 0.03422195836901665, 0.08957947790622711, -0.0386715792119503, -0.0061350734904408455, -0.08805692940950394, -0.1551537811756134, -0.025205958634614944, 0.07254008948802948, 0.0178998950868845, 0.04724938049912453, -0.09850509464740753, -0.0422261580824852, 0.01889217644929886, 0.01097430195659399, -0.028507208451628685, 0.11170352250337601, 0.06826898455619812, 0.12706723809242249, -0.015646105632185936, -0.09149926155805588, 0.10814959555864334, 0.019808465614914894, -0.10169453918933868, 0.18812678754329681, -0.1432332843542099, -0.35345780849456787, -0.13548630475997925, -0.1484254151582718, 0.0046804118901491165, 0.05373098701238632, 0.1135849878191948, -0.09773430228233337, -0.05029875040054321, 0.028516991063952446, -0.00830144714564085, -0.049296390265226364, 0.05115225166082382, -0.056047502905130386, 0.0669238492846489, -0.058612190186977386, -0.06426289677619934, -0.0633867084980011, -0.013086551800370216, 0.006708869244903326, 0.1731005758047104, -0.1314769834280014, 0.08366534858942032, 0.188361257314682, -0.02349105291068554, 0.06990714371204376, -0.051703307777643204, 0.17581512033939362, -0.1175495907664299, 0.015436504036188126, 0.20067386329174042, -0.07785671204328537, 0.06587240844964981, 0.14473764598369598, 0.0060109724290668964, -0.06577838212251663, 0.05131920427083969, -0.04506641998887062, -0.10384781658649445, -0.22632107138633728, -0.14341974258422852, -0.12311029434204102, 0.05304177105426788, 0.059235405176877975, 0.08503179997205734, 0.1774698793888092, 0.0642148107290268, 0.0018952102400362492, -0.005164529662579298, 0.014949273318052292, 0.07331736385822296, 0.25982561707496643, 0.036124516278505325, 0.13263465464115143, -0.08069553971290588, -0.1307116597890854, 0.10001695156097412, -0.02879076637327671, 0.11206962913274765, 0.08815266937017441, 0.017234379425644875, -0.001027323305606842, 0.03821238875389099, 0.15765835344791412, 0.134427011013031, 0.04976515471935272, -0.023695630952715874, -0.022781413048505783, 0.00920990202575922, -0.04590943828225136, 0.01511219423264265, 0.06763999164104462, -0.15887919068336487, -0.09150808304548264, -0.11882307380437851, 0.07823382318019867, 0.09379033744335175, 0.03971337899565697, -0.23638053238391876, -0.004380756989121437, 0.05981294810771942, -0.05436217784881592, -0.10538921505212784, 0.05355868488550186, -0.040051087737083435, -0.14830535650253296, 0.14106351137161255, -0.028966916725039482, 0.12168604880571365, -0.04865368828177452, 0.06084844097495079, -0.030217934399843216, -0.10218171775341034, 0.007867876440286636, 0.0992523655295372, -0.263470858335495, 0.22091622650623322, 0.005493694916367531, -0.06587182730436325, -0.0868886411190033, -0.024561041966080666, 0.049778830260038376, 0.21933382749557495, 0.055523548275232315, -0.00779156805947423, -0.0993555560708046, -0.1768111288547516, 0.021871106699109077, 0.016404466703534126, 0.09741007536649704, -0.03919835388660431, -0.004814796149730682, -0.04536096006631851, -0.02583923377096653, -0.02155248634517193, -0.03313875570893288, 0.03499499335885048, -0.15075579285621643, 0.050210412591695786, 0.035171255469322205, 0.08958756178617477, 0.03081698901951313, -0.052561674267053604, -0.10224327445030212, 0.13529476523399353, -0.11280865222215652, -0.09195172041654587, -0.1386156529188156, -0.049832116812467575, 0.024140270426869392, -0.1017710492014885, 0.09575381875038147, -0.06569094210863113, 0.03701051324605942, -0.041870586574077606, -0.2074356973171234, 0.13414324820041656, -0.11188474297523499, -0.03443722799420357, -0.04203062877058983, 0.12070098519325256, -0.05951443687081337, 0.00967604573816061, 0.03736400231719017, 0.01634976826608181, -0.06185568869113922, -0.06759488582611084, -0.007904496043920517, -0.024718623608350754, 0.04655181244015694, 0.07933398336172104, -0.07221653312444687, -0.08357322216033936, -0.021106017753481865, -0.015751652419567108, 0.27950742840766907, 0.14729033410549164, -0.061577245593070984, 0.12941937148571014, 0.08804463595151901, -0.057541072368621826, -0.28550443053245544, -0.09342062473297119, -0.08846978098154068, -0.032397761940956116, -0.004892501048743725, -0.17064593732357025, 0.09346875548362732, 0.012546991929411888, 0.0034477778244763613, 0.13158664107322693, -0.14304928481578827, -0.07413724064826965, 0.1739404797554016, -0.03874432295560837, 0.3254956603050232, -0.1099804937839508, -0.07776613533496857, -0.0467224158346653, -0.11747181415557861, 0.1340506672859192, 0.006744143553078175, 0.06792876869440079, -0.0072509972378611565, 0.03264644369482994, 0.04678526148200035, -0.013029477559030056, 0.0889272466301918, 0.0007747848867438734, 0.015107237733900547, -0.1330028921365738, -0.0834340751171112, -0.022664448246359825, -0.010107195936143398, 0.019736940041184425, -0.023442523553967476, 0.010074841789901257, -0.17905597388744354, -0.045930083841085434, -0.0754937082529068, 0.06480482220649719, 0.055107202380895615, -0.029562389478087425, 0.006418263539671898, -0.029295451939105988, 0.008739309385418892, -0.013985970057547092, 0.23005515336990356, -0.05675114318728447, 0.21452738344669342, 0.0783199742436409, 0.16390013694763184, -0.13142873346805573, 0.0199021864682436, -0.0865369364619255, -0.05284855514764786, 0.058652911335229874, -0.08478976041078568, 0.08084507286548615, 0.1343194544315338, -0.059219978749752045, 0.08473223447799683, 0.10293655097484589, 0.05366650968790054, -0.015964128077030182, 0.17121024429798126, -0.20365968346595764, 0.05442357435822487, -0.06996110081672668, -0.016607435420155525, 0.07436878234148026, 0.05793895944952965, 0.14473234117031097, 0.04190025478601456, -0.04561406373977661, -0.004475509747862816, -0.023223353549838066, 0.015771357342600822, 0.0628015324473381, 0.08855828642845154, 0.042909231036901474, -0.1276121288537979, 0.030346013605594635, 0.05775922164320946, -0.16508859395980835, 0.0129836555570364, 0.15739628672599792, -0.15906253457069397, -0.1324116587638855, 0.005690340418368578, 0.11420130729675293, -0.18838860094547272, -0.0621643103659153, -0.08236785978078842, -0.12074966728687286, 0.0906313955783844, 0.3087921440601349, 0.09645648300647736, 0.06752476096153259, -0.025616027414798737, -0.03822923079133034, 0.0015868968330323696, -0.009244411252439022, 0.030175132676959038, 0.014154249802231789, -0.14859388768672943, 0.06221310794353485, -0.014509564265608788, 0.16627806425094604, -0.09824009239673615, -0.07746560871601105, -0.15217293798923492, 0.04324280098080635, -0.07806341350078583, -0.0077546522952616215, -0.058922573924064636, -0.015181553550064564, 0.014298885129392147, -0.05183086171746254, -0.032698627561330795, -0.058377884328365326, -0.12352721393108368, 0.05385415256023407, -0.012331197038292885, 0.04155345261096954, -0.054463982582092285, -0.05724813789129257, 0.0847497209906578, -0.030821265652775764, 0.11617118865251541, 0.09018438309431076, -0.10438032448291779, 0.09821085631847382, -0.13388247787952423, -0.09129264950752258, 0.14725814759731293, 0.024216126650571823, 0.05978818237781525, 0.0540582649409771, 0.06403099745512009, 0.047192156314849854, -0.0045852866023778915, 0.061168648302555084, 0.007719504646956921, -0.12378180027008057, 0.045698344707489014, -0.0409126840531826, -0.164905846118927, -0.05884033814072609, -0.04561896249651909, 0.08761682361364365, -0.012640148401260376, 0.14744067192077637, -0.05921560525894165, 0.07818271964788437, -0.043779682368040085, 0.00425498653203249, -0.024777937680482864, -0.18734964728355408, -0.05658344179391861, -0.06262095272541046, 0.02370770089328289, 0.005397271830588579, 0.19336657226085663, 0.05225618928670883, 0.04455914720892906, 0.05414333567023277, 0.07564088702201843, 0.004984001163393259, 0.017253054305911064, 0.17089487612247467, 0.08044227957725525, -0.05177420750260353, -0.08118860423564911, 0.04885571822524071, 0.012456254102289677, -0.046854328364133835, 0.14691200852394104, 0.014603769406676292, -0.057750508189201355, 0.06379910558462143, -0.025422411039471626, 0.03507160395383835, -0.07477045059204102, -0.20816245675086975, -0.030704373493790627, 0.07744718343019485, 0.05020805448293686, 0.02659856714308262, 0.12876711785793304, -0.01936480775475502, 0.029783999547362328, -0.04910247027873993, -0.03588816896080971, -0.18240594863891602, -0.12670782208442688, -0.10303887724876404, -0.10115683823823929, 0.011968281120061874, -0.08194088190793991, 0.007201755419373512, 0.09093484282493591, 0.05711306259036064, -0.05709538236260414, 0.038669440895318985, 0.02517617493867874, -0.08009102940559387, 0.07818520069122314, -0.03802080452442169, 0.034674011170864105, 0.018107056617736816, -0.023108987137675285, -0.12551075220108032, -0.011664203368127346, -0.05961775779724121, 0.027902625501155853, -0.05720578506588936, 0.028535503894090652, -0.16251565515995026, -0.11771375685930252, -0.016067100688815117, 0.048928920179605484, -0.04790155589580536, 0.10176117718219757, 0.01474218349903822, 0.007151666563004255, 0.060536693781614304, 0.1956828236579895, -0.03907288238406181, -0.07107862830162048, -0.08091767132282257, 0.18876932561397552, 0.09392926841974258, 0.10866076499223709, -0.004253786522895098, -0.025976167991757393, -0.07777974009513855, 0.2670466899871826, 0.22918424010276794, -0.025836367160081863, 0.052903417497873306, -0.011949441395699978, 0.03475862741470337, 0.16623857617378235, 0.13564544916152954, 0.09313945472240448, 0.21834208071231842, -0.05875970050692558, -0.04641358554363251, -0.03685663267970085, 0.016740916296839714, -0.11907758563756943, 0.05233880504965782, 0.06111345440149307, -0.05546196922659874, -0.030252940952777863, 0.12922388315200806, -0.20541539788246155, 0.1306169480085373, -0.0030425176955759525, -0.1827373504638672, -0.07937483489513397, -0.053035810589790344, 0.08101554960012436, 0.029007859528064728, 0.07236342877149582, -0.013193377293646336, -0.13147665560245514, 0.017880350351333618, 0.04002939164638519, -0.23343519866466522, -0.03046390227973461, 0.07086934894323349, -0.04508286342024803, -0.026016652584075928, -0.037996526807546616, 0.05092271789908409, 0.07624392211437225, 0.0519292913377285, -0.000007042492143227719, 0.06178250536322594, 0.00296646635979414, 0.004631271585822105, 0.04755024611949921, 0.024831444025039673, 0.011186238378286362, -0.09124920517206192, 0.06859719008207321, -0.1553296446800232, 0.04141201823949814, -0.05435066297650337, -0.03372299298644066, 0.0012646378017961979, 0.07391667366027832, -0.05535906180739403, 0.06198090687394142, 0.09535959362983704, -0.006415512878447771, -0.020190034061670303, -0.0662420243024826, -0.033617053180933, 0.029103092849254608, -0.1301475167274475, -0.13225869834423065, -0.08820157498121262, -0.08889008313417435, 0.048778727650642395, 0.0018930908991023898, -0.1417391449213028, 0.000981544959358871, -0.1454610675573349, 0.039309900254011154, -0.16993951797485352, 0.10574591159820557, 0.0572742223739624, 0.012653550133109093, -0.012312415055930614, 0.01929859071969986, 0.04007066413760185, 0.08281270414590836, -0.14644227921962738, -0.07790561020374298 ]
null
null
transformers
At its core it uses an ELECTRA-Base model (google/electra-base-discriminator) fine-tuned on the MS MARCO passage classification task. It can be loaded using the TF/AutoModelForSequenceClassification classes but it follows the same classification layer defined for BERT similarly to the TFElectraRelevanceHead in the Capreolus BERT-MaxP implementation. Refer to our [github repository](https://github.com/BOUALILILila/ExactMatchMarking) for a usage example for ad hoc ranking.
{}
text-classification
LilaBoualili/electra-vanilla
[ "transformers", "pytorch", "tf", "electra", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us
At its core it uses an ELECTRA-Base model (google/electra-base-discriminator) fine-tuned on the MS MARCO passage classification task. It can be loaded using the TF/AutoModelForSequenceClassification classes but it follows the same classification layer defined for BERT similarly to the TFElectraRelevanceHead in the Capreolus BERT-MaxP implementation. Refer to our github repository for a usage example for ad hoc ranking.
[]
[ "TAGS\n#transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 40 ]
[ "passage: TAGS\n#transformers #pytorch #tf #electra #text-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.034931812435388565, 0.05133892223238945, -0.007088001351803541, 0.03883369266986847, 0.21984872221946716, 0.0435006357729435, 0.02479550987482071, 0.10967662185430527, 0.05456019937992096, -0.027096033096313477, 0.10571634769439697, 0.24393989145755768, -0.022465886548161507, 0.14956620335578918, -0.13087326288223267, -0.31124550104141235, 0.05396761745214462, 0.06510135531425476, -0.030948473140597343, 0.11054908484220505, 0.10167989134788513, -0.06474984437227249, 0.07625791430473328, -0.03740688040852547, -0.12736016511917114, 0.05172206461429596, 0.04343106970191002, -0.1611105352640152, 0.11824651062488556, 0.09812688827514648, 0.13916391134262085, 0.028748897835612297, -0.06067398563027382, -0.12171279639005661, 0.047745153307914734, 0.006868354976177216, -0.11736951023340225, 0.038811907172203064, 0.05892203003168106, -0.11631064116954803, 0.11338125914335251, 0.06100701168179512, 0.03453359007835388, 0.05807856097817421, -0.15478183329105377, -0.0671243742108345, -0.0010185025166720152, 0.0432114340364933, 0.05979588255286217, 0.05344681814312935, 0.002802362432703376, 0.17266882956027985, -0.11686129122972488, 0.1376263052225113, 0.07458468526601791, -0.2696961462497711, -0.022914350032806396, 0.06214120611548424, 0.031254664063453674, 0.041729748249053955, -0.03107447549700737, 0.04579692706465721, 0.04060451686382294, 0.01866094022989273, 0.015599403530359268, -0.05673587694764137, -0.13315244019031525, 0.035774774849414825, -0.09451498836278915, -0.04898933321237564, 0.2345610111951828, -0.03569736331701279, 0.06310169398784637, -0.0098462188616395, -0.09811735898256302, -0.05855381116271019, -0.0014335340820252895, 0.0044149355962872505, -0.06776110827922821, 0.05724077299237251, 0.06286880373954773, 0.01375906728208065, -0.10849623382091522, 0.03320189565420151, -0.23387180268764496, 0.24187417328357697, 0.017623649910092354, 0.04929369315505028, -0.17011773586273193, 0.04913422837853432, 0.02130637690424919, -0.10024558752775192, 0.04024815186858177, -0.10259473323822021, -0.0029150424525141716, -0.06031525135040283, -0.06989308446645737, -0.06481613218784332, 0.09848029911518097, 0.16913188993930817, 0.06687954813241959, 0.05519839748740196, -0.02108413726091385, 0.07109545916318893, 0.051465071737766266, 0.10264821350574493, 0.011090773157775402, -0.009093782864511013, 0.05816108360886574, -0.14382602274417877, -0.01964479684829712, -0.07722215354442596, -0.15501834452152252, -0.035259220749139786, 0.06074810400605202, 0.09238637238740921, 0.003549793269485235, 0.09048455208539963, -0.04785824939608574, -0.039572857320308685, 0.08776214718818665, -0.08928284049034119, -0.002925930079072714, 0.003380808047950268, -0.002548827324062586, 0.10401380807161331, 0.0016960068605840206, -0.004673343151807785, -0.09918622672557831, 0.10019423812627792, -0.0568179115653038, -0.016449876129627228, -0.0031519331969320774, -0.0884992852807045, 0.04325466230511665, -0.15935641527175903, 0.04485276713967323, -0.21868358552455902, -0.10050680488348007, 0.017112014815211296, 0.009167750366032124, -0.007826652377843857, -0.05770425498485565, -0.015617993660271168, 0.0029302448965609074, 0.043281540274620056, -0.03926357999444008, -0.09320637583732605, -0.07526463270187378, 0.10973849892616272, -0.025011224672198296, 0.0761844590306282, -0.1241147518157959, 0.07054807245731354, -0.07338891178369522, -0.055143605917692184, -0.13656258583068848, 0.04103537276387215, -0.025226019322872162, 0.16590259969234467, 0.0018757801735773683, -0.055542826652526855, -0.05421922355890274, 0.06447785347700119, -0.07694755494594574, 0.17293429374694824, -0.0760887861251831, -0.10766411572694778, 0.20061804354190826, -0.11776978522539139, -0.14914508163928986, 0.09702253341674805, -0.00029521097894757986, -0.003779360558837652, 0.10391707718372345, 0.1392717957496643, 0.10418694466352463, -0.020775767043232918, 0.08348341286182404, 0.08135520666837692, -0.1308133751153946, -0.09212470054626465, -0.006175982765853405, 0.017587168142199516, -0.12441685795783997, 0.038779065012931824, 0.09585616737604141, 0.10185882449150085, -0.05141918361186981, -0.021608302369713783, -0.01440176647156477, -0.004786889534443617, 0.14224229753017426, 0.053900059312582016, 0.09003717452287674, -0.08822591602802277, -0.016833199188113213, -0.003930289763957262, -0.0008461719262413681, 0.021795613691210747, 0.002160039497539401, -0.0995260551571846, 0.11161050200462341, 0.02601948380470276, 0.030368398874998093, -0.21963734924793243, -0.11784756183624268, -0.026054419577121735, 0.15123820304870605, 0.00159532914403826, 0.13094089925289154, 0.03373958170413971, -0.05033111944794655, -0.014554331079125404, -0.020271021872758865, 0.16209663450717926, 0.01761586032807827, -0.03633314371109009, -0.07312352955341339, 0.06668152660131454, -0.0737883523106575, 0.0032293363474309444, -0.12005928158760071, 0.022875912487506866, 0.09042132645845413, 0.12949560582637787, 0.01893024332821369, 0.08341067284345627, -0.015440241433680058, 0.05735274404287338, -0.08370322734117508, 0.011114093475043774, 0.08110965043306351, 0.001128270523622632, -0.08142515271902084, 0.13967297971248627, -0.16492076218128204, 0.3244531452655792, 0.18519292771816254, -0.26334381103515625, -0.043640248477458954, -0.011793237179517746, -0.003790194634348154, 0.028070319443941116, 0.018792174756526947, -0.005810195580124855, 0.08548181504011154, -0.01992059499025345, 0.20227280259132385, -0.03721758350729942, -0.055162325501441956, 0.007170553784817457, -0.0343041867017746, -0.026508597657084465, 0.09234809875488281, 0.10041934996843338, -0.24877028167247772, 0.17822252213954926, 0.15847748517990112, 0.027112839743494987, 0.1786709874868393, -0.008439045399427414, 0.03422195836901665, 0.08957947790622711, -0.0386715792119503, -0.0061350734904408455, -0.08805692940950394, -0.1551537811756134, -0.025205958634614944, 0.07254008948802948, 0.0178998950868845, 0.04724938049912453, -0.09850509464740753, -0.0422261580824852, 0.01889217644929886, 0.01097430195659399, -0.028507208451628685, 0.11170352250337601, 0.06826898455619812, 0.12706723809242249, -0.015646105632185936, -0.09149926155805588, 0.10814959555864334, 0.019808465614914894, -0.10169453918933868, 0.18812678754329681, -0.1432332843542099, -0.35345780849456787, -0.13548630475997925, -0.1484254151582718, 0.0046804118901491165, 0.05373098701238632, 0.1135849878191948, -0.09773430228233337, -0.05029875040054321, 0.028516991063952446, -0.00830144714564085, -0.049296390265226364, 0.05115225166082382, -0.056047502905130386, 0.0669238492846489, -0.058612190186977386, -0.06426289677619934, -0.0633867084980011, -0.013086551800370216, 0.006708869244903326, 0.1731005758047104, -0.1314769834280014, 0.08366534858942032, 0.188361257314682, -0.02349105291068554, 0.06990714371204376, -0.051703307777643204, 0.17581512033939362, -0.1175495907664299, 0.015436504036188126, 0.20067386329174042, -0.07785671204328537, 0.06587240844964981, 0.14473764598369598, 0.0060109724290668964, -0.06577838212251663, 0.05131920427083969, -0.04506641998887062, -0.10384781658649445, -0.22632107138633728, -0.14341974258422852, -0.12311029434204102, 0.05304177105426788, 0.059235405176877975, 0.08503179997205734, 0.1774698793888092, 0.0642148107290268, 0.0018952102400362492, -0.005164529662579298, 0.014949273318052292, 0.07331736385822296, 0.25982561707496643, 0.036124516278505325, 0.13263465464115143, -0.08069553971290588, -0.1307116597890854, 0.10001695156097412, -0.02879076637327671, 0.11206962913274765, 0.08815266937017441, 0.017234379425644875, -0.001027323305606842, 0.03821238875389099, 0.15765835344791412, 0.134427011013031, 0.04976515471935272, -0.023695630952715874, -0.022781413048505783, 0.00920990202575922, -0.04590943828225136, 0.01511219423264265, 0.06763999164104462, -0.15887919068336487, -0.09150808304548264, -0.11882307380437851, 0.07823382318019867, 0.09379033744335175, 0.03971337899565697, -0.23638053238391876, -0.004380756989121437, 0.05981294810771942, -0.05436217784881592, -0.10538921505212784, 0.05355868488550186, -0.040051087737083435, -0.14830535650253296, 0.14106351137161255, -0.028966916725039482, 0.12168604880571365, -0.04865368828177452, 0.06084844097495079, -0.030217934399843216, -0.10218171775341034, 0.007867876440286636, 0.0992523655295372, -0.263470858335495, 0.22091622650623322, 0.005493694916367531, -0.06587182730436325, -0.0868886411190033, -0.024561041966080666, 0.049778830260038376, 0.21933382749557495, 0.055523548275232315, -0.00779156805947423, -0.0993555560708046, -0.1768111288547516, 0.021871106699109077, 0.016404466703534126, 0.09741007536649704, -0.03919835388660431, -0.004814796149730682, -0.04536096006631851, -0.02583923377096653, -0.02155248634517193, -0.03313875570893288, 0.03499499335885048, -0.15075579285621643, 0.050210412591695786, 0.035171255469322205, 0.08958756178617477, 0.03081698901951313, -0.052561674267053604, -0.10224327445030212, 0.13529476523399353, -0.11280865222215652, -0.09195172041654587, -0.1386156529188156, -0.049832116812467575, 0.024140270426869392, -0.1017710492014885, 0.09575381875038147, -0.06569094210863113, 0.03701051324605942, -0.041870586574077606, -0.2074356973171234, 0.13414324820041656, -0.11188474297523499, -0.03443722799420357, -0.04203062877058983, 0.12070098519325256, -0.05951443687081337, 0.00967604573816061, 0.03736400231719017, 0.01634976826608181, -0.06185568869113922, -0.06759488582611084, -0.007904496043920517, -0.024718623608350754, 0.04655181244015694, 0.07933398336172104, -0.07221653312444687, -0.08357322216033936, -0.021106017753481865, -0.015751652419567108, 0.27950742840766907, 0.14729033410549164, -0.061577245593070984, 0.12941937148571014, 0.08804463595151901, -0.057541072368621826, -0.28550443053245544, -0.09342062473297119, -0.08846978098154068, -0.032397761940956116, -0.004892501048743725, -0.17064593732357025, 0.09346875548362732, 0.012546991929411888, 0.0034477778244763613, 0.13158664107322693, -0.14304928481578827, -0.07413724064826965, 0.1739404797554016, -0.03874432295560837, 0.3254956603050232, -0.1099804937839508, -0.07776613533496857, -0.0467224158346653, -0.11747181415557861, 0.1340506672859192, 0.006744143553078175, 0.06792876869440079, -0.0072509972378611565, 0.03264644369482994, 0.04678526148200035, -0.013029477559030056, 0.0889272466301918, 0.0007747848867438734, 0.015107237733900547, -0.1330028921365738, -0.0834340751171112, -0.022664448246359825, -0.010107195936143398, 0.019736940041184425, -0.023442523553967476, 0.010074841789901257, -0.17905597388744354, -0.045930083841085434, -0.0754937082529068, 0.06480482220649719, 0.055107202380895615, -0.029562389478087425, 0.006418263539671898, -0.029295451939105988, 0.008739309385418892, -0.013985970057547092, 0.23005515336990356, -0.05675114318728447, 0.21452738344669342, 0.0783199742436409, 0.16390013694763184, -0.13142873346805573, 0.0199021864682436, -0.0865369364619255, -0.05284855514764786, 0.058652911335229874, -0.08478976041078568, 0.08084507286548615, 0.1343194544315338, -0.059219978749752045, 0.08473223447799683, 0.10293655097484589, 0.05366650968790054, -0.015964128077030182, 0.17121024429798126, -0.20365968346595764, 0.05442357435822487, -0.06996110081672668, -0.016607435420155525, 0.07436878234148026, 0.05793895944952965, 0.14473234117031097, 0.04190025478601456, -0.04561406373977661, -0.004475509747862816, -0.023223353549838066, 0.015771357342600822, 0.0628015324473381, 0.08855828642845154, 0.042909231036901474, -0.1276121288537979, 0.030346013605594635, 0.05775922164320946, -0.16508859395980835, 0.0129836555570364, 0.15739628672599792, -0.15906253457069397, -0.1324116587638855, 0.005690340418368578, 0.11420130729675293, -0.18838860094547272, -0.0621643103659153, -0.08236785978078842, -0.12074966728687286, 0.0906313955783844, 0.3087921440601349, 0.09645648300647736, 0.06752476096153259, -0.025616027414798737, -0.03822923079133034, 0.0015868968330323696, -0.009244411252439022, 0.030175132676959038, 0.014154249802231789, -0.14859388768672943, 0.06221310794353485, -0.014509564265608788, 0.16627806425094604, -0.09824009239673615, -0.07746560871601105, -0.15217293798923492, 0.04324280098080635, -0.07806341350078583, -0.0077546522952616215, -0.058922573924064636, -0.015181553550064564, 0.014298885129392147, -0.05183086171746254, -0.032698627561330795, -0.058377884328365326, -0.12352721393108368, 0.05385415256023407, -0.012331197038292885, 0.04155345261096954, -0.054463982582092285, -0.05724813789129257, 0.0847497209906578, -0.030821265652775764, 0.11617118865251541, 0.09018438309431076, -0.10438032448291779, 0.09821085631847382, -0.13388247787952423, -0.09129264950752258, 0.14725814759731293, 0.024216126650571823, 0.05978818237781525, 0.0540582649409771, 0.06403099745512009, 0.047192156314849854, -0.0045852866023778915, 0.061168648302555084, 0.007719504646956921, -0.12378180027008057, 0.045698344707489014, -0.0409126840531826, -0.164905846118927, -0.05884033814072609, -0.04561896249651909, 0.08761682361364365, -0.012640148401260376, 0.14744067192077637, -0.05921560525894165, 0.07818271964788437, -0.043779682368040085, 0.00425498653203249, -0.024777937680482864, -0.18734964728355408, -0.05658344179391861, -0.06262095272541046, 0.02370770089328289, 0.005397271830588579, 0.19336657226085663, 0.05225618928670883, 0.04455914720892906, 0.05414333567023277, 0.07564088702201843, 0.004984001163393259, 0.017253054305911064, 0.17089487612247467, 0.08044227957725525, -0.05177420750260353, -0.08118860423564911, 0.04885571822524071, 0.012456254102289677, -0.046854328364133835, 0.14691200852394104, 0.014603769406676292, -0.057750508189201355, 0.06379910558462143, -0.025422411039471626, 0.03507160395383835, -0.07477045059204102, -0.20816245675086975, -0.030704373493790627, 0.07744718343019485, 0.05020805448293686, 0.02659856714308262, 0.12876711785793304, -0.01936480775475502, 0.029783999547362328, -0.04910247027873993, -0.03588816896080971, -0.18240594863891602, -0.12670782208442688, -0.10303887724876404, -0.10115683823823929, 0.011968281120061874, -0.08194088190793991, 0.007201755419373512, 0.09093484282493591, 0.05711306259036064, -0.05709538236260414, 0.038669440895318985, 0.02517617493867874, -0.08009102940559387, 0.07818520069122314, -0.03802080452442169, 0.034674011170864105, 0.018107056617736816, -0.023108987137675285, -0.12551075220108032, -0.011664203368127346, -0.05961775779724121, 0.027902625501155853, -0.05720578506588936, 0.028535503894090652, -0.16251565515995026, -0.11771375685930252, -0.016067100688815117, 0.048928920179605484, -0.04790155589580536, 0.10176117718219757, 0.01474218349903822, 0.007151666563004255, 0.060536693781614304, 0.1956828236579895, -0.03907288238406181, -0.07107862830162048, -0.08091767132282257, 0.18876932561397552, 0.09392926841974258, 0.10866076499223709, -0.004253786522895098, -0.025976167991757393, -0.07777974009513855, 0.2670466899871826, 0.22918424010276794, -0.025836367160081863, 0.052903417497873306, -0.011949441395699978, 0.03475862741470337, 0.16623857617378235, 0.13564544916152954, 0.09313945472240448, 0.21834208071231842, -0.05875970050692558, -0.04641358554363251, -0.03685663267970085, 0.016740916296839714, -0.11907758563756943, 0.05233880504965782, 0.06111345440149307, -0.05546196922659874, -0.030252940952777863, 0.12922388315200806, -0.20541539788246155, 0.1306169480085373, -0.0030425176955759525, -0.1827373504638672, -0.07937483489513397, -0.053035810589790344, 0.08101554960012436, 0.029007859528064728, 0.07236342877149582, -0.013193377293646336, -0.13147665560245514, 0.017880350351333618, 0.04002939164638519, -0.23343519866466522, -0.03046390227973461, 0.07086934894323349, -0.04508286342024803, -0.026016652584075928, -0.037996526807546616, 0.05092271789908409, 0.07624392211437225, 0.0519292913377285, -0.000007042492143227719, 0.06178250536322594, 0.00296646635979414, 0.004631271585822105, 0.04755024611949921, 0.024831444025039673, 0.011186238378286362, -0.09124920517206192, 0.06859719008207321, -0.1553296446800232, 0.04141201823949814, -0.05435066297650337, -0.03372299298644066, 0.0012646378017961979, 0.07391667366027832, -0.05535906180739403, 0.06198090687394142, 0.09535959362983704, -0.006415512878447771, -0.020190034061670303, -0.0662420243024826, -0.033617053180933, 0.029103092849254608, -0.1301475167274475, -0.13225869834423065, -0.08820157498121262, -0.08889008313417435, 0.048778727650642395, 0.0018930908991023898, -0.1417391449213028, 0.000981544959358871, -0.1454610675573349, 0.039309900254011154, -0.16993951797485352, 0.10574591159820557, 0.0572742223739624, 0.012653550133109093, -0.012312415055930614, 0.01929859071969986, 0.04007066413760185, 0.08281270414590836, -0.14644227921962738, -0.07790561020374298 ]
null
null
null
okuma lan kardeş,im
{}
null
LinuxMac/denema
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
okuma lan kardeş,im
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
transformers
## End-to-end Conversational search model A end-to-end system of conversational search system for online shopping. It was introduced in [this paper](https://arxiv.org/abs/2109.05460) published on conference EMNLP. ## Model description ConvSearch is an end-to-end conversational search system that deeply combines the dialog and search system to improve the search performance. In particular, the Product Search module leverages both structured product attributes and unstructured product text (e.g. profile), where the product text may contain phrases matching with utterances when schema is incomplete or when a product attribute value is missing. Putting together, our system has the advantage of both reduced error accumulation along individual modules, and enhanced robustness against product schema/knowledge gaps. ## Intended uses & limitations You can use the raw model to understand the dialog between consumer and server. The concatenated dialogs can be parsed into intents (e.g. inform, request, buy, et al.) and attributes of products. You can also fine-tune this model on similar down-stream tasks, such as a dialog system for shopping in your scenario or customer service system. Since our model is seq-to-seq, any dialog system that can be reformed to seq-to-seq can be implemented based on this model. ## How to use You can use this model directly with: from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("LiqiangXiao/ConvSearch_QU") model = AutoModelForSeq2SeqLM.from_pretrained("LiqiangXiao/ConvSearch_QU") ## Training data ConvSearch was pretrained on a dialog corpus with 49,999 dialogs/942,766 turns.
{}
text2text-generation
LiqiangXiao/ConvSearch_QU
[ "transformers", "pytorch", "bart", "text2text-generation", "arxiv:2109.05460", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2109.05460" ]
[]
TAGS #transformers #pytorch #bart #text2text-generation #arxiv-2109.05460 #autotrain_compatible #endpoints_compatible #region-us
## End-to-end Conversational search model A end-to-end system of conversational search system for online shopping. It was introduced in this paper published on conference EMNLP. ## Model description ConvSearch is an end-to-end conversational search system that deeply combines the dialog and search system to improve the search performance. In particular, the Product Search module leverages both structured product attributes and unstructured product text (e.g. profile), where the product text may contain phrases matching with utterances when schema is incomplete or when a product attribute value is missing. Putting together, our system has the advantage of both reduced error accumulation along individual modules, and enhanced robustness against product schema/knowledge gaps. ## Intended uses & limitations You can use the raw model to understand the dialog between consumer and server. The concatenated dialogs can be parsed into intents (e.g. inform, request, buy, et al.) and attributes of products. You can also fine-tune this model on similar down-stream tasks, such as a dialog system for shopping in your scenario or customer service system. Since our model is seq-to-seq, any dialog system that can be reformed to seq-to-seq can be implemented based on this model. ## How to use You can use this model directly with: from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("LiqiangXiao/ConvSearch_QU") model = AutoModelForSeq2SeqLM.from_pretrained("LiqiangXiao/ConvSearch_QU") ## Training data ConvSearch was pretrained on a dialog corpus with 49,999 dialogs/942,766 turns.
[ "## End-to-end Conversational search model\nA end-to-end system of conversational search system for online shopping. It was introduced in this paper published on conference EMNLP.", "## Model description\nConvSearch is an end-to-end conversational search system that deeply combines the dialog and search system to improve the search performance. In particular, the Product Search module leverages both structured product attributes and unstructured product text (e.g. profile), where the product text may contain phrases matching with utterances when schema is incomplete or when a product attribute value is missing. Putting together, our system has the advantage of both reduced error accumulation along individual modules, and enhanced robustness against product schema/knowledge gaps.", "## Intended uses & limitations \nYou can use the raw model to understand the dialog between consumer and server. The concatenated dialogs can be parsed into intents (e.g. inform, request, buy, et al.) and attributes of products.\n\nYou can also fine-tune this model on similar down-stream tasks, such as a dialog system for shopping in your scenario or customer service system. Since our model is seq-to-seq, any dialog system that can be reformed to seq-to-seq can be implemented based on this model.", "## How to use \nYou can use this model directly with:\n\n \n from transformers import AutoTokenizer, AutoModelForSeq2SeqLM\n tokenizer = AutoTokenizer.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")\n model = AutoModelForSeq2SeqLM.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")", "## Training data\nConvSearch was pretrained on a dialog corpus with 49,999 dialogs/942,766 turns." ]
[ "TAGS\n#transformers #pytorch #bart #text2text-generation #arxiv-2109.05460 #autotrain_compatible #endpoints_compatible #region-us \n", "## End-to-end Conversational search model\nA end-to-end system of conversational search system for online shopping. It was introduced in this paper published on conference EMNLP.", "## Model description\nConvSearch is an end-to-end conversational search system that deeply combines the dialog and search system to improve the search performance. In particular, the Product Search module leverages both structured product attributes and unstructured product text (e.g. profile), where the product text may contain phrases matching with utterances when schema is incomplete or when a product attribute value is missing. Putting together, our system has the advantage of both reduced error accumulation along individual modules, and enhanced robustness against product schema/knowledge gaps.", "## Intended uses & limitations \nYou can use the raw model to understand the dialog between consumer and server. The concatenated dialogs can be parsed into intents (e.g. inform, request, buy, et al.) and attributes of products.\n\nYou can also fine-tune this model on similar down-stream tasks, such as a dialog system for shopping in your scenario or customer service system. Since our model is seq-to-seq, any dialog system that can be reformed to seq-to-seq can be implemented based on this model.", "## How to use \nYou can use this model directly with:\n\n \n from transformers import AutoTokenizer, AutoModelForSeq2SeqLM\n tokenizer = AutoTokenizer.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")\n model = AutoModelForSeq2SeqLM.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")", "## Training data\nConvSearch was pretrained on a dialog corpus with 49,999 dialogs/942,766 turns." ]
[ 46, 41, 125, 127, 91, 27 ]
[ "passage: TAGS\n#transformers #pytorch #bart #text2text-generation #arxiv-2109.05460 #autotrain_compatible #endpoints_compatible #region-us \n## End-to-end Conversational search model\nA end-to-end system of conversational search system for online shopping. It was introduced in this paper published on conference EMNLP.## Model description\nConvSearch is an end-to-end conversational search system that deeply combines the dialog and search system to improve the search performance. In particular, the Product Search module leverages both structured product attributes and unstructured product text (e.g. profile), where the product text may contain phrases matching with utterances when schema is incomplete or when a product attribute value is missing. Putting together, our system has the advantage of both reduced error accumulation along individual modules, and enhanced robustness against product schema/knowledge gaps.## Intended uses & limitations \nYou can use the raw model to understand the dialog between consumer and server. The concatenated dialogs can be parsed into intents (e.g. inform, request, buy, et al.) and attributes of products.\n\nYou can also fine-tune this model on similar down-stream tasks, such as a dialog system for shopping in your scenario or customer service system. Since our model is seq-to-seq, any dialog system that can be reformed to seq-to-seq can be implemented based on this model.## How to use \nYou can use this model directly with:\n\n \n from transformers import AutoTokenizer, AutoModelForSeq2SeqLM\n tokenizer = AutoTokenizer.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")\n model = AutoModelForSeq2SeqLM.from_pretrained(\"LiqiangXiao/ConvSearch_QU\")## Training data\nConvSearch was pretrained on a dialog corpus with 49,999 dialogs/942,766 turns." ]
[ -0.03590074181556702, 0.17147168517112732, -0.005115211475640535, 0.04221082478761673, 0.07566798478364944, -0.014726592227816582, 0.10327416658401489, 0.07420400530099869, 0.03399872034788132, 0.01566363126039505, -0.053063031286001205, 0.03805403783917427, 0.0584990456700325, 0.126864954829216, 0.024914927780628204, -0.21137937903404236, 0.010164931416511536, -0.06617309153079987, 0.057378798723220825, 0.07652117311954498, 0.11560803651809692, -0.05907955393195152, 0.08891629427671432, 0.07073143124580383, 0.04174749553203583, -0.011459662578999996, -0.003203960368409753, -0.029970813542604446, 0.0627790093421936, 0.0974755734205246, 0.09443304687738419, -0.03406546264886856, 0.06876536458730698, -0.1893831044435501, 0.021745821461081505, 0.02356848120689392, 0.0030471535865217447, 0.017311304807662964, 0.04442957416176796, -0.000542792200576514, 0.04965697228908539, 0.026813941076397896, 0.09218686074018478, 0.06852268427610397, -0.057929057627916336, 0.035985082387924194, -0.08867613971233368, 0.097262442111969, 0.13027900457382202, 0.09131952375173569, -0.006149039138108492, 0.03761383518576622, -0.030362101271748543, 0.03952721878886223, -0.007366784382611513, -0.186093270778656, -0.002517062472179532, 0.032190170139074326, 0.0007013356662355363, -0.0007900681812316179, -0.030223971232771873, -0.05483122915029526, -0.04671985283493996, 0.02327549085021019, 0.014927977696061134, -0.03492921218276024, -0.053677402436733246, -0.008175873197615147, -0.08005981147289276, -0.02010098472237587, 0.14895233511924744, 0.007611132226884365, -0.06960418075323105, -0.16596153378486633, -0.05498901382088661, 0.040612053126096725, -0.011335227638483047, -0.07662315666675568, 0.017348824068903923, 0.05247630551457405, 0.0004681339778471738, -0.1296970397233963, -0.11753945052623749, -0.034066252410411835, -0.11376134306192398, 0.07554033398628235, 0.050525348633527756, 0.013439370319247246, -0.06051428243517876, 0.04046764597296715, -0.08904202282428741, -0.038359057158231735, -0.05761561170220375, -0.07154294848442078, -0.1460113227367401, -0.03175085783004761, -0.05133356899023056, -0.08440317213535309, -0.011977235786616802, 0.16807770729064941, -0.027931660413742065, 0.041296347975730896, 0.06926845759153366, 0.009575328789651394, 0.0794861912727356, 0.21212811768054962, 0.011849723756313324, -0.05400161072611809, 0.0076881954446434975, -0.0018396778032183647, 0.02354799024760723, -0.011992547661066055, -0.10143384337425232, -0.02612331695854664, -0.0639357715845108, 0.0146891288459301, 0.05756708234548569, 0.016285942867398262, -0.06286764144897461, -0.07865775376558304, 0.16466869413852692, -0.12012253701686859, 0.0015700983349233866, 0.007127263117581606, -0.0803203284740448, -0.012479595839977264, 0.04224400967359543, 0.03560560196638107, -0.08620103448629379, -0.00683575076982379, -0.04276403784751892, -0.02280598133802414, -0.09942827373743057, -0.051465701311826706, 0.014700301922857761, -0.03866714984178543, -0.035153232514858246, -0.10493560880422592, -0.22913236916065216, -0.033594969660043716, 0.03814628720283508, -0.03695667162537575, -0.03229597210884094, 0.0041589634492993355, 0.054779745638370514, -0.04738470911979675, -0.0071005080826580524, -0.09204258769750595, -0.008379414677619934, -0.033393289893865585, -0.030571438372135162, 0.023455703631043434, 0.01770288683474064, 0.018763933330774307, -0.10344713181257248, -0.0023289592936635017, -0.12834897637367249, 0.143016517162323, -0.016217296943068504, -0.038514144718647, -0.0825195461511612, 0.02886447310447693, -0.09270244091749191, 0.03498401492834091, -0.00999167375266552, 0.10838524252176285, -0.19552835822105408, -0.01739717274904251, 0.09574752300977707, -0.11489088088274002, -0.023413898423314095, 0.06209270656108856, -0.03801427409052849, 0.08895653486251831, 0.11515827476978302, 0.15053603053092957, 0.1506551206111908, -0.043407753109931946, -0.08056744933128357, 0.05167762190103531, -0.08294055610895157, 0.08281654119491577, 0.06835956126451492, -0.09553811699151993, 0.15887315571308136, 0.01996089704334736, 0.026995429769158363, -0.04181048646569252, 0.03957940265536308, -0.06013163924217224, 0.016215890645980835, -0.03214751556515694, 0.05966867506504059, -0.05481428653001785, -0.029105423018336296, 0.06084076315164566, -0.09284981340169907, 0.05805175006389618, 0.07914286106824875, -0.04579693824052811, 0.01646009087562561, -0.1316235512495041, -0.0044784885831177235, 0.023870527744293213, 0.010839825496077538, -0.1876625120639801, -0.10906728357076645, 0.04182187095284462, -0.1257796436548233, 0.14312000572681427, 0.008608995005488396, 0.04580976441502571, 0.023846518248319626, 0.017138516530394554, -0.0008472504559904337, -0.05265776067972183, -0.016022861003875732, -0.0472022108733654, -0.09330839663743973, -0.06418981403112411, -0.030535150319337845, 0.1451529562473297, -0.0024914867244660854, 0.029651693999767303, 0.02059752680361271, 0.050902362912893295, 0.051107682287693024, -0.04186401516199112, 0.00998757965862751, -0.03228946402668953, 0.0012089532101526856, -0.0210795309394598, -0.015926392748951912, 0.021456068381667137, -0.09121797978878021, 0.1257118582725525, -0.1483735293149948, -0.1363123506307602, 0.05951171740889549, 0.02141759730875492, -0.03599406033754349, -0.07686426490545273, 0.00462358957156539, -0.008869022130966187, -0.0689471960067749, -0.07125680893659592, 0.2570687532424927, 0.07992121577262878, 0.07375944405794144, -0.0723181888461113, -0.04594727233052254, -0.049326974898576736, -0.049001000821590424, 0.01591760292649269, 0.016199763864278793, 0.05065038427710533, -0.13595500588417053, 0.03696712478995323, -0.012152825482189655, 0.04976654797792435, 0.11867493391036987, 0.02381940931081772, -0.04346475750207901, -0.037999872118234634, 0.005532077979296446, -0.024993108585476875, 0.06717949360609055, -0.031328752636909485, 0.04269678145647049, 0.052688341587781906, 0.03588293865323067, 0.05900415778160095, -0.095250204205513, 0.07127560675144196, 0.07768339663743973, -0.015615830197930336, 0.00002683465208974667, -0.016176307573914528, 0.020157063379883766, 0.04257791116833687, 0.07783578336238861, 0.0676254853606224, -0.01490298006683588, -0.061478350311517715, -0.1278093457221985, 0.137018084526062, -0.14041852951049805, -0.2336680144071579, -0.1695849746465683, 0.010813023895025253, -0.05097530037164688, 0.0525844432413578, 0.014524797908961773, -0.04859226942062378, -0.08009234070777893, -0.0738821029663086, 0.001828896114602685, 0.021719828248023987, -0.09378968924283981, -0.07501642405986786, 0.020373305305838585, -0.02592558041214943, -0.12786203622817993, -0.006782527547329664, -0.019829366356134415, -0.08510305732488632, -0.05404059961438179, 0.022675348445773125, 0.06787676364183426, 0.13417458534240723, -0.010137941688299179, -0.03213970363140106, -0.01575196161866188, 0.21621917188167572, -0.04249892383813858, 0.05750145763158798, 0.21112152934074402, -0.06472209095954895, 0.056185510009527206, 0.11666686087846756, 0.01584804430603981, -0.00016742214211262763, 0.014945837669074535, 0.03919573128223419, -0.03051668591797352, -0.20114153623580933, -0.088040292263031, -0.0314338393509388, -0.03141627088189125, 0.013663177378475666, 0.023962507024407387, 0.029157273471355438, 0.03649032115936279, -0.0657271295785904, 0.020446736365556717, 0.09126719832420349, 0.09703314304351807, 0.18841096758842468, -0.02265358157455921, 0.07878033816814423, -0.04444580152630806, -0.0019529653945937753, 0.08396100997924805, 0.08823959529399872, 0.20325449109077454, 0.038654301315546036, 0.212273970246315, 0.07441048324108124, 0.02540721744298935, 0.04663269966840744, -0.00012391203199513257, -0.000268066069111228, 0.0379469133913517, -0.021683650091290474, -0.06034114211797714, -0.10012061148881912, 0.09079279750585556, 0.016492972150444984, -0.02507810853421688, -0.005197438877075911, 0.0594334602355957, 0.04785177856683731, 0.14850160479545593, -0.012197041884064674, -0.10410504788160324, -0.07437939196825027, 0.026805751025676727, -0.08746559172868729, -0.026749026030302048, -0.014296063221991062, 0.07379048317670822, -0.1345100849866867, 0.0009054532856680453, 0.04676754027605057, 0.1173059269785881, -0.12678198516368866, 0.013985621742904186, -0.006755038630217314, 0.03801405057311058, 0.044195760041475296, 0.06587962806224823, -0.04342566058039665, 0.07304106652736664, 0.04003675654530525, 0.08519978076219559, -0.03814316540956497, 0.0692582055926323, 0.004088993649929762, -0.010210544802248478, 0.034260597079992294, 0.008588804863393307, 0.0037865578196942806, -0.07081249356269836, -0.06500427424907684, 0.02538464032113552, 0.048202432692050934, -0.014363079331815243, 0.08936581015586853, -0.04621792957186699, -0.006345557514578104, -0.0408700667321682, 0.030473385006189346, -0.08883146941661835, -0.22477760910987854, 0.034028973430395126, -0.059444401413202286, 0.020643295720219612, -0.014803415164351463, 0.053266897797584534, 0.006982836872339249, 0.16643941402435303, -0.1696450114250183, -0.09438437968492508, -0.09837303310632706, -0.09064660966396332, 0.09207112342119217, -0.08524046838283539, 0.061391592025756836, 0.010420046746730804, 0.14543002843856812, -0.006439608987420797, -0.09263765066862106, -0.03410742059350014, -0.07472367584705353, -0.062409162521362305, -0.0256369486451149, 0.027490492910146713, 0.06170033663511276, 0.0620354600250721, 0.05608447641134262, -0.0006385729066096246, -0.09577334672212601, -0.1148354783654213, -0.08561137318611145, 0.1870122104883194, 0.05403677001595497, 0.06679738312959671, -0.07311628758907318, -0.08425755798816681, -0.07715720683336258, 0.04340478777885437, 0.07512179017066956, 0.08634400367736816, -0.052051085978746414, 0.11261554062366486, 0.15606436133384705, -0.06792052835226059, -0.11697214841842651, -0.08292979747056961, 0.02657465822994709, 0.01943868398666382, 0.09358736872673035, -0.138870507478714, 0.0631856694817543, 0.05077958106994629, -0.041766826063394547, -0.09516073018312454, -0.22846637666225433, -0.12265385687351227, 0.026924174278974533, 0.01293033268302679, -0.09568032622337341, -0.03160855174064636, -0.03699592128396034, -0.03013700060546398, -0.13472215831279755, 0.09318988025188446, -0.058654963970184326, 0.04869909957051277, 0.043162018060684204, 0.0989692285656929, 0.03537965938448906, 0.0007045206148177385, 0.08571470528841019, -0.02190205082297325, 0.01613544300198555, -0.008984486572444439, 0.028805868700146675, 0.003926938399672508, -0.03257737308740616, 0.1237449198961258, 0.03998251631855965, 0.05182725936174393, -0.10373543202877045, -0.06369031965732574, 0.026965966448187828, 0.003099630121141672, -0.022217100486159325, -0.05556722730398178, -0.030849233269691467, 0.04310709238052368, 0.057896364480257034, 0.018371930345892906, -0.032250236719846725, -0.08530054986476898, 0.005936768837273121, 0.12661103904247284, 0.14427326619625092, 0.00741993635892868, -0.1608484387397766, -0.04426852986216545, -0.00846809707581997, 0.03370142728090286, -0.032965779304504395, 0.04329819604754448, 0.04915755242109299, 0.001879426185041666, 0.11664737015962601, 0.0016006899531930685, -0.0862332433462143, 0.03538923338055611, 0.02110651507973671, -0.03047211468219757, -0.12486948072910309, -0.018729310482740402, 0.06986166536808014, -0.1112101599574089, -0.030941050499677658, 0.12909866869449615, 0.01837206818163395, -0.03977756202220917, 0.002045203233137727, 0.04389118403196335, 0.006333508063107729, 0.07772871106863022, -0.006358753889799118, 0.0024737881030887365, -0.069239042699337, 0.07683781534433365, 0.10766537487506866, -0.03976907208561897, 0.03518100455403328, 0.0424589179456234, -0.0800061970949173, -0.07481509447097778, -0.13335968554019928, 0.042679596692323685, -0.06066287308931351, -0.07719072699546814, -0.007024705410003662, -0.023322004824876785, 0.015505505725741386, 0.04155772924423218, 0.03567396104335785, 0.04058574512600899, -0.047805849462747574, 0.021234242245554924, -0.018093541264533997, 0.06469392776489258, 0.03759228438138962, -0.0013251900672912598, -0.0675542876124382, 0.0037479097954928875, 0.0357537604868412, -0.010314223356544971, 0.0006580291083082557, -0.08051900565624237, -0.05763852596282959, -0.012946881353855133, -0.12414892762899399, 0.04157065600156784, -0.09472759813070297, -0.0024709077551960945, 0.011331853456795216, 0.018350407481193542, 0.003959570545703173, 0.027315082028508186, -0.018409129232168198, -0.052527423948049545, -0.039336707442998886, 0.04695195332169533, -0.16169913113117218, 0.06632693111896515, 0.05127790570259094, -0.03344837203621864, 0.0821000188589096, 0.046216465532779694, -0.013412180356681347, 0.01340956799685955, -0.041521355509757996, -0.021388499066233635, -0.04724952578544617, 0.08293847739696503, 0.04277715086936951, -0.07913807779550552, 0.013198641128838062, 0.007881279103457928, -0.05216491222381592, -0.05004878714680672, 0.10431051254272461, -0.09266872704029083, 0.07210469245910645, 0.011234713718295097, -0.03898879885673523, -0.10676026344299316, 0.03457694500684738, 0.08454716950654984, 0.06201643496751785, 0.14079387485980988, -0.003942758776247501, 0.043603260070085526, -0.10299237817525864, 0.002961867954581976, 0.01605321280658245, 0.06857294589281082, -0.09901357442140579, -0.0942639410495758, -0.010819329880177975, 0.002596084028482437, 0.11831685900688171, 0.024685312062501907, 0.11651246249675751, 0.03178840130567551, 0.02416406385600567, 0.033360790461301804, 0.0032423660159111023, -0.04133565351366997, 0.029008472338318825, 0.014064432121813297, 0.020247645676136017, 0.026785679161548615, -0.05412859469652176, -0.17484435439109802, 0.058747511357069016, 0.06960863620042801, 0.008084030821919441, 0.05285892263054848, 0.05922233685851097, 0.0016316234832629561, -0.12604977190494537, -0.05531205236911774, -0.05552181228995323, -0.05006133392453194, -0.0561823695898056, 0.05443882942199707, 0.1385839283466339, -0.14118941128253937, 0.1298975944519043, 0.04814017936587334, -0.03223938122391701, -0.12499488890171051, -0.1771080046892166, -0.043469008058309555, -0.0219589676707983, -0.03703472018241882, -0.11052557826042175, 0.01643148623406887, 0.03864344209432602, -0.010305287316441536, -0.036446940153837204, 0.04017579182982445, -0.14926031231880188, -0.08615584671497345, -0.09415903687477112, 0.037389181554317474, 0.08498408645391464, 0.009641067124903202, 0.020834747701883316, 0.023679381236433983, 0.0682561993598938, 0.06766415387392044, 0.04042163863778114, 0.06341055780649185, -0.03136816993355751, -0.0367540568113327, -0.00802355632185936, -0.014748466201126575, -0.01822652295231819, -0.016661107540130615, 0.1640351265668869, 0.04891058802604675, -0.045599211007356644, 0.00007674988592043519, 0.24576684832572937, -0.04665851965546608, -0.11507581174373627, -0.1613682210445404, 0.1454862356185913, 0.053371816873550415, 0.02125677280128002, 0.02399146370589733, -0.1236514151096344, 0.010237077251076698, 0.1768757551908493, 0.11447831243276596, -0.07777056843042374, 0.012638933025300503, 0.03657161816954613, 0.01464567519724369, -0.013916745781898499, 0.059817735105752945, -0.004191187676042318, 0.35974442958831787, -0.013232864439487457, 0.12144865840673447, 0.02442731335759163, -0.02877640724182129, -0.09524186700582504, 0.02138623036444187, -0.055016860365867615, -0.009231540374457836, -0.03635381907224655, 0.08262714743614197, -0.07127054035663605, -0.09872234612703323, -0.024737684056162834, -0.04999449849128723, -0.06829555332660675, 0.015046617947518826, 0.0916554406285286, -0.019847214221954346, 0.08436723798513412, 0.02167545072734356, -0.012347502633929253, 0.1298074573278427, 0.03003162331879139, -0.08544032275676727, -0.015611240640282631, 0.09308988600969315, 0.009466730058193207, 0.16409452259540558, -0.003561978694051504, 0.11119794845581055, 0.07239924371242523, 0.07072392851114273, -0.08228404819965363, 0.04735187068581581, 0.021184781566262245, -0.10288292914628983, 0.027640238404273987, 0.06875279545783997, 0.0029909280128777027, 0.08076344430446625, 0.0912662073969841, -0.11755707114934921, 0.05587773397564888, -0.01183534599840641, 0.028939278796315193, -0.07283501327037811, 0.07608957588672638, -0.1058933213353157, 0.14476369321346283, 0.10150900483131409, -0.002391867572441697, 0.0020337963942438364, 0.00679393345490098, 0.047191571444272995, 0.052784185856580734, 0.06367132067680359, -0.04351164028048515, -0.08889296650886536, -0.027216123417019844, -0.035395726561546326, 0.019419126212596893, -0.13754379749298096, -0.08942659199237823, 0.017662975937128067, -0.004254448227584362, 0.037342630326747894, 0.08723115175962448, 0.08635850995779037, 0.020326463505625725, -0.029842790216207504, -0.009418194182217121, 0.004885336849838495, 0.038495730608701706, -0.10115557909011841, -0.0648014023900032 ]
null
null
transformers
## Copy-or-Rewrite This repository contains the code of paper "Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning". A model built for human-like summarization task and trained with Actor-critic Reinforcement Learning. This work significantly improved the ROUGE scores on CNN/DM dataset by 1.7 and augmented the informativity and readability of generated summaries. It implemented a more human-like workflow for summarization task solving the information loss problem. It contains a novel hierarchical transformer module to represent article in both word and sentence level, a new reinforcement learning method that can effectively train two-step model. ## Model description Copy-or-Rewrite is a model to improve the workflow of summarization models. Existing methods that adopt an extract-then-abstract strategy have achieved impressive results, yet they suffer from the information loss in the abstraction step because they compress all the selected sentences without distinguish. Especially when the whole sentence is summary-worthy, salient content would be lost by compression. To address this problem, we pro- pose HYSUM, a hybrid framework for summarization that can flexibly switch between copying sentence and rewriting sentence according to the degree of redundancy. In this way, our approach can effectively combine the advantages of two branches of summarization, juggling informativity and conciseness. Moreover, we based on Hierarchical Reinforcement Learning, propose an end-to-end reinforcing method to bridge together the extraction module and rewriting module, which can enhance the cooperation between them. Automatic evaluation shows that our approach significantly outperforms the state-of-the-arts on the CNN/DailyMail corpus. Human evaluation also demonstrates that our generated summaries are more informative and concise than popular models. ## Intended uses & limitations With this repository, you can generate informative and concise summaries for input articles. For other tasks, you may used the hierarchical representation module to effectively represent the article. The parameters of the model is pre-trained on CNN/DM dataset. You may need to fine-tune it other your own dataset when needed. ## How to use from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("LiqiangXiao/summarization") model = AutoModelForSeq2SeqLM.from_pretrained("LiqiangXiao/summarization") ## Training data This model used the non-anonymous version of CNN/Daily Mail dataset. ## BibTeX entry and citation info @inproceedings{DBLP:conf/aaai/XiaoWHJ20, author = {Liqiang Xiao and Lu Wang and Hao He and Yaohui Jin}, title = {Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning}, booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI} 2020, The Thirty-Second Innovative Applications of Artificial Intelligence Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA, February 7-12, 2020}, pages = {9306--9313}, publisher = {{AAAI} Press}, year = {2020}, url = {https://aaai.org/ojs/index.php/AAAI/article/view/6470}, timestamp = {Tue, 02 Feb 2021 08:00:14 +0100}, biburl = {https://dblp.org/rec/conf/aaai/XiaoWHJ20.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} }
{}
text2text-generation
LiqiangXiao/summarization
[ "transformers", "pytorch", "bart", "text2text-generation", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bart #text2text-generation #autotrain_compatible #endpoints_compatible #region-us
## Copy-or-Rewrite This repository contains the code of paper "Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning". A model built for human-like summarization task and trained with Actor-critic Reinforcement Learning. This work significantly improved the ROUGE scores on CNN/DM dataset by 1.7 and augmented the informativity and readability of generated summaries. It implemented a more human-like workflow for summarization task solving the information loss problem. It contains a novel hierarchical transformer module to represent article in both word and sentence level, a new reinforcement learning method that can effectively train two-step model. ## Model description Copy-or-Rewrite is a model to improve the workflow of summarization models. Existing methods that adopt an extract-then-abstract strategy have achieved impressive results, yet they suffer from the information loss in the abstraction step because they compress all the selected sentences without distinguish. Especially when the whole sentence is summary-worthy, salient content would be lost by compression. To address this problem, we pro- pose HYSUM, a hybrid framework for summarization that can flexibly switch between copying sentence and rewriting sentence according to the degree of redundancy. In this way, our approach can effectively combine the advantages of two branches of summarization, juggling informativity and conciseness. Moreover, we based on Hierarchical Reinforcement Learning, propose an end-to-end reinforcing method to bridge together the extraction module and rewriting module, which can enhance the cooperation between them. Automatic evaluation shows that our approach significantly outperforms the state-of-the-arts on the CNN/DailyMail corpus. Human evaluation also demonstrates that our generated summaries are more informative and concise than popular models. ## Intended uses & limitations With this repository, you can generate informative and concise summaries for input articles. For other tasks, you may used the hierarchical representation module to effectively represent the article. The parameters of the model is pre-trained on CNN/DM dataset. You may need to fine-tune it other your own dataset when needed. ## How to use from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("LiqiangXiao/summarization") model = AutoModelForSeq2SeqLM.from_pretrained("LiqiangXiao/summarization") ## Training data This model used the non-anonymous version of CNN/Daily Mail dataset. ## BibTeX entry and citation info @inproceedings{DBLP:conf/aaai/XiaoWHJ20, author = {Liqiang Xiao and Lu Wang and Hao He and Yaohui Jin}, title = {Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning}, booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI} 2020, The Thirty-Second Innovative Applications of Artificial Intelligence Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA, February 7-12, 2020}, pages = {9306--9313}, publisher = {{AAAI} Press}, year = {2020}, url = {URL timestamp = {Tue, 02 Feb 2021 08:00:14 +0100}, biburl = {URL bibsource = {dblp computer science bibliography, URL} }
[ "## Copy-or-Rewrite\nThis repository contains the code of paper \"Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning\". A model built for human-like summarization task and trained with Actor-critic Reinforcement Learning. This work significantly improved the ROUGE scores on CNN/DM dataset by 1.7 and augmented the informativity and readability of generated summaries. It implemented a more human-like workflow for summarization task solving the information loss problem. It contains a novel hierarchical transformer module to represent article in both word and sentence level, a new reinforcement learning method that can effectively train two-step model.", "## Model description \nCopy-or-Rewrite is a model to improve the workflow of summarization models. Existing methods that adopt an extract-then-abstract strategy have achieved impressive results, yet they suffer from the information loss in the abstraction step because they compress all the selected sentences without distinguish. Especially when the whole sentence is summary-worthy, salient content would be lost by compression. To address this problem, we pro- pose HYSUM, a hybrid framework for summarization that can flexibly switch between copying sentence and rewriting sentence according to the degree of redundancy. In this way, our approach can effectively combine the advantages of two branches of summarization, juggling informativity and conciseness. Moreover, we based on Hierarchical Reinforcement Learning, propose an end-to-end reinforcing method to bridge together the extraction module and rewriting module, which can enhance the cooperation between them. Automatic evaluation shows that our approach significantly outperforms the state-of-the-arts on the CNN/DailyMail corpus. Human evaluation also demonstrates that our generated summaries are more informative and concise than popular models.", "## Intended uses & limitations\nWith this repository, you can generate informative and concise summaries for input articles. For other tasks, you may used the hierarchical representation module to effectively represent the article. The parameters of the model is pre-trained on CNN/DM dataset. You may need to fine-tune it other your own dataset when needed.", "## How to use\n\n from transformers import AutoTokenizer, AutoModelForSeq2SeqLM\n \n tokenizer = AutoTokenizer.from_pretrained(\"LiqiangXiao/summarization\")\n \n model = AutoModelForSeq2SeqLM.from_pretrained(\"LiqiangXiao/summarization\")", "## Training data\nThis model used the non-anonymous version of CNN/Daily Mail dataset.", "## BibTeX entry and citation info\n @inproceedings{DBLP:conf/aaai/XiaoWHJ20,\n author = {Liqiang Xiao and\n Lu Wang and\n Hao He and\n Yaohui Jin},\n title = {Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement\n Learning},\n booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI}\n 2020, The Thirty-Second Innovative Applications of Artificial Intelligence\n Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational\n Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA,\n February 7-12, 2020},\n pages = {9306--9313},\n publisher = {{AAAI} Press},\n year = {2020},\n url = {URL\n timestamp = {Tue, 02 Feb 2021 08:00:14 +0100},\n biburl = {URL\n bibsource = {dblp computer science bibliography, URL}\n }" ]
[ "TAGS\n#transformers #pytorch #bart #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n", "## Copy-or-Rewrite\nThis repository contains the code of paper \"Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning\". A model built for human-like summarization task and trained with Actor-critic Reinforcement Learning. This work significantly improved the ROUGE scores on CNN/DM dataset by 1.7 and augmented the informativity and readability of generated summaries. It implemented a more human-like workflow for summarization task solving the information loss problem. It contains a novel hierarchical transformer module to represent article in both word and sentence level, a new reinforcement learning method that can effectively train two-step model.", "## Model description \nCopy-or-Rewrite is a model to improve the workflow of summarization models. Existing methods that adopt an extract-then-abstract strategy have achieved impressive results, yet they suffer from the information loss in the abstraction step because they compress all the selected sentences without distinguish. Especially when the whole sentence is summary-worthy, salient content would be lost by compression. To address this problem, we pro- pose HYSUM, a hybrid framework for summarization that can flexibly switch between copying sentence and rewriting sentence according to the degree of redundancy. In this way, our approach can effectively combine the advantages of two branches of summarization, juggling informativity and conciseness. Moreover, we based on Hierarchical Reinforcement Learning, propose an end-to-end reinforcing method to bridge together the extraction module and rewriting module, which can enhance the cooperation between them. Automatic evaluation shows that our approach significantly outperforms the state-of-the-arts on the CNN/DailyMail corpus. Human evaluation also demonstrates that our generated summaries are more informative and concise than popular models.", "## Intended uses & limitations\nWith this repository, you can generate informative and concise summaries for input articles. For other tasks, you may used the hierarchical representation module to effectively represent the article. The parameters of the model is pre-trained on CNN/DM dataset. You may need to fine-tune it other your own dataset when needed.", "## How to use\n\n from transformers import AutoTokenizer, AutoModelForSeq2SeqLM\n \n tokenizer = AutoTokenizer.from_pretrained(\"LiqiangXiao/summarization\")\n \n model = AutoModelForSeq2SeqLM.from_pretrained(\"LiqiangXiao/summarization\")", "## Training data\nThis model used the non-anonymous version of CNN/Daily Mail dataset.", "## BibTeX entry and citation info\n @inproceedings{DBLP:conf/aaai/XiaoWHJ20,\n author = {Liqiang Xiao and\n Lu Wang and\n Hao He and\n Yaohui Jin},\n title = {Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement\n Learning},\n booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI}\n 2020, The Thirty-Second Innovative Applications of Artificial Intelligence\n Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational\n Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA,\n February 7-12, 2020},\n pages = {9306--9313},\n publisher = {{AAAI} Press},\n year = {2020},\n url = {URL\n timestamp = {Tue, 02 Feb 2021 08:00:14 +0100},\n biburl = {URL\n bibsource = {dblp computer science bibliography, URL}\n }" ]
[ 38, 157, 264, 84, 79, 21, 239 ]
[ "passage: TAGS\n#transformers #pytorch #bart #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n## Copy-or-Rewrite\nThis repository contains the code of paper \"Copy or Rewrite: Hybrid Summarization with Hierarchical Reinforcement Learning\". A model built for human-like summarization task and trained with Actor-critic Reinforcement Learning. This work significantly improved the ROUGE scores on CNN/DM dataset by 1.7 and augmented the informativity and readability of generated summaries. It implemented a more human-like workflow for summarization task solving the information loss problem. It contains a novel hierarchical transformer module to represent article in both word and sentence level, a new reinforcement learning method that can effectively train two-step model.## Model description \nCopy-or-Rewrite is a model to improve the workflow of summarization models. Existing methods that adopt an extract-then-abstract strategy have achieved impressive results, yet they suffer from the information loss in the abstraction step because they compress all the selected sentences without distinguish. Especially when the whole sentence is summary-worthy, salient content would be lost by compression. To address this problem, we pro- pose HYSUM, a hybrid framework for summarization that can flexibly switch between copying sentence and rewriting sentence according to the degree of redundancy. In this way, our approach can effectively combine the advantages of two branches of summarization, juggling informativity and conciseness. Moreover, we based on Hierarchical Reinforcement Learning, propose an end-to-end reinforcing method to bridge together the extraction module and rewriting module, which can enhance the cooperation between them. Automatic evaluation shows that our approach significantly outperforms the state-of-the-arts on the CNN/DailyMail corpus. Human evaluation also demonstrates that our generated summaries are more informative and concise than popular models." ]
[ -0.0006560668116435409, -0.030468150973320007, -0.003264829982072115, -0.0321650356054306, 0.11996039003133774, 0.01513706799596548, -0.011762714013457298, 0.07225283235311508, -0.08766746520996094, 0.019193485379219055, -0.022833749651908875, 0.026748936623334885, 0.05353450030088425, -0.015515164472162724, 0.023152129724621773, -0.22119459509849548, 0.04765546694397926, -0.04864997789263725, 0.021116355434060097, 0.04170630872249603, 0.12012602388858795, -0.05933978781104088, 0.05062353238463402, 0.034354083240032196, -0.028991321101784706, 0.024314034730196, -0.029813067987561226, 0.013917707838118076, 0.15632610023021698, 0.08439034223556519, 0.07596081495285034, 0.03201104328036308, -0.011109529063105583, -0.09812582284212112, 0.015196225605905056, 0.08542616665363312, 0.04755283519625664, 0.03888793662190437, 0.02847207896411419, 0.012293059378862381, 0.19039906561374664, -0.08928272873163223, 0.024066030979156494, 0.0567874014377594, -0.07193451374769211, -0.10152047127485275, -0.09322598576545715, 0.029552334919571877, 0.12132381647825241, 0.043201129883527756, -0.03391541168093681, 0.09708759933710098, 0.005940355826169252, 0.026532329618930817, -0.035732291638851166, -0.1647559106349945, 0.02360161766409874, 0.04995004087686539, 0.02790292166173458, -0.03155739605426788, 0.030779320746660233, 0.037831373512744904, -0.020040197297930717, 0.004824548959732056, 0.0506008043885231, -0.04903923720121384, -0.010693658143281937, -0.016705555841326714, -0.09669999778270721, -0.040168993175029755, 0.16144825518131256, -0.006344284396618605, -0.07327326387166977, -0.13808518648147583, -0.01938134990632534, 0.1026422455906868, 0.025656219571828842, -0.054420191794633865, -0.010269306600093842, 0.006835862994194031, 0.0552823469042778, -0.1355874091386795, -0.1124526783823967, 0.01761648617684841, -0.08386608958244324, 0.05657478794455528, 0.04049883037805557, 0.02715764008462429, 0.01207603607326746, 0.11748646199703217, -0.16052430868148804, -0.005400400608778, 0.010318881832063198, -0.06784053146839142, -0.14819161593914032, -0.02480344846844673, -0.10178393870592117, -0.3294091820716858, -0.026557443663477898, 0.020091649144887924, -0.0477011501789093, 0.02680528163909912, 0.007364313118159771, 0.08550461381673813, 0.10206619650125504, 0.1537499576807022, -0.05277290195226669, -0.0395677350461483, 0.03832440450787544, 0.005180980544537306, 0.030699996277689934, -0.008791440166532993, -0.027856415137648582, 0.05981217697262764, 0.04166567325592041, 0.03228123486042023, 0.04257124289870262, 0.08447608351707458, -0.010688012465834618, 0.0006544161005876958, -0.06299842894077301, -0.09651772677898407, -0.036291055381298065, -0.05755748599767685, -0.053590018302202225, 0.07506061345338821, 0.07459697127342224, 0.0035207851324230433, -0.126189723610878, 0.14734511077404022, -0.060231197625398636, -0.0295362938195467, -0.10295971482992172, -0.1122165396809578, 0.009124811738729477, -0.05181609466671944, -0.029997866600751877, -0.0965956524014473, -0.19348034262657166, -0.02897549420595169, 0.03828148916363716, -0.033431291580200195, -0.031377777457237244, -0.0208873488008976, 0.043681804090738297, -0.03430937975645065, 0.026687132194638252, -0.02694680728018284, 0.020309237763285637, -0.010051507502794266, -0.0718076229095459, 0.02547447569668293, -0.0824274942278862, 0.030764201655983925, -0.07206132262945175, 0.03585314005613327, -0.11642235517501831, 0.13184797763824463, -0.021446922793984413, 0.02951807528734207, -0.11284080147743225, 0.018909908831119537, -0.060419511049985886, 0.062194693833589554, 0.02600006014108658, 0.10593820363283157, -0.10837254673242569, -0.04340192303061485, 0.04918021336197853, -0.13542240858078003, 0.005653072614222765, 0.11042656004428864, -0.023653540760278702, 0.13286493718624115, 0.14408236742019653, 0.07701356709003448, 0.014021199196577072, -0.01396587211638689, -0.05986178666353226, 0.019085567444562912, -0.10222402960062027, 0.1480431854724884, 0.038076095283031464, -0.018248524516820908, -0.009555021300911903, 0.043066345155239105, 0.023808766156435013, -0.012006391771137714, -0.012669235467910767, -0.023811860010027885, -0.008560181595385075, 0.015945516526699066, -0.0677618533372879, -0.05161377042531967, 0.033331964164972305, 0.04060840234160423, -0.12882661819458008, 0.04032822698354721, 0.06278304755687714, -0.021701795980334282, 0.020046530291438103, -0.07018587738275528, 0.022633062675595284, -0.02591904252767563, 0.028258930891752243, -0.1679578423500061, 0.0028974891174584627, -0.008756211958825588, -0.1235513985157013, 0.09037470817565918, 0.14469842612743378, -0.010987367480993271, 0.012823380529880524, -0.025715215131640434, 0.027218174189329147, -0.004653847310692072, 0.01285375002771616, -0.030104847624897957, -0.06714393198490143, -0.022445496171712875, -0.04449653998017311, 0.14410658180713654, 0.0032019398640841246, 0.016893699765205383, 0.06353496015071869, 0.07616467028856277, 0.023351674899458885, -0.018347954377532005, 0.0003758002130780369, 0.03267354518175125, -0.010818193666636944, -0.008830050006508827, 0.057864390313625336, 0.022910775616765022, -0.16244377195835114, 0.1025487408041954, -0.16185502707958221, -0.15884079039096832, 0.03892480209469795, -0.005260041914880276, -0.09248626977205276, -0.034821026027202606, 0.006739895790815353, -0.04322030767798424, -0.05676155909895897, -0.1448749452829361, 0.25744542479515076, 0.04146137088537216, 0.13987189531326294, -0.056157659739255905, -0.00463060662150383, -0.00477095041424036, -0.002141044707968831, 0.009533259086310863, 0.02754049003124237, 0.00987300556153059, -0.2647693455219269, -0.011056428775191307, -0.06526944786310196, -0.02158784493803978, 0.10506587475538254, 0.02101741172373295, -0.04066505655646324, -0.037153616547584534, 0.022579805925488472, -0.0032599568367004395, 0.027120212092995644, -0.08888077735900879, 0.02054143324494362, 0.04061705991625786, 0.03150615841150284, 0.09052779525518417, -0.05904504656791687, 0.08256407082080841, 0.045328132808208466, 0.06868278235197067, -0.01787649840116501, 0.014668853022158146, 0.01966824382543564, 0.07663356512784958, 0.02632252313196659, 0.08545117825269699, 0.004749067593365908, -0.05612565204501152, -0.06840541213750839, 0.16977451741695404, -0.087663434445858, -0.3769982159137726, -0.1320439875125885, 0.08123331516981125, -0.00574338948354125, -0.03461860120296478, 0.06929249316453934, 0.026748014613986015, -0.08106732368469238, -0.07353823632001877, 0.11916019767522812, -0.08011629432439804, -0.10048951208591461, -0.06990887224674225, 0.03312646225094795, 0.007697467692196369, -0.1121823862195015, -0.014847097918391228, -0.013336259871721268, -0.10075406730175018, 0.01969185844063759, 0.011628164909780025, 0.016562797129154205, 0.03300094977021217, -0.015255661681294441, -0.03167908638715744, -0.03479251638054848, 0.0979747623205185, -0.05553392693400383, 0.08359590172767639, 0.11469044536352158, -0.06415905803442001, 0.0856192409992218, 0.056609541177749634, 0.0046141743659973145, 0.004801732022315264, 0.012865662574768066, 0.028378188610076904, -0.06002652272582054, -0.14611275494098663, -0.13946931064128876, -0.028929052874445915, -0.012742498889565468, -0.0018435525707900524, 0.013094750232994556, -0.015744052827358246, 0.02363005094230175, -0.08972074091434479, 0.02125408500432968, 0.01578078232705593, 0.06968463957309723, 0.15746623277664185, -0.07986996322870255, 0.07935724407434464, -0.0408981516957283, -0.06926991790533066, 0.06922872364521027, -0.0025572406593710184, 0.2265154868364334, -0.025043606758117676, 0.03468281775712967, 0.05044608935713768, -0.06196027621626854, 0.029020806774497032, 0.08647796511650085, -0.0749569833278656, 0.011864865198731422, -0.0880228579044342, -0.03982042521238327, -0.016313141211867332, 0.10712429881095886, 0.04149826616048813, -0.018444286659359932, -0.05887141078710556, 0.07581938803195953, 0.056032419204711914, 0.16039083898067474, 0.002999914577230811, -0.09601964801549911, -0.020894939079880714, 0.03610517829656601, -0.05982156842947006, -0.07415996491909027, -0.033724986016750336, 0.06384206563234329, -0.1111534908413887, 0.014715124852955341, -0.027263300493359566, 0.08427390456199646, -0.13363134860992432, 0.0532103069126606, -0.13005797564983368, 0.01733284816145897, -0.00914844125509262, 0.11437290906906128, -0.06114370375871658, 0.0910869762301445, 0.01817307062447071, 0.050533123314380646, -0.07339648902416229, 0.03454719856381416, 0.013086061924695969, 0.03531954064965248, 0.1190096065402031, 0.019297780469059944, -0.11295036971569061, -0.00982307456433773, -0.013276228681206703, 0.05474076420068741, 0.03874165192246437, -0.006242092698812485, 0.06831564009189606, -0.0669250637292862, 0.04471217468380928, -0.03980250656604767, 0.06517329066991806, -0.027332022786140442, -0.22119979560375214, 0.0873730257153511, -0.04892982169985771, 0.07612009346485138, -0.08292538672685623, 0.03677816689014435, 0.08898250758647919, 0.21336904168128967, -0.11059563606977463, -0.10901723802089691, -0.11230015754699707, 0.08615200966596603, 0.08148518949747086, -0.02914363704621792, 0.01161174289882183, -0.001998920924961567, 0.054740503430366516, -0.07537052780389786, -0.055477071553468704, 0.005068086553364992, -0.03829561546444893, -0.03787907958030701, -0.04395630210638046, 0.07627666741609573, 0.013004862703382969, 0.03485384210944176, 0.03267928585410118, 0.011336016468703747, -0.05671684443950653, -0.07002583146095276, -0.06104747951030731, 0.1299552470445633, 0.007839636877179146, 0.15015481412410736, -0.1197785809636116, -0.03224867954850197, -0.03701957315206528, -0.04457688331604004, 0.20275869965553284, 0.15871025621891022, -0.04526609554886818, 0.1402745395898819, 0.130743607878685, -0.10970211029052734, -0.275797963142395, -0.09887133538722992, 0.02272387221455574, 0.04347614943981171, 0.06206316873431206, -0.13667739927768707, 0.01526220329105854, 0.10510572791099548, 0.0039024522993713617, -0.09599234908819199, -0.2314032018184662, -0.059805046766996384, 0.02020207978785038, -0.05260208621621132, 0.19144196808338165, -0.05874587595462799, -0.01104442123323679, -0.057804640382528305, 0.040679387748241425, 0.06338083744049072, -0.08953521400690079, 0.09361203014850616, 0.0036616476718336344, 0.024686720222234726, 0.07868745177984238, -0.037356067448854446, 0.08580468595027924, -0.05755941569805145, 0.024679334834218025, -0.016013992950320244, -0.023537298664450645, 0.12018387019634247, -0.04731643572449684, 0.10793202370405197, -0.05286361277103424, 0.05848727375268936, -0.13317584991455078, -0.032088521867990494, -0.023882731795310974, 0.0672997310757637, -0.0325775071978569, -0.04464419558644295, -0.05889038369059563, 0.06930982321500778, 0.0724082812666893, -0.0158170647919178, 0.010071394965052605, -0.08155510574579239, 0.07630735635757446, 0.1932131052017212, 0.08883963525295258, -0.05605214461684227, -0.1355774700641632, 0.000955471710767597, 0.00021755849593319, 0.06338241696357727, -0.11276605725288391, 0.06294956803321838, 0.09216155856847763, 0.005067469552159309, 0.14207550883293152, 0.027243144810199738, -0.14763590693473816, 0.08222807198762894, 0.07948774844408035, -0.10841838270425797, -0.15487580001354218, -0.0774112194776535, 0.1322881132364273, -0.008818589150905609, -0.0070851207710802555, 0.1960630565881729, -0.04953165724873543, -0.005417658947408199, 0.018524395301938057, 0.054571881890296936, 0.00003746537186088972, 0.09454558044672012, -0.08661534637212753, 0.06123172864317894, -0.02928766794502735, 0.12414485216140747, 0.08854757249355316, -0.17224623262882233, 0.010430760681629181, 0.060802556574344635, -0.1099390834569931, -0.06758633255958557, -0.17315968871116638, 0.023649808019399643, -0.036692697554826736, -0.040606942027807236, -0.005777792539447546, -0.11781580746173859, -0.04260541498661041, 0.03796302154660225, -0.0039812480099499226, 0.06346505880355835, -0.06479210406541824, -0.05462687462568283, -0.08072060346603394, 0.06301451474428177, 0.021998776122927666, -0.03766411915421486, 0.0005115836975164711, 0.07268409430980682, 0.013911839574575424, 0.02618992328643799, -0.02702261507511139, -0.09076671302318573, -0.09316062182188034, -0.02811393328011036, -0.13920636475086212, -0.028354324400424957, -0.030355704948306084, -0.07014434039592743, 0.05333735793828964, 0.05361120030283928, 0.0329967625439167, 0.023374663665890694, -0.02072499692440033, -0.012395498342812061, -0.04653829708695412, 0.05307203158736229, -0.004928038455545902, 0.005462330300360918, 0.041431453078985214, -0.04404176026582718, 0.07401032000780106, -0.013982961885631084, -0.023729339241981506, 0.024230599403381348, 0.046692728996276855, -0.010910558514297009, -0.031442150473594666, 0.012521554715931416, 0.012976692989468575, -0.12518447637557983, -0.015542352572083473, -0.01405230350792408, -0.041925232857465744, -0.03836497664451599, 0.024865733459591866, -0.08050645887851715, 0.0298458319157362, 0.04102662205696106, 0.008131574839353561, -0.07986816018819809, -0.02409445121884346, 0.009101063944399357, 0.08967439085245132, 0.09322457760572433, -0.018472855910658836, 0.03563721105456352, -0.09341254830360413, 0.01851184293627739, 0.011799676343798637, -0.007223267573863268, 0.0488581508398056, -0.08887069672346115, 0.007113729137927294, -0.023382069543004036, 0.17035865783691406, -0.0032269551884382963, -0.0009116188739426434, 0.0570966936647892, -0.007564677391201258, -0.09967853873968124, -0.016632303595542908, -0.03347868099808693, 0.018001651391386986, -0.0015486326301470399, -0.12054361402988434, -0.020951978862285614, -0.06275024265050888, -0.0772145614027977, 0.03576473891735077, 0.03511820733547211, 0.15344011783599854, 0.0358174592256546, 0.03405919298529625, 0.023243213072419167, -0.04151659086346626, 0.05909460037946701, 0.0489632748067379, 0.09222985804080963, -0.056656673550605774, 0.06342948228120804, 0.14020296931266785, -0.0460490807890892, 0.14778150618076324, 0.012289186008274555, -0.01903514191508293, -0.020382128655910492, -0.12335081398487091, -0.033742643892765045, -0.02904554456472397, -0.015988994389772415, -0.09123235195875168, 0.02123258449137211, 0.06486065685749054, -0.000032247655326500535, -0.03482531011104584, 0.058764975517988205, -0.10600446909666061, -0.15039317309856415, 0.09237160533666611, 0.0010059510823339224, 0.032696835696697235, 0.04790190979838371, 0.0637127161026001, 0.0056775459088385105, 0.11101517081260681, 0.03628000617027283, 0.07872425019741058, 0.08594462275505066, -0.021742241457104683, -0.053179435431957245, -0.05529098957777023, -0.0313827246427536, 0.0093727707862854, 0.0016110860742628574, 0.056254372000694275, -0.02216295339167118, -0.06454305350780487, -0.038645531982183456, 0.22098004817962646, -0.05316174402832985, -0.07868047058582306, -0.11726390570402145, 0.34097230434417725, 0.052853748202323914, 0.006019407417625189, 0.05787532031536102, -0.1068890169262886, 0.05216003209352493, 0.17035922408103943, 0.1972508430480957, 0.02060607820749283, -0.012097977101802826, -0.04495758190751076, 0.0018483538879081607, -0.0038451319560408592, 0.036381129175424576, -0.002441051648929715, 0.2458329051733017, -0.06337781250476837, 0.2348141223192215, -0.04421450197696686, -0.02250809781253338, -0.006416712421923876, 0.12311358004808426, 0.010655917227268219, -0.002035496523603797, 0.006663540843874216, 0.08215072005987167, -0.07497173547744751, -0.32281991839408875, -0.009900132194161415, -0.08498416095972061, -0.06605025380849838, 0.000064534877310507, 0.06758484244346619, -0.034687887877225876, 0.12562310695648193, -0.020519083365797997, -0.040748778730630875, 0.10793164372444153, -0.009961923584342003, -0.05550803989171982, -0.062422946095466614, 0.04428597912192345, -0.036159396171569824, 0.03717312589287758, 0.0077939750626683235, 0.03675436973571777, 0.08193041384220123, -0.01778755709528923, -0.04308946430683136, 0.042247168719768524, -0.038165368139743805, -0.08084993809461594, 0.04365069419145584, 0.15109854936599731, 0.019159169867634773, 0.17782410979270935, 0.0386970192193985, -0.1187138557434082, 0.04745912924408913, -0.02298923209309578, -0.038283850997686386, -0.011081039905548096, 0.08783422410488129, -0.054326388984918594, 0.15032334625720978, 0.16322438418865204, -0.018788548186421394, 0.041664969176054, -0.05136783421039581, -0.007937011308968067, 0.014282041229307652, 0.09592826664447784, 0.0027199352625757456, -0.10742277652025223, 0.034165654331445694, -0.01325356587767601, 0.01944044791162014, -0.26837193965911865, -0.05566537007689476, -0.006558355875313282, -0.0033285131212323904, 0.04246858134865761, 0.08801818639039993, 0.11355258524417877, -0.022817790508270264, -0.025825833901762962, -0.1108352541923523, 0.011161736212670803, 0.03158220276236534, -0.055462755262851715, -0.03766890987753868 ]
null
null
transformers
# bert-base-cased-sentiment Es un modelo de BERT (bert-base-cased) afinado para el analisis de sentimientos para dos clases. El sentimiento solo se define como positivo negativo según sea el caso de la oración suministrada. ## Training data El set de datos utilizado para el entrenamiento del modelo fue a traves de una recopilación de reseñas de amazón, el cual se puede descargar desde el autor original en Kaggle [Adam Bittlingmayer](https://www.kaggle.com/bittlingmayer/amazonreviews) Amazon Reviews for Sentiment Analysis. El numero de datos fue solo de 40 000 oraciones de las cuales solo se tomaron las primeras 100 palabras para conformar cada una de las oraciones. ## Accuaracy El modelo afinado fue sometido a 3 pruebas para conocer su precisión. - La primera prueba fue en un set de datos de Reseñas de hoteles | Accuracy (Precisión) | | -------- | | 95% | - La segunda prueba fue en un set de datos de Reseñas de comida | Accuracy (Precisión) | | -------- | | 88% | - La tercera prueba fue en un set de datos de Sentimientos generales | Accuracy (Precisión) | | -------- | | 65% | ## Contact Contacto a traves de github [Murdoocc7](https://github.com/murdoocc)
{"language": ["en"], "pipeline_tag": "text-classification"}
text-classification
Littlejohn/analisis_sentimientos
[ "transformers", "text-classification", "en", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #text-classification #en #endpoints_compatible #region-us
# bert-base-cased-sentiment Es un modelo de BERT (bert-base-cased) afinado para el analisis de sentimientos para dos clases. El sentimiento solo se define como positivo negativo según sea el caso de la oración suministrada. ## Training data El set de datos utilizado para el entrenamiento del modelo fue a traves de una recopilación de reseñas de amazón, el cual se puede descargar desde el autor original en Kaggle Adam Bittlingmayer Amazon Reviews for Sentiment Analysis. El numero de datos fue solo de 40 000 oraciones de las cuales solo se tomaron las primeras 100 palabras para conformar cada una de las oraciones. ## Accuaracy El modelo afinado fue sometido a 3 pruebas para conocer su precisión. - La primera prueba fue en un set de datos de Reseñas de hoteles | Accuracy (Precisión) | | -------- | | 95% | - La segunda prueba fue en un set de datos de Reseñas de comida | Accuracy (Precisión) | | -------- | | 88% | - La tercera prueba fue en un set de datos de Sentimientos generales | Accuracy (Precisión) | | -------- | | 65% | ## Contact Contacto a traves de github Murdoocc7
[ "# bert-base-cased-sentiment\n\nEs un modelo de BERT (bert-base-cased) afinado para el analisis de sentimientos para dos clases.\n\nEl sentimiento solo se define como positivo negativo según sea el caso de la oración suministrada.", "## Training data\n\nEl set de datos utilizado para el entrenamiento del modelo fue a traves de una recopilación de reseñas de amazón, el cual se puede descargar desde el autor original en Kaggle Adam Bittlingmayer Amazon Reviews for Sentiment Analysis.\n\nEl numero de datos fue solo de 40 000 oraciones de las cuales solo se tomaron las primeras 100 palabras para conformar cada una de las oraciones.", "## Accuaracy\nEl modelo afinado fue sometido a 3 pruebas para conocer su precisión.\n\n- La primera prueba fue en un set de datos de Reseñas de hoteles\n| Accuracy (Precisión) |\n| -------- | \n| 95% | \n\n- La segunda prueba fue en un set de datos de Reseñas de comida\n| Accuracy (Precisión) |\n| -------- | \n| 88% | \n\n- La tercera prueba fue en un set de datos de Sentimientos generales\n| Accuracy (Precisión) |\n| -------- |\n| 65% |", "## Contact\n\nContacto a traves de github Murdoocc7" ]
[ "TAGS\n#transformers #text-classification #en #endpoints_compatible #region-us \n", "# bert-base-cased-sentiment\n\nEs un modelo de BERT (bert-base-cased) afinado para el analisis de sentimientos para dos clases.\n\nEl sentimiento solo se define como positivo negativo según sea el caso de la oración suministrada.", "## Training data\n\nEl set de datos utilizado para el entrenamiento del modelo fue a traves de una recopilación de reseñas de amazón, el cual se puede descargar desde el autor original en Kaggle Adam Bittlingmayer Amazon Reviews for Sentiment Analysis.\n\nEl numero de datos fue solo de 40 000 oraciones de las cuales solo se tomaron las primeras 100 palabras para conformar cada una de las oraciones.", "## Accuaracy\nEl modelo afinado fue sometido a 3 pruebas para conocer su precisión.\n\n- La primera prueba fue en un set de datos de Reseñas de hoteles\n| Accuracy (Precisión) |\n| -------- | \n| 95% | \n\n- La segunda prueba fue en un set de datos de Reseñas de comida\n| Accuracy (Precisión) |\n| -------- | \n| 88% | \n\n- La tercera prueba fue en un set de datos de Sentimientos generales\n| Accuracy (Precisión) |\n| -------- |\n| 65% |", "## Contact\n\nContacto a traves de github Murdoocc7" ]
[ 24, 58, 87, 140, 13 ]
[ "passage: TAGS\n#transformers #text-classification #en #endpoints_compatible #region-us \n# bert-base-cased-sentiment\n\nEs un modelo de BERT (bert-base-cased) afinado para el analisis de sentimientos para dos clases.\n\nEl sentimiento solo se define como positivo negativo según sea el caso de la oración suministrada.## Training data\n\nEl set de datos utilizado para el entrenamiento del modelo fue a traves de una recopilación de reseñas de amazón, el cual se puede descargar desde el autor original en Kaggle Adam Bittlingmayer Amazon Reviews for Sentiment Analysis.\n\nEl numero de datos fue solo de 40 000 oraciones de las cuales solo se tomaron las primeras 100 palabras para conformar cada una de las oraciones.## Accuaracy\nEl modelo afinado fue sometido a 3 pruebas para conocer su precisión.\n\n- La primera prueba fue en un set de datos de Reseñas de hoteles\n| Accuracy (Precisión) |\n| -------- | \n| 95% | \n\n- La segunda prueba fue en un set de datos de Reseñas de comida\n| Accuracy (Precisión) |\n| -------- | \n| 88% | \n\n- La tercera prueba fue en un set de datos de Sentimientos generales\n| Accuracy (Precisión) |\n| -------- |\n| 65% |## Contact\n\nContacto a traves de github Murdoocc7" ]
[ -0.048996713012456894, 0.03852495551109314, -0.00876331515610218, 0.027013899758458138, 0.09403452277183533, -0.021459750831127167, 0.007050591055303812, 0.10884876549243927, 0.04784853011369705, 0.06965507566928864, 0.06375724077224731, 0.04559115320444107, 0.06749355792999268, 0.12332993745803833, -0.030082572251558304, -0.05964832380414009, 0.0591106079518795, -0.00964217446744442, 0.08716516941785812, 0.12393304705619812, 0.07601401209831238, -0.07389260083436966, 0.10257124155759811, -0.058474067598581314, -0.03457712382078171, 0.013495969586074352, 0.0022360130678862333, -0.06036774814128876, 0.07488703727722168, 0.01857595331966877, 0.06701254099607468, 0.02179293893277645, -0.006345313973724842, -0.2766292989253998, 0.021078458055853844, 0.056115876883268356, 0.011810919269919395, 0.021458378061652184, -0.030208107084035873, -0.04070116579532623, 0.02847299352288246, -0.07039108127355576, 0.088985875248909, 0.06564664095640182, -0.10932072252035141, -0.033649783581495285, -0.0706053376197815, 0.07191409170627594, 0.09105062484741211, 0.09779854118824005, -0.06386867165565491, 0.04792618006467819, -0.09437371790409088, 0.062380485236644745, 0.1411205679178238, -0.09368687868118286, -0.043536633253097534, 0.06255348771810532, 0.01943596452474594, 0.08453506976366043, -0.09161850064992905, -0.005163682624697685, 0.06062318757176399, 0.042924024164676666, -0.024190224707126617, -0.03302551433444023, 0.0718545988202095, 0.034028638154268265, -0.058241210877895355, -0.09850353002548218, 0.11485876142978668, 0.09187699854373932, -0.1164209172129631, -0.15000155568122864, -0.0053794290870428085, -0.11352549493312836, -0.009801575914025307, -0.03346812352538109, 0.0010058762272819877, 0.0078860679641366, -0.14061033725738525, 0.022269362583756447, -0.06709656864404678, -0.03570286184549332, -0.07214334607124329, 0.09196854382753372, 0.0005805254331789911, 0.030903419479727745, 0.035706475377082825, 0.032618071883916855, -0.05394716560840607, -0.06983941793441772, -0.08908010274171829, -0.06309455633163452, -0.06676992028951645, -0.05023371800780296, -0.023562505841255188, 0.02814779058098793, 0.1629035919904709, 0.05922829359769821, -0.0771809071302414, 0.06183316558599472, -0.0007714471430517733, -0.04483088478446007, 0.1365276277065277, 0.12719960510730743, -0.034571435302495956, -0.006732008885592222, -0.053159505128860474, 0.04777637496590614, -0.0033426780719310045, -0.008910350501537323, 0.03356931731104851, 0.08373929560184479, 0.061926405876874924, 0.04618692025542259, -0.02606101520359516, 0.03614819794893265, -0.06581106036901474, -0.02151639573276043, -0.07646965980529785, -0.07919621467590332, -0.014304619282484055, 0.07244189828634262, -0.057061661034822464, 0.04596466198563576, -0.04142022132873535, 0.012577914632856846, -0.04226884990930557, 0.012156736105680466, -0.03810841217637062, -0.05043569579720497, -0.04164392128586769, -0.07060959190130234, 0.04449363797903061, -0.05798913165926933, -0.007152203004807234, -0.10846167802810669, -0.13491179049015045, -0.10724948346614838, 0.053612858057022095, -0.050547290593385696, -0.03286358714103699, -0.026974229142069817, 0.03332960233092308, 0.0129114193841815, -0.002890846924856305, -0.06155102699995041, -0.04947340115904808, 0.07167860120534897, -0.048321519047021866, 0.039050035178661346, 0.07035810500383377, 0.043617989867925644, -0.14085839688777924, 0.0396975539624691, -0.09089813381433487, 0.11321473866701126, -0.07720964401960373, 0.11460330337285995, -0.13753439486026764, -0.058557260781526566, 0.0393214076757431, 0.00038341330946423113, 0.0343964509665966, 0.1529051661491394, -0.0780072957277298, -0.06172565743327141, 0.03467635065317154, -0.08397649973630905, -0.06755541265010834, 0.13640619814395905, -0.05791819468140602, 0.09028683602809906, 0.13429945707321167, 0.13026085495948792, 0.000470444792881608, -0.061512745916843414, -0.050906386226415634, -0.010110372677445412, -0.009528329595923424, 0.16848334670066833, 0.047560736536979675, -0.0029742689803242683, -0.13863526284694672, 0.02696874365210533, 0.05528164654970169, -0.0579436756670475, -0.03725956752896309, -0.05506277084350586, -0.009564601816236973, -0.025958307087421417, 0.0010433262214064598, 0.043413810431957245, -0.029979219660162926, -0.08939841389656067, -0.0535861998796463, -0.015703102573752403, 0.08599177747964859, -0.09400486946105957, 0.00041477609192952514, -0.09059610217809677, 0.08546219766139984, -0.013578380458056927, -0.008173990994691849, -0.06828460842370987, -0.033399779349565506, 0.031233418732881546, 0.00997419748455286, 0.007648009806871414, 0.023217814043164253, 0.058518558740615845, -0.05959220975637436, -0.004957908298820257, 0.010178438387811184, -0.03875978663563728, 0.015451132319867611, -0.022070761770009995, -0.13363362848758698, 0.013038164004683495, -0.04352431744337082, 0.14660578966140747, -0.12423912435770035, -0.005705313291400671, 0.09142769128084183, 0.011380353942513466, 0.014265625737607479, -0.05133749544620514, 0.023816490545868874, 0.022639846429228783, 0.006836700718849897, -0.018991196528077126, 0.0590694285929203, 0.022343827411532402, -0.06283697485923767, 0.04758055508136749, -0.0024002438876777887, -0.07415234297513962, 0.09266345947980881, 0.04886520653963089, -0.11516860127449036, -0.026875507086515427, -0.03412880003452301, 0.0187086071819067, -0.14221662282943726, 0.006289995275437832, 0.19497035443782806, 0.04472096636891365, 0.024113504216074944, -0.04022397845983505, -0.007034948095679283, 0.01661427691578865, -0.02730689011514187, -0.056399233639240265, 0.15153375267982483, -0.08047807961702347, -0.144643634557724, 0.06878315657377243, 0.01932726427912712, -0.020163889974355698, 0.09765274822711945, -0.02344256266951561, -0.0451410748064518, -0.04684324190020561, 0.03431306406855583, -0.053238168358802795, 0.06892332434654236, -0.1542404443025589, 0.0051512336358428, 0.032046910375356674, -0.007578779477626085, 0.0033875664230436087, -0.04911145195364952, 0.0075163752771914005, 0.05534748733043671, -0.03299562633037567, -0.05489835888147354, -0.023284634575247765, 0.0015866225585341454, 0.0521908663213253, 0.053997818380594254, 0.0060186488553881645, 0.004286626819521189, -0.01893019489943981, -0.11462882161140442, 0.1167386844754219, -0.024092184379696846, -0.17817924916744232, -0.08506559580564499, -0.023908384144306183, -0.05886104702949524, -0.00543181411921978, 0.04847335070371628, -0.17763863503932953, -0.032308828085660934, -0.09239878505468369, 0.010312875732779503, -0.0008607726194895804, -0.019975366070866585, 0.0008918110397644341, -0.004567589610815048, -0.008588621392846107, -0.07066860049962997, -0.0185543205589056, -0.0349293127655983, -0.11292832344770432, 0.025111129507422447, -0.10150371491909027, 0.053313471376895905, 0.09628339111804962, 0.03783804550766945, 0.010500350035727024, -0.033837128430604935, 0.1973339021205902, -0.08846971392631531, -0.024384519085288048, 0.09667614847421646, 0.01594497635960579, 0.008783634752035141, 0.22029785811901093, 0.00848580151796341, -0.0604754202067852, 0.056368499994277954, 0.09174663573503494, -0.051021020859479904, -0.20424455404281616, -0.003552056849002838, 0.012518692761659622, 0.02824762463569641, 0.08346214145421982, 0.06172587722539902, 0.018971728160977364, 0.09451419115066528, 0.0033913692459464073, -0.07668448239564896, 0.00868045911192894, 0.06761704385280609, 0.10812802612781525, -0.0178968645632267, 0.05713069066405296, -0.007255006115883589, -0.015948044136166573, 0.11440727859735489, -0.03275660052895546, 0.16310247778892517, -0.029060645028948784, 0.10726962238550186, 0.07494443655014038, 0.026206620037555695, -0.02509104460477829, -0.028049958869814873, -0.018766235560178757, 0.00018965355411637574, -0.03257182613015175, -0.020336534827947617, -0.09759141504764557, 0.0228131003677845, 0.08426379412412643, 0.020231910049915314, -0.04443950578570366, -0.08976522833108902, 0.12522302567958832, 0.2847704291343689, 0.11921573430299759, -0.158514142036438, -0.09329785406589508, 0.03504778444766998, -0.10862605273723602, -0.054444849491119385, 0.02568591944873333, 0.04253958910703659, -0.12437818199396133, 0.0521298311650753, 0.009477675892412663, 0.08791135996580124, -0.10759272426366806, -0.0034630252048373222, -0.013182668946683407, -0.06488054245710373, -0.037397731095552444, 0.05906236544251442, -0.2617957293987274, 0.12069400399923325, -0.012960722669959068, 0.034185126423835754, -0.039273448288440704, -0.012855512090027332, 0.02095482312142849, -0.007138075307011604, 0.08559507876634598, 0.024599110707640648, -0.055177927017211914, -0.17868384718894958, -0.068006232380867, 0.07552439719438553, -0.000060515201766975224, -0.09849134087562561, 0.08683744817972183, -0.0047217910178005695, 0.0565585158765316, -0.05946459248661995, 0.08162926882505417, -0.09624562412500381, -0.021048659458756447, -0.00788174383342266, -0.01958724483847618, 0.06535783410072327, -0.028311947360634804, -0.0618145726621151, -0.0006038982537575066, 0.18998819589614868, 0.04875771701335907, -0.02645021304488182, -0.11256683617830276, -0.0041216397657990456, 0.032991185784339905, -0.027191052213311195, 0.031086040660738945, -0.0005209395312704146, 0.046619534492492676, 0.04537753388285637, -0.03496459499001503, 0.07037574052810669, -0.031497612595558167, -0.12099871784448624, -0.008154742419719696, 0.07909112423658371, 0.12193500995635986, 0.03963765129446983, 0.035192348062992096, 0.0208266694098711, -0.004286367446184158, -0.08200212568044662, 0.05150909721851349, 0.07064362615346909, -0.006706106010824442, 0.11111263185739517, 0.040350306779146194, -0.05717682093381882, -0.14767736196517944, -0.06492722779512405, 0.13138960301876068, 0.07761360704898834, 0.004402684047818184, 0.051600389182567596, 0.17720966041088104, -0.06274958699941635, -0.1549522578716278, -0.024137133732438087, 0.05500258505344391, 0.028314240276813507, -0.0693909227848053, -0.1237110123038292, 0.08575286716222763, 0.08023025840520859, -0.005150749813765287, -0.08109008520841599, -0.15137523412704468, -0.0884750708937645, 0.1150813028216362, 0.09385935962200165, 0.16964660584926605, -0.1038559302687645, -0.03103092685341835, -0.038745805621147156, -0.1301385760307312, 0.11276167631149292, -0.12353271245956421, 0.07259367406368256, 0.03735259920358658, 0.12318536639213562, 0.05018015205860138, -0.018302923068404198, 0.1463400274515152, 0.03214659541845322, 0.03424409404397011, -0.0685778483748436, -0.02639184705913067, -0.01730794459581375, -0.04364239051938057, 0.07498782873153687, -0.011298906989395618, 0.038579702377319336, -0.09804678708314896, -0.05317249521613121, -0.08092618733644485, 0.023402849212288857, -0.026121728122234344, -0.04946211725473404, -0.11429572850465775, 0.07643751800060272, 0.09632567316293716, -0.029184827581048012, 0.017531218007206917, -0.09910093992948532, 0.07534697651863098, 0.1246793121099472, 0.043080542236566544, 0.06417722254991531, -0.07487361133098602, 0.04304061457514763, -0.06398369371891022, 0.061907775700092316, -0.15414857864379883, 0.06053639203310013, 0.08553183823823929, 0.008228528313338757, 0.17099745571613312, -0.0009576462907716632, -0.08668119460344315, 0.007081294897943735, 0.04303980991244316, -0.060398995876312256, -0.07265076786279678, 0.005735427141189575, -0.10237309336662292, -0.13524852693080902, -0.056594088673591614, 0.1495009958744049, 0.015221673995256424, -0.019890062510967255, -0.029687369242310524, 0.07645287364721298, -0.03183498606085777, 0.10571350157260895, -0.019193135201931, 0.03509320691227913, -0.08915552496910095, 0.036905672401189804, 0.04480963572859764, -0.17307543754577637, 0.07106572389602661, -0.02799655869603157, -0.06442741304636002, -0.02747918665409088, 0.04475336894392967, 0.07524797320365906, 0.017006773501634598, -0.045561470091342926, -0.046288032084703445, -0.16205132007598877, 0.0636926218867302, 0.15573690831661224, 0.05722656473517418, 0.08765707910060883, 0.014132528565824032, 0.003981277346611023, -0.016998717561364174, 0.0787869319319725, 0.08200301975011826, -0.018414264544844627, -0.06358395516872406, -0.006522519048303366, 0.012907864525914192, 0.04226147010922432, -0.024265838786959648, -0.04664598032832146, -0.14368455111980438, 0.018190503120422363, -0.10744865983724594, 0.05942144617438316, -0.06213871017098427, 0.03922456502914429, 0.018687406554818153, -0.014583608135581017, -0.06801948696374893, -0.004165964666754007, -0.04623933508992195, -0.012817301787436008, 0.02397116832435131, 0.09433279931545258, -0.09534785896539688, -0.0060814726166427135, 0.08814900368452072, -0.08020849525928497, 0.09311680495738983, 0.05863044038414955, -0.050790295004844666, 0.014306219294667244, -0.12209472805261612, 0.031652845442295074, -0.0024086199700832367, -0.009588747285306454, -0.014481838792562485, -0.21664656698703766, 0.017523253336548805, 0.0013597431825473905, -0.049120187759399414, 0.07294700294733047, 0.1068778783082962, -0.06726878136396408, -0.0868343710899353, 0.03773355484008789, -0.08432143926620483, -0.06243132799863815, 0.010476571507751942, 0.07663655281066895, 0.09160597622394562, 0.1385488659143448, -0.07514721900224686, 0.047352757304906845, -0.11892051249742508, -0.019873308017849922, 0.01069760974496603, -0.012017947621643543, -0.027008432894945145, -0.034652505069971085, 0.030096502974629402, -0.0086070466786623, 0.1374751776456833, -0.011914288625121117, 0.03804793208837509, 0.03128146007657051, -0.0010079789208248258, 0.0193393025547266, 0.014882536605000496, 0.13612030446529388, 0.021168509498238564, -0.04330577701330185, -0.027558352798223495, -0.02319870889186859, -0.004068882670253515, 0.05547606572508812, 0.016663894057273865, 0.11682824790477753, 0.14509737491607666, 0.03219069167971611, 0.007188557181507349, 0.011247023940086365, 0.15340843796730042, 0.07656253129243851, -0.16406933963298798, 0.052892882376909256, 0.007748679257929325, 0.1312742829322815, 0.11103826761245728, -0.12044558674097061, 0.0965186133980751, -0.07113204896450043, -0.09955300390720367, -0.07591035962104797, -0.12404503673315048, -0.0830468088388443, -0.14094318449497223, 0.06780774146318436, -0.09148019552230835, 0.008237510919570923, 0.10800673812627792, 0.0699988529086113, -0.006951097398996353, 0.05987473577260971, -0.06002532318234444, -0.06772235780954361, 0.11633077263832092, -0.03525237366557121, -0.034080859273672104, 0.009032126516103745, 0.006481463555246592, 0.03615950793027878, 0.03820186108350754, 0.0867031142115593, 0.027892788872122765, 0.05085602402687073, 0.055073875933885574, -0.06961191445589066, -0.06251893192529678, 0.008570282720029354, -0.035010527819395065, 0.026227274909615517, 0.1250855177640915, 0.04690816253423691, 0.0022559568751603365, 0.051054008305072784, 0.22410903871059418, -0.04923422262072563, 0.00971489492803812, -0.24763168394565582, 0.12656372785568237, -0.00494701974093914, -0.0026280093006789684, 0.01933950185775757, -0.07388158142566681, -0.0025412586983293295, 0.1313488781452179, 0.06600191444158554, -0.014030532911419868, -0.012951741926372051, -0.03484967723488808, 0.01133981067687273, 0.03199018910527229, -0.000954091374296695, 0.014198732562363148, 0.03195371478796005, -0.0785723403096199, 0.03268272429704666, 0.0004881707427557558, -0.0730028972029686, -0.005728237330913544, 0.05436033383011818, 0.044269006699323654, -0.025099515914916992, -0.12523972988128662, 0.13484689593315125, -0.08238933980464935, -0.14360295236110687, 0.08898958563804626, -0.03886827453970909, -0.07343941926956177, -0.045746248215436935, 0.008601282723248005, 0.05669486150145531, 0.0678642988204956, 0.05158073455095291, 0.02614576183259487, 0.09042394161224365, 0.02855049818754196, -0.08519703894853592, -0.08752933889627457, 0.1484847366809845, 0.006293124984949827, 0.139861062169075, -0.013062362559139729, 0.08552086353302002, 0.1229637861251831, -0.011012737639248371, -0.0391906276345253, 0.10547132045030594, 0.04470037296414375, -0.06863615661859512, 0.01670045778155327, 0.12499520182609558, -0.010684470646083355, 0.08923207968473434, 0.10977429151535034, -0.08022814244031906, 0.03835451975464821, -0.10445795953273773, 0.015512990765273571, -0.1506652534008026, 0.06772249191999435, -0.1036081314086914, 0.11650653928518295, 0.18089289963245392, -0.03132692724466324, 0.04545731842517853, -0.08207157999277115, 0.012527710758149624, -0.04663215950131416, -0.020083874464035034, 0.008310174569487572, -0.15301789343357086, 0.03536398708820343, -0.007093142718076706, 0.02172478288412094, -0.2429998815059662, -0.04515792429447174, 0.06460725516080856, 0.019632721319794655, -0.007384587079286575, 0.10298233479261398, 0.052387822419404984, 0.012410067021846771, -0.03673406317830086, -0.025334108620882034, 0.035154134035110474, 0.12940682470798492, -0.04506963491439819, -0.05890168622136116 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # clm-total This model is a fine-tuned version of [ckiplab/gpt2-base-chinese](https://huggingface.co/ckiplab/gpt2-base-chinese) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 2.8586 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.1+cpu - Datasets 1.17.0 - Tokenizers 0.10.3
{"language": ["zh"], "license": "gpl-3.0", "tags": ["generated_from_trainer"], "model-index": [{"name": "clm-total", "results": []}]}
text-generation
Littlemilk/autobiography-generator
[ "transformers", "pytorch", "gpt2", "text-generation", "generated_from_trainer", "zh", "license:gpl-3.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #gpt2 #text-generation #generated_from_trainer #zh #license-gpl-3.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# clm-total This model is a fine-tuned version of ckiplab/gpt2-base-chinese on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 2.8586 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.1+cpu - Datasets 1.17.0 - Tokenizers 0.10.3
[ "# clm-total\n\nThis model is a fine-tuned version of ckiplab/gpt2-base-chinese on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 2.8586", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3.0", "### Training results", "### Framework versions\n\n- Transformers 4.15.0\n- Pytorch 1.10.1+cpu\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #generated_from_trainer #zh #license-gpl-3.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# clm-total\n\nThis model is a fine-tuned version of ckiplab/gpt2-base-chinese on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 2.8586", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3.0", "### Training results", "### Framework versions\n\n- Transformers 4.15.0\n- Pytorch 1.10.1+cpu\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ 64, 53, 6, 12, 8, 3, 90, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #generated_from_trainer #zh #license-gpl-3.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# clm-total\n\nThis model is a fine-tuned version of ckiplab/gpt2-base-chinese on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 2.8586## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3.0### Training results### Framework versions\n\n- Transformers 4.15.0\n- Pytorch 1.10.1+cpu\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ -0.10232122987508774, 0.11490382999181747, -0.0024146377108991146, 0.10182929784059525, 0.12354197353124619, 0.029310325160622597, 0.06394712626934052, 0.16985905170440674, -0.08098133653402328, 0.08364304155111313, 0.07438267022371292, 0.06608593463897705, 0.058427076786756516, 0.12432961165904999, -0.02689979039132595, -0.23896139860153198, 0.014932234771549702, 0.007625474128872156, -0.01966514065861702, 0.08700539916753769, 0.10251298546791077, -0.1037856861948967, 0.08943813294172287, 0.01630612090229988, -0.14574752748012543, 0.009025481529533863, -0.03569233790040016, -0.0497790202498436, 0.08998119831085205, 0.0006262737442739308, 0.051128972321748734, 0.0020725547801703215, 0.11328310519456863, -0.21049855649471283, -0.01037505641579628, 0.060721494257450104, 0.029685799032449722, 0.08033923804759979, 0.05443697050213814, 0.00010495177411939949, 0.13694582879543304, -0.1636877954006195, 0.06335260719060898, 0.020538078621029854, -0.06729841977357864, -0.13485804200172424, -0.10185752063989639, 0.10094805806875229, 0.07693381607532501, 0.09073984622955322, 0.021949082612991333, 0.15694871544837952, -0.08245302736759186, 0.0731927677989006, 0.24188056588172913, -0.27218443155288696, -0.03445453569293022, 0.07327401638031006, 0.04730527475476265, 0.042831677943468094, -0.10232098400592804, -0.0023643767926841974, 0.05345305800437927, 0.01627027802169323, 0.07929709553718567, -0.015144329518079758, -0.08244724571704865, 0.005906957667320967, -0.12320379912853241, -0.052749741822481155, 0.2051766812801361, 0.020066751167178154, -0.03463989868760109, -0.1017882227897644, -0.04560402035713196, -0.1261047124862671, -0.0017029866576194763, -0.0053296019323170185, 0.025547778233885765, -0.04668052867054939, -0.0397622212767601, -0.04699142277240753, -0.0790356919169426, -0.07221689075231552, 0.014103352092206478, 0.09687545150518417, 0.05974788963794708, 0.03684587776660919, -0.028162455186247826, 0.1379203051328659, -0.04273116588592529, -0.1237376406788826, -0.050464823842048645, -0.00043531801202334464, -0.05338367819786072, -0.05261638015508652, -0.037612829357385635, -0.010496942326426506, -0.0018069685902446508, 0.13706046342849731, -0.05952144041657448, 0.06551401317119598, 0.027027972042560577, 0.013754758983850479, -0.011156412772834301, 0.1454910784959793, -0.03294232860207558, -0.004826835356652737, 0.016819383949041367, 0.06749784201383591, 0.018648143857717514, -0.013678238727152348, -0.10107653588056564, -0.043793465942144394, 0.08782926201820374, 0.057543884962797165, -0.0675976574420929, 0.050536468625068665, -0.035694997757673264, -0.023929893970489502, 0.01994268223643303, -0.12642700970172882, 0.041241250932216644, -0.008920017629861832, -0.1150832325220108, -0.01088055782020092, 0.04199576377868652, -0.014729799702763557, -0.05694204196333885, 0.07666502147912979, -0.08262097835540771, 0.016050903126597404, -0.07737382501363754, -0.038121771067380905, 0.024752918630838394, -0.09459374845027924, -0.0040045264177024364, -0.05193714797496796, -0.25608551502227783, -0.01773003302514553, 0.02946721948683262, -0.06833817809820175, -0.03555947542190552, -0.04300064966082573, -0.0580134354531765, 0.01175894495099783, -0.009014165960252285, 0.09123503416776657, -0.05422322452068329, 0.0739506408572197, 0.015458551235496998, 0.0327950082719326, 0.012514524161815643, 0.03847271949052811, -0.08298592269420624, 0.03127985820174217, -0.11448279768228531, 0.07650882750749588, -0.07631783187389374, 0.005168570671230555, -0.09541915357112885, -0.10772248357534409, -0.0033130820374935865, -0.033806364983320236, 0.05765877291560173, 0.13113495707511902, -0.15918457508087158, -0.019351014867424965, 0.16213209927082062, -0.07694236934185028, -0.07260618358850479, 0.08443806320428848, -0.05523967370390892, 0.02781894989311695, 0.06496148556470871, 0.15277135372161865, 0.09811113029718399, -0.14519621431827545, -0.05058802664279938, 0.03183021396398544, 0.03962278738617897, -0.002267268253490329, 0.055766064673662186, -0.004805356729775667, 0.04228190332651138, 0.032046712934970856, -0.07802516967058182, -0.03129458799958229, -0.08436615020036697, -0.08057355880737305, -0.07204733043909073, -0.06898763030767441, 0.033495016396045685, 0.019946303218603134, 0.06694433838129044, -0.061541248112916946, -0.09760347008705139, 0.09035314619541168, 0.15123048424720764, -0.05653839558362961, 0.02536199428141117, -0.06194064021110535, 0.07657532393932343, -0.033526428043842316, -0.025725988671183586, -0.19183626770973206, -0.05951768904924393, 0.06365300714969635, -0.045324262231588364, 0.04062255471944809, 0.005371936596930027, 0.05265532433986664, 0.06351752579212189, -0.03460901230573654, -0.015701452270150185, -0.0728100910782814, -0.019214395433664322, -0.11552496254444122, -0.16752506792545319, -0.05284442380070686, -0.015964074060320854, 0.13235652446746826, -0.22032615542411804, 0.023135298863053322, 0.042266130447387695, 0.14930149912834167, 0.0037018300499767065, -0.04497174918651581, -0.006990151479840279, 0.019982436671853065, -0.021387318149209023, -0.0860959067940712, 0.029176907613873482, 0.0029333489947021008, -0.08867624402046204, -0.055873122066259384, -0.11244621872901917, 0.01710495725274086, 0.0807463675737381, 0.04382241889834404, -0.07986132055521011, -0.03268595039844513, -0.05713244900107384, -0.05380798131227493, -0.08751919120550156, -0.023925064131617546, 0.22858601808547974, -0.0014846384292468429, 0.14428402483463287, -0.08721901476383209, -0.09652262181043625, 0.007585305254906416, -0.008532247506082058, -0.0019423050107434392, 0.07020155340433121, 0.0732048898935318, -0.07440604269504547, 0.09870172291994095, 0.04734203219413757, -0.04882116615772247, 0.15720100700855255, -0.04630524665117264, -0.09401094168424606, -0.027220437303185463, 0.02456405572593212, -0.020390773192048073, 0.1322270780801773, -0.0966954454779625, -0.017646439373493195, 0.03401797264814377, 0.030862363055348396, 0.05474086478352547, -0.18295778334140778, 0.0068738870322704315, 0.019064946100115776, -0.061460837721824646, 0.017400439828634262, -0.00592299597337842, 0.016139468178153038, 0.0959474965929985, 0.025049012154340744, -0.009434041567146778, 0.030406275764107704, -0.010205370374023914, -0.08617196977138519, 0.1723327338695526, -0.11229100823402405, -0.14311395585536957, -0.13252229988574982, 0.05792056396603584, -0.07474596053361893, -0.020339883863925934, 0.012915500439703465, -0.058298997581005096, -0.04972952604293823, -0.09196740388870239, -0.030041445046663284, -0.06912846863269806, -0.005581056699156761, 0.0533103309571743, 0.00594040472060442, 0.050831764936447144, -0.13902266323566437, -0.008554821833968163, -0.023960940539836884, -0.09447018057107925, 0.0032415268942713737, 0.024484220892190933, 0.08569782227277756, 0.10421194136142731, -0.024309352040290833, 0.04096468165516853, -0.040133342146873474, 0.185027077794075, -0.06402135640382767, -0.012622162699699402, 0.10843313485383987, 0.017224593088030815, 0.06856358796358109, 0.08364956825971603, 0.020116325467824936, -0.08605284988880157, 0.006641637533903122, 0.03793978691101074, -0.029467064887285233, -0.23342157900333405, -0.05567571893334389, -0.040296394377946854, -0.037005990743637085, 0.08564571291208267, 0.06945362687110901, 0.053238894790410995, 0.04035601392388344, -0.02216823771595955, 0.07987876236438751, -0.03097665309906006, 0.09847071766853333, 0.07691115885972977, 0.03732452541589737, 0.0768938809633255, -0.03609950467944145, -0.016564512625336647, 0.07320460677146912, 0.022012613713741302, 0.2939003109931946, -0.04658032953739166, 0.13203586637973785, 0.024494171142578125, 0.15917620062828064, -0.027062105014920235, 0.04503493756055832, -0.004228783771395683, 0.01440331619232893, 0.0038327029906213284, -0.06978677958250046, -0.02751794271171093, 0.04225894436240196, -0.04876137524843216, 0.056763820350170135, -0.11006193608045578, 0.03355337679386139, 0.04746227338910103, 0.24080921709537506, 0.023171624168753624, -0.276326447725296, -0.07025697827339172, 0.011427158489823341, -0.02124657668173313, -0.06019412353634834, 0.0017787790857255459, 0.10121627897024155, -0.1481582075357437, 0.06056143343448639, -0.04261159524321556, 0.08648982644081116, -0.06858476996421814, -0.0018142075277864933, 0.026090282946825027, 0.09282346069812775, 0.0025402570609003305, 0.10763777047395706, -0.20726941525936127, 0.19946835935115814, 0.030896080657839775, 0.11122949421405792, -0.10251591354608536, 0.038247495889663696, 0.010251949541270733, 0.07559884339570999, 0.12082062661647797, 0.003650770289823413, -0.06519803404808044, -0.161392480134964, -0.08962089568376541, 0.013639531098306179, 0.12121621519327164, -0.031104544177651405, 0.08199845999479294, -0.0358009971678257, 0.0060373349115252495, 0.027242714539170265, -0.0805480107665062, -0.12377188354730606, -0.11000941693782806, 0.04267533868551254, 0.011906823143362999, -0.05509920418262482, -0.06811997294425964, -0.09129967540502548, -0.036934733390808105, 0.1737533062696457, -0.03398633003234863, -0.06329523772001266, -0.13272492587566376, 0.05166906118392944, 0.12755708396434784, -0.07415744662284851, 0.01895301043987274, 0.027540989220142365, 0.11549513041973114, 0.036437179893255234, -0.09055015444755554, 0.03259023651480675, -0.05661550536751747, -0.18362700939178467, -0.041715819388628006, 0.1458439826965332, 0.05165810137987137, 0.05071321129798889, 0.004759898409247398, 0.016144922003149986, -0.010068592615425587, -0.10603073984384537, -0.006186096463352442, 0.09777728468179703, 0.10767204314470291, 0.07200686633586884, -0.0828617587685585, 0.03373682498931885, -0.03831204026937485, -0.026876555755734444, 0.13103654980659485, 0.20368006825447083, -0.08791295439004898, 0.10152267664670944, 0.03216494247317314, -0.09730510413646698, -0.17304165661334991, 0.05394506826996803, 0.08508148789405823, 0.01993868686258793, 0.012787004001438618, -0.17412400245666504, 0.09620696306228638, 0.1158769354224205, -0.025376619771122932, 0.0791541337966919, -0.3443644940853119, -0.12378338724374771, 0.043403517454862595, 0.08298319578170776, 0.04915757477283478, -0.12683439254760742, -0.044323135167360306, -0.02020532637834549, -0.12670791149139404, 0.09924469143152237, -0.08714278042316437, 0.11921436339616776, -0.04153420776128769, 0.10090821981430054, 0.030962370336055756, -0.04217362403869629, 0.14053604006767273, 0.0796106830239296, 0.08311644941568375, -0.05823636054992676, 0.012573598884046078, 0.08463403582572937, -0.07948272675275803, 0.11247643083333969, -0.057876359671354294, 0.06855665892362595, -0.19112390279769897, -0.006152021698653698, -0.057817671447992325, 0.08404452353715897, -0.046068836003541946, -0.05367042496800423, -0.0737726166844368, 0.03353354334831238, 0.06628966331481934, -0.021230172365903854, 0.07926676422357559, 0.04380585998296738, 0.04483722522854805, 0.09310076385736465, 0.08643729239702225, -0.0067662992514669895, -0.11094184219837189, 0.0018012872897088528, 0.0016866346122696996, 0.05602341517806053, -0.13626964390277863, 0.02428301051259041, 0.14062674343585968, 0.0469273179769516, 0.13192829489707947, 0.036422453820705414, -0.07113069295883179, -0.002193188527598977, 0.03307067230343819, -0.14043807983398438, -0.07129788398742676, -0.021259410306811333, -0.030475152656435966, -0.09638623893260956, 0.04622359573841095, 0.08763344585895538, -0.06915989518165588, -0.014554278925061226, -0.026454024016857147, 0.01120852306485176, -0.0217635165899992, 0.18092180788516998, 0.03097652830183506, 0.051995210349559784, -0.08803122490644455, 0.13372589647769928, 0.060033269226551056, -0.02419540099799633, 0.06484244018793106, 0.07432659715414047, -0.10423064231872559, -0.02219698764383793, 0.05335042253136635, 0.16581934690475464, -0.04955161735415459, -0.04870514199137688, -0.09162933379411697, -0.06291046738624573, 0.04665251821279526, 0.12085924297571182, 0.06327155977487564, 0.005463766865432262, -0.03393583372235298, 0.018301241099834442, -0.15570637583732605, 0.08008154481649399, 0.051922861486673355, 0.06017829105257988, -0.14723370969295502, 0.12346026301383972, 0.009021335281431675, 0.06114470586180687, -0.021756509318947792, 0.015158658847212791, -0.08958308398723602, -0.017319554463028908, -0.08992177993059158, 0.013405605219304562, -0.0320737361907959, -0.008923809044063091, -0.012991800904273987, -0.03878173977136612, -0.026631690561771393, 0.06295433640480042, -0.06772822141647339, -0.04895186796784401, -0.001253020134754479, 0.056661881506443024, -0.11782747507095337, -0.017893677577376366, 0.016221908852458, -0.09105432033538818, 0.08879030495882034, 0.08749770373106003, 0.03159799799323082, 0.039039596915245056, -0.08796259760856628, 0.011954201385378838, 0.029053786769509315, 0.04086397960782051, 0.05207537114620209, -0.06384319812059402, 0.0015752743929624557, -0.022298410534858704, 0.04173126444220543, 0.014911080710589886, 0.0291355662047863, -0.13356509804725647, -0.03197859972715378, -0.06790239363908768, -0.03229828551411629, -0.060128018260002136, 0.06268253177404404, 0.11197203397750854, 0.03532882779836655, 0.13441438972949982, -0.06731324642896652, 0.04617362841963768, -0.18533456325531006, -0.026142939925193787, 0.010708710178732872, -0.04660613089799881, -0.0810292586684227, -0.037734389305114746, 0.07507505267858505, -0.0536714643239975, 0.16234862804412842, 0.0018174077849835157, 0.05573131889104843, 0.018560035154223442, -0.0012908042408525944, -0.009494457393884659, -0.007774018682539463, 0.17482632398605347, 0.05336301028728485, -0.011989358812570572, 0.08319105207920074, -0.004838109947741032, 0.06657911837100983, 0.008528895676136017, 0.17286550998687744, 0.09887968003749847, -0.021805252879858017, 0.07718516886234283, 0.06856261193752289, -0.11469036340713501, -0.15048429369926453, 0.047175634652376175, -0.029581965878605843, 0.09774987399578094, -0.05183175578713417, 0.15755312144756317, 0.09072799980640411, -0.17714542150497437, 0.04810075834393501, -0.03271931782364845, -0.11423416435718536, -0.10870962589979172, -0.08719741553068161, -0.07013281434774399, -0.11325956135988235, 0.027912242338061333, -0.12099556624889374, 0.034971706569194794, 0.07960005849599838, 0.0054302942007780075, -0.005180091131478548, 0.15031233429908752, -0.06117851659655571, 0.008879219181835651, 0.05746747553348541, 0.01654846966266632, -0.004245801828801632, -0.05805279687047005, -0.04620030149817467, 0.031848568469285965, -0.018878810107707977, 0.08521202951669693, -0.03290737792849541, 0.04174245148897171, 0.013008386828005314, -0.006280991714447737, -0.05538881570100784, 0.016860105097293854, 0.01129599753767252, 0.04208633303642273, 0.0436100997030735, 0.04479970037937164, -0.008626165799796581, -0.049629855901002884, 0.23786486685276031, -0.07116472721099854, -0.05226791277527809, -0.10399330407381058, 0.1949320137500763, 0.0657014325261116, -0.03292255103588104, 0.0750579759478569, -0.11975377798080444, 0.004123924300074577, 0.17986921966075897, 0.1373605728149414, -0.033219922333955765, -0.011457438580691814, -0.027444226667284966, -0.010546782054007053, -0.02426098845899105, 0.08330090343952179, 0.09107883274555206, 0.06121699884533882, -0.050333864986896515, -0.003222041530534625, -0.003883619559928775, -0.01885412074625492, -0.09606389701366425, 0.060351088643074036, 0.0004970060545019805, -0.006139356177300215, -0.024993741884827614, 0.03740493580698967, -0.023586472496390343, -0.15411537885665894, 0.04237185791134834, -0.169002965092659, -0.15485092997550964, 0.01083299145102501, 0.0519535057246685, -0.018137184903025627, 0.04794783517718315, -0.01576724648475647, -0.005047294311225414, 0.12547770142555237, -0.004944385029375553, -0.11412346363067627, -0.07755623012781143, 0.07406117767095566, -0.07820802927017212, 0.2249716818332672, -0.00015898434503469616, 0.11504178494215012, 0.09298505634069443, 0.013923276215791702, -0.12881402671337128, 0.03855472803115845, 0.05515632405877113, -0.058230701833963394, 0.011061395518481731, 0.16372543573379517, -0.04095957800745964, 0.06453781574964523, 0.037759389728307724, -0.0916949063539505, -0.025889160111546516, 0.004592835437506437, 0.006561131216585636, -0.09524334967136383, -0.014812881126999855, -0.062467169016599655, 0.17014120519161224, 0.19009928405284882, -0.03781012073159218, -0.003142865374684334, -0.08248931914567947, 0.027089953422546387, 0.043255146592855453, 0.057007674127817154, -0.017832187935709953, -0.19860640168190002, 0.020761916413903236, 0.0396842323243618, 0.022888904437422752, -0.20129074156284332, -0.09722572565078735, 0.04136117547750473, -0.06522165238857269, -0.06968847662210464, 0.09391982853412628, 0.05470196157693863, 0.036780547350645065, -0.034646060317754745, -0.08658730983734131, -0.05702956020832062, 0.11847179383039474, -0.16074472665786743, -0.05996387079358101 ]
null
null
transformers
# Peter from Your Boyfriend Game.
{"tags": ["conversational"]}
text-generation
Lizardon/Peterbot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Peter from Your Boyfriend Game.
[ "# Peter from Your Boyfriend Game." ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Peter from Your Boyfriend Game." ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Peter from Your Boyfriend Game." ]
[ 0.021957935765385628, 0.08463475853204727, -0.007394615560770035, 0.06783071905374527, 0.15867021679878235, -0.011937524192035198, 0.10384967178106308, 0.09656571596860886, 0.007769613992422819, 0.0035113482736051083, 0.1590912789106369, 0.14737515151500702, -0.002753870328888297, 0.06298203021287918, 0.004308596719056368, -0.2818070650100708, 0.02311178669333458, 0.031134892255067825, 0.00645805336534977, 0.12904314696788788, 0.03848312795162201, -0.050329435616731644, 0.10317100584506989, 0.0052127111703157425, -0.05126979947090149, 0.019818134605884552, 0.03805886581540108, -0.06587095558643341, 0.11556197702884674, -0.002633514814078808, 0.04045429825782776, 0.023900654166936874, -0.11595463007688522, -0.1463700532913208, 0.05052812770009041, 0.011490799486637115, -0.014296735636889935, 0.019893324002623558, 0.09429919719696045, -0.01903594471514225, 0.1107257828116417, 0.11797689646482468, 0.02222503162920475, 0.06979195773601532, -0.1643439382314682, -0.08364984393119812, -0.02656954899430275, 0.004709929693490267, 0.055456679314374924, 0.10624866187572479, -0.039532627910375595, 0.14148634672164917, -0.01906374655663967, 0.049882613122463226, 0.17435641586780548, -0.40740877389907837, -0.057533226907253265, 0.07062993943691254, 0.08542722463607788, 0.156424880027771, -0.026825791224837303, 0.044662781059741974, 0.0014590008649975061, 0.03248664364218712, -0.014411676675081253, -0.04863212630152702, 0.0005266884109005332, 0.10405497997999191, -0.0813865214586258, -0.039155781269073486, 0.21680638194084167, -0.041992608457803726, 0.09588150680065155, -0.0986483171582222, -0.06276160478591919, -0.0007068893173709512, -0.020412718877196312, -0.08179943263530731, -0.06418672204017639, 0.05279012769460678, -0.09910350292921066, -0.10626057535409927, -0.13686856627464294, 0.007876685820519924, -0.13182604312896729, 0.047752927988767624, -0.005606267135590315, 0.03340541571378708, -0.19342400133609772, 0.052717890590429306, -0.005309546831995249, -0.08706556260585785, 0.029408462345600128, -0.07074959576129913, 0.07366858422756195, 0.01627134531736374, -0.038216594606637955, -0.04542626440525055, 0.12227796018123627, 0.07948055118322372, 0.10819247364997864, 0.027800755575299263, -0.029653310775756836, 0.051846034824848175, 0.07829815149307251, 0.06152625381946564, 0.02981434389948845, -0.14339467883110046, 0.0033515787217766047, -0.08030367642641068, 0.02078940160572529, -0.08862809091806412, -0.19084127247333527, 0.04847866669297218, 0.04896605387330055, 0.01620377041399479, 0.06789130717515945, 0.1192907765507698, 0.01148144993931055, -0.020252086222171783, 0.11150307208299637, 0.010239687748253345, -0.02564317174255848, 0.05167317017912865, 0.008905231021344662, 0.10701692849397659, -0.08312013745307922, 0.01851380430161953, -0.06735940277576447, 0.04405567795038223, -0.05637482553720474, -0.09460048377513885, -0.009648000821471214, -0.03488929197192192, 0.058437928557395935, -0.02526222914457321, -0.009463262744247913, -0.13642913103103638, -0.05174483358860016, -0.0005096225650049746, -0.03088829293847084, -0.010449651628732681, -0.09873959422111511, -0.14488892257213593, 0.019613344222307205, -0.02213304489850998, -0.03130818158388138, -0.023342030122876167, -0.01792221888899803, 0.13296063244342804, -0.0034383751917630434, 0.12412970513105392, -0.08477885276079178, 0.06532099843025208, -0.09299199283123016, -0.03279637172818184, -0.09101805090904236, 0.04796503856778145, -0.01023977342993021, 0.0014174995012581348, -0.014249172993004322, -0.008522980846464634, -0.03892234340310097, 0.04656460881233215, -0.06502743065357208, 0.13240617513656616, -0.0518573634326458, -0.15438061952590942, 0.2669392228126526, -0.08553779125213623, -0.1998317390680313, 0.08118332922458649, -0.01304465439170599, 0.06077767536044121, 0.14085479080677032, 0.21118807792663574, -0.06790193170309067, -0.023807257413864136, 0.03390539437532425, 0.09350990504026413, -0.13225716352462769, 0.056195106357336044, 0.09206757694482803, 0.024878766387701035, -0.02977992221713066, 0.05415649339556694, -0.022738739848136902, 0.05571230873465538, -0.022006146609783173, -0.03764214739203453, 0.06613689661026001, -0.026730386540293694, 0.07883837074041367, -0.001109261647798121, 0.10132632404565811, -0.06942670792341232, -0.010463953018188477, 0.06807372719049454, -0.004133957903832197, -0.005763966590166092, 0.05213398486375809, -0.07553490996360779, 0.1389620006084442, 0.04630856588482857, 0.04321766644716263, -0.12773196399211884, -0.11667250096797943, -0.07288409769535065, 0.23194631934165955, 0.042818255722522736, 0.08576405793428421, 0.1001850813627243, 0.004210066981613636, -0.005406518932431936, 0.01716749183833599, 0.1318482607603073, -0.013647221028804779, -0.017645476385951042, -0.0749124065041542, 0.04266713187098503, -0.0473514199256897, 0.06701130419969559, -0.07211155444383621, -0.0073990365490317345, 0.02909906953573227, 0.07938133925199509, 0.0019487787503749132, -0.004003763664513826, -0.08294561505317688, -0.015959911048412323, -0.014391930773854256, -0.032003577798604965, 0.11185810714960098, 0.014587199315428734, -0.06021035090088844, 0.20212988555431366, -0.1423756331205368, 0.18350912630558014, 0.22572796046733856, -0.31894248723983765, 0.02914997562766075, -0.05197640880942345, -0.020111145451664925, -0.0024825537111610174, 0.07329003512859344, -0.03959611803293228, 0.16425544023513794, 0.0431629903614521, 0.16758973896503448, -0.03769306465983391, -0.02257312834262848, 0.015817919746041298, -0.026469465345144272, -0.0009499357547610998, 0.11766411364078522, 0.029039742425084114, -0.10500402003526688, 0.2185913473367691, 0.1196107566356659, 0.11274374276399612, 0.16699931025505066, 0.04093855991959572, 0.0010120944352820516, 0.04354475811123848, -0.005328034516423941, -0.05516595020890236, -0.07228786498308182, -0.23356232047080994, -0.026626601815223694, 0.0653441771864891, -0.05618949979543686, 0.07659545540809631, -0.11970725655555725, -0.08617468178272247, 0.04380372166633606, 0.03630045801401138, -0.07260873913764954, 0.15134981274604797, -0.011779751628637314, 0.08394282311201096, 0.0438329242169857, 0.057590119540691376, 0.08902846276760101, -0.006977016571909189, -0.09588254243135452, 0.08389439433813095, -0.14453601837158203, -0.29482197761535645, -0.10260451585054398, -0.1708686202764511, -0.05002773553133011, 0.06680323928594589, 0.10832606256008148, -0.15335585176944733, 0.03468361496925354, 0.03213966637849808, 0.04397289827466011, -0.14447101950645447, -0.081763356924057, -0.11065192520618439, 0.011398310773074627, -0.17578308284282684, -0.06302937865257263, -0.027086403220891953, -0.014423293061554432, -0.1432604044675827, 0.11154884099960327, -0.1383465975522995, 0.03661583364009857, 0.15213318169116974, 0.06039264798164368, 0.09410087019205093, -0.06964346766471863, 0.19451674818992615, -0.058859795331954956, -0.033083606511354446, 0.1655508428812027, -0.045063573867082596, 0.08033254742622375, -0.017854077741503716, 0.005479674786329269, -0.015095265582203865, 0.012877983041107655, -0.025358891114592552, -0.03664590045809746, -0.19827179610729218, -0.06948976963758469, -0.05262306332588196, 0.1495155394077301, 0.0518421046435833, 0.04927106574177742, 0.1592932939529419, 0.03894621506333351, 0.006563117727637291, -0.060812853276729584, 0.05058073624968529, 0.09584513306617737, 0.2867858409881592, -0.12384171038866043, 0.07153890281915665, -0.011682134121656418, -0.11843660473823547, 0.09652046859264374, -0.005740966182202101, 0.0050047277472913265, 0.11584934592247009, 0.09261836856603622, 0.022490179166197777, 0.04930402338504791, 0.03585398942232132, 0.0007528511341661215, 0.01442266907542944, -0.01209173258394003, -0.07453008741140366, -0.06550530344247818, -0.05731217935681343, 0.03690989315509796, 0.02870102785527706, -0.12812520563602448, -0.011664814315736294, -0.07261527329683304, 0.05516510084271431, 0.06901199370622635, 0.005688812118023634, -0.15517808496952057, -0.01876024715602398, 0.04028348624706268, -0.03596996143460274, -0.11645083874464035, 0.10369250923395157, 0.03610243648290634, -0.1670442521572113, -0.008956731297075748, 0.006095352582633495, 0.11258935183286667, -0.0017295063007622957, 0.08661853522062302, -0.042557790875434875, -0.08031123131513596, 0.026651136577129364, 0.10336668789386749, -0.26369714736938477, 0.13259871304035187, -0.02341541461646557, -0.07442715764045715, -0.07070862501859665, -0.07743941992521286, -0.001117125852033496, -0.0029141013510525227, 0.08739609271287918, 0.02335037849843502, -0.07683345675468445, -0.06289438903331757, -0.04737856239080429, 0.02825060673058033, 0.08258658647537231, -0.09455708414316177, -0.03682322055101395, -0.030743718147277832, -0.011071988381445408, -0.06282462179660797, 0.029670098796486855, 0.10095012187957764, -0.12756696343421936, 0.052338745445013046, 0.0516357384622097, 0.1291777342557907, 0.06980492174625397, -0.06454115360975266, -0.09956318140029907, 0.1505334973335266, 0.039926234632730484, -0.06529677659273148, -0.058510493487119675, -0.0164639949798584, -0.08053130656480789, -0.04995439574122429, -0.014973651617765427, -0.05621640011668205, 0.0630633533000946, -0.13631883263587952, -0.10849303007125854, 0.09558235853910446, -0.00833902321755886, -0.0522996224462986, -0.01561626885086298, 0.2058430165052414, 0.06728566437959671, 0.022687317803502083, -0.012439890764653683, 0.03390810638666153, -0.08312755078077316, -0.05342860147356987, 0.06732102483510971, -0.0577886626124382, 0.0554787702858448, -0.1019287034869194, 0.11103509366512299, 0.07305310666561127, -0.12564361095428467, -0.006369413807988167, 0.3174792230129242, 0.14770786464214325, -0.0361659862101078, 0.18571068346500397, 0.028722917661070824, -0.034118786454200745, -0.2313292920589447, -0.1361410766839981, -0.08963163197040558, -0.12357547879219055, 0.006992145907133818, -0.18161925673484802, 0.06737262010574341, -0.08410951495170593, 0.004525355063378811, 0.14379194378852844, -0.1558317244052887, -0.08618166297674179, 0.111526258289814, 0.03593068569898605, 0.33888640999794006, -0.09431125968694687, -0.05215160921216011, -0.020103516057133675, -0.23848024010658264, 0.13567811250686646, 0.04899471625685692, 0.06682905554771423, 0.010983196087181568, 0.22690878808498383, 0.021813903003931046, -0.000858847692143172, 0.08556763827800751, -0.02187756448984146, -0.08783592283725739, -0.06543958932161331, -0.18379850685596466, 0.029426973313093185, 0.029965199530124664, -0.07348974794149399, -0.03446943312883377, -0.01985923759639263, -0.13372772932052612, -0.010128997266292572, -0.10849109292030334, -0.03163667023181915, -0.008277801796793938, -0.025445368140935898, 0.017066579312086105, 0.01937137357890606, -0.007306812331080437, 0.016980985179543495, 0.11031439900398254, -0.1272040158510208, 0.13940240442752838, -0.011137701570987701, 0.060530971735715866, -0.06486120074987411, -0.13267531991004944, -0.08216589689254761, -0.07978657633066177, 0.0801219493150711, -0.10143954306840897, 0.05085485056042671, 0.12441176921129227, -0.004820921923965216, 0.03089315816760063, 0.11136208474636078, -0.0608699731528759, 0.016550060361623764, 0.10163655132055283, -0.26304328441619873, -0.04633815586566925, -0.10231555253267288, -0.03011920675635338, 0.15078264474868774, -0.029058435931801796, 0.1184176504611969, 0.0026495663914829493, -0.0947328507900238, 0.05218542367219925, -0.0038168472237885, -0.05304736644029617, -0.04016198590397835, -0.03265458345413208, 0.004689478315412998, -0.13553859293460846, 0.03125830739736557, 0.02247285284101963, -0.23312458395957947, 0.03608657792210579, 0.14583246409893036, -0.06708323210477829, -0.07771772891283035, -0.011581400409340858, 0.07223913073539734, -0.009207254275679588, -0.050450216978788376, -0.007967755198478699, -0.09801671653985977, 0.058129388839006424, 0.1468224674463272, 0.07420729845762253, 0.06696796417236328, -0.0464184544980526, 0.0385935939848423, 0.006345873698592186, 0.026963498443365097, 0.03390713408589363, -0.03937111049890518, -0.031422920525074005, 0.0627858117222786, 0.00564259197562933, 0.12065890431404114, -0.06860537827014923, -0.13314974308013916, -0.16382965445518494, 0.004798898473381996, -0.009855329059064388, -0.06893068552017212, -0.08859236538410187, -0.0702199637889862, -0.01582474447786808, -0.012186051346361637, -0.04732351750135422, -0.07104496657848358, -0.0837700217962265, 0.03409253805875778, 0.028526371344923973, 0.018917972221970558, -0.12060260027647018, 0.0015222744550555944, 0.10300138592720032, -0.049531254917383194, 0.10467799007892609, 0.17178378999233246, -0.06980792433023453, 0.113970085978508, -0.08020910620689392, -0.12369947880506516, 0.03405413031578064, 0.03606675565242767, 0.04494796693325043, 0.08403628319501877, -0.020240167155861855, 0.023062914609909058, 0.0387546680867672, 0.05429456755518913, 0.15307724475860596, -0.06875430792570114, 0.08862985670566559, 0.05637313425540924, -0.13659466803073883, -0.051357898861169815, -0.07780090719461441, 0.07789307832717896, 0.0010983579559251666, 0.10161545127630234, -0.05178532749414444, 0.11683527380228043, -0.12872332334518433, 0.05390339717268944, 0.03089016117155552, -0.1452222615480423, 0.007997904904186726, -0.0830167755484581, 0.013990700244903564, -0.021712707355618477, 0.17238762974739075, 0.003914499189704657, 0.025651197880506516, 0.03554554656147957, 0.12050178647041321, 0.003165383590385318, -0.009382249787449837, 0.16167156398296356, 0.09188155084848404, -0.05590446665883064, -0.06438977271318436, 0.13354502618312836, -0.011848739348351955, 0.059145811945199966, 0.15092045068740845, 0.008163342252373695, 0.01587725430727005, 0.042572636157274246, 0.01091704796999693, 0.14268657565116882, -0.12857836484909058, -0.1390845775604248, 0.018998553976416588, 0.01638408564031124, -0.04442375525832176, 0.21408119797706604, 0.11737481504678726, -0.07634585350751877, 0.005178479943424463, -0.09657873213291168, -0.007204725407063961, -0.1384342461824417, -0.14990881085395813, -0.07356210052967072, -0.1662723869085312, 0.03787411004304886, -0.11416438966989517, 0.061942607164382935, -0.0033452510833740234, 0.06103464588522911, -0.09321877360343933, -0.013565012253820896, 0.026730852201581, -0.07537014037370682, 0.016767185181379318, -0.04421212896704674, 0.08039762079715729, -0.04302456974983215, 0.019140733405947685, -0.028168195858597755, 0.03761923685669899, 0.03821641206741333, 0.04859067127108574, -0.02653593011200428, 0.01731681451201439, -0.1690996289253235, -0.11007428914308548, -0.04324951767921448, 0.052994195371866226, -0.04170830920338631, 0.1682768166065216, -0.006663950625807047, 0.0114428186789155, 0.023372936993837357, 0.1945253312587738, -0.019110003486275673, -0.06401363015174866, -0.05145135149359703, 0.22016307711601257, -0.04550355672836304, 0.03834041580557823, -0.01673305593430996, 0.04983086138963699, -0.12194526940584183, 0.39514514803886414, 0.3092537820339203, -0.05939292535185814, -0.0106205390766263, 0.006991464179009199, 0.07191163301467896, 0.09735967963933945, 0.12063103169202805, 0.03478385880589485, 0.24393899738788605, -0.14551755785942078, -0.0835350826382637, -0.09564727544784546, 0.008650810457766056, -0.01779971830546856, 0.046277258545160294, 0.14288383722305298, -0.04873287305235863, -0.01919160597026348, 0.08397940546274185, -0.24176378548145294, 0.07992110401391983, -0.12404872477054596, -0.1809539943933487, -0.04429004341363907, 0.002716015325859189, 0.14911982417106628, 0.012003215961158276, 0.12657032907009125, 0.04672157019376755, -0.008785907179117203, 0.08728678524494171, 0.0088230911642313, -0.22995692491531372, 0.04397290572524071, 0.128843754529953, -0.2241566777229309, 0.03138391673564911, -0.053454332053661346, 0.08003995567560196, 0.055548615753650665, 0.09092508256435394, 0.03609239682555199, -0.018753135576844215, -0.007528826128691435, -0.06782960146665573, -0.0937575250864029, 0.03809764236211777, 0.005179839674383402, -0.06205452233552933, 0.09804508090019226, -0.13702230155467987, 0.07778151333332062, 0.0811694860458374, -0.083892323076725, -0.023671191185712814, 0.09076179563999176, -0.07489252835512161, 0.041635166853666306, 0.06898326426744461, -0.012219065800309181, -0.01564040593802929, -0.04378608241677284, -0.0341789573431015, -0.0030157973524183035, 0.00497444299980998, -0.08930026739835739, -0.10550227016210556, -0.12360480427742004, 0.028447145596146584, -0.042693112045526505, -0.22547176480293274, 0.026853172108530998, -0.11752631515264511, 0.030705660581588745, -0.05363144725561142, 0.0604739747941494, 0.025078825652599335, 0.0010604227427393198, -0.0017568113980814815, -0.007344979327172041, 0.07322568446397781, 0.14086145162582397, -0.09699703752994537, -0.05253292992711067 ]
null
null
transformers
# QuBERTa QuBERTa es un modelo de lenguaje basado en RoBERTa para el quechua. Nuestro modelo de lenguaje fue pre-entrenado con 5M de tokens del quechua sureño (Collao y Chanka). El modelo utiliza un tokenizador Byte-level BPE con un vocabulario de 52000 tokens de subpalabras. ## Usabilidad Una vez descargado los pesos y el tokenizador es necesario adjuntarlo en un sola carpeta, en este caso fue `QuBERTa `. ```python from transformers import pipeline fill_mask = pipeline( "fill-mask", model="./QuBERTa", tokenizer="./QuBERTa" ) ``` Se hace la prueba, la cual esta en fases de mejoras. ```python fill_mask("allinllachu <mask> allinlla huk wasipita.") ``` [{'score': 0.23992203176021576, 'sequence': 'allinllachu nisqaqa allinlla huk wasipita.', 'token': 334, 'token_str': ' nisqaqa'}, {'score': 0.061005301773548126, 'sequence': 'allinllachu, allinlla huk wasipita.', 'token': 16, 'token_str': ','}, {'score': 0.028720015659928322, 'sequence': "allinllachu' allinlla huk wasipita.", 'token': 11, 'token_str': "'"}, {'score': 0.012927944771945477, 'sequence': 'allinllachu kay allinlla huk wasipita.', 'token': 377, 'token_str': ' kay'}, {'score': 0.01230092253535986, 'sequence': 'allinllachu. allinlla huk wasipita.', 'token': 18, 'token_str': '.'}]
{"language": ["qu"], "tags": ["Llamacha"]}
fill-mask
Llamacha/QuBERTa
[ "transformers", "pytorch", "roberta", "fill-mask", "Llamacha", "qu", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "qu" ]
TAGS #transformers #pytorch #roberta #fill-mask #Llamacha #qu #autotrain_compatible #endpoints_compatible #region-us
# QuBERTa QuBERTa es un modelo de lenguaje basado en RoBERTa para el quechua. Nuestro modelo de lenguaje fue pre-entrenado con 5M de tokens del quechua sureño (Collao y Chanka). El modelo utiliza un tokenizador Byte-level BPE con un vocabulario de 52000 tokens de subpalabras. ## Usabilidad Una vez descargado los pesos y el tokenizador es necesario adjuntarlo en un sola carpeta, en este caso fue 'QuBERTa '. Se hace la prueba, la cual esta en fases de mejoras. [{'score': 0.23992203176021576, 'sequence': 'allinllachu nisqaqa allinlla huk wasipita.', 'token': 334, 'token_str': ' nisqaqa'}, {'score': 0.061005301773548126, 'sequence': 'allinllachu, allinlla huk wasipita.', 'token': 16, 'token_str': ','}, {'score': 0.028720015659928322, 'sequence': "allinllachu' allinlla huk wasipita.", 'token': 11, 'token_str': "'"}, {'score': 0.012927944771945477, 'sequence': 'allinllachu kay allinlla huk wasipita.', 'token': 377, 'token_str': ' kay'}, {'score': 0.01230092253535986, 'sequence': 'allinllachu. allinlla huk wasipita.', 'token': 18, 'token_str': '.'}]
[ "# QuBERTa \n\nQuBERTa es un modelo de lenguaje basado en RoBERTa para el quechua. Nuestro modelo de lenguaje fue pre-entrenado con 5M de tokens del quechua sureño (Collao y Chanka).\n\nEl modelo utiliza un tokenizador Byte-level BPE con un vocabulario de 52000 tokens de subpalabras.", "## Usabilidad\nUna vez descargado los pesos y el tokenizador es necesario adjuntarlo en un sola carpeta, en este caso fue 'QuBERTa '.\n\n\nSe hace la prueba, la cual esta en fases de mejoras.\n\n\n [{'score': 0.23992203176021576,\n 'sequence': 'allinllachu nisqaqa allinlla huk wasipita.',\n 'token': 334,\n 'token_str': ' nisqaqa'},\n {'score': 0.061005301773548126,\n 'sequence': 'allinllachu, allinlla huk wasipita.',\n 'token': 16,\n 'token_str': ','},\n {'score': 0.028720015659928322,\n 'sequence': \"allinllachu' allinlla huk wasipita.\",\n 'token': 11,\n 'token_str': \"'\"},\n {'score': 0.012927944771945477,\n 'sequence': 'allinllachu kay allinlla huk wasipita.',\n 'token': 377,\n 'token_str': ' kay'},\n {'score': 0.01230092253535986,\n 'sequence': 'allinllachu. allinlla huk wasipita.',\n 'token': 18,\n 'token_str': '.'}]" ]
[ "TAGS\n#transformers #pytorch #roberta #fill-mask #Llamacha #qu #autotrain_compatible #endpoints_compatible #region-us \n", "# QuBERTa \n\nQuBERTa es un modelo de lenguaje basado en RoBERTa para el quechua. Nuestro modelo de lenguaje fue pre-entrenado con 5M de tokens del quechua sureño (Collao y Chanka).\n\nEl modelo utiliza un tokenizador Byte-level BPE con un vocabulario de 52000 tokens de subpalabras.", "## Usabilidad\nUna vez descargado los pesos y el tokenizador es necesario adjuntarlo en un sola carpeta, en este caso fue 'QuBERTa '.\n\n\nSe hace la prueba, la cual esta en fases de mejoras.\n\n\n [{'score': 0.23992203176021576,\n 'sequence': 'allinllachu nisqaqa allinlla huk wasipita.',\n 'token': 334,\n 'token_str': ' nisqaqa'},\n {'score': 0.061005301773548126,\n 'sequence': 'allinllachu, allinlla huk wasipita.',\n 'token': 16,\n 'token_str': ','},\n {'score': 0.028720015659928322,\n 'sequence': \"allinllachu' allinlla huk wasipita.\",\n 'token': 11,\n 'token_str': \"'\"},\n {'score': 0.012927944771945477,\n 'sequence': 'allinllachu kay allinlla huk wasipita.',\n 'token': 377,\n 'token_str': ' kay'},\n {'score': 0.01230092253535986,\n 'sequence': 'allinllachu. allinlla huk wasipita.',\n 'token': 18,\n 'token_str': '.'}]" ]
[ 43, 81, 343 ]
[ "passage: TAGS\n#transformers #pytorch #roberta #fill-mask #Llamacha #qu #autotrain_compatible #endpoints_compatible #region-us \n# QuBERTa \n\nQuBERTa es un modelo de lenguaje basado en RoBERTa para el quechua. Nuestro modelo de lenguaje fue pre-entrenado con 5M de tokens del quechua sureño (Collao y Chanka).\n\nEl modelo utiliza un tokenizador Byte-level BPE con un vocabulario de 52000 tokens de subpalabras.## Usabilidad\nUna vez descargado los pesos y el tokenizador es necesario adjuntarlo en un sola carpeta, en este caso fue 'QuBERTa '.\n\n\nSe hace la prueba, la cual esta en fases de mejoras.\n\n\n [{'score': 0.23992203176021576,\n 'sequence': 'allinllachu nisqaqa allinlla huk wasipita.',\n 'token': 334,\n 'token_str': ' nisqaqa'},\n {'score': 0.061005301773548126,\n 'sequence': 'allinllachu, allinlla huk wasipita.',\n 'token': 16,\n 'token_str': ','},\n {'score': 0.028720015659928322,\n 'sequence': \"allinllachu' allinlla huk wasipita.\",\n 'token': 11,\n 'token_str': \"'\"},\n {'score': 0.012927944771945477,\n 'sequence': 'allinllachu kay allinlla huk wasipita.',\n 'token': 377,\n 'token_str': ' kay'},\n {'score': 0.01230092253535986,\n 'sequence': 'allinllachu. allinlla huk wasipita.',\n 'token': 18,\n 'token_str': '.'}]" ]
[ 0.01000648271292448, 0.048146478831768036, -0.014191387221217155, 0.07305042445659637, 0.07157125324010849, 0.020715679973363876, 0.04907052963972092, 0.05880354344844818, -0.006051893811672926, 0.0641641765832901, 0.07414647191762924, 0.09967302531003952, 0.06936740130186081, -0.03639603778719902, 0.01496827695518732, -0.11730118840932846, 0.04784899204969406, 0.00995683018118143, 0.042790237814188004, 0.08633145689964294, 0.045433055609464645, 0.021413490176200867, 0.09091144055128098, -0.05961978808045387, 0.030427411198616028, -0.0043838308192789555, -0.0022626917343586683, -0.05182892829179764, 0.06725658476352692, 0.017392409965395927, 0.12910571694374084, 0.0573798269033432, -0.002725985599681735, -0.19190995395183563, 0.005807988811284304, 0.03541766479611397, -0.004251694306731224, 0.004696810618042946, -0.004578554071485996, -0.0017635066760703921, 0.0798247680068016, -0.10727879405021667, 0.024903062731027603, 0.0032840704079717398, -0.14845754206180573, -0.05625234916806221, -0.05245942622423172, -0.0144122876226902, 0.04181842505931854, -0.02821822464466095, -0.004679267760366201, 0.08113154023885727, -0.07193795591592789, 0.09695366770029068, 0.1701505333185196, -0.24466122686862946, -0.052908290177583694, -0.040729012340307236, 0.12037842720746994, -0.054179660975933075, -0.041250281035900116, 0.038311608135700226, 0.02731243707239628, 0.0231840331107378, -0.05161341279745102, -0.16305311024188995, -0.06790043413639069, -0.07530464231967926, -0.08087151497602463, 0.026875244453549385, 0.1269550621509552, 0.03548116609454155, -0.06037086993455887, 0.049371201545000076, -0.04904120787978172, -0.08856938034296036, -0.06595832854509354, -0.07762136310338974, 0.0045542349107563496, -0.037969496101140976, 0.07923518866300583, 0.06415674835443497, -0.050676628947257996, 0.030234791338443756, -0.13969524204730988, 0.08651617169380188, 0.024967746809124947, -0.024610156193375587, 0.002138978336006403, -0.05328817665576935, 0.0047345831990242004, -0.08583497256040573, -0.012980454601347446, -0.02663503587245941, -0.04384320601820946, -0.02718953788280487, 0.004578952211886644, -0.07521256059408188, 0.1305127888917923, 0.05911749601364136, -0.049960263073444366, 0.09808504581451416, 0.03733431175351143, 0.01775527186691761, 0.025303630158305168, 0.08847654610872269, -0.010891396552324295, -0.15693898499011993, -0.024354053661227226, -0.04709922522306442, 0.024981331080198288, -0.06790845841169357, -0.05089351162314415, -0.08625243604183197, 0.06185876578092575, 0.0053980909287929535, 0.1369180828332901, 0.0954669639468193, -0.01446261815726757, -0.04582643881440163, -0.09202074259519577, -0.0839279517531395, 0.023489700630307198, 0.02041441760957241, -0.0033846425358206034, 0.1390773057937622, -0.033194929361343384, 0.021886833012104034, -0.09137464314699173, -0.011951164342463017, -0.039774246513843536, 0.015229406766593456, -0.014366339892148972, -0.04035663604736328, 0.06623531877994537, -0.06696205586194992, -0.03629741072654724, -0.14472977817058563, -0.02226037159562111, -0.10126978904008865, 0.0044104671105742455, -0.05631397292017937, 0.05767742916941643, -0.07205397635698318, 0.04745404049754143, 0.03627387434244156, 0.011136545799672604, -0.06203226372599602, -0.028064077720046043, 0.032323334366083145, 0.0003089566307608038, 0.049125634133815765, -0.03352198749780655, -0.010901493951678276, -0.03351452201604843, 0.06965984404087067, -0.16189788281917572, 0.06759049743413925, -0.024678463116288185, 0.11178220063447952, -0.1695980727672577, -0.025308677926659584, -0.035807762295007706, 0.03796523064374924, 0.05608338490128517, 0.19231893122196198, -0.1254475712776184, 0.014154816046357155, 0.1663583666086197, -0.06194464489817619, -0.005591938272118568, 0.08567037433385849, 0.03392341732978821, 0.06334127485752106, 0.07118435204029083, 0.17413881421089172, 0.08516272157430649, -0.041448820382356644, -0.0020708031952381134, -0.005920287221670151, 0.029481874778866768, 0.08737757802009583, 0.05723355710506439, -0.0789085403084755, 0.013762653805315495, 0.04721394181251526, 0.060936689376831055, -0.04157194495201111, 0.0018912266241386533, -0.019348790869116783, 0.0021032774820923805, 0.013466439209878445, 0.09510299563407898, -0.013814973644912243, 0.004264922346919775, 0.023091204464435577, -0.021270088851451874, 0.0016074245795607567, 0.019300175830721855, 0.03087395802140236, 0.06342358887195587, -0.11373212933540344, 0.10199669003486633, 0.02097243256866932, 0.03752638399600983, -0.032017990946769714, -0.037341661751270294, -0.043394073843955994, -0.004642711021006107, 0.05577925592660904, -0.05126640200614929, 0.04495086520910263, 0.0015022254083305597, -0.02098384127020836, 0.03255939483642578, 0.05271419510245323, 0.03197026625275612, 0.04414704442024231, -0.17501875758171082, 0.009472214616835117, -0.006210142746567726, 0.03526315838098526, -0.05543237552046776, -0.021526239812374115, 0.0057099685072898865, 0.04575120657682419, -0.04889988526701927, -0.02536967396736145, -0.02594231814146042, 0.09303804486989975, 0.021013885736465454, 0.014008129946887493, 0.06719697266817093, 0.0038788404781371355, -0.09097252786159515, 0.08359454572200775, -0.1724027395248413, 0.03230854123830795, 0.03803886100649834, -0.0734526589512825, -0.11505891382694244, -0.058271151036024094, 0.04894155636429787, -0.028713565319776535, 0.0949837937951088, 0.034538883715867996, 0.09841372817754745, 0.0589384064078331, 0.039642952382564545, -0.042084209620952606, 0.061780162155628204, 0.030089570209383965, -0.1218588724732399, 0.010761155746877193, 0.10911162197589874, 0.04837722331285477, -0.19141922891139984, 0.031080683693289757, 0.06340949237346649, -0.032331682741642, 0.13024389743804932, 0.005237509496510029, -0.028506271541118622, -0.1797572523355484, 0.0846497192978859, 0.012274546548724174, 0.0362141989171505, -0.09099868685007095, -0.0003135974984616041, -0.0048197233118116856, -0.0019927253015339375, -0.025256488472223282, 0.0035915428306907415, -0.003552175359800458, -0.014255400747060776, 0.03256518766283989, -0.1419615000486374, 0.01861485093832016, 0.02814057655632496, 0.0822962075471878, 0.032025448977947235, -0.0743628516793251, -0.04764564335346222, -0.009788582101464272, -0.07663632929325104, 0.12003880739212036, -0.08259683102369308, -0.2113817185163498, -0.07674846053123474, -0.060599055141210556, -0.053135380148887634, 0.012236984446644783, 0.03779855743050575, -0.07906056940555573, 0.0008295328007079661, 0.010592494159936905, 0.03880048915743828, 0.03887264430522919, -0.052369374781847, -0.05333127826452255, 0.008494467474520206, 0.027557624503970146, -0.043537333607673645, -0.023702582344412804, -0.004321646876633167, -0.050985272973775864, 0.04287895932793617, -0.05038537085056305, 0.08708450943231583, 0.10671813786029816, 0.08213638514280319, -0.04496597871184349, -0.025808129459619522, 0.15934650599956512, -0.09786435216665268, 0.07866103947162628, 0.014114845544099808, -0.03447810560464859, 0.0728549137711525, 0.21031686663627625, 0.02480866201221943, 0.0058394442312419415, -0.053829483687877655, 0.013751635327935219, -0.009109173901379108, -0.17529430985450745, -0.04969298467040062, -0.061101168394088745, 0.05842561647295952, 0.015667622908949852, -0.0009938490111380816, -0.03830519691109657, 0.03753732144832611, -0.013380319811403751, 0.011767243035137653, 0.010680574923753738, 0.07958187162876129, 0.21271878480911255, -0.0003593392320908606, 0.06570560485124588, -0.0460113063454628, -0.0596257708966732, 0.008323214948177338, 0.05239909514784813, 0.06757079809904099, 0.044797543436288834, 0.10423099249601364, 0.0701715499162674, 0.1491592526435852, -0.019639519974589348, -0.049292974174022675, 0.042954783886671066, 0.011549154296517372, -0.020809940993785858, -0.030091434717178345, -0.13945156335830688, 0.0077015007846057415, 0.055967677384614944, -0.05299314484000206, -0.03002289868891239, 0.06524799764156342, 0.04336467757821083, 0.14842474460601807, 0.032650839537382126, -0.04984179511666298, -0.013285196386277676, 0.016620738431811333, 0.027409076690673828, -0.03963080048561096, -0.009859684854745865, 0.04839392006397247, -0.09319349378347397, 0.10954147577285767, 0.042859796434640884, 0.04079122096300125, -0.06520546972751617, 0.07572148740291595, -0.09606295078992844, -0.03276445344090462, -0.005341134965419769, 0.016177192330360413, -0.27068376541137695, 0.18617968261241913, 0.024100471287965775, -0.020367102697491646, 0.0692172646522522, 0.0036488391924649477, -0.038380421698093414, 0.10440957546234131, 0.11220282316207886, 0.07164356857538223, -0.20254749059677124, -0.15329480171203613, -0.005124133080244064, 0.02197173424065113, 0.08321639150381088, 0.03190148249268532, 0.05492280051112175, -0.037693846970796585, 0.03448519855737686, -0.029631566256284714, 0.07338476926088333, 0.0022587794810533524, -0.09153884649276733, 0.10083558410406113, -0.07879485189914703, 0.024749085307121277, 0.01656099408864975, -0.0029765297658741474, -0.20128348469734192, 0.0738215371966362, -0.06677207350730896, -0.003236060496419668, -0.024482613429427147, -0.1433403342962265, 0.04965631663799286, -0.11665624380111694, -0.0016721683787181973, -0.013621438294649124, -0.096413254737854, 0.03780606761574745, 0.00696943374350667, 0.07310177385807037, 0.0019574740435928106, -0.014015202410519123, -0.06894589960575104, 0.03554035350680351, -0.0030879308469593525, 0.05495629459619522, 0.06683718413114548, 0.01626518741250038, 0.068210668861866, -0.09782238304615021, -0.0038681987207382917, -0.005874274298548698, -0.03578229248523712, 0.008931907825171947, -0.11676568537950516, -0.04648084193468094, -0.10839931666851044, -0.020080026239156723, 0.09822622686624527, 0.20059914886951447, -0.05284770950675011, 0.06509215384721756, 0.13691440224647522, -0.1187080442905426, -0.1608879417181015, -0.15405596792697906, 0.05606003478169441, -0.04358549416065216, -0.008088227361440659, -0.11414466798305511, 0.015067307278513908, 0.07224796712398529, 0.014659491367638111, 0.035363178700208664, -0.2780851721763611, -0.06998720020055771, 0.1097344234585762, -0.029078563675284386, 0.1571415364742279, -0.14483949542045593, -0.07916277647018433, -0.020011717453598976, -0.1314043551683426, 0.010396727360785007, 0.02807641588151455, 0.057546861469745636, 0.02128538116812706, 0.10179702192544937, 0.044750239700078964, 0.025377711281180382, 0.11904296278953552, 0.01351148821413517, -0.013802395202219486, -0.135646253824234, -0.05145387724041939, -0.024364810436964035, -0.04629138484597206, 0.02402833104133606, -0.020434357225894928, -0.06159765273332596, -0.1497184932231903, 0.03269500657916069, -0.07518012076616287, 0.09873983263969421, -0.09285344928503036, -0.0004079327918589115, 0.030443858355283737, 0.02374856360256672, 0.08680815249681473, 0.0033550739753991365, -0.001141123822890222, -0.07734908163547516, 0.12334230542182922, 0.15152814984321594, -0.018427331000566483, -0.03570420295000076, -0.09896904230117798, -0.0053548808209598064, -0.014989041723310947, 0.03623005002737045, 0.08637798577547073, 0.052428729832172394, 0.11103755980730057, 0.014080854132771492, 0.05814914405345917, -0.022679457440972328, 0.0011925461003556848, -0.015424083918333054, 0.09235373884439468, -0.04466510936617851, -0.08250077813863754, 0.03843442350625992, -0.08312960714101791, -0.011939062736928463, 0.0026504783891141415, 0.1764102578163147, 0.08928371965885162, -0.007971773855388165, 0.043215129524469376, 0.05828161537647247, 0.014097115956246853, 0.055363960564136505, 0.0014418778009712696, 0.02844773419201374, -0.05949334055185318, -0.007412213832139969, 0.1270243227481842, -0.04465967044234276, 0.11430513113737106, 0.010124805383384228, -0.029990648850798607, -0.06474858522415161, -0.008853004314005375, 0.042829420417547226, -0.04815847426652908, -0.015528454445302486, -0.04941418766975403, -0.10482057183980942, -0.003745974972844124, 0.11720751225948334, 0.012905595824122429, 0.06228732317686081, 0.052867550402879715, -0.025286884978413582, 0.01176310982555151, 0.01495047565549612, 0.08725575357675552, 0.021475452929735184, -0.03887936845421791, 0.1295335292816162, 0.013368818908929825, 0.03221636265516281, -0.02261384390294552, -0.06536616384983063, -0.1813449263572693, 0.009737859480082989, -0.09952227026224136, 0.06769917160272598, -0.09321527928113937, 0.04592142999172211, 0.005881937220692635, -0.04351697489619255, -0.06437700986862183, -0.045969583094120026, -0.010987615212798119, 0.02212667092680931, 0.026246855035424232, 0.09679631143808365, -0.08145900815725327, -0.04262988269329071, 0.07823890447616577, -0.020099274814128876, -0.022518515586853027, 0.016785666346549988, -0.033998098224401474, 0.09575224667787552, -0.01814224384725094, 0.08242034912109375, -0.02137838304042816, 0.0014191416557878256, -0.028776556253433228, -0.11705637723207474, -0.007194309961050749, -0.00853137206286192, 0.0339469350874424, 0.04408019408583641, 0.06933383643627167, -0.0995524674654007, 0.007925420999526978, 0.019860392436385155, -0.15696647763252258, -0.01901872269809246, -0.009828290902078152, 0.011417028494179249, -0.04052448645234108, 0.12762291729450226, -0.06851562112569809, 0.10736905038356781, -0.04912807047367096, -0.009940188378095627, 0.04494910314679146, 0.025845037773251534, 0.005060661118477583, -0.04938727989792824, 0.030481474474072456, -0.044461898505687714, -0.03180500492453575, -0.08251437544822693, 0.1044681966304779, -0.018078764900565147, -0.06270331889390945, -0.20994098484516144, 0.015479031018912792, 0.0642009750008583, 0.06268312782049179, -0.04601575434207916, -0.05029435083270073, 0.03667967766523361, -0.01199212297797203, 0.04566445201635361, 0.002977869939059019, 0.08630982786417007, 0.08700194954872131, 0.10051199048757553, 0.038456741720438004, 0.007215759716928005, 0.02093273587524891, 0.11611128598451614, -0.05682996287941933, 0.053586170077323914, -0.024147868156433105, 0.017136819660663605, 0.11621641367673874, -0.10902465879917145, 0.10716766119003296, -0.041248396039009094, -0.057940274477005005, -0.08614472299814224, -0.17444157600402832, -0.05174095928668976, -0.03303161635994911, 0.024762267246842384, -0.03337770327925682, 0.02471669390797615, 0.027555545791983604, 0.015574540942907333, -0.004918908700346947, 0.051873255521059036, -0.014273368753492832, -0.11128188669681549, 0.023138675838708878, 0.03503022715449333, 0.07600151002407074, 0.015746818855404854, 0.021102944388985634, -0.014455570839345455, 0.14724008738994598, 0.03656064718961716, 0.08687492460012436, 0.06398181617259979, -0.016776368021965027, -0.09915763884782791, -0.06595099717378616, 0.003868094179779291, 0.023060724139213562, 0.009644929319620132, 0.06618434190750122, 0.0345538966357708, -0.021511122584342957, -0.009308531880378723, 0.16198518872261047, -0.012646917253732681, -0.10422679036855698, -0.13153837621212006, 0.09464223682880402, 0.026774341240525246, 0.05985468626022339, -0.0835224837064743, -0.046766478568315506, 0.0023395561147481203, 0.12919601798057556, 0.16458939015865326, 0.007730143144726753, 0.021754147484898567, -0.0038440136704593897, 0.04784807190299034, 0.11668328940868378, 0.10005790740251541, 0.013464485295116901, 0.1112394630908966, -0.010952761396765709, 0.006457080133259296, -0.028175607323646545, 0.052599817514419556, -0.0931750237941742, 0.07973014563322067, -0.016069356352090836, 0.05069122463464737, -0.06391187757253647, 0.10887981951236725, -0.17186273634433746, -0.1699034869670868, -0.034206029027700424, -0.10993330180644989, -0.09852105379104614, -0.026745695620775223, 0.14272533357143402, 0.06665608286857605, 0.07366268336772919, 0.037704188376665115, -0.05303611233830452, 0.08570578694343567, 0.002571546472609043, -0.007795466110110283, -0.10032668709754944, 0.08193308860063553, 0.038475580513477325, 0.09624766558408737, 0.01221545785665512, 0.057972636073827744, 0.09092355519533157, 0.03879780322313309, -0.003753836965188384, 0.02474035695195198, 0.039247777312994, -0.011204089969396591, 0.04484497383236885, -0.020322848111391068, 0.035575445741415024, 0.07494547963142395, 0.1052984967827797, 0.007829287089407444, 0.016507020220160484, 0.06075305491685867, 0.07486636936664581, -0.013113003224134445, 0.11747578531503677, -0.07794385403394699, 0.05349760502576828, 0.15066267549991608, 0.014105712063610554, -0.033805567771196365, -0.0893087238073349, -0.03637605160474777, 0.0051721930503845215, -0.09398447722196579, -0.090469591319561, -0.11372508108615875, 0.02025519870221615, -0.10375811904668808, 0.09240583330392838, -0.09285299479961395, -0.046399544924497604, 0.07539685070514679, -0.005426113028079271, -0.008734431117773056, 0.1201106458902359, -0.006506606470793486, 0.026287587359547615, -0.0391899049282074, -0.1573832631111145, 0.01244065910577774, 0.10610098391771317, -0.07131335139274597, -0.07032560557126999 ]
null
null
null
This model is for anyone using using Flux.jl and looking for a test model to make sue of the Hugging Face hub. You can see the source code to generate this model below: ```Julia julia> using Flux julia> model = Chain(Dense(10, 5, NNlib.relu), Dense(5, 2), NNlib.softmax) Chain(Dense(10, 5, NNlib.relu), Dense(5, 2), NNlib.softmax) julia> using BSON: @save julia> @save "mymodel.bson" model ``` you can then load the model in Julia as follows: ```Julia julia> using Flux julia> using BSON: @load julia> @load "mymodel.bson" model julia> model Chain(Dense(10, 5, NNlib.relu), Dense(5, 2), NNlib.softmax) ``` See here: https://fluxml.ai/Flux.jl/stable/saving/#Saving-and-Loading-Models for more details!
{}
null
LoganKilpatrick/BasicFluxjlModel
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
This model is for anyone using using URL and looking for a test model to make sue of the Hugging Face hub. You can see the source code to generate this model below: you can then load the model in Julia as follows: See here: URL for more details!
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
null
Aaaa
{}
null
Lolamarcon/Migo
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
Aaaa
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
null
## README
{}
null
Longines/test_repo
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
## README
[ "## README" ]
[ "TAGS\n#region-us \n", "## README" ]
[ 6, 3 ]
[ "passage: TAGS\n#region-us \n## README" ]
[ 0.014317126013338566, -0.0035075596533715725, -0.010387998074293137, -0.04368280991911888, 0.09196113795042038, 0.08011359721422195, 0.01992272585630417, 0.02005263790488243, 0.2542888820171356, 0.011799069121479988, 0.10706572234630585, 0.07193095982074738, -0.03689661622047424, 0.04761607199907303, -0.01700580306351185, -0.21250726282596588, 0.04594654589891434, -0.06280871480703354, 0.05888696387410164, 0.036483459174633026, -0.07437896728515625, -0.09005122631788254, 0.02307625487446785, -0.13768775761127472, 0.03733336552977562, 0.09125229716300964, -0.026209194213151932, -0.025999100878834724, 0.10406740009784698, -0.04560517519712448, 0.1369604915380478, -0.016181595623493195, -0.09603826701641083, -0.2516062557697296, 0.04204535111784935, -0.00536845438182354, -0.09099948406219482, 0.027337368577718735, 0.11079315096139908, -0.11932086199522018, -0.05160345509648323, 0.06898157298564911, 0.0037279915995895863, 0.056718844920396805, -0.2518432140350342, -0.15951253473758698, -0.062049850821495056, -0.056964535266160965, 0.06948778033256531, 0.03656884282827377, -0.013478230684995651, 0.10240505635738373, -0.15556475520133972, 0.014113628305494785, 0.16704930365085602, -0.25430887937545776, 0.04125962406396866, 0.19450275599956512, 0.06810583174228668, 0.2243904173374176, -0.0717179924249649, 0.10827117413282394, 0.058839716017246246, -0.016274506226181984, -0.17107263207435608, -0.07396501302719116, 0.017716268077492714, 0.15955792367458344, -0.08061149716377258, -0.09198309481143951, 0.33314067125320435, -0.02550678141415119, 0.033310774713754654, 0.07613272219896317, -0.09897695481777191, -0.029617663472890854, 0.04747214540839195, 0.00012986361980438232, 0.008549348451197147, 0.1732998490333557, 0.14726939797401428, -0.08797187358140945, -0.09654879570007324, -0.02786799892783165, -0.20759525895118713, 0.19581304490566254, -0.04218579828739166, 0.09429872781038284, -0.1789698302745819, 0.038355760276317596, -0.09548049420118332, -0.013756713829934597, 0.04036543145775795, -0.08683426678180695, 0.004719075746834278, -0.00843470636755228, -0.034129548817873, 0.014202932827174664, 0.050373274832963943, 0.12285707890987396, -0.03236645087599754, 0.09166048467159271, -0.08167864382266998, 0.16443337500095367, 0.06516901403665543, 0.017417369410395622, 0.10319636762142181, 0.0021717865020036697, -0.11811377108097076, -0.172563374042511, 0.0374331995844841, -0.0548350065946579, -0.09033776074647903, 0.014119166880846024, -0.13617423176765442, 0.14919741451740265, -0.013510039076209068, -0.12187328934669495, -0.08536116778850555, 0.06852008402347565, -0.0240968968719244, -0.03621702268719673, -0.048055585473775864, 0.02516428753733635, 0.0024912613444030285, 0.06540919840335846, -0.11475218832492828, -0.01802443526685238, 0.02095888741314411, 0.1433068960905075, -0.14877842366695404, -0.016833219677209854, -0.0700637623667717, 0.03905780613422394, 0.05316087231040001, -0.15600541234016418, 0.045893169939517975, -0.08514504879713058, -0.13530656695365906, -0.01761813834309578, -0.014164092019200325, -0.03513414040207863, 0.1442330926656723, 0.0022721653804183006, 0.07047940045595169, -0.022753659635782242, -0.028244687244296074, -0.07386595755815506, -0.11124647408723831, 0.10610011219978333, 0.014251338317990303, 0.053793035447597504, -0.08103927224874496, -0.019243566319346428, -0.14433513581752777, 0.1102190762758255, -0.07304245978593826, -0.012821682728827, -0.026596039533615112, 0.20935995876789093, 0.020265527069568634, 0.08304556459188461, -0.2366827130317688, 0.02126714400947094, -0.08597621321678162, 0.2694176435470581, -0.1266004592180252, -0.08050070703029633, 0.2162419706583023, -0.08028194308280945, -0.13990354537963867, -0.00626168679445982, 0.030704300850629807, 0.06968747824430466, 0.093535415828228, 0.4428059160709381, -0.07455046474933624, -0.1023736521601677, 0.0664706751704216, 0.2192741483449936, -0.074763223528862, -0.07682618498802185, 0.05729091539978981, -0.15666411817073822, -0.11090823262929916, 0.015489225275814533, 0.11763058602809906, -0.015411810018122196, -0.0279634278267622, -0.036702316254377365, 0.06359144300222397, 0.000010484865015314426, 0.11048102378845215, 0.03199281543493271, 0.050621397793293, -0.08908133208751678, 0.0871453657746315, -0.06245403736829758, 0.04474876821041107, 0.1317616105079651, 0.00903240218758583, 0.057905711233615875, 0.0756932869553566, -0.012896228581666946, 0.05380997806787491, -0.14872047305107117, -0.09939101338386536, -0.03731730952858925, 0.09356214106082916, 0.008991151116788387, 0.1628887802362442, 0.10016675293445587, -0.10858208686113358, -0.032025936990976334, -0.028592871502041817, 0.06477086246013641, 0.017228862270712852, -0.03451941907405853, -0.07889088988304138, 0.10360334813594818, -0.07745341211557388, -0.13135966658592224, -0.1301807463169098, -0.0016987957060337067, 0.10957793891429901, 0.027628980576992035, 0.07390082627534866, -0.014942324720323086, 0.03432335704565048, 0.030032820999622345, 0.08883349597454071, 0.0047745839692652225, 0.10148549824953079, -0.06302624195814133, -0.052314672619104385, 0.1282266527414322, -0.1926204413175583, 0.12304005026817322, 0.16457584500312805, -0.24420985579490662, 0.015611252747476101, -0.1176605075597763, 0.014742136001586914, -0.005060764495283365, 0.02599271759390831, -0.0667613223195076, 0.0033568295184522867, 0.046140678226947784, 0.03257088363170624, -0.025104930624365807, -0.02896459773182869, -0.07190756499767303, -0.06946856528520584, -0.09388316422700882, 0.1257084459066391, 0.05288248881697655, -0.10077497363090515, 0.15700282156467438, 0.4006514251232147, 0.1484421193599701, 0.2627100646495819, -0.042431559413671494, -0.06932097673416138, 0.04612819477915764, -0.0373644158244133, -0.06055242195725441, 0.08311263471841812, -0.15700563788414001, -0.005077612120658159, 0.042740412056446075, 0.07414902746677399, 0.12786361575126648, -0.1427747756242752, -0.10304426401853561, -0.033032242208719254, 0.014352886006236076, -0.07943142205476761, 0.04585406929254532, -0.05822690576314926, 0.030169231817126274, 0.0624258778989315, 0.0559525266289711, 0.11207297444343567, -0.04710211977362633, -0.06730511784553528, 0.11803150177001953, -0.17244172096252441, -0.18811580538749695, -0.10827304422855377, -0.15507936477661133, 0.07879829406738281, 0.05641753226518631, 0.012005196884274483, -0.15788377821445465, -0.03573303669691086, 0.05811985954642296, 0.06546758115291595, -0.21989518404006958, -0.05563628301024437, -0.04827721789479256, 0.13740423321723938, -0.11584743112325668, -0.02021739073097706, -0.0048549664206802845, -0.06529701501131058, 0.015469069592654705, 0.038662370294332504, -0.1418868899345398, 0.1126856654882431, 0.18944686651229858, 0.12024254351854324, 0.046865496784448624, -0.021923180669546127, 0.1474374383687973, -0.17531870305538177, -0.14927411079406738, 0.061304833739995956, -0.06864860653877258, 0.05362378805875778, 0.17817899584770203, 0.05076355114579201, -0.14241863787174225, 0.01982123963534832, -0.020109321922063828, -0.0998430997133255, -0.29213598370552063, -0.07066366076469421, -0.10978066921234131, 0.2023966908454895, 0.00006294078775681555, 0.06073620170354843, 0.03974558413028717, -0.023802774026989937, 0.08831652253866196, -0.09235089272260666, -0.026900451630353928, 0.008890235796570778, 0.16288171708583832, -0.08460228890180588, -0.044263627380132675, -0.10269030928611755, -0.01619652472436428, 0.11586657166481018, 0.14181607961654663, 0.02706538327038288, 0.23873890936374664, 0.1483234465122223, 0.010953271761536598, -0.009294032119214535, 0.09428905695676804, 0.09021346271038055, 0.06442321836948395, -0.028994036838412285, -0.023304475471377373, -0.00457196868956089, -0.020200613886117935, 0.031194521114230156, 0.09250830113887787, -0.2196359932422638, -0.017532382160425186, -0.21162770688533783, 0.12675741314888, -0.1223168671131134, 0.12292087823152542, 0.06072220578789711, 0.09863627701997757, 0.13962870836257935, 0.022868921980261803, -0.05493003875017166, 0.13774125277996063, 0.04553333669900894, -0.13231872022151947, 0.002580423839390278, 0.06726892292499542, 0.11983077228069305, -0.10551948100328445, 0.09223757684230804, -0.1760697364807129, -0.1662513166666031, -0.026043882593512535, 0.10160008072853088, -0.12098204344511032, 0.2812980115413666, 0.03758471459150314, -0.08348669111728668, -0.012013331986963749, -0.13213393092155457, 0.015040246769785881, 0.1563369631767273, 0.09476956725120544, 0.07649899274110794, -0.13430246710777283, -0.09242688864469528, 0.0024203932844102383, -0.012189555913209915, 0.17809104919433594, -0.09412933140993118, -0.09560520946979523, -0.021676328033208847, 0.036200691014528275, -0.10891507565975189, 0.10117391496896744, 0.1006273478269577, -0.07778843492269516, -0.0013064088998362422, -0.027138102799654007, 0.04593479260802269, 0.006076395511627197, 0.06801320612430573, 0.02617482654750347, 0.007234629709273577, -0.047718875110149384, 0.021555928513407707, -0.03668741136789322, -0.16624753177165985, 0.08642987161874771, -0.02080603688955307, -0.05464015156030655, -0.05366471782326698, -0.11135821044445038, -0.10668384283781052, -0.09168287366628647, 0.10937166213989258, -0.03475639969110489, 0.03844638168811798, -0.07594352960586548, 0.16749098896980286, -0.11256802827119827, 0.0673445537686348, -0.05211750417947769, 0.045304592698812485, -0.06425191462039948, -0.05857306346297264, 0.16118335723876953, -0.19449274241924286, 0.003246595151722431, 0.20262549817562103, -0.04329778626561165, 0.06430111825466156, 0.010801400057971478, -0.11767490953207016, 0.1819370687007904, 0.2614355981349945, 0.04328007251024246, 0.2079806923866272, 0.36420807242393494, -0.11820913106203079, -0.2882953882217407, -0.0728968158364296, -0.29894235730171204, -0.0933179184794426, 0.08533735573291779, -0.24977923929691315, 0.10162357985973358, 0.0843089297413826, -0.05099831521511078, 0.3194931745529175, -0.24545373022556305, -0.01280974317342043, 0.13338163495063782, -0.07518469542264938, 0.5134397745132446, -0.1389031857252121, -0.1748543083667755, -0.007817097008228302, -0.06293058395385742, 0.007074391003698111, -0.1253400295972824, 0.09612596780061722, 0.010868108831346035, 0.03307879716157913, 0.03765302151441574, -0.00979959312826395, 0.2440900206565857, -0.032269008457660675, 0.048595622181892395, -0.09816625714302063, -0.10750791430473328, 0.030806582421064377, -0.016044573858380318, -0.11884111911058426, -0.014133150689303875, -0.034358564764261246, -0.1325203776359558, 0.003905389690771699, -0.05481648072600365, -0.0330742746591568, 0.06490632146596909, -0.04541504755616188, -0.025935830548405647, 0.0015430020866915584, -0.14905858039855957, -0.006221978925168514, 0.290951132774353, -0.0951421782374382, 0.1585744470357895, -0.03517462685704231, 0.07423415035009384, -0.07512584328651428, -0.042776718735694885, -0.0715753585100174, -0.028278660029172897, 0.09098920226097107, -0.12927678227424622, -0.0018934649415314198, 0.13647116720676422, -0.014929508790373802, 0.0578964538872242, 0.1024688333272934, -0.09763430058956146, -0.006604812107980251, 0.1442621648311615, -0.2101176679134369, -0.08820544928312302, -0.015115761198103428, -0.07299642264842987, 0.08094049245119095, -0.038476426154375076, 0.0684223622083664, 0.15379424393177032, 0.024548109620809555, 0.01044858992099762, -0.0033617152366787195, -0.055547554045915604, 0.0005137639818713069, 0.04788513481616974, 0.03788858652114868, -0.05891350284218788, 0.23827193677425385, 0.07459892332553864, -0.17203904688358307, -0.08477839827537537, 0.30946776270866394, -0.07557053864002228, -0.06831468641757965, -0.1891101896762848, 0.11698019504547119, 0.01243201270699501, -0.0705435574054718, 0.00026932990294881165, 0.012022223323583603, 0.011910886503756046, 0.21052518486976624, 0.06408718228340149, 0.09233593195676804, 0.03027898259460926, -0.03852735087275505, 0.1647537648677826, -0.050946421921253204, -0.10968475788831711, -0.0356738418340683, -0.06588895618915558, -0.1359207183122635, -0.02946375496685505, 0.1592627465724945, -0.08329848200082779, -0.12278176099061966, -0.2623238265514374, 0.10525669157505035, -0.1259831339120865, -0.051473505795001984, -0.03537318482995033, -0.09787993878126144, 0.01306578703224659, 0.048407115042209625, -0.033898256719112396, -0.07099097222089767, -0.16491881012916565, 0.06769391894340515, 0.07478784024715424, 0.07250139117240906, -0.03080076165497303, 0.015115032903850079, 0.17455989122390747, 0.0036201835609972477, 0.11497116088867188, 0.15759029984474182, 0.02291540987789631, 0.17741526663303375, -0.16988560557365417, -0.058598391711711884, 0.09881052374839783, -0.028631243854761124, -0.012781688012182713, 0.1631314754486084, -0.0993734747171402, -0.04987164959311485, -0.00242388597689569, 0.07932969927787781, -0.09043904393911362, -0.11772975325584412, 0.02151496149599552, 0.04244232550263405, -0.24318522214889526, 0.0022955446038395166, -0.16226544976234436, 0.11355256289243698, 0.011587596498429775, 0.04810487851500511, 0.050261761993169785, 0.11307840049266815, 0.07273462414741516, 0.027891354635357857, 0.03579128533601761, -0.12149955332279205, 0.046194273978471756, -0.05113745108246803, -0.010059158317744732, -0.004957164172083139, 0.34941259026527405, -0.028526343405246735, -0.012337887659668922, 0.03656483441591263, 0.1685151904821396, -0.03169596567749977, 0.01029262412339449, 0.20228338241577148, 0.13885800540447235, -0.09005539119243622, -0.15836387872695923, 0.08383627980947495, -0.015283642336726189, 0.02376296930015087, 0.09100839495658875, 0.06775039434432983, 0.11830498278141022, 0.08819888532161713, -0.1148008406162262, -0.0435350127518177, 0.039225514978170395, -0.13469520211219788, 0.08497489988803864, -0.012203116901218891, 0.005167023278772831, 0.0319812037050724, 0.187569722533226, 0.017474399879574776, 0.06617587059736252, -0.058252401649951935, -0.001477974932640791, -0.16278275847434998, 0.017500074580311775, 0.04271946847438812, -0.11129431426525116, 0.03572622314095497, -0.009633446112275124, 0.007647904567420483, 0.2113436907529831, 0.03862251341342926, -0.021368494257330894, 0.13454356789588928, -0.03801724687218666, -0.14461065828800201, 0.015542547218501568, -0.027727089822292328, 0.06513337790966034, -0.050575729459524155, -0.07149885594844818, -0.10537201911211014, -0.1738380342721939, -0.11608390510082245, 0.023105131462216377, -0.07636801898479462, -0.0776701420545578, -0.1802295297384262, -0.07496332377195358, -0.04834049195051193, 0.12337306886911392, -0.10203909873962402, 0.2528992295265198, 0.005145407747477293, 0.019829221069812775, 0.030707072466611862, 0.24390719830989838, -0.03931478410959244, 0.07806151360273361, 0.0005257257726043463, 0.10920961201190948, -0.0524359755218029, 0.12067817896604538, -0.0958050861954689, -0.07258330285549164, -0.05000957474112511, 0.22820408642292023, 0.24974282085895538, -0.10156843066215515, 0.008747657760977745, 0.024884019047021866, 0.06541270017623901, 0.16899538040161133, 0.07640528678894043, -0.0012895935215055943, 0.24845045804977417, -0.07075072079896927, 0.052877649664878845, 0.028429053723812103, -0.00020521119586192071, -0.06286650896072388, 0.032881252467632294, 0.09635786712169647, -0.015173593536019325, -0.14235956966876984, 0.15046633780002594, -0.2731790840625763, 0.1387851983308792, 0.0962061733007431, -0.21620617806911469, 0.0075758760794997215, -0.08373591303825378, 0.14228013157844543, -0.056455347687006, 0.12602628767490387, -0.01985335350036621, -0.18763472139835358, -0.14211271703243256, 0.033265452831983566, -0.3232952654361725, -0.2593241035938263, 0.08239723742008209, 0.09296618402004242, 0.08170730620622635, -0.056521158665418625, -0.07582779973745346, -0.022033261135220528, 0.008593789301812649, -0.0015765945427119732, 0.04171346127986908, 0.08449415862560272, -0.03148863837122917, -0.21814967691898346, 0.0314035564661026, -0.00258062407374382, -0.11580387502908707, 0.10632366687059402, -0.09865203499794006, -0.022154342383146286, 0.10510950535535812, -0.04490337148308754, 0.03823321312665939, 0.02997014671564102, -0.15011084079742432, 0.014616487547755241, 0.07163511216640472, 0.03888387233018875, -0.02616717293858528, 0.01064431294798851, -0.02212849073112011, 0.028549324721097946, -0.18305017054080963, -0.11656837165355682, 0.1368640512228012, -0.07257556170225143, 0.24307098984718323, -0.04599320515990257, -0.19772964715957642, 0.0405869297683239, 0.004181291908025742, 0.1554429680109024, -0.09717658907175064, 0.03027157671749592, 0.1005408838391304, -0.014456436969339848, 0.028478901833295822, -0.2720370888710022, 0.11580599844455719, -0.0006391761125996709, -0.03586599603295326, -0.06409274786710739 ]
null
null
transformers
# GePpeTto GPT2 Model 🇮🇹 Pretrained GPT2 117M model for Italian. You can find further details in the paper: Lorenzo De Mattei, Michele Cafagna, Felice Dell’Orletta, Malvina Nissim, Marco Guerini "GePpeTto Carves Italian into a Language Model", arXiv preprint. Pdf available at: https://arxiv.org/abs/2004.14253 ## Pretraining Corpus The pretraining set comprises two main sources. The first one is a dump of Italian Wikipedia (November 2019), consisting of 2.8GB of text. The second one is the ItWac corpus (Baroni et al., 2009), which amounts to 11GB of web texts. This collection provides a mix of standard and less standard Italian, on a rather wide chronological span, with older texts than the Wikipedia dump (the latter stretches only to the late 2000s). ## Pretraining details This model was trained using GPT2's Hugging Face implemenation on 4 NVIDIA Tesla T4 GPU for 620k steps. Training parameters: - GPT-2 small configuration - vocabulary size: 30k - Batch size: 32 - Block size: 100 - Adam Optimizer - Initial learning rate: 5e-5 - Warm up steps: 10k ## Perplexity scores | Domain | Perplexity | |---|---| | Wikipedia | 26.1052 | | ItWac | 30.3965 | | Legal | 37.2197 | | News | 45.3859 | | Social Media | 84.6408 | For further details, qualitative analysis and human evaluation check out: https://arxiv.org/abs/2004.14253 ## Load Pretrained Model You can use this model by installing Huggingface library `transformers`. And you can use it directly by initializing it like this: ```python from transformers import GPT2Tokenizer, GPT2Model model = GPT2Model.from_pretrained('LorenzoDeMattei/GePpeTto') tokenizer = GPT2Tokenizer.from_pretrained( 'LorenzoDeMattei/GePpeTto', ) ``` ## Example using GPT2LMHeadModel ```python from transformers import AutoTokenizer, AutoModelWithLMHead, pipeline, GPT2Tokenizer tokenizer = AutoTokenizer.from_pretrained("LorenzoDeMattei/GePpeTto") model = AutoModelWithLMHead.from_pretrained("LorenzoDeMattei/GePpeTto") text_generator = pipeline('text-generation', model=model, tokenizer=tokenizer) prompts = [ "Wikipedia Geppetto", "Maestro Ciliegia regala il pezzo di legno al suo amico Geppetto, il quale lo prende per fabbricarsi un burattino maraviglioso"] samples_outputs = text_generator( prompts, do_sample=True, max_length=50, top_k=50, top_p=0.95, num_return_sequences=3 ) for i, sample_outputs in enumerate(samples_outputs): print(100 * '-') print("Prompt:", prompts[i]) for sample_output in sample_outputs: print("Sample:", sample_output['generated_text']) print() ``` Output is, ``` ---------------------------------------------------------------------------------------------------- Prompt: Wikipedia Geppetto Sample: Wikipedia Geppetto rosso (film 1920) Geppetto rosso ("The Smokes in the Black") è un film muto del 1920 diretto da Henry H. Leonard. Il film fu prodotto dalla Selig Poly Sample: Wikipedia Geppetto Geppetto ("Geppetto" in piemontese) è un comune italiano di 978 abitanti della provincia di Cuneo in Piemonte. L'abitato, che si trova nel versante valtellinese, si sviluppa nella Sample: Wikipedia Geppetto di Natale (romanzo) Geppetto di Natale è un romanzo di Mario Caiano, pubblicato nel 2012. ---------------------------------------------------------------------------------------------------- Prompt: Maestro Ciliegia regala il pezzo di legno al suo amico Geppetto, il quale lo prende per fabbricarsi un burattino maraviglioso Sample: Maestro Ciliegia regala il pezzo di legno al suo amico Geppetto, il quale lo prende per fabbricarsi un burattino maraviglioso. Il burattino riesce a scappare. Dopo aver trovato un prezioso sacchetto si reca Sample: Maestro Ciliegia regala il pezzo di legno al suo amico Geppetto, il quale lo prende per fabbricarsi un burattino maraviglioso, e l'unico che lo possiede, ma, di fronte a tutte queste prove Sample: Maestro Ciliegia regala il pezzo di legno al suo amico Geppetto, il quale lo prende per fabbricarsi un burattino maraviglioso: - A voi gli occhi, le guance! A voi il mio pezzo! ``` ## Citation Please use the following bibtex entry: ``` @misc{mattei2020geppetto, title={GePpeTto Carves Italian into a Language Model}, author={Lorenzo De Mattei and Michele Cafagna and Felice Dell'Orletta and Malvina Nissim and Marco Guerini}, year={2020}, eprint={2004.14253}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ## References Marco Baroni, Silvia Bernardini, Adriano Ferraresi, and Eros Zanchetta. 2009. The WaCky wide web: a collection of very large linguistically processed webcrawled corpora. Language resources and evaluation, 43(3):209–226.
{"language": "it"}
text-generation
LorenzoDeMattei/GePpeTto
[ "transformers", "pytorch", "jax", "safetensors", "gpt2", "text-generation", "it", "arxiv:2004.14253", "autotrain_compatible", "endpoints_compatible", "has_space", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2004.14253" ]
[ "it" ]
TAGS #transformers #pytorch #jax #safetensors #gpt2 #text-generation #it #arxiv-2004.14253 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
GePpeTto GPT2 Model 🇮🇹 ====================== Pretrained GPT2 117M model for Italian. You can find further details in the paper: Lorenzo De Mattei, Michele Cafagna, Felice Dell’Orletta, Malvina Nissim, Marco Guerini "GePpeTto Carves Italian into a Language Model", arXiv preprint. Pdf available at: URL Pretraining Corpus ------------------ The pretraining set comprises two main sources. The first one is a dump of Italian Wikipedia (November 2019), consisting of 2.8GB of text. The second one is the ItWac corpus (Baroni et al., 2009), which amounts to 11GB of web texts. This collection provides a mix of standard and less standard Italian, on a rather wide chronological span, with older texts than the Wikipedia dump (the latter stretches only to the late 2000s). Pretraining details ------------------- This model was trained using GPT2's Hugging Face implemenation on 4 NVIDIA Tesla T4 GPU for 620k steps. Training parameters: * GPT-2 small configuration * vocabulary size: 30k * Batch size: 32 * Block size: 100 * Adam Optimizer * Initial learning rate: 5e-5 * Warm up steps: 10k Perplexity scores ----------------- For further details, qualitative analysis and human evaluation check out: URL Load Pretrained Model --------------------- You can use this model by installing Huggingface library 'transformers'. And you can use it directly by initializing it like this: Example using GPT2LMHeadModel ----------------------------- Output is, Please use the following bibtex entry: References ---------- Marco Baroni, Silvia Bernardini, Adriano Ferraresi, and Eros Zanchetta. 2009. The WaCky wide web: a collection of very large linguistically processed webcrawled corpora. Language resources and evaluation, 43(3):209–226.
[]
[ "TAGS\n#transformers #pytorch #jax #safetensors #gpt2 #text-generation #it #arxiv-2004.14253 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n" ]
[ 70 ]
[ "passage: TAGS\n#transformers #pytorch #jax #safetensors #gpt2 #text-generation #it #arxiv-2004.14253 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n" ]
[ -0.025035178288817406, 0.032738808542490005, -0.004857748746871948, 0.03482499346137047, 0.13258105516433716, 0.00213094730861485, 0.08020488917827606, 0.12914638221263885, -0.03427011892199516, 0.030429689213633537, 0.18596045672893524, 0.1618977189064026, -0.020780200138688087, 0.13509601354599, -0.0817304402589798, -0.19739288091659546, 0.07758680731058121, 0.02696777880191803, 0.0018156919395551085, 0.11671093106269836, 0.09797810018062592, -0.08739128708839417, 0.09076081961393356, -0.03555880859494209, -0.1344992071390152, 0.01751972734928131, 0.058922845870256424, -0.1312597244977951, 0.11204488575458527, 0.029851192608475685, 0.1154116690158844, 0.038891565054655075, -0.04496224597096443, -0.09967459738254547, 0.03333652764558792, 0.04660915210843086, -0.06965737789869308, 0.07743833214044571, 0.08162892609834671, -0.05723296478390694, 0.0666445940732956, 0.00792597234249115, -0.029794376343488693, 0.025425810366868973, -0.15835633873939514, -0.1270924061536789, -0.052194081246852875, 0.043695129454135895, 0.045889366418123245, 0.11083042621612549, -0.01628847047686577, 0.15318161249160767, -0.058392640203237534, 0.1087973415851593, 0.18129993975162506, -0.3610926568508148, -0.018594393506646156, 0.09318863600492477, 0.08045932650566101, 0.06395366787910461, -0.05171580985188484, 0.06238828971982002, 0.05663767457008362, 0.017424482852220535, 0.0592644140124321, -0.061788931488990784, -0.16464932262897491, 0.047171205282211304, -0.09786685556173325, -0.06619784235954285, 0.2605980336666107, -0.05165272578597069, 0.0583839938044548, -0.04381365329027176, -0.11087161302566528, -0.05638406053185463, 0.00188385508954525, -0.0014452661853283644, -0.03533608093857765, 0.054802075028419495, 0.04029745236039162, -0.04541710391640663, -0.15565979480743408, -0.018428869545459747, -0.1717912256717682, 0.16955429315567017, -0.010834342800080776, 0.049938175827264786, -0.14949370920658112, 0.07925086468458176, -0.01679062470793724, -0.12242262065410614, 0.04506503418087959, -0.08927210420370102, 0.09036249667406082, 0.01992139220237732, -0.05482163280248642, -0.06521304696798325, 0.10468296706676483, 0.10307079553604126, -0.06409649550914764, 0.023697996512055397, -0.02103387750685215, 0.0829128846526146, 0.0029309571254998446, 0.08381619304418564, -0.043068476021289825, -0.03114231862127781, 0.07861748337745667, -0.040129538625478745, 0.05131255462765694, -0.06446673721075058, -0.14292433857917786, -0.04876149073243141, 0.10388772189617157, 0.08425499498844147, 0.053487107157707214, 0.10468257963657379, -0.028247810900211334, 0.03155108541250229, 0.08593055605888367, -0.09190647304058075, 0.016752853989601135, -0.0037792506627738476, 0.04696232080459595, 0.015527800656855106, 0.01929093338549137, 0.011811955831944942, -0.08790111541748047, 0.05063260346651077, -0.08413957059383392, -0.011914747767150402, -0.03716422617435455, -0.11459366977214813, 0.034999679774045944, -0.051958996802568436, 0.0038538873195648193, -0.20097249746322632, -0.10263758897781372, -0.0010199215030297637, -0.008485178463160992, -0.01667715795338154, -0.039484672248363495, 0.006530411541461945, -0.06761776655912399, 0.08368167281150818, -0.06487367302179337, 0.007513536140322685, -0.06446117907762527, 0.09626265615224838, -0.010774132795631886, 0.09341994673013687, -0.11395714432001114, 0.04048990458250046, -0.10459014773368835, -0.009581604972481728, -0.08762818574905396, -0.003900677664205432, -0.019261447712779045, 0.126250758767128, -0.015371697954833508, -0.028429895639419556, -0.08484505116939545, 0.054920971393585205, 0.012289952486753464, 0.18755362927913666, -0.07915107905864716, -0.06123940274119377, 0.20716503262519836, -0.10873637348413467, -0.1700662076473236, 0.09993547946214676, 0.027284516021609306, 0.008087163791060448, 0.05741661414504051, 0.20649851858615875, 0.0003406357136555016, -0.053954899311065674, 0.017169009894132614, 0.09740297496318817, -0.09492113441228867, -0.06333763897418976, 0.025057479739189148, -0.009696340188384056, -0.1347876638174057, 0.0464920848608017, 0.04559944197535515, 0.0563577301800251, -0.038471441715955734, -0.03012615628540516, -0.0618928000330925, -0.00941578671336174, 0.07046329230070114, -0.00017345465312246233, 0.08823569118976593, -0.09777089953422546, -0.06120302900671959, -0.05094496160745621, 0.01164529100060463, 0.005251099355518818, 0.02236638404428959, -0.03129110485315323, 0.17431385815143585, -0.06963765621185303, 0.04418325796723366, -0.1561167687177658, -0.08843870460987091, -0.03217383846640587, 0.14029526710510254, -0.0355282686650753, 0.07550738006830215, 0.08044395595788956, -0.020262816920876503, -0.005329220090061426, -0.033174145966768265, 0.1479015350341797, 0.020317893475294113, -0.07414156943559647, -0.06932459026575089, 0.07266376167535782, -0.07226230204105377, 0.016803232952952385, -0.10896718502044678, 0.01945333369076252, 0.02659565582871437, 0.09303140640258789, -0.00016517785843461752, 0.045174356549978256, -0.007993610575795174, -0.0005364095559343696, -0.08584406226873398, -0.0024411403574049473, 0.0898800939321518, 0.01782776229083538, -0.02303377166390419, 0.21274533867835999, -0.221113383769989, 0.3189590573310852, 0.22028665244579315, -0.22809377312660217, -0.021449416875839233, -0.001571561791934073, -0.009964164346456528, 0.027516474947333336, 0.03836769610643387, -0.03926849365234375, 0.013383988291025162, -0.04293639585375786, 0.1752830296754837, -0.0725037008523941, -0.03502476215362549, 0.027690570801496506, -0.071393683552742, -0.03720629960298538, 0.0750284269452095, -0.005148355849087238, -0.14133574068546295, 0.1831272393465042, 0.2651582956314087, -0.006225550547242165, 0.14583787322044373, 0.019112030044198036, -0.0012160773621872067, 0.047517526894807816, 0.0029698959551751614, -0.03099524974822998, -0.027998778969049454, -0.124703548848629, -0.03450258821249008, 0.07736601680517197, 0.04051028564572334, 0.06321930140256882, -0.13047964870929718, -0.04784056544303894, -0.003561796387657523, 0.0058982353657484055, -0.019535785540938377, 0.0989999771118164, 0.044595908373594284, 0.1549292951822281, -0.0012879733694717288, -0.018267689272761345, 0.07567612826824188, 0.019217412918806076, -0.08661379665136337, 0.19022220373153687, -0.13664892315864563, -0.33955636620521545, -0.12039680778980255, -0.09607398509979248, -0.035194434225559235, 0.05650783330202103, 0.11805190145969391, -0.10465238988399506, -0.040092624723911285, -0.05378153175115585, 0.009481039829552174, -0.06980668008327484, 0.036486852914094925, -0.050627727061510086, 0.026555396616458893, -0.013182356022298336, -0.09026297181844711, -0.05647016689181328, -0.01872650906443596, -0.06115765869617462, 0.14885146915912628, -0.04143592342734337, 0.0821903795003891, 0.13272637128829956, -0.011051010340452194, 0.03614376485347748, -0.03370495140552521, 0.17527291178703308, -0.06224476918578148, -0.0022441474720835686, 0.21341504156589508, -0.01925422064960003, 0.06824294477701187, 0.13207955658435822, -0.01627226732671261, -0.061905331909656525, 0.023971587419509888, -0.04485567659139633, -0.0792383924126625, -0.20529308915138245, -0.11275895684957504, -0.11191360652446747, 0.06622347235679626, 0.059716612100601196, 0.08160680532455444, 0.09301432222127914, 0.06334967911243439, -0.013369389809668064, -0.0028430260717868805, 0.010912016965448856, 0.08113021403551102, 0.2002578228712082, -0.03633371740579605, 0.15599370002746582, -0.06065542623400688, -0.10866721719503403, 0.096992626786232, 0.013921455480158329, 0.061436280608177185, 0.020080676302313805, -0.033775050193071365, 0.010738042183220387, 0.12769313156604767, 0.12489394843578339, 0.12555508315563202, 0.004437590017914772, -0.05128274857997894, -0.026195380836725235, -0.03518010303378105, -0.039598263800144196, 0.036949340254068375, -0.026042763143777847, -0.10881846398115158, -0.0636737123131752, -0.1090051531791687, 0.09620030224323273, 0.049771927297115326, 0.09598870575428009, -0.26389533281326294, -0.012410854920744896, 0.08130007982254028, 0.011636418290436268, -0.13151909410953522, 0.06777778267860413, 0.05656975135207176, -0.07030010223388672, 0.04776313155889511, -0.024513985961675644, 0.08951951563358307, 0.0027087379712611437, 0.07695455849170685, -0.07958956807851791, -0.06195036321878433, -0.001749398303218186, 0.10378383100032806, -0.2601681351661682, 0.2075168490409851, 0.0075415559113025665, -0.04002068564295769, -0.060520023107528687, -0.0004807706573046744, 0.021712610498070717, 0.13440454006195068, 0.11508291959762573, 0.014116177335381508, -0.11682026088237762, -0.09910030663013458, -0.025248141959309578, 0.028801418840885162, 0.09536267817020416, 0.010307996533811092, 0.014125524088740349, -0.06075628846883774, -0.0029505675192922354, 0.006913433782756329, 0.02126963995397091, -0.010411166585981846, -0.14683856070041656, 0.06714901328086853, 0.08376897126436234, 0.09119300544261932, -0.016670359298586845, -0.03797898069024086, -0.14191707968711853, 0.21665915846824646, -0.023754874244332314, -0.0660729631781578, -0.11296434700489044, -0.056438568979501724, 0.05497211962938309, -0.06178198754787445, 0.060390349477529526, -0.07962921261787415, 0.031219495460391045, -0.04581640288233757, -0.1675230860710144, 0.1382979452610016, -0.11311645805835724, -0.0663195550441742, -0.029740717262029648, 0.1457531452178955, -0.10953479260206223, -0.0041792928241193295, 0.02324017323553562, 0.07200465351343155, -0.14554645121097565, -0.10143676400184631, 0.045915909111499786, 0.0010226581944152713, 0.10593977570533752, -0.001774744363501668, -0.06763732433319092, -0.08883316814899445, 0.024533992633223534, -0.007090396247804165, 0.2774761915206909, 0.21603012084960938, -0.09324134886264801, 0.11305003613233566, 0.12331489473581314, -0.054116927087306976, -0.3545810580253601, -0.10730411857366562, -0.12435296922922134, -0.026519905775785446, -0.027655720710754395, -0.07871304452419281, 0.04755423590540886, 0.009265926666557789, -0.05689903721213341, 0.13114546239376068, -0.17453941702842712, -0.09620211273431778, 0.1458267718553543, -0.02315410040318966, 0.3802426755428314, -0.16632571816444397, -0.07343266159296036, -0.04156910255551338, -0.12482443451881409, 0.11956322938203812, -0.09196288138628006, 0.08315892517566681, -0.023584863170981407, 0.05131200700998306, 0.044525086879730225, -0.07305485755205154, 0.1134350523352623, -0.0803423672914505, 0.02766798995435238, -0.1402602195739746, -0.055465564131736755, 0.05487779527902603, -0.03880591690540314, 0.04861015826463699, -0.08230938762426376, 0.056549470871686935, -0.11316575109958649, -0.011694828048348427, -0.08349311351776123, 0.06865329295396805, 0.029811862856149673, -0.04228459298610687, -0.018696047365665436, -0.053892165422439575, -0.009343406185507774, -0.012522421777248383, 0.22893397510051727, -0.045575328171253204, 0.22460736334323883, 0.15177369117736816, 0.06380189210176468, -0.1459706723690033, 0.05892426148056984, 0.011084137484431267, -0.07955288887023926, 0.08939878642559052, -0.1515382081270218, 0.06934210658073425, 0.07868979126214981, -0.04028419405221939, 0.05253693833947182, 0.1008901298046112, 0.012134362012147903, -0.015067108906805515, 0.15927943587303162, -0.28202787041664124, 0.013711187057197094, -0.046405814588069916, 0.023860592395067215, 0.03918488696217537, 0.05026768520474434, 0.1643359363079071, -0.004652251489460468, -0.0396692231297493, -0.01144294161349535, 0.029002724215388298, -0.029431091621518135, 0.06691893190145493, 0.04067203029990196, 0.02810262329876423, -0.10554184764623642, 0.0492476262152195, 0.019335895776748657, -0.14394649863243103, 0.029862139374017715, 0.13644033670425415, -0.13035441935062408, -0.14332756400108337, -0.008263331837952137, 0.06859097629785538, -0.06368666142225266, -0.05249117687344551, -0.04710634425282478, -0.11543549597263336, 0.05610578879714012, 0.11333336681127548, 0.06275605410337448, 0.06296392530202866, 0.017826955765485764, -0.03965558111667633, -0.03444575518369675, 0.028936421498656273, -0.010483021847903728, 0.0354764461517334, -0.12437700480222702, 0.05102337524294853, -0.01793118193745613, 0.109330914914608, -0.09049570560455322, -0.010755442082881927, -0.1635490357875824, -0.013712945394217968, -0.07622452080249786, -0.029710203409194946, -0.06711527705192566, -0.04788898304104805, -0.013256050646305084, -0.048289407044649124, -0.062057655304670334, -0.03371996805071831, -0.09890695661306381, -0.00032644858583807945, -0.046691469848155975, 0.023391002789139748, -0.09057646989822388, -0.03483518213033676, 0.05602903664112091, -0.023399263620376587, 0.12100952863693237, 0.10663878172636032, -0.06193873658776283, 0.08923111110925674, -0.15051484107971191, -0.08921843767166138, 0.10782542079687119, -0.0015696206828579307, 0.020596330985426903, 0.019717629998922348, 0.020542874932289124, 0.08447253704071045, 0.010355393402278423, 0.04418609291315079, 0.04933822527527809, -0.1057540625333786, 0.04250701144337654, -0.028588488698005676, -0.1243152841925621, -0.0319935642182827, -0.05279753729701042, 0.05721374601125717, 0.0006168403197079897, 0.12614867091178894, -0.08113081753253937, 0.048413340002298355, -0.09594208747148514, 0.028721187263727188, -0.025186406448483467, -0.20105776190757751, -0.09817531704902649, -0.03996942564845085, 0.0476248674094677, -0.0048524802550673485, 0.21840223670005798, 0.0714682936668396, -0.04152313619852066, 0.04956197366118431, 0.07016158103942871, 0.028067583218216896, 0.004332631826400757, 0.1715146154165268, 0.05542774498462677, -0.06364519894123077, -0.1065061017870903, 0.06237667798995972, 0.03433637320995331, 0.0008815043838694692, 0.09694788604974747, 0.07258179038763046, 0.037050023674964905, 0.08380109071731567, -0.02255352772772312, -0.0312909297645092, -0.0952853411436081, -0.12037067115306854, -0.08247115463018417, 0.07010623812675476, -0.030797027051448822, 0.04433969408273697, 0.22019188106060028, 0.005570166278630495, 0.00038841174682602286, -0.09520840644836426, -0.024001939222216606, -0.16968688368797302, -0.10828272253274918, -0.10773581266403198, -0.13093514740467072, -0.017473910003900528, -0.08950372785329819, 0.05410432070493698, 0.08403827995061874, 0.0380261205136776, -0.02991773560643196, 0.09629110246896744, 0.07941306382417679, -0.08711762726306915, 0.04098353162407875, -0.019167887046933174, 0.06008727476000786, 0.011955329217016697, -0.02284601330757141, -0.06559254974126816, -0.02752791903913021, -0.0031378003768622875, 0.05652825906872749, -0.026271604001522064, 0.037820398807525635, -0.1350633054971695, -0.09986560046672821, -0.05513208732008934, 0.0916164442896843, -0.018270617350935936, 0.12338721007108688, 0.005500445608049631, -0.011434829793870449, 0.04497203975915909, 0.26816052198410034, -0.07198305428028107, -0.06916389614343643, -0.029849249869585037, 0.20105618238449097, 0.02797272428870201, 0.0949043557047844, -0.04967483505606651, -0.015402957797050476, -0.04991770535707474, 0.3097728192806244, 0.3226933479309082, -0.05617234483361244, 0.04989229515194893, -0.010619744658470154, 0.02850763127207756, 0.08470757305622101, 0.1055416464805603, 0.12240220606327057, 0.25460103154182434, -0.07039934396743774, -0.009213961660861969, -0.05044475197792053, 0.03354063630104065, -0.10088440775871277, 0.09038342535495758, 0.005969023797661066, -0.05558912083506584, -0.03702416270971298, 0.05318690463900566, -0.11204779148101807, 0.0865594893693924, -0.0694984495639801, -0.1970769166946411, -0.06012776121497154, 0.03731750324368477, 0.17018936574459076, -0.010456228628754616, 0.08202148973941803, -0.02674945257604122, -0.06371447443962097, 0.010900590568780899, -0.009525838308036327, -0.14612963795661926, -0.013432723470032215, 0.03683580458164215, -0.044378723949193954, 0.07472744584083557, -0.013663135468959808, 0.035497184842824936, 0.09358851611614227, 0.014528184197843075, -0.09082932025194168, 0.08601544052362442, -0.0012868723133578897, -0.05700884014368057, 0.03582353517413139, 0.00119584274943918, 0.007258714642375708, -0.09002891927957535, 0.07672534137964249, -0.11525115370750427, 0.03853732347488403, -0.05895945802330971, -0.055881816893815994, -0.008754393085837364, 0.010615759529173374, -0.038049329072237015, 0.09110692888498306, 0.06149926036596298, -0.021084042266011238, -0.014041256159543991, -0.054623737931251526, -0.019359203055500984, -0.012068900279700756, -0.058723147958517075, -0.06663157790899277, -0.13637250661849976, -0.05743256211280823, 0.12683475017547607, 0.007101068738847971, -0.2310725748538971, 0.008084866218268871, -0.09736340492963791, 0.04639442637562752, -0.15611132979393005, 0.07361757010221481, 0.09846299141645432, -0.003449995769187808, -0.015442050993442535, -0.029506100341677666, 0.04779239371418953, 0.1036391481757164, -0.07953158020973206, -0.09835366904735565 ]
null
null
transformers
# lawn-weeds Autogenerated by HuggingPics🤗🖼️ Create your own image classifier for **anything** by running [the demo on Google Colab](https://colab.research.google.com/github/nateraw/huggingpics/blob/main/HuggingPics.ipynb). Report any issues with the demo at the [github repo](https://github.com/nateraw/huggingpics). ## Example Images #### clover ![clover](images/clover.jpg) #### dichondra ![dichondra](images/dichondra.jpg) #### grass ![grass](images/grass.jpg)
{"tags": ["image-classification", "pytorch", "huggingpics"], "metrics": ["accuracy"]}
image-classification
LorenzoDeMattei/lawn-weeds
[ "transformers", "pytorch", "tensorboard", "vit", "image-classification", "huggingpics", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #vit #image-classification #huggingpics #model-index #autotrain_compatible #endpoints_compatible #region-us
# lawn-weeds Autogenerated by HuggingPics️ Create your own image classifier for anything by running the demo on Google Colab. Report any issues with the demo at the github repo. ## Example Images #### clover !clover #### dichondra !dichondra #### grass !grass
[ "# lawn-weeds\n\n\nAutogenerated by HuggingPics️\n\nCreate your own image classifier for anything by running the demo on Google Colab.\n\nReport any issues with the demo at the github repo.", "## Example Images", "#### clover\n\n!clover", "#### dichondra\n\n!dichondra", "#### grass\n\n!grass" ]
[ "TAGS\n#transformers #pytorch #tensorboard #vit #image-classification #huggingpics #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "# lawn-weeds\n\n\nAutogenerated by HuggingPics️\n\nCreate your own image classifier for anything by running the demo on Google Colab.\n\nReport any issues with the demo at the github repo.", "## Example Images", "#### clover\n\n!clover", "#### dichondra\n\n!dichondra", "#### grass\n\n!grass" ]
[ 49, 45, 4, 7, 8, 8 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #vit #image-classification #huggingpics #model-index #autotrain_compatible #endpoints_compatible #region-us \n# lawn-weeds\n\n\nAutogenerated by HuggingPics️\n\nCreate your own image classifier for anything by running the demo on Google Colab.\n\nReport any issues with the demo at the github repo.## Example Images#### clover\n\n!clover#### dichondra\n\n!dichondra#### grass\n\n!grass" ]
[ -0.14052000641822815, 0.16794700920581818, -0.00448737433180213, 0.13108950853347778, 0.15323913097381592, -0.03495447337627411, 0.08115596324205399, 0.11194588243961334, 0.13379020988941193, 0.039029598236083984, 0.20180495083332062, 0.31657397747039795, -0.018666287884116173, 0.10364878177642822, -0.01723417453467846, -0.25373417139053345, -0.02500777691602707, 0.054969340562820435, -0.016453739255666733, 0.06010046228766441, 0.09156382828950882, -0.12201227992773056, 0.15623100101947784, 0.026381902396678925, -0.3437352776527405, -0.04894627630710602, 0.006723584141582251, -0.045860230922698975, 0.14268475770950317, 0.04416961222887039, 0.003370897611603141, 0.036257367581129074, 0.011942383833229542, 0.013857872225344181, 0.05960371345281601, 0.008634182624518871, -0.02454369328916073, 0.12234535068273544, 0.1172892302274704, 0.012451141141355038, 0.07275869697332382, 0.09476470202207565, -0.04128779470920563, 0.029032591730356216, -0.10589932650327682, -0.07464826107025146, -0.0806189775466919, -0.009528678841888905, 0.11941325664520264, 0.01220554206520319, 0.02979261986911297, 0.10973182320594788, -0.031891271471977234, 0.1008683517575264, 0.20529799163341522, -0.05406905338168144, -0.10624787211418152, 0.10587487369775772, 0.06993203610181808, -0.042466722428798676, -0.13414683938026428, 0.06471041589975357, 0.05852822586894035, -0.010103931650519371, 0.038407109677791595, -0.06458453834056854, -0.05950095131993294, -0.02683618664741516, -0.10176549106836319, 0.0022810872178524733, 0.07291557639837265, 0.051481276750564575, 0.021342046558856964, -0.05074551701545715, -0.06676740199327469, 0.11326969414949417, -0.05622910335659981, 0.010299620218575, 0.030886031687259674, 0.0012919030850753188, -0.053828850388526917, -0.0981966108083725, -0.11255203187465668, -0.02295485883951187, -0.04554519057273865, 0.07032808661460876, 0.05515354126691818, 0.04918833449482918, -0.09022838622331619, 0.04005530849099159, 0.07146313041448593, -0.10325808823108673, 0.005372987128794193, -0.06875638663768768, 0.03817732259631157, -0.0541452094912529, 0.008315207436680794, -0.018795005977153778, 0.15017803013324738, 0.12349918484687805, 0.07336723059415817, 0.038763850927352905, 0.019645510241389275, 0.07425592839717865, 0.08658229559659958, 0.10940787941217422, -0.06914346665143967, 0.005595739930868149, 0.11055995523929596, 0.021204384043812752, 0.012610860168933868, -0.009314228780567646, -0.1075260192155838, 0.029685258865356445, 0.02526707947254181, -0.01519039086997509, 0.09093368798494339, 0.033532220870256424, -0.07134701311588287, -0.0536356084048748, 0.2077210396528244, 0.00955386832356453, -0.0025720056146383286, -0.05775843933224678, -0.006635729223489761, 0.07328658550977707, 0.058071237057447433, -0.0010646526934579015, 0.023020528256893158, -0.044698990881443024, -0.09789969772100449, 0.034379251301288605, -0.01083334069699049, 0.05675370246171951, 0.00910917203873396, -0.16465573012828827, 0.018141280859708786, -0.1624637246131897, 0.0064217522740364075, -0.008815277367830276, 0.08708889037370682, -0.022784508764743805, -0.12358254939317703, 0.004370855167508125, 0.015384717844426632, -0.07574190199375153, 0.061156827956438065, -0.057514291256666183, 0.018128078430891037, 0.05400867387652397, -0.03529990464448929, 0.14807704091072083, -0.09550978988409042, 0.03751959279179573, -0.09556478261947632, 0.008828306570649147, -0.2237117737531662, 0.1038236916065216, -0.08389600366353989, 0.21267622709274292, -0.10621879249811172, 0.015345736406743526, 0.07317208498716354, -0.005111328791826963, -0.005599400959908962, 0.12444986402988434, -0.11539444327354431, -0.07949736714363098, 0.0419004000723362, -0.06042950227856636, -0.12508857250213623, 0.1268099546432495, -0.019430015236139297, 0.04995516315102577, 0.08828316628932953, 0.19356802105903625, 0.08607993274927139, -0.07613005489110947, 0.07627956569194794, 0.0206022709608078, -0.1501951366662979, 0.00799970980733633, -0.06053465977311134, 0.03132893517613411, -0.1313665807247162, 0.05287867411971092, -0.07504364848136902, 0.10088380426168442, -0.06545419245958328, -0.05049280822277069, -0.06513587385416031, -0.10515229403972626, 0.06769578903913498, 0.11548595875501633, 0.0446818582713604, 0.008555342443287373, 0.03702732175588608, -0.1224469542503357, 0.04023086652159691, -0.00890986155718565, -0.019137313589453697, -0.03626052290201187, 0.1388777792453766, 0.00021281506633386016, 0.009579097852110863, -0.12201080471277237, -0.04502825811505318, 0.05252351984381676, 0.015829764306545258, 0.06405734270811081, 0.00701881991699338, 0.011768835596740246, 0.005525809712707996, 0.0374094620347023, 0.03671080246567726, 0.07966866344213486, -0.04931975528597832, -0.06347694247961044, -0.14381366968154907, 0.05601196736097336, -0.04914376884698868, 0.02939411625266075, -0.18838995695114136, -0.01687713898718357, 0.04928101226687431, 0.0722590759396553, 0.030736960470676422, -0.06101303547620773, 0.025960393249988556, -0.08756759017705917, -0.09583595395088196, -0.051614925265312195, 0.10546460747718811, -0.002604192588478327, 0.0335804745554924, 0.08744969964027405, 0.09237463772296906, 0.002594541758298874, 0.13820403814315796, -0.22366242110729218, -0.08686754107475281, -0.05355590209364891, -0.0907537192106247, 0.02857780270278454, -0.03546994924545288, 0.011142882518470287, 0.013216699473559856, -0.012305556796491146, 0.1330840289592743, -0.031430792063474655, -0.02274712547659874, 0.059276193380355835, -0.05410434305667877, -0.047837790101766586, 0.06591466814279556, 0.16839651763439178, -0.056786127388477325, 0.06931642442941666, 0.13406310975551605, 0.009370442479848862, 0.0275272186845541, 0.02183305285871029, 0.04572271555662155, -0.006337321829050779, 0.009073290042579174, 0.026449110358953476, 0.10865753144025803, -0.17059658467769623, -0.062402594834566116, 0.03356493264436722, -0.13252796232700348, 0.01913408935070038, -0.13314929604530334, -0.007607026491314173, -0.028734169900417328, 0.019765736535191536, 0.2005276381969452, 0.06249043345451355, -0.050991419702768326, 0.07023017108440399, -0.040811631828546524, -0.07668948918581009, 0.02866564877331257, 0.05493443086743355, -0.0195014551281929, 0.16726920008659363, -0.03723307326436043, -0.2849067449569702, -0.03845621272921562, -0.1129416823387146, -0.04478146880865097, 0.09051549434661865, 0.04839988425374031, -0.10158798098564148, -0.03996100649237633, 0.014423820190131664, 0.04462973400950432, 0.07751487195491791, 0.020547421649098396, -0.06250113993883133, 0.014873649924993515, -0.018662720918655396, -0.08501822501420975, -0.016384169459342957, -0.004759805276989937, -0.021428542211651802, 0.1546722799539566, -0.030943673104047775, 0.08162828534841537, 0.08457033336162567, 0.0019631520844995975, 0.006796322297304869, 0.006481457501649857, 0.22300803661346436, -0.13597655296325684, 0.1669248342514038, 0.17863845825195312, -0.017520492896437645, 0.08709637820720673, 0.07003403455018997, 0.021594146266579628, -0.12445858865976334, 0.007818451151251793, -0.006918085739016533, -0.12594139575958252, -0.12978647649288177, -0.051824845373630524, -0.05104300379753113, 0.09712529927492142, 0.17836613953113556, 0.058899905532598495, 0.11183548718690872, 0.20936626195907593, -0.008070440962910652, 0.08771690726280212, -0.05637701600790024, 0.03562295064330101, 0.036801621317863464, -0.0484972782433033, 0.06544768810272217, 0.00016397805302403867, -0.06584004312753677, 0.09134433418512344, 0.04344683513045311, 0.24330149590969086, 0.07130175083875656, 0.05067785456776619, 0.07021637260913849, 0.11859875172376633, 0.012596838176250458, -0.06174325570464134, -0.022116882726550102, -0.03934768959879875, -0.02655727230012417, -0.050595905631780624, 0.011533406563103199, 0.005836984608322382, 0.05556235834956169, -0.12743861973285675, 0.017327161505818367, -0.03049146942794323, 0.023098696023225784, 0.1321997195482254, 0.03724409267306328, -0.25379475951194763, 0.010560344904661179, -0.0435088649392128, 0.00004602779517881572, -0.044755011796951294, 0.04350884631276131, -0.000580271182116121, -0.10015756636857986, 0.028231313452124596, -0.0790099948644638, 0.08226688951253891, -0.1155073419213295, -0.010206589475274086, -0.007076552137732506, 0.08201545476913452, 0.03150178864598274, 0.015544161200523376, -0.12174098938703537, 0.10458387434482574, -0.038977112621068954, -0.054894667118787766, -0.09085434675216675, 0.02375689335167408, 0.10840017348527908, 0.11647441983222961, 0.09960351884365082, 0.01500657293945551, 0.057185254991054535, -0.06600181758403778, -0.06662711501121521, -0.033177170902490616, -0.015210147947072983, -0.0874330922961235, -0.05889294296503067, 0.004641045816242695, -0.0574059933423996, -0.03549987077713013, -0.02634977549314499, -0.0988617092370987, -0.10576745122671127, 0.04306831210851669, 0.012291546911001205, 0.024304097518324852, 0.005577969364821911, -0.025629138574004173, -0.18205875158309937, 0.11215794086456299, 0.12624533474445343, -0.058045804500579834, -0.09124755859375, 0.05738794431090355, -0.023541541770100594, -0.05719653144478798, 0.11466477066278458, -0.12432996183633804, 0.13261452317237854, -0.04992622509598732, -0.12715357542037964, 0.09762061387300491, -0.09344086050987244, -0.08906439691781998, -0.06595999747514725, 0.12145662307739258, 0.055071450769901276, -0.06121419370174408, 0.09993666410446167, 0.04521515220403671, -0.11592757701873779, -0.08884505182504654, 0.09716073423624039, -0.012217101640999317, -0.05059355869889259, -0.01396668516099453, 0.01635727472603321, -0.07680129259824753, -0.060458727180957794, -0.03037814050912857, 0.1734222024679184, 0.11078853905200958, -0.09164083003997803, 0.09221884608268738, 0.008850977756083012, -0.04058462753891945, -0.33195242285728455, 0.02846548706293106, 0.08415725827217102, -0.0838715136051178, 0.051034413278102875, -0.18380345404148102, 0.23352497816085815, 0.12495415657758713, -0.029216093942523003, 0.22391454875469208, -0.1383408159017563, -0.07353588193655014, 0.10498632490634918, 0.1204504445195198, 0.1281185746192932, -0.18206775188446045, -0.05966325104236603, -0.022170022130012512, 0.02888789214193821, 0.19795764982700348, 0.032075658440589905, 0.03501193970441818, -0.04750252515077591, 0.045962490141391754, 0.028507506474852562, -0.00007638548413524404, 0.13358639180660248, 0.06410570442676544, 0.02918069064617157, -0.09546761959791183, -0.17364108562469482, 0.03725237399339676, -0.008773847483098507, 0.02798002026975155, 0.00477998424321413, 0.09425429254770279, -0.05828077346086502, 0.026782670989632607, -0.13488565385341644, 0.11267316341400146, -0.012653730809688568, -0.0005567234475165606, -0.1272626370191574, 0.010713959112763405, -0.07544882595539093, 0.09079694002866745, 0.21287395060062408, 0.013635016977787018, 0.0013835093704983592, 0.1032748743891716, -0.0025793190579861403, -0.09544456005096436, -0.10260245949029922, -0.10340050607919693, -0.05355803295969963, 0.07091812789440155, -0.24642454087734222, 0.033505361527204514, 0.04503418132662773, 0.048103492707014084, -0.003996124491095543, 0.015007427893579006, 0.008863521739840508, 0.04234215244650841, 0.09978289902210236, -0.09557807445526123, -0.11177513748407364, -0.058261118829250336, 0.042741693556308746, 0.030841544270515442, 0.07827642560005188, 0.09974496811628342, 0.0048766606487333775, -0.03732943907380104, 0.023269549012184143, -0.014605047181248665, 0.0494823083281517, 0.05574873834848404, 0.15567637979984283, -0.016614723950624466, -0.11827188730239868, 0.015023820102214813, 0.05203297361731529, -0.06849251687526703, -0.09009231626987457, 0.07204027473926544, -0.07131718844175339, -0.12269434332847595, -0.031203443184494972, 0.02661893516778946, -0.09419169276952744, 0.08119098097085953, 0.01471887156367302, -0.05030588433146477, 0.018354211002588272, -0.021559802815318108, 0.09550567716360092, 0.014027652330696583, 0.039368994534015656, -0.011483874171972275, -0.10954101383686066, 0.03743719682097435, -0.016028577461838722, 0.1459948718547821, -0.16308122873306274, -0.034415777772665024, -0.02711649239063263, 0.15166598558425903, -0.0842469185590744, -0.07105305790901184, -0.1083112359046936, -0.06695448607206345, -0.01782389171421528, 0.0867047980427742, -0.11901707202196121, -0.0010769779328256845, -0.00700096320360899, -0.03463837504386902, 0.04175740107893944, -0.005633298773318529, -0.1064123660326004, -0.04473336040973663, 0.0296816173940897, 0.06981570273637772, -0.036077965050935745, -0.06200345233082771, 0.0922001376748085, -0.06351345777511597, 0.16099226474761963, -0.013638238422572613, -0.029404638335108757, -0.05609705299139023, -0.1632830649614334, -0.07598859071731567, 0.11994334310293198, -0.007083658128976822, 0.029360784217715263, 0.024226291105151176, 0.02622486650943756, -0.03719967231154442, 0.03601175546646118, -0.031842779368162155, 0.13796848058700562, -0.15334105491638184, 0.039825987070798874, -0.02598837949335575, -0.0959128886461258, -0.014991805888712406, 0.028677789494395256, 0.01710023730993271, -0.037448279559612274, 0.11425348371267319, -0.04115230217576027, 0.07705219835042953, -0.15901122987270355, 0.02843235433101654, -0.04966636374592781, -0.15038064122200012, -0.060179565101861954, -0.0486459955573082, 0.01424715667963028, -0.01348516158759594, 0.05471844598650932, 0.08499079197645187, -0.022100547328591347, -0.010998190380632877, 0.17712120711803436, 0.01858082413673401, 0.017872538417577744, 0.06213949993252754, -0.00006618812039960176, 0.04023776575922966, -0.06057725474238396, 0.0752141922712326, 0.10184992849826813, -0.10358913242816925, -0.03694882616400719, 0.016660181805491447, -0.14102430641651154, 0.013207899406552315, 0.06736281514167786, 0.05202439799904823, -0.09780324995517731, 0.11083221435546875, -0.04890104755759239, 0.11301031708717346, -0.014250492677092552, -0.020047275349497795, 0.10830125957727432, -0.032671064138412476, 0.021904081106185913, 0.04566790536046028, -0.04509234055876732, 0.0088103748857975, -0.12470937520265579, -0.08403509855270386, -0.1546013355255127, 0.05489244684576988, -0.020215367898344994, -0.037041157484054565, -0.0317985825240612, -0.018954889848828316, -0.11014709621667862, 0.11821899563074112, 0.07839688658714294, -0.07475021481513977, 0.13495706021785736, -0.009252910502254963, -0.12270217388868332, 0.010449695400893688, -0.062531016767025, -0.07434067875146866, 0.10060417652130127, -0.03435515612363815, 0.007657273206859827, 0.014407343231141567, 0.03708721697330475, -0.08405345678329468, -0.10000959783792496, -0.0053454251028597355, -0.01970727927982807, -0.035851724445819855, -0.09427706152200699, -0.03069695644080639, 0.011492161080241203, 0.006012714933604002, 0.1161302700638771, 0.0196127537637949, 0.11223402619361877, -0.05304451286792755, 0.057669516652822495, -0.0767597034573555, 0.013792607933282852, -0.0646568238735199, -0.025307880714535713, -0.00887989066541195, 0.2655878961086273, 0.14373831450939178, -0.05671711266040802, -0.000972764624748379, -0.03754650801420212, -0.0163529422134161, 0.03172633424401283, 0.15199406445026398, 0.008750686421990395, 0.08475430309772491, -0.04947717860341072, -0.10549821704626083, -0.031254325062036514, -0.009091459214687347, -0.1731034815311432, -0.03478315845131874, 0.08331809192895889, -0.021364746615290642, -0.0720137506723404, 0.08642236143350601, -0.061849117279052734, 0.0026842309162020683, 0.09104421734809875, -0.10632892698049545, -0.1189945787191391, -0.01928063854575157, 0.013986502774059772, 0.005283793900161982, 0.0746842697262764, -0.014065396972000599, 0.04130114987492561, 0.108893483877182, -0.04534950107336044, -0.18353010714054108, 0.024443024769425392, 0.03168535977602005, -0.17018701136112213, 0.16087746620178223, -0.07127115875482559, -0.011008660309016705, 0.04844912514090538, 0.03664843738079071, -0.1499272733926773, -0.06655052304267883, -0.034368712455034256, -0.07129482179880142, 0.07531993091106415, 0.0333959236741066, 0.03313358128070831, -0.08795963227748871, 0.060429975390434265, 0.0300412829965353, -0.029425213113427162, 0.036440737545490265, 0.014416283927857876, -0.05599036067724228, 0.143646702170372, -0.10536632686853409, 0.07154795527458191, 0.001747761620208621, -0.04124254360795021, -0.06075869873166084, -0.04663780704140663, 0.0030770807061344385, 0.06643771380186081, -0.08881174772977829, -0.14011536538600922, -0.0943685993552208, -0.03925710543990135, -0.06733676791191101, -0.0513787642121315, -0.01701338216662407, -0.03842906653881073, -0.12211062759160995, -0.007480837870389223, -0.022853275761008263, 0.08756247162818909, 0.09553303569555283, -0.007335181813687086, 0.043767329305410385, 0.0680316761136055, -0.02759731002151966, 0.06383410841226578, -0.04764363169670105, -0.07707114517688751 ]
null
null
transformers
## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85 #### To load the model: ``` from transformers import BertTokenizerFast from transformers import BertForQuestionAnswering tokenizer = BertTokenizerFast.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad") model = BertForQuestionAnswering.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad") ```
{}
question-answering
LoudlySoft/scibert_scivocab_uncased_squad
[ "transformers", "pytorch", "jax", "safetensors", "bert", "question-answering", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #jax #safetensors #bert #question-answering #endpoints_compatible #region-us
## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85 #### To load the model:
[ "## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85", "#### To load the model:" ]
[ "TAGS\n#transformers #pytorch #jax #safetensors #bert #question-answering #endpoints_compatible #region-us \n", "## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85", "#### To load the model:" ]
[ 37, 39, 7 ]
[ "passage: TAGS\n#transformers #pytorch #jax #safetensors #bert #question-answering #endpoints_compatible #region-us \n## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85#### To load the model:" ]
[ -0.166941836476326, 0.0700400322675705, -0.003278194461017847, 0.0956137627363205, 0.12288352102041245, 0.02971789799630642, 0.0978107899427414, 0.0625438243150711, 0.19410111010074615, 0.041680268943309784, 0.1511717438697815, 0.2093450129032135, 0.03237861767411232, 0.15529818832874298, -0.128779798746109, -0.13214337825775146, 0.08647213131189346, -0.006767778657376766, 0.006446124520152807, 0.104340560734272, 0.061270423233509064, -0.0902184247970581, 0.08394607156515121, -0.007468954659998417, -0.08667508512735367, -0.0197924692183733, 0.0960603803396225, -0.034035906195640564, 0.09583689272403717, 0.03857383504509926, 0.11513489484786987, 0.08602279424667358, 0.08638513833284378, -0.15404674410820007, 0.02774037793278694, -0.020724963396787643, 0.022806677967309952, 0.07458388805389404, 0.058001305907964706, 0.0862739309668541, -0.02184334211051464, 0.0898822546005249, -0.004474060609936714, 0.025870107114315033, -0.08872304856777191, -0.08471926301717758, -0.107850082218647, 0.031716179102659225, 0.11881640553474426, 0.07848449796438217, 0.014600640162825584, 0.22476248443126678, -0.05543213337659836, 0.06638161092996597, 0.16136586666107178, -0.34976500272750854, -0.034517012536525726, 0.015099218115210533, -0.03623417019844055, 0.012464229017496109, -0.0341021753847599, 0.05693761631846428, 0.04047130048274994, -0.03631777688860893, 0.015696294605731964, -0.06955607980489731, -0.2304028868675232, 0.02977713756263256, -0.11448555439710617, -0.04968535155057907, 0.1415126472711563, 0.03361278772354126, -0.06767253577709198, -0.014811916276812553, -0.10757213830947876, -0.010271990671753883, -0.010761827230453491, -0.14565595984458923, -0.016266556456685066, -0.0029921422246843576, 0.11679684370756149, -0.061546746641397476, -0.13214167952537537, -0.14125415682792664, -0.1157168373465538, 0.2639486789703369, 0.03579825535416603, 0.12908339500427246, -0.14316818118095398, 0.08757752180099487, -0.03795822337269783, -0.12717485427856445, -0.02988424338400364, -0.09355610609054565, -0.05317725986242294, 0.02198600023984909, -0.007474867161363363, 0.06263118237257004, 0.04591648653149605, 0.17237289249897003, 0.010250188410282135, -0.003787403227761388, 0.11471955478191376, 0.02886148914694786, 0.005600078497081995, 0.1142963394522667, -0.05972245708107948, -0.0016516479663550854, 0.06256002932786942, 0.03478463366627693, 0.004477904178202152, -0.0760975331068039, -0.052383676171302795, -0.03598636016249657, 0.0583290234208107, 0.055892933160066605, 0.030091464519500732, -0.008467328734695911, -0.06307481229305267, -0.04839951917529106, 0.006392260547727346, -0.07285865396261215, -0.018542412668466568, -0.007626199629157782, -0.005278068594634533, 0.10317791253328323, 0.0027969381771981716, 0.008794286288321018, 0.0013896888121962547, 0.041492071002721786, -0.08644793927669525, -0.015241453424096107, -0.03436848893761635, -0.06674038618803024, -0.008622302673757076, -0.10727296769618988, 0.0324239656329155, -0.13413530588150024, -0.1408626139163971, -0.02823377214372158, 0.0009225853718817234, 0.007420019246637821, -0.012136680074036121, 0.013295324519276619, -0.0015448379563167691, 0.0411243662238121, -0.05473507568240166, -0.051785584539175034, -0.030407121405005455, 0.042908113449811935, 0.10558011382818222, 0.04575026035308838, -0.05444534868001938, 0.0010020057670772076, -0.15344205498695374, -0.004268679302185774, -0.021671149879693985, -0.013611240312457085, -0.07407010346651077, 0.03619162738323212, -0.03650343045592308, -0.0026545145083218813, -0.0246855691075325, 0.029263228178024292, 0.042457215487957, 0.2668038606643677, -0.12214432656764984, -0.010195235721766949, 0.15678411722183228, -0.1508825272321701, -0.19452382624149323, 0.12481705844402313, 0.017028717324137688, -0.032017145305871964, 0.05279925838112831, 0.10917718708515167, 0.004420113284140825, -0.14168061316013336, -0.025360746309161186, 0.09818083792924881, -0.037969090044498444, -0.01809094473719597, 0.12157054245471954, 0.04165489971637726, -0.1412474513053894, 0.06225151941180229, -0.20957891643047333, 0.015677185729146004, -0.07508081197738647, -0.0643906518816948, -0.0737658217549324, -0.058549925684928894, 0.02389460802078247, 0.05454106256365776, 0.04568714275956154, -0.023961253464221954, -0.03767712786793709, -0.11139064282178879, 0.10094618797302246, -0.0018066979246214032, -0.03418201208114624, -0.138976588845253, 0.1691339612007141, -0.10712753981351852, 0.0041518802754580975, -0.12233150750398636, -0.17585806548595428, -0.006409691646695137, 0.031032787635922432, -0.016919109970331192, 0.12026479095220566, 0.06244553625583649, 0.03508292883634567, 0.027963556349277496, -0.045251987874507904, 0.013330395333468914, 0.0068249935284256935, -0.09224384278059006, -0.099398173391819, -0.06765405833721161, -0.0682208314538002, 0.11192630976438522, -0.12340246140956879, -0.0010064292000606656, -0.019626066088676453, 0.06325821578502655, 0.03590317443013191, 0.011064008809626102, -0.008481464348733425, -0.017679160460829735, -0.07512933760881424, -0.025199826806783676, 0.041009705513715744, -0.009003793820738792, -0.04389483854174614, 0.041135381907224655, -0.10328339785337448, 0.3019547164440155, 0.13674423098564148, -0.06833065301179886, 0.02035120129585266, -0.00366464932449162, -0.0018044514581561089, 0.030904553830623627, -0.05239248275756836, 0.07235539704561234, 0.06377243995666504, 0.010067475028336048, 0.10077200084924698, -0.03247932344675064, 0.02407843992114067, 0.03048495016992092, -0.05603703856468201, -0.013274957425892353, 0.05329682305455208, 0.11783251166343689, -0.23825185000896454, 0.10461632907390594, 0.1971951574087143, -0.026804063469171524, 0.04713308811187744, 0.010979107581079006, -0.10851315408945084, -0.027609452605247498, 0.016653316095471382, 0.002121635712683201, 0.11939535290002823, -0.06794726848602295, -0.029788268730044365, 0.06492286175489426, -0.03536906838417053, -0.004573365207761526, -0.1197490468621254, -0.04376857727766037, 0.05626687407493591, -0.02481846697628498, -0.06078595295548439, 0.06915230304002762, -0.02286835014820099, 0.08313221484422684, -0.07177312672138214, -0.08303851634263992, 0.014380556531250477, 0.009136857464909554, -0.08370157331228256, 0.17760543525218964, 0.017534708604216576, -0.1159651055932045, -0.092774897813797, 0.03838289901614189, -0.038977786898612976, 0.03105466440320015, 0.03292626515030861, -0.019346576184034348, -0.03542241454124451, -0.027720993384718895, -0.052961260080337524, 0.008531570434570312, 0.054004110395908356, -0.021831979975104332, -0.055446866899728775, -0.01109326258301735, -0.043692201375961304, -0.048521704971790314, -0.05849447101354599, -0.08796203881502151, 0.05734517052769661, 0.0011398936621844769, 0.15683020651340485, 0.0885951891541481, -0.03174147009849548, 0.0547439306974411, 0.03830189257860184, 0.21250571310520172, -0.027074463665485382, -0.0432569719851017, 0.23428544402122498, -0.032601118087768555, 0.03651193901896477, 0.11086749285459518, 0.0032842145301401615, -0.0686209425330162, -0.02158994786441326, -0.03646567091345787, -0.05977944657206535, -0.23467637598514557, -0.01793735660612583, -0.05870521441102028, 0.032261963933706284, 0.013930201530456543, 0.014615638181567192, -0.01986502856016159, 0.1884840428829193, -0.034599777311086655, -0.07176961749792099, -0.08832010626792908, 0.04264352470636368, 0.07153425365686417, 0.028660792857408524, 0.138660728931427, -0.02156471088528633, -0.054909635335206985, 0.10678160935640335, 0.016579627990722656, 0.07828624546527863, 0.025529151782393456, 0.05419535934925079, -0.01826709508895874, 0.25129571557044983, 0.07480713725090027, 0.1381622552871704, 0.037265464663505554, -0.06881026923656464, -0.015012845396995544, -0.011012187227606773, -0.1394134908914566, 0.0599328987300396, 0.01054749172180891, -0.009479973465204239, -0.09879489243030548, 0.1290368288755417, 0.028198551386594772, 0.11488272994756699, 0.11309081315994263, -0.282103031873703, -0.07616108655929565, 0.055845633149147034, 0.011090782471001148, -0.08659088611602783, 0.040484070777893066, 0.10352928191423416, -0.09092467278242111, -0.011073274537920952, -0.05307230353355408, 0.09667319059371948, -0.03247854486107826, 0.043432679027318954, -0.0044568912126123905, -0.049501124769449234, 0.03344419226050377, 0.10486988723278046, -0.14362084865570068, 0.2139337956905365, 0.022969061508774757, 0.019958846271038055, -0.03203050419688225, 0.004265859257429838, 0.06976497918367386, 0.09226208925247192, 0.22043566405773163, -0.023928984999656677, -0.13025912642478943, -0.19347524642944336, -0.11132679879665375, 0.05311933159828186, 0.04556481912732124, -0.08692089468240738, 0.08896630257368088, -0.07664427906274796, 0.021452948451042175, -0.044420670717954636, 0.08811184763908386, -0.07587400078773499, -0.10159587115049362, 0.05458957701921463, 0.06687089055776596, -0.04332151636481285, -0.029564891010522842, -0.07802265137434006, -0.032913584262132645, 0.13051681220531464, -0.10778383165597916, -0.03608537092804909, -0.1503506749868393, 0.02460671029984951, 0.05873837321996689, -0.11515391618013382, -0.011384979821741581, -0.033719778060913086, 0.06798870116472244, 0.0018241936340928078, -0.10818704962730408, 0.10175390541553497, -0.15592381358146667, -0.06360343098640442, -0.067174032330513, 0.07921020686626434, -0.05231036990880966, -0.004171372856944799, 0.059500858187675476, 0.02421276830136776, -0.03493291139602661, -0.12295281141996384, 0.031876735389232635, 0.005752972327172756, -0.008668413385748863, 0.026363763958215714, -0.02061009779572487, -0.01990637183189392, -0.05759645253419876, 0.03823168948292732, 0.12574325501918793, 0.23109711706638336, -0.1119379922747612, -0.013151668943464756, 0.16695620119571686, -0.027898039668798447, -0.25997623801231384, -0.08683110028505325, -0.05384799838066101, 0.03728354349732399, 0.11880548298358917, -0.058232054114341736, 0.1479746550321579, 0.060446858406066895, -0.08072292059659958, 0.08595399558544159, -0.1309569925069809, -0.06049884483218193, 0.19324758648872375, 0.08732295781373978, 0.39692074060440063, -0.14724920690059662, -0.06632569432258606, 0.010579097084701061, -0.22411370277404785, 0.0756874829530716, -0.10313569754362106, 0.04184311255812645, -0.05942029878497124, 0.03357970342040062, 0.051017217338085175, -0.05058923736214638, 0.15852458775043488, -0.029349151998758316, 0.0764819011092186, -0.045141078531742096, -0.09518612176179886, 0.029368773102760315, -0.03490441292524338, 0.11673563718795776, -0.014629238285124302, 0.12073328346014023, -0.12898679077625275, -0.06062612682580948, -0.028846245259046555, 0.0716077983379364, -0.0034715686924755573, -0.04485189542174339, 0.029597222805023193, -0.04011237621307373, -0.019679876044392586, 0.001878551673144102, 0.11859894543886185, -0.0066606164909899235, 0.07519587129354477, 0.12312279641628265, 0.06864391267299652, -0.055928800255060196, -0.09493136405944824, -0.057346608489751816, -0.04738155007362366, 0.11329067498445511, 0.03568584471940994, 0.06258758157491684, 0.12718398869037628, 0.055632732808589935, 0.005825174041092396, 0.06566440314054489, 0.027459384873509407, 0.02602524682879448, 0.0386112704873085, -0.2495107352733612, -0.11800982803106308, -0.044436853379011154, 0.05781705304980278, -0.026468057185411453, 0.12355703860521317, 0.13668298721313477, -0.025258716195821762, -0.02864878997206688, -0.047669269144535065, -0.019143806770443916, 0.004789859987795353, 0.12670566141605377, 0.045132432132959366, 0.03275444358587265, -0.1345246434211731, 0.04420183598995209, -0.03620801120996475, -0.09418873488903046, -0.033913202583789825, 0.04654339700937271, -0.10950203239917755, -0.10344740748405457, -0.06613504141569138, 0.11419061571359634, -0.15202748775482178, -0.05968018248677254, -0.0903548076748848, -0.08457635343074799, -0.018298884853720665, 0.060077469795942307, 0.11167407780885696, 0.05208394303917885, 0.006178139243274927, -0.059066787362098694, -0.05094024911522865, 0.04737600311636925, 0.05956883355975151, 0.026865052059292793, -0.26216110587120056, -0.0737529918551445, -0.051967378705739975, 0.09049870818853378, -0.07027644664049149, -0.021437551826238632, -0.05962879955768585, 0.014101365581154823, -0.044409237802028656, 0.04161204770207405, -0.03875912353396416, -0.01467939093708992, 0.044237419962882996, -0.11634547263383865, -0.0711287260055542, 0.02522997185587883, -0.0933355987071991, 0.02640976384282112, 0.0027931490913033485, -0.003126997733488679, -0.1147344633936882, -0.020470187067985535, 0.0792190432548523, -0.06472098082304001, 0.07381659746170044, 0.15530061721801758, -0.01991584710776806, 0.0818348079919815, -0.1775551736354828, -0.07156297564506531, 0.012877069413661957, 0.035572223365306854, 0.06714000552892685, -0.03174702450633049, 0.04259522631764412, 0.05779533460736275, 0.032333191484212875, -0.033512432128190994, 0.1338302344083786, -0.05842357501387596, -0.10100627690553665, 0.03563179448246956, -0.10161788761615753, -0.03628749027848244, -0.04130807891488075, 0.17276674509048462, 0.022920990362763405, 0.19166621565818787, -0.012474016286432743, 0.057365499436855316, -0.16572944819927216, 0.03626253083348274, 0.003938354551792145, -0.079892098903656, -0.1525736153125763, -0.043405164033174515, 0.03700720891356468, -0.022748472169041634, 0.10485202074050903, -0.057810645550489426, 0.14341674745082855, 0.007681157439947128, -0.07710887491703033, 0.14088574051856995, -0.006959112361073494, 0.2240670770406723, 0.09567556530237198, -0.011463889852166176, -0.040098730474710464, 0.045081976801157, -0.02166706509888172, 0.07970400154590607, 0.16165165603160858, 0.0708598718047142, -0.037447430193424225, 0.15565131604671478, 0.00013837423466611654, -0.01439752895385027, -0.15568003058433533, -0.19260868430137634, -0.1007801815867424, 0.009177758358418941, 0.024531474336981773, 0.12564648687839508, 0.22425433993339539, -0.06602746248245239, -0.013309002853929996, -0.06416366249322891, -0.04489380866289139, -0.23398901522159576, -0.1329003870487213, -0.12217637896537781, -0.09922055900096893, 0.026419779285788536, -0.08708108961582184, 0.011323938146233559, 0.1558363288640976, 0.028341462835669518, -0.02521316148340702, 0.13558273017406464, 0.04620673879981041, 0.006766725331544876, 0.04402359202504158, 0.008432780392467976, -0.027429640293121338, 0.06988997012376785, -0.03285953029990196, -0.012213627807796001, -0.07000347971916199, 0.013316767290234566, -0.0476439967751503, -0.05694872885942459, 0.06352191418409348, -0.03538059815764427, -0.11989005655050278, -0.08274541050195694, 0.025275839492678642, 0.011382889933884144, 0.10150912404060364, 0.010075876489281654, 0.03666628524661064, -0.007547990884631872, 0.1890791803598404, -0.08229976147413254, 0.04916505143046379, -0.08436312526464462, 0.20958659052848816, 0.021226845681667328, 0.11544720828533173, 0.017753636464476585, -0.023262623697519302, 0.03979869186878204, 0.1598108410835266, 0.10378812253475189, -0.11055988073348999, -0.0019198573427274823, 0.006396428681910038, 0.006659762002527714, -0.061341214925050735, 0.04979691654443741, 0.017100170254707336, 0.22299790382385254, -0.07463204115629196, -0.0087540652602911, -0.023636415600776672, -0.028993651270866394, -0.01930995285511017, 0.05819302052259445, -0.03861664980649948, 0.025826286524534225, -0.09145018458366394, 0.03656256943941116, -0.007710237056016922, -0.01601693406701088, 0.08674637973308563, -0.07925843447446823, -0.09302429854869843, -0.014066945761442184, 0.08831310272216797, 0.03717783838510513, 0.09709200263023376, -0.09280027449131012, -0.020351622253656387, 0.06618086993694305, 0.023776300251483917, -0.16743171215057373, -0.10096558928489685, 0.09857077151536942, 0.02083428204059601, 0.2099224030971527, 0.0011985470773652196, 0.14445091784000397, 0.05582340806722641, -0.020585890859365463, -0.1367364078760147, 0.06919318437576294, 0.028010407462716103, -0.10547700524330139, 0.004008817486464977, 0.052955903112888336, -0.012714941054582596, 0.014066161587834358, 0.03725592419505119, -0.19203659892082214, 0.007432644255459309, -0.05298369377851486, -0.0857381746172905, -0.061989426612854004, 0.0568615160882473, -0.03671357408165932, 0.1415148377418518, 0.09246068447828293, -0.01576908677816391, -0.011318656615912914, -0.020411603152751923, 0.10811524838209152, 0.047035884112119675, 0.03182172402739525, -0.028951605781912804, -0.05900219827890396, 0.02006588876247406, 0.04482114687561989, 0.0015936641721054912, -0.1161288470029831, -0.04365545138716698, -0.10115502774715424, -0.020540889352560043, -0.04990699887275696, 0.040475402027368546, 0.1448981910943985, 0.03837988153100014, -0.013858333230018616, -0.10236494243144989, 0.007316650822758675, 0.0851198211312294, -0.07962613552808762, -0.11984562128782272 ]
null
null
transformers
# Aqua
{"tags": ["conversational"]}
text-generation
Lovery/Aqua
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Aqua
[ "# Aqua" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Aqua" ]
[ 51, 2 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Aqua" ]
[ 0.009959169663488865, 0.047207627445459366, -0.008502841927111149, -0.02638801373541355, 0.1315944641828537, 0.011726055294275284, 0.13447755575180054, 0.11567658931016922, 0.050146572291851044, -0.0008281009504571557, 0.08831880241632462, 0.12309953570365906, 0.017924049869179726, 0.10033569484949112, -0.08531007915735245, -0.2985924184322357, 0.06526161730289459, 0.06315209716558456, 0.028789248317480087, 0.12342709302902222, 0.07060617953538895, -0.09097819030284882, 0.1117619052529335, -0.02815999649465084, -0.04121305048465729, -0.002746777143329382, -0.010464131832122803, -0.1389203816652298, 0.1234336644411087, 0.042915865778923035, 0.08111992478370667, 0.05036821588873863, -0.07662452757358551, -0.15629062056541443, 0.042338065803050995, 0.001058426103554666, -0.03960903733968735, 0.04991396516561508, 0.0489044189453125, -0.06352020055055618, 0.10522925853729248, 0.036462534219026566, 0.029515525326132774, 0.03634093701839447, -0.1728547215461731, -0.010589408688247204, 0.0022847093641757965, -0.05498247966170311, 0.09636063128709793, 0.0873660296201706, -0.023178238421678543, 0.16132308542728424, -0.07982519268989563, 0.07924114912748337, 0.09781195968389511, -0.3782719373703003, -0.02448672242462635, 0.07255624979734421, 0.07257111370563507, 0.06500880420207977, -0.0447649285197258, 0.09647174179553986, -0.03949802368879318, 0.05634446442127228, -0.0572836697101593, -0.07931912690401077, -0.1539888232946396, 0.022631479427218437, -0.06884265691041946, 0.004527318757027388, 0.26689597964286804, -0.04010288789868355, 0.02333046682178974, -0.04093598574399948, -0.0974264070391655, -0.008256902918219566, -0.06185031682252884, 0.0059717935509979725, -0.024599140509963036, 0.0762011781334877, 0.025161290541291237, -0.06379140168428421, -0.155610129237175, 0.008263922296464443, -0.21917162835597992, 0.19599832594394684, 0.017840590327978134, 0.059233903884887695, -0.25108659267425537, 0.09837529808282852, -0.02754742093384266, -0.09268215298652649, 0.0073958393186330795, -0.08965752273797989, 0.046804457902908325, 0.010949856601655483, -0.03927846625447273, -0.18936455249786377, 0.07232091575860977, 0.09909448027610779, 0.08353841304779053, 0.048607055097818375, -0.02369161881506443, 0.09370700269937515, 0.053614821285009384, 0.08937738090753555, 0.01728895679116249, -0.07652484625577927, 0.06423626095056534, -0.12860441207885742, 0.025447212159633636, -0.08597279340028763, -0.15336394309997559, -0.030504928901791573, 0.03668026253581047, 0.044838421046733856, 0.04024006053805351, 0.07022635638713837, 0.0010540359653532505, -0.036996882408857346, 0.016594765707850456, -0.051256030797958374, 0.020719686523079872, 0.018124697729945183, 0.00195489008910954, 0.19159244000911713, 0.02222442626953125, 0.024238303303718567, -0.09561428427696228, 0.0737360492348671, -0.0663367286324501, -0.014277081936597824, -0.026506610214710236, -0.04826950654387474, 0.023718615993857384, 0.04357167333364487, 0.010968505404889584, -0.17190659046173096, -0.1461227685213089, 0.022153666242957115, 0.03265468403697014, -0.07803460210561752, -0.06910053640604019, -0.0000625916727585718, 0.01789451763033867, 0.007079104892909527, -0.06650204211473465, 0.013524496927857399, -0.0445723831653595, 0.09804616123437881, -0.0018231816357001662, 0.09135857969522476, -0.1859796792268753, 0.0838744044303894, -0.12166985869407654, -0.0035563320852816105, -0.020393939688801765, 0.05573464557528496, 0.028097953647375107, 0.06452002376317978, -0.033178456127643585, -0.06297405064105988, -0.11623898148536682, 0.04568446800112724, 0.01881529949605465, 0.22328443825244904, -0.10118981450796127, -0.10874378681182861, 0.25938430428504944, -0.06183953955769539, -0.1259581297636032, 0.09395443648099899, 0.027643734589219093, 0.02822682447731495, 0.126853808760643, 0.1736907660961151, -0.0899839922785759, -0.008696791715919971, 0.07813537120819092, 0.04103755205869675, -0.04313953220844269, -0.010565761476755142, 0.029836859554052353, 0.04453869163990021, 0.008021429181098938, 0.07376572489738464, 0.07043000310659409, 0.09421959519386292, -0.057241372764110565, -0.030518587678670883, -0.005690978839993477, 0.029359636828303337, 0.05300585925579071, -0.026933351531624794, 0.11765941232442856, -0.03319535404443741, -0.05044805631041527, 0.006032488774508238, -0.03298800066113472, -0.025959106162190437, 0.05281040817499161, -0.067494697868824, 0.17080479860305786, 0.037111032754182816, 0.07525599002838135, -0.14098837971687317, -0.084737628698349, -0.005469254218041897, 0.09543953090906143, 0.0635579526424408, 0.06834766268730164, 0.0855095162987709, -0.021004902198910713, -0.014259282499551773, 0.04594321921467781, 0.11377665400505066, -0.013590032234787941, -0.061006177216768265, -0.0839739665389061, 0.07702679932117462, -0.032450880855321884, 0.04903922230005264, -0.12838833034038544, 0.027410799637436867, 0.12758609652519226, 0.1211317777633667, 0.0000399155069317203, 0.022166818380355835, 0.007417967543005943, -0.01401981059461832, -0.044099338352680206, 0.011101691983640194, 0.08832073211669922, 0.011406918987631798, -0.11399499326944351, 0.1932493895292282, -0.18894633650779724, 0.22394604980945587, 0.18285968899726868, -0.23782342672348022, 0.031973905861377716, -0.09728426486253738, -0.04491386190056801, -0.007606113329529762, 0.06972343474626541, 0.013006488792598248, 0.18515101075172424, 0.047472450882196426, 0.1606566607952118, -0.023644709959626198, -0.002456113463267684, 0.023475132882595062, -0.04165894165635109, 0.01148257590830326, 0.08115807920694351, 0.06460903584957123, -0.14533618092536926, 0.15408138930797577, 0.1321132779121399, 0.03199135512113571, 0.14239974319934845, 0.026565346866846085, -0.03551865741610527, 0.08645624667406082, 0.016031891107559204, -0.045845262706279755, 0.01919110119342804, -0.2554704546928406, -0.020094119012355804, 0.09119481593370438, 0.03897339478135109, 0.10955081135034561, -0.1182878389954567, -0.04608197137713432, 0.0007029988919384778, 0.03413732349872589, 0.01810303144156933, 0.10095889866352081, 0.05885536968708038, 0.13546422123908997, -0.009662501513957977, -0.015988415107131004, 0.0472271591424942, 0.008025801740586758, -0.069538414478302, 0.24405385553836823, -0.08326785266399384, -0.3375510573387146, -0.13136696815490723, -0.18702127039432526, -0.034191593527793884, -0.006995341274887323, 0.0989537239074707, -0.07991556823253632, -0.0350051186978817, 0.02961994893848896, 0.04949399083852768, -0.044881246984004974, 0.032822538167238235, -0.05980507656931877, 0.030921613797545433, -0.1256207674741745, -0.07734539359807968, -0.07423115521669388, -0.060987140983343124, -0.04058557748794556, 0.17924296855926514, -0.07490506768226624, 0.028729377314448357, 0.23157911002635956, -0.02797716110944748, 0.051671650260686874, -0.003435661317780614, 0.23595000803470612, -0.09611544758081436, 0.015740711241960526, 0.20357754826545715, -0.026688922196626663, 0.07059221714735031, 0.10846779495477676, 0.024680573493242264, -0.12909647822380066, 0.010824494063854218, -0.029251955449581146, -0.08711323142051697, -0.2899740934371948, -0.13686294853687286, -0.12350048869848251, 0.0827203318476677, -0.035418566316366196, 0.052564915269613266, 0.1688697189092636, 0.025948436930775642, 0.014363198541104794, 0.041813213378190994, 0.06992936134338379, 0.10438116639852524, 0.3097391426563263, -0.035760845988988876, 0.13262538611888885, -0.023084236308932304, -0.14515115320682526, 0.07728506624698639, 0.07959086447954178, 0.09178280085325241, 0.0978933721780777, 0.07405907660722733, -0.0008726663654670119, -0.07264655083417892, 0.12338180094957352, 0.08684232831001282, -0.00653586583212018, -0.04694214463233948, -0.05560864135622978, -0.04901215806603432, -0.013867060653865337, 0.037972915917634964, 0.04401755705475807, -0.17572909593582153, -0.0018170252442359924, -0.07909549027681351, 0.06484425812959671, 0.0218595452606678, 0.025325054302811623, -0.17110934853553772, -0.009921361692249775, 0.09516983479261398, -0.024172935634851456, -0.1568484902381897, 0.037720952183008194, 0.015489613637328148, -0.14766649901866913, 0.03735301271080971, -0.06847763806581497, 0.13136719167232513, -0.05769890919327736, 0.09114053100347519, -0.04911572113633156, -0.09049535542726517, 0.03804200887680054, 0.09740858525037766, -0.2598494589328766, 0.19876058399677277, -0.008197006769478321, -0.06615891307592392, -0.07261873036623001, 0.0049113561399281025, -0.05021924898028374, 0.1380082368850708, 0.10042217373847961, 0.0255739763379097, -0.04169163852930069, -0.02123793214559555, -0.1013292595744133, 0.06600120663642883, 0.08574347198009491, 0.011014975607395172, -0.02387106977403164, 0.0011451325844973326, 0.001150128897279501, -0.03374108672142029, 0.043898507952690125, 0.0002683776256162673, -0.1805398166179657, 0.1418859213590622, -0.0033434536308050156, 0.11993403732776642, 0.02505268156528473, -0.05464563146233559, -0.00495905103161931, 0.2739706039428711, -0.09043759852647781, -0.08987889438867569, -0.09586068242788315, -0.049128469079732895, 0.05256537348031998, -0.0642004981637001, 0.010531902313232422, -0.08971618115901947, 0.02473430335521698, -0.0641404464840889, -0.17081159353256226, 0.1489274501800537, -0.04001873731613159, -0.049678415060043335, -0.06245552375912666, 0.14586253464221954, -0.054570186883211136, 0.040466874837875366, 0.008550926111638546, 0.002827944466844201, -0.11985825002193451, -0.09615260362625122, 0.027770765125751495, -0.015045036561787128, 0.018453113734722137, -0.06638336181640625, -0.0527649000287056, -0.027256477624177933, -0.03249897435307503, -0.007354845758527517, 0.3245719075202942, 0.19113101065158844, 0.0039433203637599945, 0.16887220740318298, 0.15179510414600372, -0.07484988123178482, -0.23451454937458038, -0.08459405601024628, -0.16240350902080536, 0.004687486216425896, -0.06896709650754929, -0.2523530125617981, 0.07823895663022995, -0.0033045033924281597, -0.030468638986349106, 0.21786238253116608, -0.25016212463378906, -0.1023586317896843, 0.1502506285905838, -0.0015549376839771867, 0.41354843974113464, -0.19796983897686005, -0.08630786091089249, -0.04320919141173363, -0.251399427652359, 0.2281213253736496, -0.006612740457057953, 0.12475951015949249, -0.030489327386021614, 0.1877802312374115, 0.02698216587305069, -0.028495486825704575, 0.1179828941822052, -0.038710061460733414, -0.05218420922756195, -0.04413642734289169, -0.11612219363451004, 0.05500868707895279, 0.04934517294168472, 0.026165541261434555, -0.0076751708984375, -0.02661075070500374, -0.14950793981552124, -0.03143685311079025, -0.09762956947088242, 0.06090418994426727, 0.02859533205628395, -0.08437605947256088, 0.058340638875961304, -0.04411600902676582, 0.0008296464802697301, 0.012225043959915638, 0.22570401430130005, -0.0598650798201561, 0.14004525542259216, 0.03995218500494957, 0.12554332613945007, -0.10573282092809677, -0.03979838639497757, -0.07130806893110275, -0.034885961562395096, 0.06614425778388977, -0.07882726937532425, 0.02745712175965309, 0.14058327674865723, -0.028515877202153206, 0.05521059408783913, 0.10742128640413284, -0.04808828607201576, -0.0072864932008087635, 0.10183220356702805, -0.2837105989456177, 0.015696661546826363, -0.04126504808664322, 0.2011653482913971, 0.10137271136045456, 0.08261933922767639, 0.15340881049633026, -0.0170145183801651, -0.07050977647304535, 0.027120046317577362, 0.008843210525810719, -0.04520749673247337, 0.038775671273469925, 0.0076142181642353535, 0.02821281924843788, -0.140811026096344, 0.031186483800411224, 0.0434478223323822, -0.17248320579528809, 0.003721806453540921, 0.19262133538722992, -0.0971137285232544, -0.11017784476280212, -0.042227569967508316, 0.04598047956824303, -0.04395656660199165, -0.01427872572094202, -0.06466697156429291, -0.16822654008865356, 0.05601869150996208, 0.11984431743621826, 0.05793135240674019, 0.1017308309674263, -0.07455792278051376, -0.031050194054841995, 0.028391465544700623, -0.02615773305296898, -0.015626288950443268, 0.000821080117020756, -0.031099803745746613, -0.0026751903351396322, -0.023968445137143135, 0.08676297217607498, -0.10104040801525116, -0.1304025799036026, -0.1581246554851532, 0.019553784281015396, -0.11654861271381378, -0.07026176154613495, -0.08074311912059784, -0.07550673931837082, -0.026792427524924278, -0.024999085813760757, -0.0673762783408165, -0.05720612779259682, -0.1156681478023529, 0.0323340967297554, -0.08659633994102478, 0.002988002263009548, -0.07486622780561447, -0.009597060270607471, 0.0714498832821846, -0.05836674943566322, 0.11560862511396408, 0.1526114046573639, -0.07415146380662918, 0.05150461196899414, -0.15506389737129211, -0.08735745400190353, 0.10533218830823898, 0.02332237735390663, 0.06589028239250183, 0.03953179717063904, 0.0017298607854172587, 0.047902584075927734, 0.0708184540271759, 0.045867130160331726, 0.0398934930562973, -0.12507624924182892, -0.008659671992063522, -0.05839813873171806, -0.17449094355106354, -0.00814124383032322, -0.06621897220611572, 0.013017217628657818, 0.047226909548044205, 0.05571574345231056, -0.05307747423648834, 0.11206460744142532, -0.084204763174057, 0.043595291674137115, 0.027512919157743454, -0.1756962090730667, -0.017760099843144417, -0.07390660047531128, 0.0267331525683403, 0.019075119867920876, 0.244985893368721, 0.042485397309064865, 0.00237086764536798, 0.05423793941736221, 0.09680154919624329, -0.013303857296705246, 0.05791333690285683, 0.1165136843919754, 0.10529173165559769, -0.03643808141350746, -0.07377687841653824, 0.045626770704984665, 0.002704240847378969, 0.028896208852529526, 0.15401774644851685, 0.016899555921554565, 0.055644843727350235, 0.12303201854228973, -0.010653761215507984, 0.05366550013422966, -0.17259082198143005, -0.11770745366811752, -0.03144799917936325, 0.08982490748167038, -0.05348490923643112, 0.2025013267993927, 0.09804800897836685, -0.04963373765349388, 0.03122367523610592, -0.06673924624919891, -0.05977277457714081, -0.17520280182361603, -0.16204982995986938, -0.055823829025030136, -0.08424205332994461, -0.0026995628140866756, -0.11002875119447708, 0.031633391976356506, 0.01171667780727148, 0.05821068212389946, -0.06827254593372345, 0.0651378482580185, 0.08211323618888855, -0.08263624459505081, 0.04987136274576187, -0.0036083878949284554, 0.0677763968706131, -0.007030797656625509, 0.020141566172242165, -0.104066401720047, 0.005881820805370808, 0.007590409833937883, 0.08066048473119736, -0.02998092584311962, 0.002278611296787858, -0.10557296872138977, -0.1206744834780693, -0.06388796120882034, 0.028759634122252464, -0.03412172943353653, 0.07903508096933365, -0.03176986426115036, -0.02650313824415207, 0.04393213987350464, 0.23939092457294464, -0.03830943629145622, -0.03323229029774666, -0.03058900125324726, 0.19719284772872925, 0.011480893939733505, 0.13272610306739807, -0.028719617053866386, 0.005834740586578846, -0.10167849808931351, 0.3442098796367645, 0.23502160608768463, -0.0831972062587738, -0.006867075804620981, 0.12312071770429611, 0.038535695523023605, 0.08202879875898361, 0.08080869168043137, 0.08302425593137741, 0.30930760502815247, -0.11679749190807343, -0.005576277617365122, -0.0452301912009716, -0.05187739059329033, -0.08627316355705261, 0.08390868455171585, 0.0842987447977066, -0.03265416994690895, -0.06933470815420151, 0.10592727363109589, -0.27243223786354065, 0.13000573217868805, -0.1110738068819046, -0.3030485212802887, -0.09766273200511932, -0.03457701951265335, 0.10784991085529327, 0.018484264612197876, 0.12387437373399734, -0.027041452005505562, -0.10368317365646362, 0.02361074462532997, 0.05328744649887085, -0.19434678554534912, 0.03193598985671997, 0.10160213708877563, -0.11390667408704758, -0.0015256007900461555, -0.025524307042360306, 0.07871821522712708, 0.0421588160097599, 0.05531422793865204, 0.009233048185706139, -0.032635387033224106, 0.000826399598736316, -0.022644992917776108, -0.033870019018650055, 0.08137226849794388, 0.005372269079089165, -0.10085151344537735, 0.06768999993801117, -0.12826833128929138, 0.03031589835882187, -0.020500998944044113, -0.0465603768825531, 0.03359083831310272, 0.026343315839767456, -0.03858494758605957, 0.004965152591466904, 0.05718645453453064, -0.018910503014922142, -0.03169899433851242, -0.06336500495672226, -0.015983037650585175, 0.02278231270611286, -0.08381696045398712, -0.1042870283126831, -0.13688614964485168, -0.1292150616645813, 0.07370331138372421, 0.0399533286690712, -0.22686928510665894, -0.012468141503632069, -0.09495437145233154, 0.08058338612318039, -0.18397925794124603, 0.07379520684480667, 0.10637125372886658, -0.014069916680455208, -0.024921897798776627, -0.07037651538848877, 0.0770098865032196, 0.06573157012462616, -0.11395037919282913, -0.06851514428853989 ]
null
null
transformers
```python import jieba_fast from transformers import BertTokenizer from transformers import BigBirdModel class JiebaTokenizer(BertTokenizer): def __init__( self, pre_tokenizer=lambda x: jieba_fast.cut(x, HMM=False), *args, **kwargs ): super().__init__(*args, **kwargs) self.pre_tokenizer = pre_tokenizer def _tokenize(self, text, *arg, **kwargs): split_tokens = [] for word in self.pre_tokenizer(text): if word in self.vocab: split_tokens.append(word) else: split_tokens.extend(super()._tokenize(word)) return split_tokens model = BigBirdModel.from_pretrained('Lowin/chinese-bigbird-base-4096') tokenizer = JiebaTokenizer.from_pretrained('Lowin/chinese-bigbird-base-4096') ``` https://github.com/LowinLi/chinese-bigbird
{"language": ["zh"], "license": ["apache-2.0"]}
fill-mask
Lowin/chinese-bigbird-base-4096
[ "transformers", "pytorch", "big_bird", "fill-mask", "zh", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
URL
[]
[ "TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 48 ]
[ "passage: TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.07196708023548126, 0.013983936049044132, -0.005300837103277445, 0.015006959438323975, 0.034126922488212585, -0.002625871915370226, 0.07638458162546158, 0.10581004619598389, 0.011630482040345669, -0.046316586434841156, 0.1392965018749237, 0.18414463102817535, 0.040087003260850906, 0.10670594125986099, -0.0106193907558918, -0.19297195971012115, 0.08468607813119888, 0.04186089709401131, -0.09668178111314774, 0.08447910100221634, 0.08758564293384552, -0.026071302592754364, 0.03718936815857887, 0.04455528035759926, -0.009828046895563602, 0.0012480902951210737, 0.011399083770811558, -0.06285914033651352, 0.11096592992544174, 0.02822454646229744, 0.06560177356004715, 0.049009229987859726, -0.03051016852259636, -0.12217530608177185, 0.035099323838949203, 0.008185693062841892, -0.07073546946048737, 0.020692434161901474, 0.011401762254536152, -0.004333921708166599, 0.054451409727334976, -0.01410361286252737, -0.050082918256521225, 0.07001674920320511, -0.013099154457449913, -0.2864852845668793, -0.1130635067820549, 0.09462372213602066, 0.03455105423927307, 0.07285736501216888, 0.06066368147730827, 0.18015336990356445, -0.10622148960828781, 0.05764427036046982, 0.1593066304922104, -0.338113009929657, 0.013103331439197063, 0.04152385890483856, 0.06954406201839447, -0.04399095103144646, -0.008411864750087261, 0.033205535262823105, 0.03360004723072052, 0.008635924197733402, 0.00914720818400383, -0.030330326408147812, 0.06735161691904068, -0.002898658625781536, -0.06020362675189972, -0.0750313401222229, 0.19215209782123566, 0.019794853404164314, 0.012158707715570927, -0.017327772453427315, -0.10245966166257858, -0.01072599645704031, -0.014907087199389935, 0.07504625618457794, 0.014800702221691608, 0.09403730183839798, 0.07094468176364899, -0.06884239614009857, -0.13338837027549744, 0.00367302936501801, -0.22550742328166962, 0.1587628722190857, 0.05200697481632233, 0.10316881537437439, -0.14065387845039368, 0.045458219945430756, 0.051160357892513275, -0.15478308498859406, -0.045080844312906265, -0.06762859970331192, 0.07402318716049194, 0.06839194148778915, -0.035011596977710724, 0.06425494700670242, 0.19249580800533295, 0.2636933922767639, 0.08920754492282867, 0.02311246283352375, -0.004951088689267635, 0.10003769397735596, -0.038353510200977325, 0.030373413115739822, -0.005903321783989668, -0.08336523920297623, 0.1601029485464096, -0.11343101412057877, 0.11673858761787415, -0.045501988381147385, -0.12828058004379272, -0.05524847283959389, 0.013679339550435543, 0.1052510067820549, 0.08333896845579147, 0.016527751460671425, -0.042493436485528946, 0.035916782915592194, 0.15868112444877625, -0.04742594063282013, -0.02353285811841488, 0.010489623993635178, 0.030388839542865753, 0.060026392340660095, 0.04422398656606674, 0.003768953261896968, 0.004278641659766436, 0.0414837971329689, -0.04671522229909897, -0.05074102059006691, 0.008686073124408722, 0.018942007794976234, 0.06255218386650085, -0.11573993414640427, 0.058560289442539215, -0.16089926660060883, -0.15629567205905914, 0.06077433377504349, 0.03856422379612923, 0.023479808121919632, -0.09394463896751404, 0.08573757857084274, -0.02859322540462017, 0.022857794538140297, -0.05757252871990204, 0.06672654300928116, -0.07755668461322784, 0.08328426629304886, -0.03766540810465813, 0.0556657537817955, -0.20130179822444916, 0.030304424464702606, -0.09976957738399506, 0.010619312524795532, 0.03346443548798561, -0.050266001373529434, -0.08371195197105408, 0.14303770661354065, -0.03591015189886093, -0.05404040962457657, -0.03617206588387489, -0.007157353218644857, -0.019439591094851494, 0.08293182402849197, -0.09964116662740707, -0.059688713401556015, 0.20185765624046326, -0.11407704651355743, -0.18359334766864777, 0.07685192674398422, 0.028443969786167145, -0.013460556045174599, 0.03579931706190109, 0.08146890997886658, 0.07927313446998596, -0.089129738509655, 0.07037107646465302, 0.14938393235206604, -0.1475343406200409, -0.19231145083904266, 0.0750875174999237, -0.029399050399661064, -0.12223725020885468, 0.054182156920433044, -0.0196689460426569, 0.14527761936187744, 0.013197689317166805, -0.0857938826084137, -0.057268816977739334, -0.09960246086120605, 0.029881833121180534, -0.006420416757464409, 0.0661017969250679, -0.07561857998371124, -0.009750014171004295, -0.12056411057710648, 0.08047955483198166, 0.08828048408031464, 0.04858263581991196, -0.08694645017385483, 0.12148828059434891, 0.023223010823130608, 0.02662704512476921, -0.09445410221815109, 0.01198620442301035, -0.022532321512699127, -0.050477586686611176, 0.0032307791989296675, 0.12410325556993484, 0.06307166814804077, -0.043038930743932724, 0.027824027463793755, -0.02517211064696312, 0.08944928646087646, 0.06456436216831207, 0.0035519436933100224, -0.12559153139591217, 0.014329000376164913, -0.024696139618754387, 0.07538396865129471, 0.04216454550623894, 0.021036338061094284, 0.06720494478940964, 0.08090949803590775, -0.06457589566707611, 0.08288607001304626, -0.02971896156668663, -0.06349818408489227, -0.0432981476187706, 0.00033069460187107325, 0.09973589330911636, 0.07691362500190735, -0.11350984126329422, 0.14743025600910187, -0.06411907076835632, 0.2636130452156067, 0.189500629901886, -0.07879861444234848, 0.0850340947508812, 0.09524430334568024, -0.037797242403030396, -0.05391448736190796, 0.05729611590504646, 0.006002375856041908, 0.005028955172747374, 0.01951323077082634, 0.14127404987812042, -0.06003228574991226, -0.0338069424033165, 0.014901706948876381, -0.0681135505437851, 0.02774019166827202, 0.028725339099764824, 0.11338253319263458, -0.19038526713848114, 0.17318838834762573, 0.2847096621990204, -0.009405774995684624, 0.13603992760181427, -0.07460291683673859, 0.03281320258975029, 0.02113455906510353, -0.011681471951305866, -0.03396962210536003, 0.09656686335802078, -0.14654748141765594, 0.03240344673395157, 0.09526852518320084, -0.019697032868862152, 0.05288444459438324, -0.13609547913074493, -0.039171405136585236, 0.03412880748510361, 0.0013273472432047129, -0.021929578855633736, 0.1207314282655716, -0.019839860498905182, 0.06285025924444199, -0.03506884723901749, -0.13271525502204895, 0.11202332377433777, -0.010298667475581169, -0.044746045023202896, 0.10421933233737946, -0.1536462903022766, -0.27183160185813904, -0.12209291011095047, -0.11644743382930756, -0.07631713896989822, -0.02783268503844738, 0.11534469574689865, -0.009143287315964699, -0.024803459644317627, 0.052587494254112244, -0.09213694930076599, 0.02313099056482315, 0.045112792402505875, -0.04105101525783539, 0.02286144159734249, -0.002021696185693145, -0.14359724521636963, -0.06723824888467789, -0.0012629869161173701, -0.07291009277105331, 0.08258092403411865, -0.050774142146110535, 0.0645308792591095, 0.0691329762339592, 0.04353497549891472, 0.03723105415701866, -0.0038168306928128004, 0.1172412633895874, -0.04335349053144455, 0.05040011927485466, 0.2661100924015045, 0.010848209261894226, 0.10720416158437729, 0.11998102068901062, 0.01713908091187477, -0.03421526774764061, -0.016958115622401237, -0.06842733174562454, -0.1309465765953064, -0.16634178161621094, -0.11521737277507782, -0.13871224224567413, -0.007647385820746422, 0.019252393394708633, 0.09227967262268066, 0.16396546363830566, 0.08786046504974365, -0.02962334267795086, -0.01954793930053711, -0.05163232982158661, 0.02950582094490528, 0.1350642293691635, 0.0004065890680067241, 0.09752555936574936, -0.12900410592556, -0.05926472693681717, 0.12050716578960419, 0.05677047744393349, 0.07196369767189026, 0.0998840183019638, 0.04916321486234665, 0.08641492575407028, 0.25060364603996277, 0.08292143791913986, 0.15427185595035553, -0.0004778395523317158, -0.04331551119685173, -0.044449906796216965, -0.028740020468831062, -0.04812151938676834, 0.03744193911552429, 0.07646795362234116, -0.07147035002708435, 0.007170629221946001, -0.09256736189126968, 0.0353962667286396, 0.20132337510585785, 0.015200396999716759, -0.09687374532222748, 0.045304395258426666, 0.05537788197398186, 0.0013539885403588414, -0.02606230601668358, 0.04327147826552391, -0.0782635360956192, -0.13229605555534363, 0.14554284512996674, -0.007155146915465593, 0.08545846492052078, 0.07044003903865814, 0.053013380616903305, -0.07347118109464645, -0.052100617438554764, 0.08029090613126755, 0.13371123373508453, -0.2423352301120758, 0.1478722244501114, -0.04266480356454849, -0.028983931988477707, -0.15021537244319916, 0.0019496040185913444, 0.10906095802783966, 0.11993829905986786, 0.10105668753385544, 0.0463971346616745, -0.07627592980861664, 0.01115572452545166, -0.061643581837415695, 0.05393749475479126, -0.02260553650557995, -0.02479400485754013, -0.06986584514379501, -0.05590207129716873, -0.03449402377009392, -0.008211805485188961, 0.1324969232082367, -0.01120657380670309, -0.125088170170784, 0.053354695439338684, 0.07210120558738708, -0.03723572567105293, -0.09572673588991165, -0.02602021023631096, -0.1044006273150444, 0.15857012569904327, -0.12080167979001999, -0.08684920519590378, -0.06818085163831711, -0.12626874446868896, 0.05497131124138832, -0.08003831654787064, 0.09843970090150833, -0.08160444349050522, -0.007179802283644676, -0.11303002387285233, -0.18710194528102875, 0.09337907284498215, -0.13346508145332336, -0.06971371173858643, -0.01841186173260212, 0.15747077763080597, -0.09334807842969894, 0.05719457566738129, 0.03428035229444504, -0.024611495435237885, -0.1192203238606453, -0.11290549486875534, -0.021688666194677353, -0.04494312033057213, 0.030431628227233887, -0.003967714961618185, 0.014182194136083126, -0.07139591872692108, 0.054660432040691376, -0.038730438798666, 0.264434814453125, 0.2511565387248993, -0.08083712309598923, 0.18813055753707886, 0.16138681769371033, -0.0270818043500185, -0.31871578097343445, -0.2256840169429779, -0.16243116557598114, -0.035873834043741226, -0.027574410662055016, -0.11036307364702225, 0.13717339932918549, 0.07295764237642288, -0.10439348220825195, 0.1748495101928711, -0.1897152215242386, -0.08510614186525345, 0.21143177151679993, -0.026149369776248932, 0.3844970166683197, -0.10712088644504547, -0.04930194839835167, -0.0921960324048996, -0.0826483890414238, 0.08510036021471024, -0.08378420770168304, 0.0960230752825737, -0.027649708092212677, -0.029010049998760223, -0.02742856554687023, -0.06765042245388031, 0.13190589845180511, -0.04850482568144798, 0.003521289909258485, -0.10752547532320023, 0.028140120208263397, 0.14040642976760864, -0.016202710568904877, 0.03356293961405754, -0.1984272599220276, 0.010799543000757694, -0.0401463583111763, 0.01464161742478609, -0.11735495924949646, 0.13908687233924866, 0.01741388626396656, -0.03966999053955078, -0.06853743642568588, -0.029814990237355232, 0.04283604398369789, 0.00113991042599082, 0.19518321752548218, 0.059701304882764816, -0.011673188768327236, 0.08530782908201218, 0.0089799202978611, -0.19553586840629578, -0.105952687561512, -0.13124214112758636, -0.05718817189335823, 0.054198481142520905, -0.055955298244953156, 0.048990197479724884, 0.0705563873052597, 0.00987432524561882, 0.0024309938307851553, 0.07746627926826477, -0.041494306176900864, -0.03239753469824791, 0.13357380032539368, -0.12013788521289825, -0.0231633298099041, -0.016782162711024284, 0.11848030984401703, 0.08528603613376617, 0.04519309103488922, 0.07768417149782181, 0.0388399176299572, -0.03476962074637413, 0.0050958991050720215, 0.02834702469408512, -0.1162419468164444, 0.049942437559366226, 0.07875750958919525, 0.05488179251551628, -0.1531732976436615, 0.03741983324289322, -0.05929426848888397, -0.040646158158779144, -0.009990962222218513, 0.07922303676605225, -0.1217418760061264, -0.1131376102566719, 0.07771424204111099, 0.043573733419179916, -0.07462111115455627, -0.09663959592580795, -0.04764173552393913, -0.14726193249225616, 0.031249288469552994, 0.14344264566898346, 0.1392740160226822, 0.04606876149773598, -0.002519905799999833, -0.07842246443033218, 0.027907930314540863, -0.02429371140897274, -0.06644512712955475, 0.029419362545013428, -0.09767789393663406, -0.07810918986797333, 0.03577291965484619, 0.15322168171405792, -0.06683717668056488, -0.012233542278409004, -0.08317137509584427, 0.023086827248334885, -0.15994182229042053, 0.0024166686926037073, -0.10589440166950226, -0.025555841624736786, 0.014896034263074398, -0.07272268086671829, -0.027093641459941864, 0.03857860341668129, -0.12001880258321762, -0.02165246196091175, -0.003122800262644887, 0.022500906139612198, -0.07544860243797302, -0.04012662172317505, 0.10005489736795425, -0.04313337430357933, 0.08236879855394363, 0.08579514920711517, -0.05210872367024422, 0.07989895343780518, -0.07012822479009628, -0.15096475183963776, 0.06538800150156021, 0.05535433813929558, 0.026705970987677574, -0.011445187963545322, 0.013445197604596615, 0.0915319100022316, -0.014547327533364296, 0.011738204397261143, 0.022907575592398643, -0.12542672455310822, -0.0010721179423853755, -0.03993617743253708, -0.07039663195610046, 0.02648274041712284, -0.1461188942193985, 0.09932240843772888, 0.0487116202712059, 0.1960870623588562, 0.021646656095981598, 0.046880777925252914, -0.051382556557655334, 0.01416282169520855, -0.07503284513950348, -0.18124262988567352, -0.03201998770236969, -0.04434151202440262, -0.04968841373920441, 0.0023641164880245924, 0.22538639605045319, -0.045935336500406265, -0.08417101949453354, 0.03153229504823685, 0.17639419436454773, 0.052565231919288635, -0.0028011281974613667, 0.29189708828926086, 0.02657695859670639, 0.012987075373530388, -0.017952101305127144, 0.03018566034734249, 0.021231692284345627, -0.07549048960208893, 0.11707952618598938, 0.07059185951948166, 0.12850812077522278, 0.07157553732395172, 0.07699468731880188, 0.015080287121236324, -0.1410370022058487, -0.19539816677570343, 0.018905790522694588, 0.03797164931893349, 0.04120836406946182, 0.06972183287143707, 0.14947094023227692, -0.04192971810698509, 0.014090726152062416, 0.01623181812465191, 0.011553867720067501, -0.15846270322799683, -0.1925390064716339, -0.0665602758526802, -0.04380977898836136, 0.00837146770209074, 0.023650160059332848, -0.049271050840616226, 0.13920694589614868, 0.053536657243967056, -0.037148475646972656, 0.02643045037984848, -0.07026474922895432, -0.04594526067376137, 0.007457142695784569, -0.018464958295226097, -0.07844983041286469, 0.04680496081709862, -0.048228319734334946, -0.09095974266529083, -0.034081511199474335, -0.01894022710621357, 0.023393504321575165, -0.03352418541908264, 0.06501482427120209, -0.088222935795784, -0.08135289698839188, -0.07478522509336472, -0.010214269161224365, 0.02311159111559391, 0.15070371329784393, 0.022496048361063004, 0.034333135932683945, 0.05787627026438713, 0.05733057111501694, -0.030126772820949554, -0.22504767775535583, -0.025677133351564407, 0.12222763895988464, 0.013420749455690384, 0.022791462019085884, 0.03155023232102394, 0.04584178701043129, -0.03377633914351463, 0.3052108585834503, 0.29627320170402527, -0.03928586095571518, 0.08298628777265549, -0.009702267125248909, 0.017226533964276314, 0.008646626025438309, 0.09424205124378204, 0.10218735039234161, 0.22336867451667786, -0.0786321610212326, 0.0021787674631923437, -0.07686010748147964, -0.04741412028670311, -0.1883021742105484, 0.029256539419293404, -0.008963724598288536, -0.08674933016300201, 0.008242453448474407, 0.05303920805454254, -0.1182662770152092, 0.1010163202881813, 0.035296160727739334, -0.06670844554901123, -0.06489279121160507, 0.017389951273798943, 0.1634008139371872, 0.06929953396320343, 0.022583816200494766, -0.03507251292467117, -0.024511881172657013, 0.031210266053676605, -0.0018052401719614863, -0.23004832863807678, -0.06670606881380081, 0.11080792546272278, -0.032433152198791504, 0.17548274993896484, -0.01742883026599884, 0.03645622730255127, 0.10483643412590027, 0.08287201821804047, -0.09977993369102478, 0.08710435777902603, 0.00424271309748292, -0.07722719013690948, -0.019597720354795456, -0.09035992622375488, -0.022656790912151337, -0.13335773348808289, 0.015977095812559128, -0.07298114895820618, 0.01670694723725319, 0.03213875740766525, -0.004368039779365063, -0.020467422902584076, 0.0929664671421051, -0.07657081633806229, 0.07754392921924591, -0.02423287369310856, -0.03044648841023445, -0.06591290980577469, -0.0655817911028862, -0.02224024198949337, 0.05274199694395065, -0.14394894242286682, -0.11840959638357162, -0.02127682790160179, -0.029900606721639633, -0.0319901667535305, 0.01466571819037199, -0.014888705685734749, -0.07066536694765091, -0.1274591088294983, -0.020368821918964386, -0.1364801526069641, -0.00214627617970109, 0.0638670027256012, -0.006477235816419125, 0.029360167682170868, -0.05648382753133774, -0.02207096293568611, -0.006141236051917076, -0.14542707800865173, -0.1095605343580246 ]
null
null
transformers
```python import jieba_fast from transformers import BertTokenizer from transformers import BigBirdModel class JiebaTokenizer(BertTokenizer): def __init__( self, pre_tokenizer=lambda x: jieba_fast.cut(x, HMM=False), *args, **kwargs ): super().__init__(*args, **kwargs) self.pre_tokenizer = pre_tokenizer def _tokenize(self, text, *arg, **kwargs): split_tokens = [] for text in self.pre_tokenizer(text): if text in self.vocab: split_tokens.append(text) else: split_tokens.extend(super()._tokenize(text)) return split_tokens model = BigBirdModel.from_pretrained('Lowin/chinese-bigbird-mini-1024') tokenizer = JiebaTokenizer.from_pretrained('Lowin/chinese-bigbird-mini-1024') ``` https://github.com/LowinLi/chinese-bigbird
{"language": ["zh"], "license": ["apache-2.0"]}
fill-mask
Lowin/chinese-bigbird-mini-1024
[ "transformers", "pytorch", "big_bird", "fill-mask", "zh", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
URL
[]
[ "TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 48 ]
[ "passage: TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.07196708023548126, 0.013983936049044132, -0.005300837103277445, 0.015006959438323975, 0.034126922488212585, -0.002625871915370226, 0.07638458162546158, 0.10581004619598389, 0.011630482040345669, -0.046316586434841156, 0.1392965018749237, 0.18414463102817535, 0.040087003260850906, 0.10670594125986099, -0.0106193907558918, -0.19297195971012115, 0.08468607813119888, 0.04186089709401131, -0.09668178111314774, 0.08447910100221634, 0.08758564293384552, -0.026071302592754364, 0.03718936815857887, 0.04455528035759926, -0.009828046895563602, 0.0012480902951210737, 0.011399083770811558, -0.06285914033651352, 0.11096592992544174, 0.02822454646229744, 0.06560177356004715, 0.049009229987859726, -0.03051016852259636, -0.12217530608177185, 0.035099323838949203, 0.008185693062841892, -0.07073546946048737, 0.020692434161901474, 0.011401762254536152, -0.004333921708166599, 0.054451409727334976, -0.01410361286252737, -0.050082918256521225, 0.07001674920320511, -0.013099154457449913, -0.2864852845668793, -0.1130635067820549, 0.09462372213602066, 0.03455105423927307, 0.07285736501216888, 0.06066368147730827, 0.18015336990356445, -0.10622148960828781, 0.05764427036046982, 0.1593066304922104, -0.338113009929657, 0.013103331439197063, 0.04152385890483856, 0.06954406201839447, -0.04399095103144646, -0.008411864750087261, 0.033205535262823105, 0.03360004723072052, 0.008635924197733402, 0.00914720818400383, -0.030330326408147812, 0.06735161691904068, -0.002898658625781536, -0.06020362675189972, -0.0750313401222229, 0.19215209782123566, 0.019794853404164314, 0.012158707715570927, -0.017327772453427315, -0.10245966166257858, -0.01072599645704031, -0.014907087199389935, 0.07504625618457794, 0.014800702221691608, 0.09403730183839798, 0.07094468176364899, -0.06884239614009857, -0.13338837027549744, 0.00367302936501801, -0.22550742328166962, 0.1587628722190857, 0.05200697481632233, 0.10316881537437439, -0.14065387845039368, 0.045458219945430756, 0.051160357892513275, -0.15478308498859406, -0.045080844312906265, -0.06762859970331192, 0.07402318716049194, 0.06839194148778915, -0.035011596977710724, 0.06425494700670242, 0.19249580800533295, 0.2636933922767639, 0.08920754492282867, 0.02311246283352375, -0.004951088689267635, 0.10003769397735596, -0.038353510200977325, 0.030373413115739822, -0.005903321783989668, -0.08336523920297623, 0.1601029485464096, -0.11343101412057877, 0.11673858761787415, -0.045501988381147385, -0.12828058004379272, -0.05524847283959389, 0.013679339550435543, 0.1052510067820549, 0.08333896845579147, 0.016527751460671425, -0.042493436485528946, 0.035916782915592194, 0.15868112444877625, -0.04742594063282013, -0.02353285811841488, 0.010489623993635178, 0.030388839542865753, 0.060026392340660095, 0.04422398656606674, 0.003768953261896968, 0.004278641659766436, 0.0414837971329689, -0.04671522229909897, -0.05074102059006691, 0.008686073124408722, 0.018942007794976234, 0.06255218386650085, -0.11573993414640427, 0.058560289442539215, -0.16089926660060883, -0.15629567205905914, 0.06077433377504349, 0.03856422379612923, 0.023479808121919632, -0.09394463896751404, 0.08573757857084274, -0.02859322540462017, 0.022857794538140297, -0.05757252871990204, 0.06672654300928116, -0.07755668461322784, 0.08328426629304886, -0.03766540810465813, 0.0556657537817955, -0.20130179822444916, 0.030304424464702606, -0.09976957738399506, 0.010619312524795532, 0.03346443548798561, -0.050266001373529434, -0.08371195197105408, 0.14303770661354065, -0.03591015189886093, -0.05404040962457657, -0.03617206588387489, -0.007157353218644857, -0.019439591094851494, 0.08293182402849197, -0.09964116662740707, -0.059688713401556015, 0.20185765624046326, -0.11407704651355743, -0.18359334766864777, 0.07685192674398422, 0.028443969786167145, -0.013460556045174599, 0.03579931706190109, 0.08146890997886658, 0.07927313446998596, -0.089129738509655, 0.07037107646465302, 0.14938393235206604, -0.1475343406200409, -0.19231145083904266, 0.0750875174999237, -0.029399050399661064, -0.12223725020885468, 0.054182156920433044, -0.0196689460426569, 0.14527761936187744, 0.013197689317166805, -0.0857938826084137, -0.057268816977739334, -0.09960246086120605, 0.029881833121180534, -0.006420416757464409, 0.0661017969250679, -0.07561857998371124, -0.009750014171004295, -0.12056411057710648, 0.08047955483198166, 0.08828048408031464, 0.04858263581991196, -0.08694645017385483, 0.12148828059434891, 0.023223010823130608, 0.02662704512476921, -0.09445410221815109, 0.01198620442301035, -0.022532321512699127, -0.050477586686611176, 0.0032307791989296675, 0.12410325556993484, 0.06307166814804077, -0.043038930743932724, 0.027824027463793755, -0.02517211064696312, 0.08944928646087646, 0.06456436216831207, 0.0035519436933100224, -0.12559153139591217, 0.014329000376164913, -0.024696139618754387, 0.07538396865129471, 0.04216454550623894, 0.021036338061094284, 0.06720494478940964, 0.08090949803590775, -0.06457589566707611, 0.08288607001304626, -0.02971896156668663, -0.06349818408489227, -0.0432981476187706, 0.00033069460187107325, 0.09973589330911636, 0.07691362500190735, -0.11350984126329422, 0.14743025600910187, -0.06411907076835632, 0.2636130452156067, 0.189500629901886, -0.07879861444234848, 0.0850340947508812, 0.09524430334568024, -0.037797242403030396, -0.05391448736190796, 0.05729611590504646, 0.006002375856041908, 0.005028955172747374, 0.01951323077082634, 0.14127404987812042, -0.06003228574991226, -0.0338069424033165, 0.014901706948876381, -0.0681135505437851, 0.02774019166827202, 0.028725339099764824, 0.11338253319263458, -0.19038526713848114, 0.17318838834762573, 0.2847096621990204, -0.009405774995684624, 0.13603992760181427, -0.07460291683673859, 0.03281320258975029, 0.02113455906510353, -0.011681471951305866, -0.03396962210536003, 0.09656686335802078, -0.14654748141765594, 0.03240344673395157, 0.09526852518320084, -0.019697032868862152, 0.05288444459438324, -0.13609547913074493, -0.039171405136585236, 0.03412880748510361, 0.0013273472432047129, -0.021929578855633736, 0.1207314282655716, -0.019839860498905182, 0.06285025924444199, -0.03506884723901749, -0.13271525502204895, 0.11202332377433777, -0.010298667475581169, -0.044746045023202896, 0.10421933233737946, -0.1536462903022766, -0.27183160185813904, -0.12209291011095047, -0.11644743382930756, -0.07631713896989822, -0.02783268503844738, 0.11534469574689865, -0.009143287315964699, -0.024803459644317627, 0.052587494254112244, -0.09213694930076599, 0.02313099056482315, 0.045112792402505875, -0.04105101525783539, 0.02286144159734249, -0.002021696185693145, -0.14359724521636963, -0.06723824888467789, -0.0012629869161173701, -0.07291009277105331, 0.08258092403411865, -0.050774142146110535, 0.0645308792591095, 0.0691329762339592, 0.04353497549891472, 0.03723105415701866, -0.0038168306928128004, 0.1172412633895874, -0.04335349053144455, 0.05040011927485466, 0.2661100924015045, 0.010848209261894226, 0.10720416158437729, 0.11998102068901062, 0.01713908091187477, -0.03421526774764061, -0.016958115622401237, -0.06842733174562454, -0.1309465765953064, -0.16634178161621094, -0.11521737277507782, -0.13871224224567413, -0.007647385820746422, 0.019252393394708633, 0.09227967262268066, 0.16396546363830566, 0.08786046504974365, -0.02962334267795086, -0.01954793930053711, -0.05163232982158661, 0.02950582094490528, 0.1350642293691635, 0.0004065890680067241, 0.09752555936574936, -0.12900410592556, -0.05926472693681717, 0.12050716578960419, 0.05677047744393349, 0.07196369767189026, 0.0998840183019638, 0.04916321486234665, 0.08641492575407028, 0.25060364603996277, 0.08292143791913986, 0.15427185595035553, -0.0004778395523317158, -0.04331551119685173, -0.044449906796216965, -0.028740020468831062, -0.04812151938676834, 0.03744193911552429, 0.07646795362234116, -0.07147035002708435, 0.007170629221946001, -0.09256736189126968, 0.0353962667286396, 0.20132337510585785, 0.015200396999716759, -0.09687374532222748, 0.045304395258426666, 0.05537788197398186, 0.0013539885403588414, -0.02606230601668358, 0.04327147826552391, -0.0782635360956192, -0.13229605555534363, 0.14554284512996674, -0.007155146915465593, 0.08545846492052078, 0.07044003903865814, 0.053013380616903305, -0.07347118109464645, -0.052100617438554764, 0.08029090613126755, 0.13371123373508453, -0.2423352301120758, 0.1478722244501114, -0.04266480356454849, -0.028983931988477707, -0.15021537244319916, 0.0019496040185913444, 0.10906095802783966, 0.11993829905986786, 0.10105668753385544, 0.0463971346616745, -0.07627592980861664, 0.01115572452545166, -0.061643581837415695, 0.05393749475479126, -0.02260553650557995, -0.02479400485754013, -0.06986584514379501, -0.05590207129716873, -0.03449402377009392, -0.008211805485188961, 0.1324969232082367, -0.01120657380670309, -0.125088170170784, 0.053354695439338684, 0.07210120558738708, -0.03723572567105293, -0.09572673588991165, -0.02602021023631096, -0.1044006273150444, 0.15857012569904327, -0.12080167979001999, -0.08684920519590378, -0.06818085163831711, -0.12626874446868896, 0.05497131124138832, -0.08003831654787064, 0.09843970090150833, -0.08160444349050522, -0.007179802283644676, -0.11303002387285233, -0.18710194528102875, 0.09337907284498215, -0.13346508145332336, -0.06971371173858643, -0.01841186173260212, 0.15747077763080597, -0.09334807842969894, 0.05719457566738129, 0.03428035229444504, -0.024611495435237885, -0.1192203238606453, -0.11290549486875534, -0.021688666194677353, -0.04494312033057213, 0.030431628227233887, -0.003967714961618185, 0.014182194136083126, -0.07139591872692108, 0.054660432040691376, -0.038730438798666, 0.264434814453125, 0.2511565387248993, -0.08083712309598923, 0.18813055753707886, 0.16138681769371033, -0.0270818043500185, -0.31871578097343445, -0.2256840169429779, -0.16243116557598114, -0.035873834043741226, -0.027574410662055016, -0.11036307364702225, 0.13717339932918549, 0.07295764237642288, -0.10439348220825195, 0.1748495101928711, -0.1897152215242386, -0.08510614186525345, 0.21143177151679993, -0.026149369776248932, 0.3844970166683197, -0.10712088644504547, -0.04930194839835167, -0.0921960324048996, -0.0826483890414238, 0.08510036021471024, -0.08378420770168304, 0.0960230752825737, -0.027649708092212677, -0.029010049998760223, -0.02742856554687023, -0.06765042245388031, 0.13190589845180511, -0.04850482568144798, 0.003521289909258485, -0.10752547532320023, 0.028140120208263397, 0.14040642976760864, -0.016202710568904877, 0.03356293961405754, -0.1984272599220276, 0.010799543000757694, -0.0401463583111763, 0.01464161742478609, -0.11735495924949646, 0.13908687233924866, 0.01741388626396656, -0.03966999053955078, -0.06853743642568588, -0.029814990237355232, 0.04283604398369789, 0.00113991042599082, 0.19518321752548218, 0.059701304882764816, -0.011673188768327236, 0.08530782908201218, 0.0089799202978611, -0.19553586840629578, -0.105952687561512, -0.13124214112758636, -0.05718817189335823, 0.054198481142520905, -0.055955298244953156, 0.048990197479724884, 0.0705563873052597, 0.00987432524561882, 0.0024309938307851553, 0.07746627926826477, -0.041494306176900864, -0.03239753469824791, 0.13357380032539368, -0.12013788521289825, -0.0231633298099041, -0.016782162711024284, 0.11848030984401703, 0.08528603613376617, 0.04519309103488922, 0.07768417149782181, 0.0388399176299572, -0.03476962074637413, 0.0050958991050720215, 0.02834702469408512, -0.1162419468164444, 0.049942437559366226, 0.07875750958919525, 0.05488179251551628, -0.1531732976436615, 0.03741983324289322, -0.05929426848888397, -0.040646158158779144, -0.009990962222218513, 0.07922303676605225, -0.1217418760061264, -0.1131376102566719, 0.07771424204111099, 0.043573733419179916, -0.07462111115455627, -0.09663959592580795, -0.04764173552393913, -0.14726193249225616, 0.031249288469552994, 0.14344264566898346, 0.1392740160226822, 0.04606876149773598, -0.002519905799999833, -0.07842246443033218, 0.027907930314540863, -0.02429371140897274, -0.06644512712955475, 0.029419362545013428, -0.09767789393663406, -0.07810918986797333, 0.03577291965484619, 0.15322168171405792, -0.06683717668056488, -0.012233542278409004, -0.08317137509584427, 0.023086827248334885, -0.15994182229042053, 0.0024166686926037073, -0.10589440166950226, -0.025555841624736786, 0.014896034263074398, -0.07272268086671829, -0.027093641459941864, 0.03857860341668129, -0.12001880258321762, -0.02165246196091175, -0.003122800262644887, 0.022500906139612198, -0.07544860243797302, -0.04012662172317505, 0.10005489736795425, -0.04313337430357933, 0.08236879855394363, 0.08579514920711517, -0.05210872367024422, 0.07989895343780518, -0.07012822479009628, -0.15096475183963776, 0.06538800150156021, 0.05535433813929558, 0.026705970987677574, -0.011445187963545322, 0.013445197604596615, 0.0915319100022316, -0.014547327533364296, 0.011738204397261143, 0.022907575592398643, -0.12542672455310822, -0.0010721179423853755, -0.03993617743253708, -0.07039663195610046, 0.02648274041712284, -0.1461188942193985, 0.09932240843772888, 0.0487116202712059, 0.1960870623588562, 0.021646656095981598, 0.046880777925252914, -0.051382556557655334, 0.01416282169520855, -0.07503284513950348, -0.18124262988567352, -0.03201998770236969, -0.04434151202440262, -0.04968841373920441, 0.0023641164880245924, 0.22538639605045319, -0.045935336500406265, -0.08417101949453354, 0.03153229504823685, 0.17639419436454773, 0.052565231919288635, -0.0028011281974613667, 0.29189708828926086, 0.02657695859670639, 0.012987075373530388, -0.017952101305127144, 0.03018566034734249, 0.021231692284345627, -0.07549048960208893, 0.11707952618598938, 0.07059185951948166, 0.12850812077522278, 0.07157553732395172, 0.07699468731880188, 0.015080287121236324, -0.1410370022058487, -0.19539816677570343, 0.018905790522694588, 0.03797164931893349, 0.04120836406946182, 0.06972183287143707, 0.14947094023227692, -0.04192971810698509, 0.014090726152062416, 0.01623181812465191, 0.011553867720067501, -0.15846270322799683, -0.1925390064716339, -0.0665602758526802, -0.04380977898836136, 0.00837146770209074, 0.023650160059332848, -0.049271050840616226, 0.13920694589614868, 0.053536657243967056, -0.037148475646972656, 0.02643045037984848, -0.07026474922895432, -0.04594526067376137, 0.007457142695784569, -0.018464958295226097, -0.07844983041286469, 0.04680496081709862, -0.048228319734334946, -0.09095974266529083, -0.034081511199474335, -0.01894022710621357, 0.023393504321575165, -0.03352418541908264, 0.06501482427120209, -0.088222935795784, -0.08135289698839188, -0.07478522509336472, -0.010214269161224365, 0.02311159111559391, 0.15070371329784393, 0.022496048361063004, 0.034333135932683945, 0.05787627026438713, 0.05733057111501694, -0.030126772820949554, -0.22504767775535583, -0.025677133351564407, 0.12222763895988464, 0.013420749455690384, 0.022791462019085884, 0.03155023232102394, 0.04584178701043129, -0.03377633914351463, 0.3052108585834503, 0.29627320170402527, -0.03928586095571518, 0.08298628777265549, -0.009702267125248909, 0.017226533964276314, 0.008646626025438309, 0.09424205124378204, 0.10218735039234161, 0.22336867451667786, -0.0786321610212326, 0.0021787674631923437, -0.07686010748147964, -0.04741412028670311, -0.1883021742105484, 0.029256539419293404, -0.008963724598288536, -0.08674933016300201, 0.008242453448474407, 0.05303920805454254, -0.1182662770152092, 0.1010163202881813, 0.035296160727739334, -0.06670844554901123, -0.06489279121160507, 0.017389951273798943, 0.1634008139371872, 0.06929953396320343, 0.022583816200494766, -0.03507251292467117, -0.024511881172657013, 0.031210266053676605, -0.0018052401719614863, -0.23004832863807678, -0.06670606881380081, 0.11080792546272278, -0.032433152198791504, 0.17548274993896484, -0.01742883026599884, 0.03645622730255127, 0.10483643412590027, 0.08287201821804047, -0.09977993369102478, 0.08710435777902603, 0.00424271309748292, -0.07722719013690948, -0.019597720354795456, -0.09035992622375488, -0.022656790912151337, -0.13335773348808289, 0.015977095812559128, -0.07298114895820618, 0.01670694723725319, 0.03213875740766525, -0.004368039779365063, -0.020467422902584076, 0.0929664671421051, -0.07657081633806229, 0.07754392921924591, -0.02423287369310856, -0.03044648841023445, -0.06591290980577469, -0.0655817911028862, -0.02224024198949337, 0.05274199694395065, -0.14394894242286682, -0.11840959638357162, -0.02127682790160179, -0.029900606721639633, -0.0319901667535305, 0.01466571819037199, -0.014888705685734749, -0.07066536694765091, -0.1274591088294983, -0.020368821918964386, -0.1364801526069641, -0.00214627617970109, 0.0638670027256012, -0.006477235816419125, 0.029360167682170868, -0.05648382753133774, -0.02207096293568611, -0.006141236051917076, -0.14542707800865173, -0.1095605343580246 ]
null
null
transformers
```python import jieba_fast from transformers import BertTokenizer from transformers import BigBirdModel class JiebaTokenizer(BertTokenizer): def __init__( self, pre_tokenizer=lambda x: jieba_fast.cut(x, HMM=False), *args, **kwargs ): super().__init__(*args, **kwargs) self.pre_tokenizer = pre_tokenizer def _tokenize(self, text, *arg, **kwargs): split_tokens = [] for text in self.pre_tokenizer(text): if text in self.vocab: split_tokens.append(text) else: split_tokens.extend(super()._tokenize(text)) return split_tokens model = BigBirdModel.from_pretrained('Lowin/chinese-bigbird-small-1024') tokenizer = JiebaTokenizer.from_pretrained('Lowin/chinese-bigbird-small-1024') ``` https://github.com/LowinLi/chinese-bigbird
{"language": ["zh"], "license": ["apache-2.0"]}
feature-extraction
Lowin/chinese-bigbird-small-1024
[ "transformers", "pytorch", "big_bird", "feature-extraction", "zh", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us
URL
[]
[ "TAGS\n#transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ 41 ]
[ "passage: TAGS\n#transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ -0.07853714376688004, -0.011760507710278034, -0.005561706610023975, 0.008434571325778961, 0.01863262988626957, -0.002673937240615487, 0.007878138683736324, 0.11439604312181473, -0.011221831664443016, -0.04847133532166481, 0.09199326485395432, 0.2077462524175644, 0.044363077729940414, -0.021365750581026077, -0.008372905664145947, -0.197848379611969, 0.09217435866594315, 0.07981424778699875, -0.08528066426515579, 0.06370185315608978, 0.09813577681779861, -0.0260403361171484, 0.03113781288266182, 0.06496848165988922, 0.00007356802962021902, -0.008364561945199966, -0.013403594493865967, -0.04192965850234032, 0.10018374025821686, 0.017445553094148636, -0.00120175676420331, 0.05368107557296753, -0.06327793002128601, -0.1767808347940445, 0.02171720750629902, -0.009321412071585655, -0.06141749396920204, 0.010727783665060997, 0.05279874801635742, -0.015151849016547203, 0.1081492230296135, 0.008642181754112244, -0.07863739132881165, 0.06604970991611481, 0.009753295220434666, -0.3512875437736511, -0.151314839720726, 0.14488773047924042, -0.007370716892182827, 0.07818637043237686, 0.06730518490076065, 0.13544772565364838, -0.13212791085243225, 0.03680724650621414, 0.207405686378479, -0.3375568687915802, 0.027938101440668106, 0.04077751934528351, 0.1202937439084053, -0.005095941014587879, -0.006439979653805494, 0.02258950099349022, 0.01792125217616558, 0.016614994034171104, -0.011000028811395168, -0.034031882882118225, 0.10089435428380966, 0.031233618035912514, -0.06751956045627594, -0.08140850812196732, 0.2254573553800583, 0.052988920360803604, 0.022716766223311424, -0.03214079141616821, -0.08005983382463455, -0.006858066190034151, -0.027660829946398735, 0.08021508902311325, 0.029034428298473358, 0.11158657819032669, 0.09602248668670654, -0.08615459501743317, -0.12516553699970245, -0.010188370011746883, -0.18666870892047882, 0.11756478250026703, 0.05161762237548828, 0.11559471487998962, -0.13465887308120728, 0.049666162580251694, 0.0368843711912632, -0.1352982223033905, -0.08295295387506485, -0.07513817399740219, 0.11520666629076004, 0.09705489128828049, -0.031092066317796707, 0.13796299695968628, 0.20644539594650269, 0.23569133877754211, 0.04645939916372299, -0.0007782698376104236, -0.004143059253692627, 0.11192122846841812, -0.034215595573186874, 0.03428998962044716, -0.03152588754892349, -0.0872529000043869, 0.16219304502010345, -0.11302051693201065, 0.08566316217184067, -0.034469276666641235, -0.10997054725885391, -0.06573213636875153, 0.03867608308792114, 0.10056816041469574, 0.1003226488828659, -0.01468025054782629, -0.026858123019337654, 0.018944157287478447, 0.14868363738059998, -0.02564632147550583, -0.027492163702845573, 0.027035946026444435, 0.014975710771977901, 0.11786504089832306, 0.020693304017186165, 0.00430021109059453, -0.0069279540330171585, 0.00015923612227197737, -0.04018823802471161, -0.03213274106383324, 0.021100163459777832, 0.04582658410072327, 0.07548795640468597, -0.12826459109783173, 0.07889245450496674, -0.12598112225532532, -0.13847044110298157, 0.04458992928266525, 0.02906467206776142, 0.030840164050459862, -0.07808056473731995, 0.07991622388362885, -0.049854591488838196, 0.011352131143212318, -0.07057293504476547, 0.050590578466653824, -0.09844774752855301, 0.08501797914505005, -0.056517284363508224, 0.004663020838052034, -0.222148135304451, 0.05185152217745781, -0.10113479942083359, 0.025749150663614273, 0.06353627145290375, -0.01706121303141117, -0.0827028900384903, 0.142625093460083, -0.04304221644997597, -0.08220981061458588, -0.02975396253168583, -0.014334860257804394, -0.03774889186024666, 0.05004663020372391, -0.0916031077504158, -0.0447077713906765, 0.1928916722536087, -0.11344558745622635, -0.2291877269744873, 0.06146601587533951, 0.029164955019950867, -0.026213867589831352, 0.04495345056056976, 0.14027641713619232, 0.11232955753803253, -0.010187898762524128, 0.03146715834736824, 0.17286038398742676, -0.13744576275348663, -0.2129410207271576, 0.08572300523519516, -0.04547964036464691, -0.05441754311323166, 0.049310408532619476, -0.07958950102329254, 0.1346590518951416, 0.019112620502710342, -0.06924057751893997, -0.0719011127948761, -0.08326708525419235, -0.022838661447167397, 0.0002761274517979473, 0.04816392436623573, -0.04871347174048424, 0.010072990320622921, -0.07821817696094513, 0.08581407368183136, 0.050605688244104385, 0.06779458373785019, -0.07523654401302338, 0.1584307849407196, 0.02803759090602398, 0.032316889613866806, -0.13008780777454376, 0.07306381314992905, -0.014600791037082672, -0.05274808779358864, -0.0008620070293545723, 0.1500072032213211, 0.03968992829322815, -0.07513976842164993, 0.04766353592276573, -0.027870530262589455, 0.05064000189304352, 0.061367396265268326, 0.022051101550459862, -0.10895874351263046, -0.006797854322940111, -0.0029745101928710938, 0.03295017406344414, 0.042962703853845596, 0.011919140815734863, 0.13963085412979126, 0.04564962908625603, -0.0739155262708664, 0.08610577881336212, -0.03407721593976021, -0.06405910104513168, -0.04887842759490013, 0.004359628073871136, 0.0981169193983078, 0.0750592052936554, -0.13042205572128296, 0.144540935754776, -0.010358218103647232, 0.2518581449985504, 0.1915612518787384, -0.07004357129335403, 0.147597998380661, 0.058775145560503006, -0.03068442828953266, -0.028751950711011887, 0.08380313962697983, -0.004053129814565182, 0.03711950406432152, 0.0419347770512104, 0.12046793103218079, -0.07414210587739944, -0.04907234013080597, 0.005490401294082403, -0.03991995379328728, 0.055205706506967545, 0.04356832057237625, 0.0883539617061615, -0.20732030272483826, 0.16078674793243408, 0.28330424427986145, 0.014868049882352352, 0.11189934611320496, -0.13647624850273132, 0.02179889753460884, 0.03322529047727585, 0.017697079107165337, -0.052320972084999084, 0.10556551814079285, -0.20599649846553802, 0.031408198177814484, 0.10443662852048874, 0.018314821645617485, 0.07268830388784409, -0.131657212972641, -0.03256332129240036, 0.04672707989811897, -0.026572955772280693, -0.025868913158774376, 0.08170303702354431, -0.00943911075592041, 0.05161886662244797, -0.024508612230420113, -0.10410767793655396, 0.10507483780384064, -0.007248776499181986, -0.047780562192201614, 0.1049642562866211, -0.13320103287696838, -0.18044796586036682, -0.10013619810342789, -0.0665789321064949, -0.10198389738798141, -0.06081510707736015, 0.13027366995811462, 0.023467564955353737, 0.001987339463084936, 0.037436433136463165, -0.07533811777830124, -0.03222741559147835, 0.017284845933318138, -0.03832543268799782, 0.0357084758579731, -0.03384081646800041, -0.16701427102088928, -0.06699077039957047, -0.021901890635490417, -0.069259874522686, 0.04219766706228256, -0.05886460468173027, 0.07788445800542831, 0.05586828291416168, 0.06667708605527878, 0.04256116598844528, -0.004957704339176416, 0.1013154461979866, -0.0176706425845623, 0.010092400014400482, 0.30910295248031616, 0.02664807066321373, 0.10244640707969666, 0.0457761324942112, 0.03486835956573486, -0.02836810238659382, -0.05407078564167023, -0.07017777860164642, -0.11767429858446121, -0.17788246273994446, -0.1073896512389183, -0.1458457112312317, 0.007254892028868198, -0.018151434138417244, 0.09149278700351715, 0.1296839863061905, 0.08502987772226334, -0.04213765263557434, -0.03845834359526634, -0.02475983090698719, 0.0162957776337862, 0.15912772715091705, 0.0006431334768421948, 0.0637766420841217, -0.15005846321582794, -0.02030215784907341, 0.14431849122047424, 0.06956489384174347, 0.1507459282875061, 0.08279316872358322, 0.08805251866579056, 0.11744489520788193, 0.28472891449928284, 0.05996960401535034, 0.15542545914649963, -0.046767160296440125, -0.013136743567883968, -0.04486609995365143, -0.02820994332432747, -0.055604901164770126, 0.03494760021567345, 0.0852162167429924, -0.07551588118076324, -0.004269612953066826, -0.13319528102874756, 0.06301084160804749, 0.20307223498821259, -0.02791101485490799, -0.055100828409194946, 0.039526212960481644, 0.05423218011856079, 0.009747657924890518, -0.021063143387436867, 0.06730837374925613, -0.0782710611820221, -0.13131986558437347, 0.1384008675813675, -0.0036689364351332188, 0.09873183816671371, 0.02206644043326378, 0.03157293424010277, -0.07694093137979507, -0.10031208395957947, 0.10828537493944168, 0.14493094384670258, -0.1842944324016571, 0.1081775426864624, -0.056367043405771255, -0.03095286712050438, -0.13666070997714996, 0.0014526228187605739, 0.09760002791881561, 0.1416057050228119, 0.10812655836343765, 0.03549738600850105, -0.06904376298189163, 0.034587178379297256, -0.04204632714390755, 0.05583170801401138, -0.01633813977241516, -0.05355048552155495, -0.06614663451910019, -0.06227961182594299, -0.001858551986515522, -0.027158202603459358, 0.11953587830066681, 0.043526846915483475, -0.12281595915555954, 0.023253796622157097, 0.01790892891585827, -0.01528702862560749, -0.1127483919262886, 0.017597895115613937, -0.055091165006160736, 0.11969044059515, -0.17464232444763184, -0.10267944633960724, -0.06103331595659256, -0.14011730253696442, 0.07088126987218857, -0.057256486266851425, 0.08935032784938812, -0.06179775670170784, -0.028038689866662025, -0.1023968830704689, -0.20076370239257812, 0.06683262437582016, -0.12372232228517532, -0.05113564431667328, 0.0238275695592165, 0.18348482251167297, -0.09006451815366745, 0.03691742941737175, 0.06042631343007088, -0.0474502258002758, -0.14349257946014404, -0.1558128297328949, -0.06009073927998543, -0.0021560045424848795, 0.019995182752609253, -0.012945152819156647, 0.026817766949534416, -0.03316536173224449, 0.04693363606929779, -0.02545190043747425, 0.2654415965080261, 0.19819504022598267, -0.08613207191228867, 0.16342304646968842, 0.14250551164150238, -0.026027319952845573, -0.2670116722583771, -0.2218843400478363, -0.16499367356300354, -0.07532248646020889, -0.03211057558655739, -0.09344638139009476, 0.1731702834367752, 0.11540606617927551, -0.09379009902477264, 0.17304471135139465, -0.2582123279571533, -0.05968531593680382, 0.13683554530143738, -0.031067337840795517, 0.3295730948448181, -0.11766287684440613, -0.06116855517029762, -0.06646756827831268, -0.15953443944454193, 0.11254554241895676, -0.08657206594944, 0.08162649720907211, -0.036387696862220764, -0.06454045325517654, -0.03122909925878048, -0.046322133392095566, 0.13098828494548798, -0.012906721793115139, 0.02463400363922119, -0.08163949102163315, 0.02972337417304516, 0.1574740707874298, -0.026172537356615067, 0.046397801488637924, -0.20058809220790863, 0.025253504514694214, -0.11306332796812057, 0.012544017285108566, -0.12639707326889038, 0.12688037753105164, 0.018278751522302628, -0.023019520565867424, -0.11209194362163544, -0.046786002814769745, 0.050144243985414505, 0.02301464043557644, 0.22874833643436432, 0.06073719263076782, -0.08017003536224365, 0.04156113043427467, 0.021991947665810585, -0.22951702773571014, -0.1946985274553299, -0.15839923918247223, -0.029001763090491295, 0.041804179549217224, -0.09841850399971008, 0.04136870801448822, 0.08892430365085602, 0.018827736377716064, -0.032809317111968994, 0.08406516909599304, -0.053066495805978775, -0.008013288490474224, 0.10863633453845978, -0.07664673775434494, -0.09431696683168411, -0.031872864812612534, 0.0930958017706871, 0.09764795005321503, 0.06469828635454178, 0.06895557790994644, 0.04783111810684204, -0.028123879805207253, -0.006784878205507994, 0.01205851323902607, -0.14199699461460114, 0.023220086470246315, 0.06480972468852997, 0.042478047311306, -0.1648091971874237, 0.053338877856731415, -0.05983686447143555, -0.05042620748281479, -0.037871237844228745, 0.06609658151865005, -0.12197479605674744, -0.10884713381528854, 0.03758212551474571, 0.04030384495854378, -0.1292884200811386, -0.09787864983081818, -0.02461828663945198, -0.16285023093223572, 0.03251945599913597, 0.11148370057344437, 0.13439945876598358, 0.06386787444353104, -0.006669832393527031, -0.07406770437955856, 0.037001367658376694, -0.04978068545460701, -0.08615729212760925, 0.022196359932422638, -0.11226198077201843, -0.13091586530208588, 0.044524241238832474, 0.14680804312229156, -0.04001457616686821, -0.005650992505252361, -0.04787454754114151, 0.036040931940078735, -0.16946958005428314, 0.014376352541148663, -0.14025777578353882, -0.008970764465630054, 0.005377544090151787, -0.06609872728586197, -0.017864985391497612, 0.06526362895965576, -0.11849901080131531, -0.03652432933449745, -0.024933913722634315, 0.043954648077487946, -0.08958979696035385, -0.03312551602721214, 0.08843273669481277, -0.058316294103860855, 0.10025704652070999, 0.11309098452329636, -0.04740382358431816, 0.09121061861515045, -0.053670868277549744, -0.1715625822544098, 0.0648738443851471, 0.07033833861351013, 0.009050601162016392, -0.0031007679644972086, 0.021775485947728157, 0.10076060891151428, -0.05361533164978027, -0.0020064685959368944, -0.05810645595192909, -0.14435389637947083, -0.07992123812437057, -0.06313639879226685, -0.030359633266925812, 0.03110671229660511, -0.13206630945205688, 0.15582489967346191, 0.07874567061662674, 0.1870017945766449, 0.07274208962917328, 0.04473414272069931, -0.05960365757346153, 0.002283806446939707, -0.05913422256708145, -0.20203672349452972, -0.02028467133641243, -0.05830204859375954, -0.056507524102926254, 0.0011082107666879892, 0.2437610775232315, -0.040611859411001205, -0.10146183520555496, 0.012254671193659306, 0.16922293603420258, 0.08606178313493729, 0.0024755054619163275, 0.37903285026550293, 0.03439445421099663, 0.021415937691926956, -0.021823715418577194, 0.03248238563537598, 0.013619997538626194, -0.05675284191966057, 0.09263046085834503, 0.12186376005411148, 0.11715397238731384, 0.06452242285013199, 0.12035171687602997, 0.024958139285445213, -0.15397219359874725, -0.2037971466779709, 0.0759066715836525, 0.03838416561484337, 0.034288909286260605, 0.12387073040008545, 0.14735670387744904, -0.06801613420248032, 0.03375982120633125, 0.044492486864328384, 0.019194230437278748, -0.1074485257267952, -0.1468193680047989, -0.046345774084329605, -0.08365799486637115, -0.006958609912544489, -0.0166823361068964, -0.041770897805690765, 0.18520686030387878, 0.04636373370885849, -0.04224066063761711, -0.004378550220280886, -0.04735403507947922, -0.07580965012311935, 0.039910655468702316, -0.02339193783700466, -0.10876396298408508, 0.05477551370859146, -0.03513897955417633, -0.04610176011919975, -0.09073232859373093, -0.013223406858742237, 0.04698534682393074, -0.04553049057722092, 0.060002781450748444, -0.09656813740730286, -0.06425318121910095, -0.053702909499406815, -0.007266392931342125, 0.02254822477698326, 0.1744014471769333, 0.029818037524819374, -0.009401554241776466, 0.06423775106668472, 0.08914192020893097, -0.0197761207818985, -0.18625254929065704, 0.010077006183564663, 0.10435206443071365, 0.04418102279305458, 0.016081683337688446, 0.05528179928660393, 0.03811554238200188, 0.019848832860589027, 0.2716801166534424, 0.22626444697380066, -0.028173912316560745, 0.05694061890244484, 0.0013665047008544207, 0.014182517305016518, 0.0031268743332475424, 0.07314553111791611, 0.12536343932151794, 0.2469131499528885, -0.06744170933961868, 0.030615154653787613, -0.08232442289590836, -0.022943081334233284, -0.17974638938903809, 0.05051209032535553, 0.012175760231912136, -0.11223208159208298, 0.012486825697124004, 0.07902192324399948, -0.11119195818901062, 0.09602867811918259, 0.06058382987976074, -0.04735443741083145, -0.048986174166202545, -0.018059151247143745, 0.16094373166561127, 0.06539168208837509, 0.015345422551035881, -0.03208877891302109, -0.03819728270173073, 0.03196076676249504, 0.0062804995104670525, -0.2752905488014221, -0.05473748967051506, 0.11343082785606384, -0.00849614292383194, 0.14427559077739716, -0.02461286634206772, 0.013080318458378315, 0.09985864162445068, 0.09511224180459976, -0.11349332332611084, 0.09207534790039062, 0.00509108230471611, -0.06569921970367432, -0.033168572932481766, -0.11016196012496948, -0.019409263506531715, -0.12965691089630127, 0.025101635605096817, -0.07185696810483932, 0.016675103455781937, 0.09727317094802856, -0.004580643493682146, -0.03697717562317848, 0.03202081844210625, -0.07734739780426025, 0.06541921943426132, -0.053543709218502045, -0.05028456076979637, -0.06839923560619354, -0.07285995781421661, -0.011408364400267601, 0.0580691434442997, -0.11768031865358353, -0.10318171977996826, 0.008360148407518864, -0.03656015172600746, 0.002757738810032606, -0.004136696923524141, 0.045320671051740646, -0.0712863951921463, -0.07173115760087967, -0.0050927214324474335, -0.1128564178943634, -0.009241952560842037, 0.055047258734703064, -0.02417396754026413, 0.035006679594516754, -0.0427478663623333, -0.033724140375852585, 0.000034041535400319844, -0.10996674746274948, -0.09742242842912674 ]
null
null
transformers
```python import jieba_fast from transformers import BertTokenizer from transformers import BigBirdModel class JiebaTokenizer(BertTokenizer): def __init__( self, pre_tokenizer=lambda x: jieba_fast.cut(x, HMM=False), *args, **kwargs ): super().__init__(*args, **kwargs) self.pre_tokenizer = pre_tokenizer def _tokenize(self, text, *arg, **kwargs): split_tokens = [] for text in self.pre_tokenizer(text): if text in self.vocab: split_tokens.append(text) else: split_tokens.extend(super()._tokenize(text)) return split_tokens model = BigBirdModel.from_pretrained('Lowin/chinese-bigbird-tiny-1024') tokenizer = JiebaTokenizer.from_pretrained('Lowin/chinese-bigbird-tiny-1024') ``` https://github.com/LowinLi/chinese-bigbird
{"language": ["zh"], "license": ["apache-2.0"]}
feature-extraction
Lowin/chinese-bigbird-tiny-1024
[ "transformers", "pytorch", "big_bird", "feature-extraction", "zh", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us
URL
[]
[ "TAGS\n#transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ 41 ]
[ "passage: TAGS\n#transformers #pytorch #big_bird #feature-extraction #zh #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ -0.07853714376688004, -0.011760507710278034, -0.005561706610023975, 0.008434571325778961, 0.01863262988626957, -0.002673937240615487, 0.007878138683736324, 0.11439604312181473, -0.011221831664443016, -0.04847133532166481, 0.09199326485395432, 0.2077462524175644, 0.044363077729940414, -0.021365750581026077, -0.008372905664145947, -0.197848379611969, 0.09217435866594315, 0.07981424778699875, -0.08528066426515579, 0.06370185315608978, 0.09813577681779861, -0.0260403361171484, 0.03113781288266182, 0.06496848165988922, 0.00007356802962021902, -0.008364561945199966, -0.013403594493865967, -0.04192965850234032, 0.10018374025821686, 0.017445553094148636, -0.00120175676420331, 0.05368107557296753, -0.06327793002128601, -0.1767808347940445, 0.02171720750629902, -0.009321412071585655, -0.06141749396920204, 0.010727783665060997, 0.05279874801635742, -0.015151849016547203, 0.1081492230296135, 0.008642181754112244, -0.07863739132881165, 0.06604970991611481, 0.009753295220434666, -0.3512875437736511, -0.151314839720726, 0.14488773047924042, -0.007370716892182827, 0.07818637043237686, 0.06730518490076065, 0.13544772565364838, -0.13212791085243225, 0.03680724650621414, 0.207405686378479, -0.3375568687915802, 0.027938101440668106, 0.04077751934528351, 0.1202937439084053, -0.005095941014587879, -0.006439979653805494, 0.02258950099349022, 0.01792125217616558, 0.016614994034171104, -0.011000028811395168, -0.034031882882118225, 0.10089435428380966, 0.031233618035912514, -0.06751956045627594, -0.08140850812196732, 0.2254573553800583, 0.052988920360803604, 0.022716766223311424, -0.03214079141616821, -0.08005983382463455, -0.006858066190034151, -0.027660829946398735, 0.08021508902311325, 0.029034428298473358, 0.11158657819032669, 0.09602248668670654, -0.08615459501743317, -0.12516553699970245, -0.010188370011746883, -0.18666870892047882, 0.11756478250026703, 0.05161762237548828, 0.11559471487998962, -0.13465887308120728, 0.049666162580251694, 0.0368843711912632, -0.1352982223033905, -0.08295295387506485, -0.07513817399740219, 0.11520666629076004, 0.09705489128828049, -0.031092066317796707, 0.13796299695968628, 0.20644539594650269, 0.23569133877754211, 0.04645939916372299, -0.0007782698376104236, -0.004143059253692627, 0.11192122846841812, -0.034215595573186874, 0.03428998962044716, -0.03152588754892349, -0.0872529000043869, 0.16219304502010345, -0.11302051693201065, 0.08566316217184067, -0.034469276666641235, -0.10997054725885391, -0.06573213636875153, 0.03867608308792114, 0.10056816041469574, 0.1003226488828659, -0.01468025054782629, -0.026858123019337654, 0.018944157287478447, 0.14868363738059998, -0.02564632147550583, -0.027492163702845573, 0.027035946026444435, 0.014975710771977901, 0.11786504089832306, 0.020693304017186165, 0.00430021109059453, -0.0069279540330171585, 0.00015923612227197737, -0.04018823802471161, -0.03213274106383324, 0.021100163459777832, 0.04582658410072327, 0.07548795640468597, -0.12826459109783173, 0.07889245450496674, -0.12598112225532532, -0.13847044110298157, 0.04458992928266525, 0.02906467206776142, 0.030840164050459862, -0.07808056473731995, 0.07991622388362885, -0.049854591488838196, 0.011352131143212318, -0.07057293504476547, 0.050590578466653824, -0.09844774752855301, 0.08501797914505005, -0.056517284363508224, 0.004663020838052034, -0.222148135304451, 0.05185152217745781, -0.10113479942083359, 0.025749150663614273, 0.06353627145290375, -0.01706121303141117, -0.0827028900384903, 0.142625093460083, -0.04304221644997597, -0.08220981061458588, -0.02975396253168583, -0.014334860257804394, -0.03774889186024666, 0.05004663020372391, -0.0916031077504158, -0.0447077713906765, 0.1928916722536087, -0.11344558745622635, -0.2291877269744873, 0.06146601587533951, 0.029164955019950867, -0.026213867589831352, 0.04495345056056976, 0.14027641713619232, 0.11232955753803253, -0.010187898762524128, 0.03146715834736824, 0.17286038398742676, -0.13744576275348663, -0.2129410207271576, 0.08572300523519516, -0.04547964036464691, -0.05441754311323166, 0.049310408532619476, -0.07958950102329254, 0.1346590518951416, 0.019112620502710342, -0.06924057751893997, -0.0719011127948761, -0.08326708525419235, -0.022838661447167397, 0.0002761274517979473, 0.04816392436623573, -0.04871347174048424, 0.010072990320622921, -0.07821817696094513, 0.08581407368183136, 0.050605688244104385, 0.06779458373785019, -0.07523654401302338, 0.1584307849407196, 0.02803759090602398, 0.032316889613866806, -0.13008780777454376, 0.07306381314992905, -0.014600791037082672, -0.05274808779358864, -0.0008620070293545723, 0.1500072032213211, 0.03968992829322815, -0.07513976842164993, 0.04766353592276573, -0.027870530262589455, 0.05064000189304352, 0.061367396265268326, 0.022051101550459862, -0.10895874351263046, -0.006797854322940111, -0.0029745101928710938, 0.03295017406344414, 0.042962703853845596, 0.011919140815734863, 0.13963085412979126, 0.04564962908625603, -0.0739155262708664, 0.08610577881336212, -0.03407721593976021, -0.06405910104513168, -0.04887842759490013, 0.004359628073871136, 0.0981169193983078, 0.0750592052936554, -0.13042205572128296, 0.144540935754776, -0.010358218103647232, 0.2518581449985504, 0.1915612518787384, -0.07004357129335403, 0.147597998380661, 0.058775145560503006, -0.03068442828953266, -0.028751950711011887, 0.08380313962697983, -0.004053129814565182, 0.03711950406432152, 0.0419347770512104, 0.12046793103218079, -0.07414210587739944, -0.04907234013080597, 0.005490401294082403, -0.03991995379328728, 0.055205706506967545, 0.04356832057237625, 0.0883539617061615, -0.20732030272483826, 0.16078674793243408, 0.28330424427986145, 0.014868049882352352, 0.11189934611320496, -0.13647624850273132, 0.02179889753460884, 0.03322529047727585, 0.017697079107165337, -0.052320972084999084, 0.10556551814079285, -0.20599649846553802, 0.031408198177814484, 0.10443662852048874, 0.018314821645617485, 0.07268830388784409, -0.131657212972641, -0.03256332129240036, 0.04672707989811897, -0.026572955772280693, -0.025868913158774376, 0.08170303702354431, -0.00943911075592041, 0.05161886662244797, -0.024508612230420113, -0.10410767793655396, 0.10507483780384064, -0.007248776499181986, -0.047780562192201614, 0.1049642562866211, -0.13320103287696838, -0.18044796586036682, -0.10013619810342789, -0.0665789321064949, -0.10198389738798141, -0.06081510707736015, 0.13027366995811462, 0.023467564955353737, 0.001987339463084936, 0.037436433136463165, -0.07533811777830124, -0.03222741559147835, 0.017284845933318138, -0.03832543268799782, 0.0357084758579731, -0.03384081646800041, -0.16701427102088928, -0.06699077039957047, -0.021901890635490417, -0.069259874522686, 0.04219766706228256, -0.05886460468173027, 0.07788445800542831, 0.05586828291416168, 0.06667708605527878, 0.04256116598844528, -0.004957704339176416, 0.1013154461979866, -0.0176706425845623, 0.010092400014400482, 0.30910295248031616, 0.02664807066321373, 0.10244640707969666, 0.0457761324942112, 0.03486835956573486, -0.02836810238659382, -0.05407078564167023, -0.07017777860164642, -0.11767429858446121, -0.17788246273994446, -0.1073896512389183, -0.1458457112312317, 0.007254892028868198, -0.018151434138417244, 0.09149278700351715, 0.1296839863061905, 0.08502987772226334, -0.04213765263557434, -0.03845834359526634, -0.02475983090698719, 0.0162957776337862, 0.15912772715091705, 0.0006431334768421948, 0.0637766420841217, -0.15005846321582794, -0.02030215784907341, 0.14431849122047424, 0.06956489384174347, 0.1507459282875061, 0.08279316872358322, 0.08805251866579056, 0.11744489520788193, 0.28472891449928284, 0.05996960401535034, 0.15542545914649963, -0.046767160296440125, -0.013136743567883968, -0.04486609995365143, -0.02820994332432747, -0.055604901164770126, 0.03494760021567345, 0.0852162167429924, -0.07551588118076324, -0.004269612953066826, -0.13319528102874756, 0.06301084160804749, 0.20307223498821259, -0.02791101485490799, -0.055100828409194946, 0.039526212960481644, 0.05423218011856079, 0.009747657924890518, -0.021063143387436867, 0.06730837374925613, -0.0782710611820221, -0.13131986558437347, 0.1384008675813675, -0.0036689364351332188, 0.09873183816671371, 0.02206644043326378, 0.03157293424010277, -0.07694093137979507, -0.10031208395957947, 0.10828537493944168, 0.14493094384670258, -0.1842944324016571, 0.1081775426864624, -0.056367043405771255, -0.03095286712050438, -0.13666070997714996, 0.0014526228187605739, 0.09760002791881561, 0.1416057050228119, 0.10812655836343765, 0.03549738600850105, -0.06904376298189163, 0.034587178379297256, -0.04204632714390755, 0.05583170801401138, -0.01633813977241516, -0.05355048552155495, -0.06614663451910019, -0.06227961182594299, -0.001858551986515522, -0.027158202603459358, 0.11953587830066681, 0.043526846915483475, -0.12281595915555954, 0.023253796622157097, 0.01790892891585827, -0.01528702862560749, -0.1127483919262886, 0.017597895115613937, -0.055091165006160736, 0.11969044059515, -0.17464232444763184, -0.10267944633960724, -0.06103331595659256, -0.14011730253696442, 0.07088126987218857, -0.057256486266851425, 0.08935032784938812, -0.06179775670170784, -0.028038689866662025, -0.1023968830704689, -0.20076370239257812, 0.06683262437582016, -0.12372232228517532, -0.05113564431667328, 0.0238275695592165, 0.18348482251167297, -0.09006451815366745, 0.03691742941737175, 0.06042631343007088, -0.0474502258002758, -0.14349257946014404, -0.1558128297328949, -0.06009073927998543, -0.0021560045424848795, 0.019995182752609253, -0.012945152819156647, 0.026817766949534416, -0.03316536173224449, 0.04693363606929779, -0.02545190043747425, 0.2654415965080261, 0.19819504022598267, -0.08613207191228867, 0.16342304646968842, 0.14250551164150238, -0.026027319952845573, -0.2670116722583771, -0.2218843400478363, -0.16499367356300354, -0.07532248646020889, -0.03211057558655739, -0.09344638139009476, 0.1731702834367752, 0.11540606617927551, -0.09379009902477264, 0.17304471135139465, -0.2582123279571533, -0.05968531593680382, 0.13683554530143738, -0.031067337840795517, 0.3295730948448181, -0.11766287684440613, -0.06116855517029762, -0.06646756827831268, -0.15953443944454193, 0.11254554241895676, -0.08657206594944, 0.08162649720907211, -0.036387696862220764, -0.06454045325517654, -0.03122909925878048, -0.046322133392095566, 0.13098828494548798, -0.012906721793115139, 0.02463400363922119, -0.08163949102163315, 0.02972337417304516, 0.1574740707874298, -0.026172537356615067, 0.046397801488637924, -0.20058809220790863, 0.025253504514694214, -0.11306332796812057, 0.012544017285108566, -0.12639707326889038, 0.12688037753105164, 0.018278751522302628, -0.023019520565867424, -0.11209194362163544, -0.046786002814769745, 0.050144243985414505, 0.02301464043557644, 0.22874833643436432, 0.06073719263076782, -0.08017003536224365, 0.04156113043427467, 0.021991947665810585, -0.22951702773571014, -0.1946985274553299, -0.15839923918247223, -0.029001763090491295, 0.041804179549217224, -0.09841850399971008, 0.04136870801448822, 0.08892430365085602, 0.018827736377716064, -0.032809317111968994, 0.08406516909599304, -0.053066495805978775, -0.008013288490474224, 0.10863633453845978, -0.07664673775434494, -0.09431696683168411, -0.031872864812612534, 0.0930958017706871, 0.09764795005321503, 0.06469828635454178, 0.06895557790994644, 0.04783111810684204, -0.028123879805207253, -0.006784878205507994, 0.01205851323902607, -0.14199699461460114, 0.023220086470246315, 0.06480972468852997, 0.042478047311306, -0.1648091971874237, 0.053338877856731415, -0.05983686447143555, -0.05042620748281479, -0.037871237844228745, 0.06609658151865005, -0.12197479605674744, -0.10884713381528854, 0.03758212551474571, 0.04030384495854378, -0.1292884200811386, -0.09787864983081818, -0.02461828663945198, -0.16285023093223572, 0.03251945599913597, 0.11148370057344437, 0.13439945876598358, 0.06386787444353104, -0.006669832393527031, -0.07406770437955856, 0.037001367658376694, -0.04978068545460701, -0.08615729212760925, 0.022196359932422638, -0.11226198077201843, -0.13091586530208588, 0.044524241238832474, 0.14680804312229156, -0.04001457616686821, -0.005650992505252361, -0.04787454754114151, 0.036040931940078735, -0.16946958005428314, 0.014376352541148663, -0.14025777578353882, -0.008970764465630054, 0.005377544090151787, -0.06609872728586197, -0.017864985391497612, 0.06526362895965576, -0.11849901080131531, -0.03652432933449745, -0.024933913722634315, 0.043954648077487946, -0.08958979696035385, -0.03312551602721214, 0.08843273669481277, -0.058316294103860855, 0.10025704652070999, 0.11309098452329636, -0.04740382358431816, 0.09121061861515045, -0.053670868277549744, -0.1715625822544098, 0.0648738443851471, 0.07033833861351013, 0.009050601162016392, -0.0031007679644972086, 0.021775485947728157, 0.10076060891151428, -0.05361533164978027, -0.0020064685959368944, -0.05810645595192909, -0.14435389637947083, -0.07992123812437057, -0.06313639879226685, -0.030359633266925812, 0.03110671229660511, -0.13206630945205688, 0.15582489967346191, 0.07874567061662674, 0.1870017945766449, 0.07274208962917328, 0.04473414272069931, -0.05960365757346153, 0.002283806446939707, -0.05913422256708145, -0.20203672349452972, -0.02028467133641243, -0.05830204859375954, -0.056507524102926254, 0.0011082107666879892, 0.2437610775232315, -0.040611859411001205, -0.10146183520555496, 0.012254671193659306, 0.16922293603420258, 0.08606178313493729, 0.0024755054619163275, 0.37903285026550293, 0.03439445421099663, 0.021415937691926956, -0.021823715418577194, 0.03248238563537598, 0.013619997538626194, -0.05675284191966057, 0.09263046085834503, 0.12186376005411148, 0.11715397238731384, 0.06452242285013199, 0.12035171687602997, 0.024958139285445213, -0.15397219359874725, -0.2037971466779709, 0.0759066715836525, 0.03838416561484337, 0.034288909286260605, 0.12387073040008545, 0.14735670387744904, -0.06801613420248032, 0.03375982120633125, 0.044492486864328384, 0.019194230437278748, -0.1074485257267952, -0.1468193680047989, -0.046345774084329605, -0.08365799486637115, -0.006958609912544489, -0.0166823361068964, -0.041770897805690765, 0.18520686030387878, 0.04636373370885849, -0.04224066063761711, -0.004378550220280886, -0.04735403507947922, -0.07580965012311935, 0.039910655468702316, -0.02339193783700466, -0.10876396298408508, 0.05477551370859146, -0.03513897955417633, -0.04610176011919975, -0.09073232859373093, -0.013223406858742237, 0.04698534682393074, -0.04553049057722092, 0.060002781450748444, -0.09656813740730286, -0.06425318121910095, -0.053702909499406815, -0.007266392931342125, 0.02254822477698326, 0.1744014471769333, 0.029818037524819374, -0.009401554241776466, 0.06423775106668472, 0.08914192020893097, -0.0197761207818985, -0.18625254929065704, 0.010077006183564663, 0.10435206443071365, 0.04418102279305458, 0.016081683337688446, 0.05528179928660393, 0.03811554238200188, 0.019848832860589027, 0.2716801166534424, 0.22626444697380066, -0.028173912316560745, 0.05694061890244484, 0.0013665047008544207, 0.014182517305016518, 0.0031268743332475424, 0.07314553111791611, 0.12536343932151794, 0.2469131499528885, -0.06744170933961868, 0.030615154653787613, -0.08232442289590836, -0.022943081334233284, -0.17974638938903809, 0.05051209032535553, 0.012175760231912136, -0.11223208159208298, 0.012486825697124004, 0.07902192324399948, -0.11119195818901062, 0.09602867811918259, 0.06058382987976074, -0.04735443741083145, -0.048986174166202545, -0.018059151247143745, 0.16094373166561127, 0.06539168208837509, 0.015345422551035881, -0.03208877891302109, -0.03819728270173073, 0.03196076676249504, 0.0062804995104670525, -0.2752905488014221, -0.05473748967051506, 0.11343082785606384, -0.00849614292383194, 0.14427559077739716, -0.02461286634206772, 0.013080318458378315, 0.09985864162445068, 0.09511224180459976, -0.11349332332611084, 0.09207534790039062, 0.00509108230471611, -0.06569921970367432, -0.033168572932481766, -0.11016196012496948, -0.019409263506531715, -0.12965691089630127, 0.025101635605096817, -0.07185696810483932, 0.016675103455781937, 0.09727317094802856, -0.004580643493682146, -0.03697717562317848, 0.03202081844210625, -0.07734739780426025, 0.06541921943426132, -0.053543709218502045, -0.05028456076979637, -0.06839923560619354, -0.07285995781421661, -0.011408364400267601, 0.0580691434442997, -0.11768031865358353, -0.10318171977996826, 0.008360148407518864, -0.03656015172600746, 0.002757738810032606, -0.004136696923524141, 0.045320671051740646, -0.0712863951921463, -0.07173115760087967, -0.0050927214324474335, -0.1128564178943634, -0.009241952560842037, 0.055047258734703064, -0.02417396754026413, 0.035006679594516754, -0.0427478663623333, -0.033724140375852585, 0.000034041535400319844, -0.10996674746274948, -0.09742242842912674 ]
null
null
transformers
```python from transformers import BertTokenizer from transformers import BigBirdModel model = BigBirdModel.from_pretrained('Lowin/chinese-bigbird-wwm-base-4096') tokenizer = BertTokenizer.from_pretrained('Lowin/chinese-bigbird-wwm-base-4096') ``` https://github.com/LowinLi/chinese-bigbird
{"language": ["zh"], "license": ["apache-2.0"]}
fill-mask
Lowin/chinese-bigbird-wwm-base-4096
[ "transformers", "pytorch", "big_bird", "fill-mask", "zh", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "zh" ]
TAGS #transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
URL
[]
[ "TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 48 ]
[ "passage: TAGS\n#transformers #pytorch #big_bird #fill-mask #zh #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.07196708023548126, 0.013983936049044132, -0.005300837103277445, 0.015006959438323975, 0.034126922488212585, -0.002625871915370226, 0.07638458162546158, 0.10581004619598389, 0.011630482040345669, -0.046316586434841156, 0.1392965018749237, 0.18414463102817535, 0.040087003260850906, 0.10670594125986099, -0.0106193907558918, -0.19297195971012115, 0.08468607813119888, 0.04186089709401131, -0.09668178111314774, 0.08447910100221634, 0.08758564293384552, -0.026071302592754364, 0.03718936815857887, 0.04455528035759926, -0.009828046895563602, 0.0012480902951210737, 0.011399083770811558, -0.06285914033651352, 0.11096592992544174, 0.02822454646229744, 0.06560177356004715, 0.049009229987859726, -0.03051016852259636, -0.12217530608177185, 0.035099323838949203, 0.008185693062841892, -0.07073546946048737, 0.020692434161901474, 0.011401762254536152, -0.004333921708166599, 0.054451409727334976, -0.01410361286252737, -0.050082918256521225, 0.07001674920320511, -0.013099154457449913, -0.2864852845668793, -0.1130635067820549, 0.09462372213602066, 0.03455105423927307, 0.07285736501216888, 0.06066368147730827, 0.18015336990356445, -0.10622148960828781, 0.05764427036046982, 0.1593066304922104, -0.338113009929657, 0.013103331439197063, 0.04152385890483856, 0.06954406201839447, -0.04399095103144646, -0.008411864750087261, 0.033205535262823105, 0.03360004723072052, 0.008635924197733402, 0.00914720818400383, -0.030330326408147812, 0.06735161691904068, -0.002898658625781536, -0.06020362675189972, -0.0750313401222229, 0.19215209782123566, 0.019794853404164314, 0.012158707715570927, -0.017327772453427315, -0.10245966166257858, -0.01072599645704031, -0.014907087199389935, 0.07504625618457794, 0.014800702221691608, 0.09403730183839798, 0.07094468176364899, -0.06884239614009857, -0.13338837027549744, 0.00367302936501801, -0.22550742328166962, 0.1587628722190857, 0.05200697481632233, 0.10316881537437439, -0.14065387845039368, 0.045458219945430756, 0.051160357892513275, -0.15478308498859406, -0.045080844312906265, -0.06762859970331192, 0.07402318716049194, 0.06839194148778915, -0.035011596977710724, 0.06425494700670242, 0.19249580800533295, 0.2636933922767639, 0.08920754492282867, 0.02311246283352375, -0.004951088689267635, 0.10003769397735596, -0.038353510200977325, 0.030373413115739822, -0.005903321783989668, -0.08336523920297623, 0.1601029485464096, -0.11343101412057877, 0.11673858761787415, -0.045501988381147385, -0.12828058004379272, -0.05524847283959389, 0.013679339550435543, 0.1052510067820549, 0.08333896845579147, 0.016527751460671425, -0.042493436485528946, 0.035916782915592194, 0.15868112444877625, -0.04742594063282013, -0.02353285811841488, 0.010489623993635178, 0.030388839542865753, 0.060026392340660095, 0.04422398656606674, 0.003768953261896968, 0.004278641659766436, 0.0414837971329689, -0.04671522229909897, -0.05074102059006691, 0.008686073124408722, 0.018942007794976234, 0.06255218386650085, -0.11573993414640427, 0.058560289442539215, -0.16089926660060883, -0.15629567205905914, 0.06077433377504349, 0.03856422379612923, 0.023479808121919632, -0.09394463896751404, 0.08573757857084274, -0.02859322540462017, 0.022857794538140297, -0.05757252871990204, 0.06672654300928116, -0.07755668461322784, 0.08328426629304886, -0.03766540810465813, 0.0556657537817955, -0.20130179822444916, 0.030304424464702606, -0.09976957738399506, 0.010619312524795532, 0.03346443548798561, -0.050266001373529434, -0.08371195197105408, 0.14303770661354065, -0.03591015189886093, -0.05404040962457657, -0.03617206588387489, -0.007157353218644857, -0.019439591094851494, 0.08293182402849197, -0.09964116662740707, -0.059688713401556015, 0.20185765624046326, -0.11407704651355743, -0.18359334766864777, 0.07685192674398422, 0.028443969786167145, -0.013460556045174599, 0.03579931706190109, 0.08146890997886658, 0.07927313446998596, -0.089129738509655, 0.07037107646465302, 0.14938393235206604, -0.1475343406200409, -0.19231145083904266, 0.0750875174999237, -0.029399050399661064, -0.12223725020885468, 0.054182156920433044, -0.0196689460426569, 0.14527761936187744, 0.013197689317166805, -0.0857938826084137, -0.057268816977739334, -0.09960246086120605, 0.029881833121180534, -0.006420416757464409, 0.0661017969250679, -0.07561857998371124, -0.009750014171004295, -0.12056411057710648, 0.08047955483198166, 0.08828048408031464, 0.04858263581991196, -0.08694645017385483, 0.12148828059434891, 0.023223010823130608, 0.02662704512476921, -0.09445410221815109, 0.01198620442301035, -0.022532321512699127, -0.050477586686611176, 0.0032307791989296675, 0.12410325556993484, 0.06307166814804077, -0.043038930743932724, 0.027824027463793755, -0.02517211064696312, 0.08944928646087646, 0.06456436216831207, 0.0035519436933100224, -0.12559153139591217, 0.014329000376164913, -0.024696139618754387, 0.07538396865129471, 0.04216454550623894, 0.021036338061094284, 0.06720494478940964, 0.08090949803590775, -0.06457589566707611, 0.08288607001304626, -0.02971896156668663, -0.06349818408489227, -0.0432981476187706, 0.00033069460187107325, 0.09973589330911636, 0.07691362500190735, -0.11350984126329422, 0.14743025600910187, -0.06411907076835632, 0.2636130452156067, 0.189500629901886, -0.07879861444234848, 0.0850340947508812, 0.09524430334568024, -0.037797242403030396, -0.05391448736190796, 0.05729611590504646, 0.006002375856041908, 0.005028955172747374, 0.01951323077082634, 0.14127404987812042, -0.06003228574991226, -0.0338069424033165, 0.014901706948876381, -0.0681135505437851, 0.02774019166827202, 0.028725339099764824, 0.11338253319263458, -0.19038526713848114, 0.17318838834762573, 0.2847096621990204, -0.009405774995684624, 0.13603992760181427, -0.07460291683673859, 0.03281320258975029, 0.02113455906510353, -0.011681471951305866, -0.03396962210536003, 0.09656686335802078, -0.14654748141765594, 0.03240344673395157, 0.09526852518320084, -0.019697032868862152, 0.05288444459438324, -0.13609547913074493, -0.039171405136585236, 0.03412880748510361, 0.0013273472432047129, -0.021929578855633736, 0.1207314282655716, -0.019839860498905182, 0.06285025924444199, -0.03506884723901749, -0.13271525502204895, 0.11202332377433777, -0.010298667475581169, -0.044746045023202896, 0.10421933233737946, -0.1536462903022766, -0.27183160185813904, -0.12209291011095047, -0.11644743382930756, -0.07631713896989822, -0.02783268503844738, 0.11534469574689865, -0.009143287315964699, -0.024803459644317627, 0.052587494254112244, -0.09213694930076599, 0.02313099056482315, 0.045112792402505875, -0.04105101525783539, 0.02286144159734249, -0.002021696185693145, -0.14359724521636963, -0.06723824888467789, -0.0012629869161173701, -0.07291009277105331, 0.08258092403411865, -0.050774142146110535, 0.0645308792591095, 0.0691329762339592, 0.04353497549891472, 0.03723105415701866, -0.0038168306928128004, 0.1172412633895874, -0.04335349053144455, 0.05040011927485466, 0.2661100924015045, 0.010848209261894226, 0.10720416158437729, 0.11998102068901062, 0.01713908091187477, -0.03421526774764061, -0.016958115622401237, -0.06842733174562454, -0.1309465765953064, -0.16634178161621094, -0.11521737277507782, -0.13871224224567413, -0.007647385820746422, 0.019252393394708633, 0.09227967262268066, 0.16396546363830566, 0.08786046504974365, -0.02962334267795086, -0.01954793930053711, -0.05163232982158661, 0.02950582094490528, 0.1350642293691635, 0.0004065890680067241, 0.09752555936574936, -0.12900410592556, -0.05926472693681717, 0.12050716578960419, 0.05677047744393349, 0.07196369767189026, 0.0998840183019638, 0.04916321486234665, 0.08641492575407028, 0.25060364603996277, 0.08292143791913986, 0.15427185595035553, -0.0004778395523317158, -0.04331551119685173, -0.044449906796216965, -0.028740020468831062, -0.04812151938676834, 0.03744193911552429, 0.07646795362234116, -0.07147035002708435, 0.007170629221946001, -0.09256736189126968, 0.0353962667286396, 0.20132337510585785, 0.015200396999716759, -0.09687374532222748, 0.045304395258426666, 0.05537788197398186, 0.0013539885403588414, -0.02606230601668358, 0.04327147826552391, -0.0782635360956192, -0.13229605555534363, 0.14554284512996674, -0.007155146915465593, 0.08545846492052078, 0.07044003903865814, 0.053013380616903305, -0.07347118109464645, -0.052100617438554764, 0.08029090613126755, 0.13371123373508453, -0.2423352301120758, 0.1478722244501114, -0.04266480356454849, -0.028983931988477707, -0.15021537244319916, 0.0019496040185913444, 0.10906095802783966, 0.11993829905986786, 0.10105668753385544, 0.0463971346616745, -0.07627592980861664, 0.01115572452545166, -0.061643581837415695, 0.05393749475479126, -0.02260553650557995, -0.02479400485754013, -0.06986584514379501, -0.05590207129716873, -0.03449402377009392, -0.008211805485188961, 0.1324969232082367, -0.01120657380670309, -0.125088170170784, 0.053354695439338684, 0.07210120558738708, -0.03723572567105293, -0.09572673588991165, -0.02602021023631096, -0.1044006273150444, 0.15857012569904327, -0.12080167979001999, -0.08684920519590378, -0.06818085163831711, -0.12626874446868896, 0.05497131124138832, -0.08003831654787064, 0.09843970090150833, -0.08160444349050522, -0.007179802283644676, -0.11303002387285233, -0.18710194528102875, 0.09337907284498215, -0.13346508145332336, -0.06971371173858643, -0.01841186173260212, 0.15747077763080597, -0.09334807842969894, 0.05719457566738129, 0.03428035229444504, -0.024611495435237885, -0.1192203238606453, -0.11290549486875534, -0.021688666194677353, -0.04494312033057213, 0.030431628227233887, -0.003967714961618185, 0.014182194136083126, -0.07139591872692108, 0.054660432040691376, -0.038730438798666, 0.264434814453125, 0.2511565387248993, -0.08083712309598923, 0.18813055753707886, 0.16138681769371033, -0.0270818043500185, -0.31871578097343445, -0.2256840169429779, -0.16243116557598114, -0.035873834043741226, -0.027574410662055016, -0.11036307364702225, 0.13717339932918549, 0.07295764237642288, -0.10439348220825195, 0.1748495101928711, -0.1897152215242386, -0.08510614186525345, 0.21143177151679993, -0.026149369776248932, 0.3844970166683197, -0.10712088644504547, -0.04930194839835167, -0.0921960324048996, -0.0826483890414238, 0.08510036021471024, -0.08378420770168304, 0.0960230752825737, -0.027649708092212677, -0.029010049998760223, -0.02742856554687023, -0.06765042245388031, 0.13190589845180511, -0.04850482568144798, 0.003521289909258485, -0.10752547532320023, 0.028140120208263397, 0.14040642976760864, -0.016202710568904877, 0.03356293961405754, -0.1984272599220276, 0.010799543000757694, -0.0401463583111763, 0.01464161742478609, -0.11735495924949646, 0.13908687233924866, 0.01741388626396656, -0.03966999053955078, -0.06853743642568588, -0.029814990237355232, 0.04283604398369789, 0.00113991042599082, 0.19518321752548218, 0.059701304882764816, -0.011673188768327236, 0.08530782908201218, 0.0089799202978611, -0.19553586840629578, -0.105952687561512, -0.13124214112758636, -0.05718817189335823, 0.054198481142520905, -0.055955298244953156, 0.048990197479724884, 0.0705563873052597, 0.00987432524561882, 0.0024309938307851553, 0.07746627926826477, -0.041494306176900864, -0.03239753469824791, 0.13357380032539368, -0.12013788521289825, -0.0231633298099041, -0.016782162711024284, 0.11848030984401703, 0.08528603613376617, 0.04519309103488922, 0.07768417149782181, 0.0388399176299572, -0.03476962074637413, 0.0050958991050720215, 0.02834702469408512, -0.1162419468164444, 0.049942437559366226, 0.07875750958919525, 0.05488179251551628, -0.1531732976436615, 0.03741983324289322, -0.05929426848888397, -0.040646158158779144, -0.009990962222218513, 0.07922303676605225, -0.1217418760061264, -0.1131376102566719, 0.07771424204111099, 0.043573733419179916, -0.07462111115455627, -0.09663959592580795, -0.04764173552393913, -0.14726193249225616, 0.031249288469552994, 0.14344264566898346, 0.1392740160226822, 0.04606876149773598, -0.002519905799999833, -0.07842246443033218, 0.027907930314540863, -0.02429371140897274, -0.06644512712955475, 0.029419362545013428, -0.09767789393663406, -0.07810918986797333, 0.03577291965484619, 0.15322168171405792, -0.06683717668056488, -0.012233542278409004, -0.08317137509584427, 0.023086827248334885, -0.15994182229042053, 0.0024166686926037073, -0.10589440166950226, -0.025555841624736786, 0.014896034263074398, -0.07272268086671829, -0.027093641459941864, 0.03857860341668129, -0.12001880258321762, -0.02165246196091175, -0.003122800262644887, 0.022500906139612198, -0.07544860243797302, -0.04012662172317505, 0.10005489736795425, -0.04313337430357933, 0.08236879855394363, 0.08579514920711517, -0.05210872367024422, 0.07989895343780518, -0.07012822479009628, -0.15096475183963776, 0.06538800150156021, 0.05535433813929558, 0.026705970987677574, -0.011445187963545322, 0.013445197604596615, 0.0915319100022316, -0.014547327533364296, 0.011738204397261143, 0.022907575592398643, -0.12542672455310822, -0.0010721179423853755, -0.03993617743253708, -0.07039663195610046, 0.02648274041712284, -0.1461188942193985, 0.09932240843772888, 0.0487116202712059, 0.1960870623588562, 0.021646656095981598, 0.046880777925252914, -0.051382556557655334, 0.01416282169520855, -0.07503284513950348, -0.18124262988567352, -0.03201998770236969, -0.04434151202440262, -0.04968841373920441, 0.0023641164880245924, 0.22538639605045319, -0.045935336500406265, -0.08417101949453354, 0.03153229504823685, 0.17639419436454773, 0.052565231919288635, -0.0028011281974613667, 0.29189708828926086, 0.02657695859670639, 0.012987075373530388, -0.017952101305127144, 0.03018566034734249, 0.021231692284345627, -0.07549048960208893, 0.11707952618598938, 0.07059185951948166, 0.12850812077522278, 0.07157553732395172, 0.07699468731880188, 0.015080287121236324, -0.1410370022058487, -0.19539816677570343, 0.018905790522694588, 0.03797164931893349, 0.04120836406946182, 0.06972183287143707, 0.14947094023227692, -0.04192971810698509, 0.014090726152062416, 0.01623181812465191, 0.011553867720067501, -0.15846270322799683, -0.1925390064716339, -0.0665602758526802, -0.04380977898836136, 0.00837146770209074, 0.023650160059332848, -0.049271050840616226, 0.13920694589614868, 0.053536657243967056, -0.037148475646972656, 0.02643045037984848, -0.07026474922895432, -0.04594526067376137, 0.007457142695784569, -0.018464958295226097, -0.07844983041286469, 0.04680496081709862, -0.048228319734334946, -0.09095974266529083, -0.034081511199474335, -0.01894022710621357, 0.023393504321575165, -0.03352418541908264, 0.06501482427120209, -0.088222935795784, -0.08135289698839188, -0.07478522509336472, -0.010214269161224365, 0.02311159111559391, 0.15070371329784393, 0.022496048361063004, 0.034333135932683945, 0.05787627026438713, 0.05733057111501694, -0.030126772820949554, -0.22504767775535583, -0.025677133351564407, 0.12222763895988464, 0.013420749455690384, 0.022791462019085884, 0.03155023232102394, 0.04584178701043129, -0.03377633914351463, 0.3052108585834503, 0.29627320170402527, -0.03928586095571518, 0.08298628777265549, -0.009702267125248909, 0.017226533964276314, 0.008646626025438309, 0.09424205124378204, 0.10218735039234161, 0.22336867451667786, -0.0786321610212326, 0.0021787674631923437, -0.07686010748147964, -0.04741412028670311, -0.1883021742105484, 0.029256539419293404, -0.008963724598288536, -0.08674933016300201, 0.008242453448474407, 0.05303920805454254, -0.1182662770152092, 0.1010163202881813, 0.035296160727739334, -0.06670844554901123, -0.06489279121160507, 0.017389951273798943, 0.1634008139371872, 0.06929953396320343, 0.022583816200494766, -0.03507251292467117, -0.024511881172657013, 0.031210266053676605, -0.0018052401719614863, -0.23004832863807678, -0.06670606881380081, 0.11080792546272278, -0.032433152198791504, 0.17548274993896484, -0.01742883026599884, 0.03645622730255127, 0.10483643412590027, 0.08287201821804047, -0.09977993369102478, 0.08710435777902603, 0.00424271309748292, -0.07722719013690948, -0.019597720354795456, -0.09035992622375488, -0.022656790912151337, -0.13335773348808289, 0.015977095812559128, -0.07298114895820618, 0.01670694723725319, 0.03213875740766525, -0.004368039779365063, -0.020467422902584076, 0.0929664671421051, -0.07657081633806229, 0.07754392921924591, -0.02423287369310856, -0.03044648841023445, -0.06591290980577469, -0.0655817911028862, -0.02224024198949337, 0.05274199694395065, -0.14394894242286682, -0.11840959638357162, -0.02127682790160179, -0.029900606721639633, -0.0319901667535305, 0.01466571819037199, -0.014888705685734749, -0.07066536694765091, -0.1274591088294983, -0.020368821918964386, -0.1364801526069641, -0.00214627617970109, 0.0638670027256012, -0.006477235816419125, 0.029360167682170868, -0.05648382753133774, -0.02207096293568611, -0.006141236051917076, -0.14542707800865173, -0.1095605343580246 ]
null
null
null
First-try
{}
null
LucasLi/Transformer
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
First-try
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
transformers
# XiaoBot for Discord [Tutorial](https://youtu.be/UjDpW_SOrlw) followed for this model.
{"tags": ["conversational"]}
text-generation
Lucdi90/DialoGPT-medium-XiaoBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# XiaoBot for Discord Tutorial followed for this model.
[ "# XiaoBot for Discord\nTutorial followed for this model." ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# XiaoBot for Discord\nTutorial followed for this model." ]
[ 51, 12 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# XiaoBot for Discord\nTutorial followed for this model." ]
[ -0.032049231231212616, -0.05187498778104782, -0.004835070576518774, -0.008293305523693562, 0.14609022438526154, -0.030334878712892532, 0.22545647621154785, 0.10950858891010284, 0.0573505237698555, -0.038141246885061264, 0.09145671874284744, 0.20173078775405884, 0.023611724376678467, 0.170135498046875, -0.0748513713479042, -0.281377375125885, 0.07289157807826996, 0.055673010647296906, -0.028508268296718597, 0.12023533135652542, 0.12641385197639465, -0.07245099544525146, 0.10578574985265732, 0.02268550731241703, -0.21485072374343872, -0.016207832843065262, 0.0007812902331352234, -0.11706051230430603, 0.10646361112594604, 0.05930570885539055, 0.08020603656768799, 0.0714418888092041, -0.001799613470211625, -0.1171160638332367, 0.040881916880607605, -0.027721280232071877, -0.056028418242931366, 0.06774625182151794, 0.03295304626226425, -0.040004342794418335, 0.17435042560100555, 0.10229808837175369, 0.005546662490814924, 0.04994795098900795, -0.10786598175764084, 0.12781687080860138, -0.018879445269703865, 0.063396155834198, 0.16722984611988068, 0.09830310940742493, -0.0415814183652401, 0.10263943672180176, -0.11509411036968231, 0.11714037507772446, 0.1511649489402771, -0.3110474646091461, -0.029705772176384926, 0.1712644398212433, 0.07396796345710754, 0.03449536859989166, -0.0336376428604126, 0.039774779230356216, 0.03924734890460968, 0.010044232942163944, -0.03682566434144974, -0.0821986198425293, -0.05689748376607895, 0.009344474412500858, -0.11756572127342224, 0.008316916413605213, 0.306262731552124, -0.0414171926677227, 0.02917242795228958, -0.09743696451187134, -0.11272279173135757, 0.003538665594533086, -0.06125584617257118, -0.057200752198696136, -0.09826073795557022, 0.06081537529826164, 0.010989694856107235, -0.11327556520700455, -0.10781154781579971, -0.06791233271360397, -0.13690774142742157, 0.1307886242866516, 0.03024301305413246, 0.023960450664162636, -0.23679406940937042, 0.064542755484581, 0.07798001170158386, -0.07522779703140259, 0.038419321179389954, -0.11047441512346268, 0.015184968709945679, -0.025516651570796967, -0.03251929581165314, -0.12526251375675201, 0.07580026984214783, 0.1519334614276886, 0.03457076847553253, 0.03928261995315552, 0.019109908491373062, 0.0656111091375351, 0.08482266217470169, 0.08635590225458145, -0.03276140242815018, -0.03715568408370018, 0.05650326982140541, -0.058526746928691864, -0.020092671737074852, -0.05471396818757057, -0.1800030618906021, -0.0026366552338004112, 0.05246860906481743, 0.0433221273124218, 0.02538209781050682, 0.08541329205036163, -0.0429791696369648, -0.08040383458137512, 0.12373753637075424, -0.03884255141019821, -0.03552943095564842, -0.023857522755861282, -0.03729460388422012, 0.036427225917577744, 0.01692989654839039, 0.06734956800937653, -0.08505678176879883, 0.02852722257375717, -0.05622189864516258, 0.0019868395756930113, -0.03006686083972454, -0.025313615798950195, -0.028482338413596153, 0.024329476058483124, 0.034580159932374954, -0.11577000468969345, -0.16916297376155853, 0.012520530261099339, -0.002289204392582178, -0.04966418817639351, -0.0968506932258606, -0.09452228993177414, -0.029793033376336098, -0.006284529808908701, -0.036784183233976364, -0.012056674808263779, -0.019420141354203224, 0.07647101581096649, 0.010759489610791206, 0.11125463247299194, -0.11232861131429672, 0.04232193902134895, -0.07273232191801071, -0.010531259700655937, -0.14114145934581757, 0.1320635974407196, -0.012976325117051601, 0.0655643418431282, -0.02091389335691929, -0.0052958098240196705, -0.052585188299417496, 0.057539135217666626, -0.009657629765570164, 0.19895249605178833, -0.12288665771484375, -0.12583109736442566, 0.23683056235313416, -0.09615730494260788, -0.1311597377061844, 0.12527428567409515, -0.012196625582873821, 0.11324924975633621, 0.08030771464109421, 0.1526269018650055, -0.07741168886423111, -0.02349938079714775, 0.07353312522172928, 0.08282581716775894, -0.15175963938236237, 0.035146452486515045, -0.01416823361068964, 0.05534768104553223, -0.0696793645620346, 0.035620011389255524, 0.11316820234060287, 0.07371241599321365, -0.09373252838850021, -0.054203297942876816, -0.012479175813496113, -0.04112209752202034, 0.05869312584400177, -0.012677127495408058, 0.13815546035766602, 0.004290744196623564, -0.006812958046793938, 0.033263612538576126, 0.04271223768591881, -0.04245652258396149, 0.005804102867841721, -0.11274036020040512, 0.09741867333650589, 0.03105876035988331, 0.05797367915511131, -0.17466400563716888, 0.0063563063740730286, 0.0002527935430407524, 0.19359517097473145, 0.038680750876665115, 0.07269911468029022, 0.018410086631774902, -0.0195818729698658, -0.007673065178096294, 0.021384762600064278, 0.1401849240064621, -0.013252362608909607, -0.0787646621465683, -0.07791812717914581, 0.05885142460465431, -0.043528370559215546, 0.08873987197875977, -0.11285092681646347, 0.027344703674316406, -0.0013164770789444447, 0.11270903050899506, 0.0072760931216180325, 0.04819057136774063, 0.028485240414738655, 0.027805326506495476, -0.09509283304214478, 0.00432207528501749, 0.07534757256507874, -0.005855039693415165, -0.07340315729379654, 0.15842072665691376, -0.10553815215826035, 0.1055162325501442, 0.1757829338312149, -0.23555174469947815, -0.02735966257750988, -0.05012130364775658, -0.03992027789354324, -0.007370665203779936, 0.01684907265007496, 0.034931719303131104, 0.15076547861099243, -0.026639530435204506, 0.16610020399093628, -0.040638603270053864, 0.013523002155125141, -0.00034445658093318343, -0.08614588528871536, 0.029831787571310997, 0.06865201890468597, 0.12819738686084747, -0.15707269310951233, 0.12048552185297012, 0.03664889186620712, 0.02744954265654087, 0.16344118118286133, 0.032733798027038574, 0.02267545461654663, 0.02316383272409439, 0.042858414351940155, -0.047897521406412125, -0.005555336829274893, -0.21217264235019684, -0.05148591473698616, 0.0440233014523983, -0.01556202583014965, 0.11723106354475021, -0.1107335239648819, -0.021781014278531075, -0.025681791827082634, -0.006804165430366993, 0.04760201275348663, 0.08610765635967255, 0.013299208134412766, 0.09296367317438126, -0.05569665879011154, -0.05338424816727638, 0.04081936180591583, 0.018029872328042984, -0.10262957960367203, 0.15337927639484406, -0.09851714223623276, -0.3666187822818756, -0.07805059105157852, -0.13256476819515228, -0.051528289914131165, 0.06737533211708069, 0.06221981719136238, -0.13870270550251007, -0.02579037845134735, 0.032569050788879395, 0.11221516877412796, -0.026033179834485054, 0.010942203924059868, 0.037360403686761856, 0.04306354001164436, -0.09611266106367111, -0.06938395649194717, -0.04364197701215744, -0.06072436645627022, -0.0832376480102539, 0.13163982331752777, -0.16972288489341736, 0.029257196933031082, 0.16444876790046692, 0.05326434597373009, 0.04075687751173973, -0.03478245437145233, 0.23768006265163422, -0.1031591147184372, 0.0346442386507988, 0.20818208158016205, -0.035095248371362686, 0.02719837985932827, 0.12599092721939087, -0.021137449890375137, -0.11170674860477448, 0.057494498789310455, -0.053649358451366425, -0.0624837651848793, -0.19204606115818024, -0.1652294546365738, -0.11820828169584274, 0.07965359836816788, 0.028193078935146332, 0.034158892929553986, 0.17763511836528778, 0.08626922965049744, -0.008570832200348377, 0.08205568790435791, 0.06047727167606354, 0.07503385096788406, 0.10092873871326447, -0.058938901871442795, 0.15544773638248444, -0.008981749415397644, -0.10874807834625244, 0.08326657116413116, 0.030659057199954987, 0.15211378037929535, 0.05123617500066757, 0.050492528825998306, 0.03269799426198006, 0.11866165697574615, 0.1908646523952484, 0.06983042508363724, -0.007627192884683609, -0.0514901764690876, -0.02435792051255703, -0.010677308775484562, -0.09223514795303345, 0.04978416860103607, 0.058934152126312256, -0.15905573964118958, -0.03290176764130592, 0.0918952152132988, 0.08264388144016266, 0.14681631326675415, 0.06734011322259903, -0.1593455970287323, -0.05515670403838158, 0.03206097334623337, -0.03392009809613228, -0.0964246615767479, 0.09369103610515594, 0.04722318425774574, -0.1758238673210144, -0.008380924351513386, -0.020340172573924065, 0.12581892311573029, -0.09917387366294861, 0.056193966418504715, -0.12643133103847504, -0.02890375442802906, 0.020808199420571327, 0.08344747126102448, -0.3564693331718445, 0.17955994606018066, -0.019856221973896027, -0.03600027784705162, -0.09784021228551865, 0.006911121774464846, 0.018602151423692703, 0.08789818733930588, 0.08796413242816925, -0.01353449933230877, -0.04755143076181412, -0.07188238203525543, -0.08839312940835953, 0.03242039680480957, 0.08959102630615234, -0.023157967254519463, -0.02538367547094822, -0.03228113427758217, -0.008441687561571598, -0.023134516552090645, -0.06727326661348343, -0.06261257827281952, -0.15960800647735596, 0.06346435099840164, 0.024455193430185318, 0.04755200445652008, 0.0036523041781038046, -0.015281390398740768, 0.03173954412341118, 0.2445565164089203, -0.040996190160512924, -0.10136579722166061, -0.0930832102894783, 0.02128221094608307, 0.05260929465293884, -0.0542028471827507, 0.0677303597331047, -0.025939777493476868, 0.048250965774059296, -0.06405241787433624, -0.16274109482765198, 0.084941066801548, -0.1275498867034912, -0.06938061863183975, -0.02674812637269497, 0.1474706530570984, 0.031083278357982635, -0.002181323943659663, 0.05268166586756706, -0.02543281950056553, -0.09261507540941238, -0.08815383166074753, -0.056702759116888046, 0.04290544241666794, 0.03199221193790436, 0.03458591178059578, -0.057682670652866364, -0.1150447428226471, -0.10721183568239212, -0.04915105924010277, 0.24959833920001984, 0.1695491373538971, -0.025626182556152344, 0.17786501348018646, 0.09742704033851624, -0.018956007435917854, -0.2621932029724121, -0.15495048463344574, -0.02562810853123665, -0.002188821556046605, -0.07458582520484924, -0.21294623613357544, 0.09371505677700043, -0.03535006567835808, -0.01682957448065281, 0.0266824159771204, -0.24665337800979614, -0.12168094515800476, 0.18642102181911469, -0.02098582126200199, 0.3376525342464447, -0.0607769675552845, -0.06400400400161743, -0.025875581428408623, -0.145969957113266, 0.13530991971492767, 0.05480790510773659, 0.08902525156736374, 0.009603271260857582, 0.1367211788892746, 0.03468026965856552, -0.01462063379585743, 0.06939098238945007, -0.008571414276957512, -0.04257259890437126, -0.08026767522096634, -0.11267051845788956, 0.00215091067366302, 0.03280114009976387, 0.03058398701250553, -0.04270169883966446, 0.062357403337955475, -0.07585199177265167, -0.06336043775081635, -0.044751282781362534, 0.01391131803393364, 0.024148404598236084, -0.06505642086267471, -0.043568581342697144, -0.03684288635849953, -0.04348933696746826, 0.04824318364262581, 0.15981803834438324, -0.026707910001277924, 0.042124588042497635, 0.09920897334814072, 0.10192917287349701, -0.15555855631828308, 0.06873769313097, -0.06799911707639694, -0.04767997935414314, 0.08725418895483017, -0.09645972400903702, 0.03880728408694267, 0.08393827825784683, -0.04265275597572327, 0.13163378834724426, 0.09016228467226028, 0.020388728007674217, 0.040331389755010605, 0.09836912155151367, -0.23861399292945862, -0.04386300966143608, -0.07400478422641754, 0.051272012293338776, 0.1077088937163353, 0.06496502459049225, 0.145156592130661, -0.017122160643339157, -0.06910160183906555, -0.0021521032322198153, 0.0475722998380661, -0.057338640093803406, 0.06658449023962021, -0.02064618654549122, 0.032119203358888626, -0.16008345782756805, 0.026237035170197487, 0.03944273665547371, -0.016286352649331093, 0.036120180040597916, 0.08564790338277817, -0.14324820041656494, -0.08767840266227722, -0.05671289935708046, 0.12090688943862915, -0.1199081614613533, -0.017788849771022797, -0.0527581088244915, -0.11682743579149246, 0.027610313147306442, 0.0876651182770729, 0.08506735414266586, 0.041151825338602066, -0.04886412248015404, -0.0065359026193618774, -0.06557776033878326, -0.013058689422905445, 0.07016712427139282, -0.0022453225683420897, -0.08690088242292404, 0.038117993623018265, 0.00751588074490428, 0.12386950105428696, -0.11398910731077194, -0.09557680040597916, -0.18364520370960236, 0.043963734060525894, -0.11984772235155106, -0.0436432808637619, -0.15185175836086273, -0.06491772085428238, -0.00700491713359952, -0.049579888582229614, -0.03813917562365532, -0.01128966175019741, -0.08552800118923187, 0.03561217710375786, -0.04856855422258377, 0.003990646451711655, -0.0655195415019989, 0.03536733239889145, 0.07652832567691803, -0.05288921669125557, 0.14108183979988098, 0.16471348702907562, -0.0808936208486557, 0.0794994980096817, -0.08793153613805771, -0.08603985607624054, 0.10033158212900162, 0.03430330753326416, 0.0749678835272789, 0.03717350587248802, -0.002369529567658901, 0.06883154809474945, 0.05755702406167984, 0.021316394209861755, 0.09278443455696106, -0.06541804224252701, 0.003363115480169654, -0.09877028316259384, -0.09888231754302979, -0.06668725609779358, -0.0016200027894228697, 0.06563366949558258, 0.0650564432144165, 0.08552297949790955, -0.06331759691238403, 0.0908854529261589, -0.07336204499006271, 0.0319892093539238, 0.0033729940187186003, -0.12657728791236877, 0.020208800211548805, -0.11222704499959946, 0.04133158177137375, -0.018074896186590195, 0.22826211154460907, 0.011876573786139488, 0.001140147214755416, 0.0029528203886002302, 0.07427152991294861, 0.00923819001764059, 0.037756141275167465, 0.20143061876296997, 0.1116960421204567, -0.0023092913907021284, -0.11418353021144867, 0.09825152903795242, 0.04103612154722214, 0.04961449280381203, 0.10882768034934998, -0.02012508362531662, -0.0989152118563652, 0.06837041676044464, -0.029581772163510323, 0.008177671581506729, -0.09792269766330719, -0.08743564784526825, -0.1460418850183487, 0.01991037279367447, -0.02611755207180977, 0.03914647921919823, 0.15424391627311707, -0.03619912266731262, 0.03535338491201401, 0.008351297117769718, -0.0875474140048027, -0.15519316494464874, -0.11611999571323395, -0.08524905145168304, -0.170903742313385, 0.012322349473834038, -0.11902764439582825, -0.010705853812396526, -0.01411342341452837, 0.0649854987859726, -0.05806624889373779, 0.09112254530191422, 0.05327928066253662, -0.06734542548656464, 0.04213375598192215, -0.030324947088956833, 0.005323662888258696, -0.06970810145139694, -0.021510988473892212, -0.07774488627910614, 0.05908779054880142, 0.0279705747961998, 0.020324839279055595, -0.07944052666425705, 0.06150726228952408, -0.07428382337093353, -0.08433715254068375, -0.041018180549144745, 0.012239068746566772, -0.035543665289878845, 0.10873997956514359, 0.012632065452635288, -0.0006236344925127923, 0.014564771205186844, 0.26148664951324463, -0.02995699644088745, -0.11420205980539322, -0.14456453919410706, 0.22269202768802643, -0.023681022226810455, 0.08648225665092468, -0.023524897173047066, 0.013821281492710114, -0.11840161681175232, 0.37551724910736084, 0.27320384979248047, -0.10854567587375641, -0.007001534104347229, 0.0047440677881240845, 0.02488078363239765, 0.031042426824569702, 0.0911242812871933, 0.10599526017904282, 0.33385157585144043, -0.04601680487394333, -0.07298913598060608, -0.04677267745137215, -0.07065969705581665, -0.06888570636510849, 0.02749890275299549, 0.07938376814126968, -0.05956681817770004, -0.018522782251238823, 0.08876805007457733, -0.2608608603477478, 0.06715019792318344, -0.11974453926086426, -0.1604049950838089, -0.07590556144714355, 0.03244068846106529, 0.08211755752563477, 0.026905706152319908, 0.0820048376917839, -0.022098369896411896, -0.027134617790579796, 0.08734239637851715, 0.009995329193770885, -0.1426972597837448, 0.03957768902182579, 0.09241566807031631, -0.13874401152133942, -0.00539175420999527, -0.03555764630436897, 0.08666116744279861, 0.05076029151678085, 0.06031830608844757, -0.008038937114179134, 0.03752753883600235, -0.02746560052037239, -0.025009946897625923, 0.02411157451570034, 0.12038451433181763, 0.004350220784544945, -0.060582488775253296, 0.08061140775680542, -0.1673850417137146, 0.034234002232551575, -0.06879929453134537, 0.005690525285899639, -0.03052539937198162, 0.06435402482748032, -0.07441361993551254, 0.07550214231014252, 0.07954692095518112, -0.030408507212996483, 0.04726345092058182, -0.02660275436937809, 0.04225796088576317, -0.03160055726766586, -0.016486626118421555, -0.11832961440086365, -0.2127317637205124, -0.09481188654899597, 0.02636706456542015, -0.04206359386444092, -0.11511005461215973, -0.004422332160174847, -0.13992725312709808, 0.02762431651353836, -0.13639239966869354, 0.09375499188899994, 0.13300098478794098, 0.022977501153945923, -0.003526104846969247, 0.022586267441511154, 0.010671145282685757, 0.06294161826372147, -0.09098278731107712, -0.10411419719457626 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-portuguese-cased-finetuned-peticoes This model is a fine-tuned version of [neuralmind/bert-base-portuguese-cased](https://huggingface.co/neuralmind/bert-base-portuguese-cased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0878 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.0 | 215 | 1.1349 | | No log | 2.0 | 430 | 1.0925 | | 1.3219 | 3.0 | 645 | 1.0946 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.9.0+cu111 - Datasets 1.13.3 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "widget": [{"text": "Com efeito, se tal fosse poss\u00edvel, o Poder [MASK] \u2013 que n\u00e3o disp\u00f5e de fun\u00e7\u00e3o legislativa \u2013 passaria a desempenhar atribui\u00e7\u00e3o que lhe \u00e9 institucionalmente estranha (a de legislador positivo), usurpando, desse modo, no contexto de um sistema de poderes essencialmente limitados, compet\u00eancia que n\u00e3o lhe pertence, com evidente transgress\u00e3o ao princ\u00edpio constitucional da separa\u00e7\u00e3o de poderes."}], "model-index": [{"name": "bert-base-portuguese-cased-finetuned-peticoes", "results": []}]}
fill-mask
Luciano/bert-base-portuguese-cased-finetuned-peticoes
[ "transformers", "pytorch", "tensorboard", "safetensors", "bert", "fill-mask", "generated_from_trainer", "pt", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us
bert-base-portuguese-cased-finetuned-peticoes ============================================= This model is a fine-tuned version of neuralmind/bert-base-portuguese-cased on the None dataset. It achieves the following results on the evaluation set: * Loss: 1.0878 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.9.0+cu111 * Datasets 1.13.3 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ 59, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ -0.12137439101934433, 0.040493443608284, -0.0023920475505292416, 0.12218780070543289, 0.16070251166820526, 0.018370578065514565, 0.140535369515419, 0.09509110450744629, -0.0843033641576767, 0.03889484331011772, 0.1411912739276886, 0.16061480343341827, 0.0013189594028517604, 0.1435539871454239, -0.039628688246011734, -0.2473200559616089, -0.005231447052210569, 0.03469833359122276, -0.07657420635223389, 0.13266384601593018, 0.08255784213542938, -0.1520959436893463, 0.07565101236104965, 0.006420123390853405, -0.18605776131153107, 0.0013283229200169444, 0.030439889058470726, -0.0729886144399643, 0.1580328643321991, -0.003611116437241435, 0.15684327483177185, 0.012823812663555145, 0.08974125981330872, -0.15423060953617096, 0.019407767802476883, 0.0446789525449276, 0.003961482085287571, 0.07790408283472061, 0.05583886429667473, -0.002297376049682498, 0.08875341713428497, -0.08717817813158035, 0.06668219715356827, 0.01850689761340618, -0.13674089312553406, -0.24441127479076385, -0.07496944814920425, 0.021199511364102364, 0.066965252161026, 0.1043541207909584, -0.005147953983396292, 0.16985458135604858, -0.09190604090690613, 0.09219111502170563, 0.2458488941192627, -0.2887403666973114, -0.07930159568786621, 0.019400183111429214, 0.02384554035961628, 0.04830063134431839, -0.11734309047460556, -0.013322917744517326, 0.05206775665283203, 0.05044621601700783, 0.14767566323280334, -0.03513803705573082, -0.054924603551626205, 0.0013560355873778462, -0.14603842794895172, -0.034285273402929306, 0.08830051869153976, 0.02236708253622055, -0.04355330392718315, -0.04354451596736908, -0.05864185094833374, -0.14507068693637848, -0.047943778336048126, -0.019648823887109756, 0.029982736334204674, -0.057872381061315536, -0.10840227454900742, 0.012180740013718605, -0.11925292015075684, -0.0853039100766182, -0.06262703984975815, 0.18629293143749237, 0.041798364371061325, 0.01007390022277832, -0.03194316849112511, 0.11202681809663773, 0.001204468309879303, -0.14536736905574799, 0.026937387883663177, 0.033984649926424026, 0.009529476054012775, -0.04563005268573761, -0.05773608759045601, -0.06560278683900833, 0.02015821263194084, 0.11890262365341187, -0.07955534011125565, 0.03399262577295303, 0.047107547521591187, 0.051144275814294815, -0.12172136455774307, 0.16876789927482605, -0.038488540798425674, 0.010064838454127312, 0.006808252073824406, 0.06090649589896202, 0.020280545577406883, -0.0005555925308726728, -0.09976618736982346, 0.007741597481071949, 0.10857976227998734, 0.02397790178656578, -0.06651053577661514, 0.06808237731456757, -0.05070791393518448, 0.006443551275879145, 0.021470503881573677, -0.093691885471344, 0.026770051568746567, 0.006463721394538879, -0.058142997324466705, -0.042604684829711914, 0.036244459450244904, -0.0005423923721536994, 0.0036366027779877186, 0.14176343381404877, -0.09310504794120789, 0.03266311436891556, -0.09143347293138504, -0.11825410276651382, 0.0023159030824899673, -0.08624228835105896, 0.020505627617239952, -0.11973477900028229, -0.1509595513343811, 0.0009434246458113194, 0.046409089118242264, -0.008075636811554432, -0.012476019561290741, -0.034384723752737045, -0.07943836599588394, -0.002466763835400343, -0.006762244272977114, 0.12095124274492264, -0.05952610448002815, 0.12797196209430695, 0.04889337345957756, 0.0773911252617836, -0.03941323980689049, 0.036910559982061386, -0.10987986624240875, 0.014464037492871284, -0.21204081177711487, 0.0003634899912867695, -0.04302946478128433, 0.058342404663562775, -0.06687963008880615, -0.12585295736789703, -0.003292759647592902, -0.0026915327180176973, 0.08580731600522995, 0.11783923953771591, -0.1642167568206787, -0.07939404994249344, 0.18552923202514648, -0.09193604439496994, -0.11795520037412643, 0.13289262354373932, -0.05550777167081833, 0.040113236755132675, 0.058984532952308655, 0.13523676991462708, 0.07076214253902435, -0.13111519813537598, 0.02772093378007412, -0.012178674340248108, 0.041964706033468246, -0.054241325706243515, 0.062090955674648285, -0.009275548160076141, -0.019236674532294273, 0.025326890870928764, -0.04470955953001976, 0.0583387166261673, -0.11042530089616776, -0.09289029985666275, -0.028200434520840645, -0.10665072500705719, 0.09694945812225342, 0.07337270677089691, 0.07463616132736206, -0.116151362657547, -0.07621703296899796, 0.03660992160439491, 0.06483343243598938, -0.04800990968942642, 0.01583215780556202, -0.06424026936292648, 0.08564835786819458, -0.053573861718177795, -0.03892326354980469, -0.16752195358276367, -0.04255513474345207, 0.002089363755658269, -0.0010637037921696901, 0.00014137933612801135, -0.0022421744652092457, 0.10113735496997833, 0.0998103991150856, -0.06193704158067703, -0.03963890299201012, -0.04391886666417122, 0.000050314793043071404, -0.12534357607364655, -0.1988513320684433, -0.032557662576436996, -0.027583293616771698, 0.10858739912509918, -0.18771512806415558, 0.03881068527698517, -0.049060918390750885, 0.07236231118440628, 0.011015665717422962, -0.018773140385746956, -0.04607667401432991, 0.08488784730434418, -0.016702715307474136, -0.04660908505320549, 0.06249887868762016, -0.0018182944040745497, -0.08708211034536362, -0.03890327364206314, -0.1302138864994049, 0.22263245284557343, 0.13311176002025604, -0.11987444013357162, -0.10563964396715164, 0.007009100168943405, -0.06896811723709106, -0.019676463678479195, -0.0607113316655159, 0.03707040846347809, 0.14860987663269043, -0.005640559829771519, 0.13667726516723633, -0.07321877777576447, -0.03777464106678963, 0.04585796594619751, -0.05517200380563736, 0.023041218519210815, 0.0993223562836647, 0.10296310484409332, -0.05797434598207474, 0.13893164694309235, 0.17281903326511383, -0.09444737434387207, 0.13958489894866943, -0.027981190010905266, -0.0670141726732254, -0.02092098630964756, 0.004051857627928257, 0.018534282222390175, 0.14014188945293427, -0.1259964257478714, 0.002625285182148218, 0.011197006329894066, 0.0028130868449807167, 0.0033108110073953867, -0.24531589448451996, -0.0679284930229187, 0.036981724202632904, -0.030380206182599068, -0.03686608746647835, -0.001414717873558402, 0.010515207424759865, 0.11362073570489883, -0.007709768135100603, -0.09159521758556366, 0.03280248865485191, 0.008282501250505447, -0.07716606557369232, 0.23135575652122498, -0.0722418949007988, -0.14633376896381378, -0.11793026328086853, -0.06389199942350388, -0.025235112756490707, 0.026451468467712402, 0.0621359758079052, -0.10053104162216187, -0.022907529026269913, -0.05891764163970947, 0.0022813999094069004, 0.02181635983288288, 0.06129920855164528, -0.007875684648752213, -0.011821355670690536, 0.08567672222852707, -0.10165583342313766, -0.014895842410624027, -0.0595565140247345, -0.0820452868938446, 0.07191403210163116, 0.05376998707652092, 0.12870441377162933, 0.14114126563072205, -0.032371945679187775, 0.00004475113746593706, -0.032144010066986084, 0.224918931722641, -0.07099945843219757, -0.03832283616065979, 0.1360950618982315, -0.016671404242515564, 0.06248888373374939, 0.10244718194007874, 0.07782316952943802, -0.08716029673814774, 0.013641263358294964, 0.02037343569099903, -0.04814428836107254, -0.19593067467212677, -0.03349004313349724, -0.04491953179240227, -0.0181683748960495, 0.09892301261425018, 0.027616694569587708, 0.03724243491888046, 0.08397668600082397, 0.03133532777428627, 0.048561472445726395, -0.04115733504295349, 0.05133138597011566, 0.05003206059336662, 0.03864898905158043, 0.12137840688228607, -0.03207922354340553, -0.09559302777051926, 0.013895734213292599, -0.039896752685308456, 0.21852868795394897, -0.0011030987370759249, 0.07650555670261383, 0.07892400026321411, 0.20756427943706512, 0.0011928441235795617, 0.11361715942621231, 0.006603634916245937, -0.06925554573535919, 0.003894220106303692, -0.059183284640312195, -0.022887397557497025, 0.009539327584207058, -0.05549022927880287, 0.08431465923786163, -0.14078494906425476, -0.0016858713934198022, 0.046031881123781204, 0.23168866336345673, 0.04150044173002243, -0.34268054366111755, -0.09421966969966888, -0.018091587349772453, -0.0021867749746888876, -0.019240902736783028, 0.011341494508087635, 0.13047108054161072, -0.08500532805919647, 0.03298606351017952, -0.0771699920296669, 0.06518924236297607, 0.011486249975860119, 0.05157863721251488, 0.059836044907569885, 0.0910719633102417, -0.012362334877252579, 0.06074303761124611, -0.3053151071071625, 0.31219029426574707, -0.0035595952067524195, 0.09356024116277695, -0.07403822988271713, -0.01196892000734806, 0.043943244963884354, 0.05059736594557762, 0.09456059336662292, -0.016873935237526894, -0.0012877564877271652, -0.23810282349586487, -0.04907017573714256, 0.0326450914144516, 0.10510033369064331, -0.023347020149230957, 0.10300373286008835, -0.010453365743160248, -0.005354249384254217, 0.07984566688537598, 0.004363266285508871, -0.07145439088344574, -0.06827943027019501, -0.017981309443712234, 0.011274169199168682, -0.05608270317316055, -0.08477990329265594, -0.12295480072498322, -0.1424311399459839, 0.12293359637260437, 0.0029262492898851633, -0.026381371542811394, -0.11086774617433548, 0.05902395769953728, 0.082379549741745, -0.0903368592262268, 0.0655658096075058, 0.008021673187613487, 0.06380847841501236, 0.00868899654597044, -0.04599815234541893, 0.109794482588768, -0.08537767827510834, -0.17316694557666779, -0.07450012862682343, 0.11087656021118164, 0.04463846608996391, 0.0671316608786583, -0.0006220078794285655, 0.018104257062077522, -0.026020171120762825, -0.08626643568277359, 0.04578353837132454, -0.053792804479599, 0.07254642993211746, 0.017059385776519775, -0.04976487159729004, 0.0002715635928325355, -0.06532876938581467, -0.014023248106241226, 0.168784499168396, 0.27988868951797485, -0.09785780310630798, 0.0015369117027148604, 0.04951394721865654, -0.04390336573123932, -0.22013384103775024, 0.04221772402524948, 0.043678224086761475, 0.006072557531297207, 0.07043774425983429, -0.14214226603507996, 0.11301710456609726, 0.08845137804746628, -0.01725991815328598, 0.11838981509208679, -0.32137036323547363, -0.1319194734096527, 0.14978161454200745, 0.18660788238048553, 0.1404479295015335, -0.146353080868721, -0.015191894955933094, -0.0005291791167110205, -0.08690668642520905, 0.056828536093235016, -0.09248445183038712, 0.1138649582862854, -0.03459462523460388, 0.07389761507511139, 0.01170113030821085, -0.08273375779390335, 0.11939802020788193, -0.013141544535756111, 0.10766743868589401, -0.06364013999700546, -0.03662951663136482, 0.04098929464817047, -0.030491523444652557, 0.00638175755739212, -0.0643676370382309, 0.026933524757623672, -0.024114998057484627, -0.021298158913850784, -0.08981644362211227, 0.06727397441864014, -0.03683534264564514, -0.06909024715423584, -0.016284244135022163, 0.0275310967117548, 0.030339553952217102, -0.02157396636903286, 0.10390663146972656, 0.025564489886164665, 0.20038540661334991, 0.08133749663829803, 0.057156044989824295, -0.04284460470080376, -0.07082142680883408, -0.0037404214963316917, -0.028375713154673576, 0.062167346477508545, -0.08702313154935837, 0.01680748537182808, 0.12516681849956512, 0.03873249515891075, 0.11749420315027237, 0.09404223412275314, -0.0316588431596756, 0.020054996013641357, 0.07886878401041031, -0.17166505753993988, -0.08386445045471191, -0.0017646915512159467, -0.056766293942928314, -0.11558281630277634, 0.06326697766780853, 0.07345785945653915, -0.08302346616983414, -0.00021972072136122733, -0.024881677702069283, 0.0005064089200459421, -0.05864535644650459, 0.22155825793743134, 0.06880664080381393, 0.058941472321748734, -0.0916861817240715, 0.04023001715540886, 0.026882493868470192, -0.06857930123806, -0.009625817649066448, 0.054665643721818924, -0.0783555880188942, -0.04118794575333595, 0.10732708126306534, 0.17290572822093964, -0.028030462563037872, -0.03866252675652504, -0.1572382152080536, -0.1259687840938568, 0.057272762060165405, 0.19281995296478271, 0.10038434714078903, 0.007560097146779299, -0.03520876169204712, 0.027944056317210197, -0.1264381855726242, 0.09080633521080017, 0.05098344385623932, 0.07396603375673294, -0.13395319879055023, 0.20841366052627563, 0.007373919244855642, 0.048659615218639374, -0.02630958892405033, 0.031991034746170044, -0.11022888869047165, 0.02049889974296093, -0.10269377380609512, -0.031969137489795685, -0.036600466817617416, -0.014865915291011333, -0.009242949075996876, -0.059711307287216187, -0.04938138276338577, 0.014225407503545284, -0.11536747962236404, -0.01723376102745533, 0.05258296802639961, 0.03408410772681236, -0.12765558063983917, -0.0486336275935173, 0.03309934213757515, -0.06609360128641129, 0.054363105446100235, 0.05826810747385025, 0.011029289104044437, 0.06580626964569092, -0.17996914684772491, -0.005281247664242983, 0.07725580036640167, -0.0032575801014900208, 0.06078445538878441, -0.07428769767284393, -0.007274812087416649, -0.009651478379964828, 0.053571607917547226, 0.019880956038832664, 0.07537918537855148, -0.14821107685565948, 0.021055325865745544, -0.007054908666759729, -0.08064330369234085, -0.05812418460845947, 0.008603879250586033, 0.06967668235301971, -0.012633182108402252, 0.19057974219322205, -0.1129390299320221, 0.06135677173733711, -0.21484771370887756, -0.007662736810743809, -0.018514864146709442, -0.10146494209766388, -0.12576082348823547, -0.03979620710015297, 0.07117157429456711, -0.04667456075549126, 0.11339755356311798, 0.009060252457857132, 0.045057445764541626, 0.02036864124238491, -0.025542831048369408, 0.040068890899419785, 0.0143948495388031, 0.2180386334657669, 0.022020237520337105, -0.056321628391742706, 0.048461370170116425, 0.06334865093231201, 0.09782613068819046, 0.08748634159564972, 0.2145228534936905, 0.15684504806995392, -0.0002899401297327131, 0.08933386206626892, 0.03510561212897301, -0.03964271396398544, -0.15046006441116333, -0.023776110261678696, -0.037316933274269104, 0.07114887237548828, -0.01616573892533779, 0.18909771740436554, 0.09178639948368073, -0.16111451387405396, 0.03866381198167801, -0.04298428073525429, -0.08031760156154633, -0.11487922072410583, -0.04132957383990288, -0.0768921822309494, -0.10941346734762192, 0.010874506086111069, -0.09202385693788528, 0.004106263630092144, 0.10112756490707397, 0.0056683714501559734, -0.01872112788259983, 0.2315572202205658, 0.03633250296115875, 0.049105558544397354, 0.0455813854932785, 0.014608080498874187, -0.01738795079290867, -0.07508737593889236, -0.06891836225986481, -0.020749803632497787, -0.03822007030248642, 0.024505890905857086, -0.0746847540140152, -0.0820450559258461, 0.04753490909934044, -0.005357443355023861, -0.11408770829439163, 0.01656542904675007, 0.017590167000889778, 0.062370285391807556, 0.04388673976063728, 0.01373953465372324, 0.021500904113054276, -0.020571444183588028, 0.18553821742534637, -0.07273104041814804, -0.09891553223133087, -0.07711751759052277, 0.28812023997306824, 0.04219386726617813, -0.006140487268567085, 0.02855800651013851, -0.06712852418422699, 0.02665487304329872, 0.24954131245613098, 0.2183840274810791, -0.07398370653390884, 0.023746585473418236, -0.0027149065863341093, -0.014126281253993511, -0.036865442991256714, 0.11972672492265701, 0.12504075467586517, 0.07865404337644577, -0.09659834951162338, -0.03522073104977608, -0.06908967345952988, 0.0018165819346904755, -0.05420738086104393, 0.0282288808375597, 0.05359148979187012, 0.021125204861164093, -0.05763667821884155, 0.06191007420420647, -0.061003632843494415, -0.09751013666391373, 0.08880816400051117, -0.19549348950386047, -0.14193785190582275, -0.012577241286635399, 0.10773453861474991, 0.007891002111136913, 0.07724966108798981, -0.03198077529668808, 0.008303029462695122, 0.05220998823642731, -0.010931698605418205, -0.0664537101984024, -0.08917239308357239, 0.08634492754936218, -0.07306207716464996, 0.23697422444820404, -0.040039967745542526, 0.06767740845680237, 0.11975766718387604, 0.06221912428736687, -0.06355295330286026, 0.0826224535703659, 0.05283067747950554, -0.09471302479505539, 0.01764702796936035, 0.09386388957500458, -0.03031349368393421, 0.042633939534425735, 0.036465004086494446, -0.13307233154773712, 0.04154268279671669, -0.0766429454088211, -0.05353890731930733, -0.041334766894578934, -0.01965174823999405, -0.043463580310344696, 0.11271537840366364, 0.19940519332885742, -0.023718932643532753, 0.014063424430787563, -0.06339357048273087, 0.02364402636885643, 0.07808959484100342, 0.016436481848359108, -0.07252855598926544, -0.2366989254951477, 0.01798427477478981, 0.0377466082572937, -0.03169068321585655, -0.27379918098449707, -0.1004900187253952, -0.00033196655567735434, -0.07826496660709381, -0.09753911942243576, 0.052870962768793106, 0.07195591926574707, 0.07104215770959854, -0.04656560346484184, -0.05988119915127754, -0.07826747000217438, 0.163701131939888, -0.15108850598335266, -0.0911775603890419 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-portuguese-cased-finetuned-tcu-acordaos This model is a fine-tuned version of [neuralmind/bert-base-portuguese-cased](https://huggingface.co/neuralmind/bert-base-portuguese-cased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5765 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 0.7308 | 1.0 | 1383 | 0.6286 | | 0.6406 | 2.0 | 2766 | 0.5947 | | 0.6033 | 3.0 | 4149 | 0.5881 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.9.0+cu111 - Datasets 1.13.2 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "widget": [{"text": "Com efeito, se tal fosse poss\u00edvel, o Poder [MASK] \u2013 que n\u00e3o disp\u00f5e de fun\u00e7\u00e3o legislativa \u2013 passaria a desempenhar atribui\u00e7\u00e3o que lhe \u00e9 institucionalmente estranha (a de legislador positivo), usurpando, desse modo, no contexto de um sistema de poderes essencialmente limitados, compet\u00eancia que n\u00e3o lhe pertence, com evidente transgress\u00e3o ao princ\u00edpio constitucional da separa\u00e7\u00e3o de poderes."}], "model-index": [{"name": "bert-base-portuguese-cased-finetuned-tcu-acordaos", "results": []}]}
fill-mask
Luciano/bert-base-portuguese-cased-finetuned-tcu-acordaos
[ "transformers", "pytorch", "tensorboard", "safetensors", "bert", "fill-mask", "generated_from_trainer", "pt", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us
bert-base-portuguese-cased-finetuned-tcu-acordaos ================================================= This model is a fine-tuned version of neuralmind/bert-base-portuguese-cased on the None dataset. It achieves the following results on the evaluation set: * Loss: 0.5765 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.9.0+cu111 * Datasets 1.13.2 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.2\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.2\n* Tokenizers 0.10.3" ]
[ 59, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #fill-mask #generated_from_trainer #pt #license-mit #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.2\n* Tokenizers 0.10.3" ]
[ -0.12114304304122925, 0.041796717792749405, -0.0024291337467730045, 0.1218511313199997, 0.16021065413951874, 0.018603427335619926, 0.14065785706043243, 0.09501110762357712, -0.08416728675365448, 0.03861834853887558, 0.14108175039291382, 0.16009168326854706, 0.0012864540331065655, 0.14301931858062744, -0.039359480142593384, -0.2477225810289383, -0.005277208983898163, 0.034698545932769775, -0.07750439643859863, 0.13269755244255066, 0.08253323286771774, -0.15196312963962555, 0.0755489245057106, 0.006750370841473341, -0.18589122593402863, 0.0013105944963172078, 0.030594777315855026, -0.07306543737649918, 0.1581346094608307, -0.0038903243839740753, 0.15744993090629578, 0.012951438315212727, 0.08977042138576508, -0.15455226600170135, 0.01941862516105175, 0.04475068673491478, 0.003982674330472946, 0.07819277793169022, 0.05618802830576897, -0.002543034264817834, 0.08930134773254395, -0.08717110008001328, 0.06666678935289383, 0.01843653805553913, -0.13633693754673004, -0.2445610910654068, -0.07498636841773987, 0.02126217447221279, 0.06697897613048553, 0.10414769500494003, -0.00462935958057642, 0.16908381879329681, -0.09141477942466736, 0.09193019568920135, 0.2462524026632309, -0.2890371084213257, -0.07904952019453049, 0.018625477328896523, 0.024135923013091087, 0.048476990312337875, -0.1170494332909584, -0.013570228591561317, 0.05182812735438347, 0.05039796605706215, 0.14810925722122192, -0.03546203672885895, -0.05507897958159447, 0.0012231820728629827, -0.14597053825855255, -0.03463813662528992, 0.08776389807462692, 0.021983269602060318, -0.043924346566200256, -0.043029364198446274, -0.05915350839495659, -0.14454101026058197, -0.04776700586080551, -0.019779125228524208, 0.030179012566804886, -0.05760933458805084, -0.10807187110185623, 0.010795051231980324, -0.11952279508113861, -0.08565327525138855, -0.062485285103321075, 0.18685053288936615, 0.041935909539461136, 0.010566250421106815, -0.03222273290157318, 0.11218317598104477, 0.0013805899070575833, -0.14553233981132507, 0.026710962876677513, 0.03372741490602493, 0.01001967303454876, -0.045251186937093735, -0.057572297751903534, -0.06567388772964478, 0.020389307290315628, 0.11828409880399704, -0.07990915328264236, 0.03396885469555855, 0.04662228003144264, 0.05138716846704483, -0.12171295285224915, 0.16866883635520935, -0.03800820931792259, 0.010600238107144833, 0.006887918803840876, 0.06073981896042824, 0.02040896937251091, -0.0004660855629481375, -0.09986311197280884, 0.007403965573757887, 0.10848976671695709, 0.0241173654794693, -0.06616006791591644, 0.06753883510828018, -0.05038133263587952, 0.006495967041701078, 0.020786359906196594, -0.09376388043165207, 0.026797901839017868, 0.006711011752486229, -0.05802292004227638, -0.042403444647789, 0.03692757710814476, -0.00030694084125570953, 0.0036997622810304165, 0.141732856631279, -0.09284982085227966, 0.03305528685450554, -0.09117243438959122, -0.11800093948841095, 0.0022308349143713713, -0.08661200106143951, 0.020288851112127304, -0.11990534514188766, -0.1508958339691162, 0.0016763790044933558, 0.04679938778281212, -0.007810068782418966, -0.012393809854984283, -0.034143783152103424, -0.07938404381275177, -0.002561155939474702, -0.006806797813624144, 0.12063451111316681, -0.05958658829331398, 0.12806418538093567, 0.048268094658851624, 0.07730772346258163, -0.03971504792571068, 0.03672085329890251, -0.10963459312915802, 0.014835583977401257, -0.2117270827293396, 0.0002589726645965129, -0.04280199855566025, 0.057531628757715225, -0.06724846363067627, -0.12592998147010803, -0.0034133680164813995, -0.0030615513678640127, 0.08557245880365372, 0.11800456792116165, -0.16463910043239594, -0.0792420357465744, 0.18561118841171265, -0.09227516502141953, -0.1176905632019043, 0.1327599734067917, -0.055641502141952515, 0.04044592007994652, 0.05874165520071983, 0.1350509375333786, 0.0713142529129982, -0.13129879534244537, 0.027987858280539513, -0.011673467233777046, 0.04184437170624733, -0.05381276458501816, 0.062430158257484436, -0.009563276544213295, -0.01917833276093006, 0.025059543550014496, -0.04519097879528999, 0.05827774107456207, -0.11039174348115921, -0.09284032881259918, -0.028282996267080307, -0.10680518299341202, 0.09772086888551712, 0.07258409261703491, 0.07479248195886612, -0.1155843585729599, -0.07619184255599976, 0.03728996589779854, 0.06494183093309402, -0.048139553517103195, 0.01612790860235691, -0.06430097669363022, 0.08539009094238281, -0.05381736531853676, -0.0391775481402874, -0.16760985553264618, -0.04261809214949608, 0.0021452640648931265, -0.0014787837862968445, -0.000021733154426328838, -0.002165870973840356, 0.10106092691421509, 0.09996495395898819, -0.061823442578315735, -0.039584655314683914, -0.044487882405519485, 0.00019895592413377017, -0.12502345442771912, -0.1988299936056137, -0.032744091004133224, -0.027522748336195946, 0.108733169734478, -0.18763360381126404, 0.03860117122530937, -0.048656608909368515, 0.07259117811918259, 0.011353214271366596, -0.01866956241428852, -0.046164799481630325, 0.08435022085905075, -0.01681983657181263, -0.04668288677930832, 0.06248892843723297, -0.0014665061607956886, -0.08750826120376587, -0.03872266039252281, -0.12974591553211212, 0.2220011055469513, 0.13275130093097687, -0.11936691403388977, -0.10504024475812912, 0.007063416764140129, -0.06933506578207016, -0.019532758742570877, -0.06089818850159645, 0.03735721483826637, 0.14896821975708008, -0.005671802442520857, 0.13699927926063538, -0.07327590882778168, -0.0377700999379158, 0.0457739531993866, -0.055290259420871735, 0.02309548854827881, 0.09882479906082153, 0.10318365693092346, -0.057833343744277954, 0.13818341493606567, 0.1730317771434784, -0.09480053186416626, 0.13940680027008057, -0.027812108397483826, -0.06693511456251144, -0.021191691979765892, 0.004295898135751486, 0.018541134893894196, 0.14023201167583466, -0.1258212774991989, 0.003179021878167987, 0.011369033716619015, 0.003030024701729417, 0.003731562988832593, -0.24554292857646942, -0.06767360121011734, 0.03700866922736168, -0.030576713383197784, -0.03702649101614952, -0.001512905233539641, 0.010818064212799072, 0.11349897086620331, -0.007852522656321526, -0.09137548506259918, 0.032950226217508316, 0.008047497831285, -0.07738707214593887, 0.23112337291240692, -0.07240062206983566, -0.14647707343101501, -0.11797238886356354, -0.0634191557765007, -0.024935174733400345, 0.026663221418857574, 0.061982832849025726, -0.09993696212768555, -0.022976091131567955, -0.05895373597741127, 0.002528635086491704, 0.021236054599285126, 0.06166187673807144, -0.008024897426366806, -0.011596820317208767, 0.08570784330368042, -0.1018364429473877, -0.014827309176325798, -0.05946454033255577, -0.08230948448181152, 0.07163777947425842, 0.0543045811355114, 0.1284084916114807, 0.14090175926685333, -0.03256713226437569, -0.00006032519377185963, -0.03199941664934158, 0.22440043091773987, -0.07109148800373077, -0.038100216537714005, 0.13643619418144226, -0.017422756180167198, 0.06264433264732361, 0.10221420973539352, 0.07755265384912491, -0.08687194436788559, 0.013596725650131702, 0.020131444558501244, -0.04830184578895569, -0.1961393654346466, -0.03356095775961876, -0.04481828212738037, -0.01808912493288517, 0.09918409585952759, 0.027723070234060287, 0.03652801364660263, 0.08381904661655426, 0.03151846304535866, 0.048523493111133575, -0.0409410260617733, 0.05148325487971306, 0.04961100593209267, 0.038671836256980896, 0.12086687237024307, -0.03221576288342476, -0.09525447338819504, 0.014156228862702847, -0.03983842581510544, 0.2188597023487091, -0.0010744923492893577, 0.07627387344837189, 0.07892151921987534, 0.2076854258775711, 0.001279487507417798, 0.11354602128267288, 0.0067930081859230995, -0.06867393106222153, 0.004000882618129253, -0.059154462069272995, -0.02303052507340908, 0.009834544733166695, -0.055432986468076706, 0.08415483683347702, -0.1406891942024231, -0.001204067375510931, 0.045790333300828934, 0.23202422261238098, 0.0412454828619957, -0.342237651348114, -0.09438855201005936, -0.01781647279858589, -0.0020555316004902124, -0.019538821652531624, 0.011285990476608276, 0.13129809498786926, -0.08505253493785858, 0.03295578435063362, -0.07746734470129013, 0.06500702351331711, 0.011391732841730118, 0.051236942410469055, 0.05954166501760483, 0.09081582725048065, -0.012075083330273628, 0.06077411025762558, -0.3045635521411896, 0.31204885244369507, -0.003566989442333579, 0.09321615844964981, -0.07398983836174011, -0.011756720021367073, 0.04367305710911751, 0.05080966651439667, 0.09471527487039566, -0.0166519396007061, -0.0016475513111799955, -0.23740026354789734, -0.04914442077279091, 0.032854970544576645, 0.1055469959974289, -0.023462459444999695, 0.10299456864595413, -0.01076082605868578, -0.005170578137040138, 0.07962214946746826, 0.004133526235818863, -0.07163085788488388, -0.06848181039094925, -0.01779000833630562, 0.011009098030626774, -0.05591124668717384, -0.08498204499483109, -0.12271533161401749, -0.14135588705539703, 0.12327229976654053, 0.002051770454272628, -0.026486365124583244, -0.110785573720932, 0.05882161110639572, 0.08260791003704071, -0.09032552689313889, 0.06589087098836899, 0.008040054701268673, 0.06449641287326813, 0.008433693088591099, -0.04607449471950531, 0.10941925644874573, -0.08533861488103867, -0.17328979074954987, -0.0742259994149208, 0.11116329580545425, 0.04461660236120224, 0.06708227097988129, -0.00043751730117946863, 0.0180070661008358, -0.025992654263973236, -0.08624028414487839, 0.04562859982252121, -0.052805349230766296, 0.07246619462966919, 0.01699848659336567, -0.04982919618487358, 0.00042512075742706656, -0.06506998836994171, -0.013739137910306454, 0.16927595436573029, 0.2797224819660187, -0.09809723496437073, 0.0023758448660373688, 0.04922174662351608, -0.04437814652919769, -0.2201361507177353, 0.042118869721889496, 0.043996941298246384, 0.005768842063844204, 0.07054169476032257, -0.1424589604139328, 0.11301479488611221, 0.08836521953344345, -0.01738560013473034, 0.1185467541217804, -0.3220255970954895, -0.1319602131843567, 0.14919240772724152, 0.1864202916622162, 0.14000655710697174, -0.1461513489484787, -0.01557079330086708, -0.000880625331774354, -0.08757174760103226, 0.05712289363145828, -0.09286835789680481, 0.11367945373058319, -0.03427979350090027, 0.0742647722363472, 0.011773702688515186, -0.08254759758710861, 0.12006998807191849, -0.013280055485665798, 0.10699447244405746, -0.06339625269174576, -0.03680950030684471, 0.040986888110637665, -0.030681507661938667, 0.00605509988963604, -0.06411237269639969, 0.027306433767080307, -0.023975040763616562, -0.021255239844322205, -0.08956492692232132, 0.06738913804292679, -0.036792609840631485, -0.0691622793674469, -0.016435911878943443, 0.027242416515946388, 0.03100457973778248, -0.021338440477848053, 0.10410118848085403, 0.025961967185139656, 0.1999245584011078, 0.08172869682312012, 0.057003799825906754, -0.04229862987995148, -0.07104795426130295, -0.0038415994495153427, -0.02823217585682869, 0.06218579038977623, -0.08775155246257782, 0.017321011051535606, 0.12498220801353455, 0.038975536823272705, 0.11743488162755966, 0.09408889710903168, -0.03162325173616409, 0.02038922719657421, 0.07856881618499756, -0.172064870595932, -0.08470179885625839, -0.0017210281221196055, -0.05603691190481186, -0.11550314724445343, 0.0632995069026947, 0.0740632563829422, -0.08319897204637527, -0.000044115302443969995, -0.025052690878510475, 0.0004963016835972667, -0.058659300208091736, 0.22068071365356445, 0.06838532537221909, 0.05895683541893959, -0.0911809429526329, 0.040629323571920395, 0.027035536244511604, -0.06849440187215805, -0.0098157012835145, 0.054203327745199203, -0.07825859636068344, -0.040893301367759705, 0.10715312510728836, 0.17263750731945038, -0.027872959151864052, -0.03863305225968361, -0.15705640614032745, -0.12560459971427917, 0.057029884308576584, 0.1930190920829773, 0.10018452256917953, 0.0076805478893220425, -0.035402581095695496, 0.028245309367775917, -0.12633487582206726, 0.0907529667019844, 0.05106215178966522, 0.07400445640087128, -0.1340181976556778, 0.20907965302467346, 0.007379933726042509, 0.048941321671009064, -0.026283375918865204, 0.03200516104698181, -0.10972319543361664, 0.02038625441491604, -0.10329766571521759, -0.031086605042219162, -0.036325953900814056, -0.015021100640296936, -0.009254558943212032, -0.05983228608965874, -0.04946315288543701, 0.014507750980556011, -0.11529882997274399, -0.017239129170775414, 0.052209142595529556, 0.03387599065899849, -0.12771031260490417, -0.04848359525203705, 0.0331725999712944, -0.06641991436481476, 0.0547303706407547, 0.05847293511033058, 0.010759076103568077, 0.06604506075382233, -0.17972388863563538, -0.0055558942258358, 0.07742231339216232, -0.0031664385460317135, 0.06061817333102226, -0.07445674389600754, -0.007728525437414646, -0.009736848063766956, 0.05343468114733696, 0.019663911312818527, 0.0758519321680069, -0.14805291593074799, 0.021079497411847115, -0.006944654509425163, -0.0805707573890686, -0.058097243309020996, 0.008140246383845806, 0.06970621645450592, -0.012234161607921124, 0.1908390372991562, -0.11280160397291183, 0.06168021261692047, -0.21444781124591827, -0.007814322598278522, -0.018539851531386375, -0.10083320736885071, -0.12565219402313232, -0.039721619337797165, 0.07095988839864731, -0.04701950028538704, 0.11294841021299362, 0.008954211138188839, 0.04519468545913696, 0.020312519744038582, -0.02592955343425274, 0.039841484278440475, 0.014557425864040852, 0.2183500975370407, 0.022147709503769875, -0.056389857083559036, 0.04839550703763962, 0.0629146471619606, 0.09792212396860123, 0.08716240525245667, 0.21500824391841888, 0.15694746375083923, -0.00031080524786375463, 0.0892770066857338, 0.03527418524026871, -0.03955037146806717, -0.15075702965259552, -0.023775173351168633, -0.037074603140354156, 0.07123927026987076, -0.016003167256712914, 0.19010761380195618, 0.09206681698560715, -0.1612616628408432, 0.03852898254990578, -0.04246735945343971, -0.08040005713701248, -0.11507630348205566, -0.04120102897286415, -0.07704880088567734, -0.10919447243213654, 0.01094295084476471, -0.09182173758745193, 0.004394774325191975, 0.10132412612438202, 0.005371485836803913, -0.01844552718102932, 0.23132029175758362, 0.03584844246506691, 0.04860386624932289, 0.04554493725299835, 0.01498456671833992, -0.017284706234931946, -0.07490411400794983, -0.06926176697015762, -0.020602280274033546, -0.03791213408112526, 0.024340420961380005, -0.07459186017513275, -0.08160242438316345, 0.047446299344301224, -0.0055963099002838135, -0.11376094073057175, 0.01661289855837822, 0.017541542649269104, 0.06253299862146378, 0.04336406663060188, 0.013875012286007404, 0.021302076056599617, -0.02067049778997898, 0.18615087866783142, -0.07297515869140625, -0.09915580600500107, -0.07694178819656372, 0.28798800706863403, 0.041950780898332596, -0.005999084562063217, 0.028807392343878746, -0.06740257143974304, 0.026404164731502533, 0.24912810325622559, 0.21832096576690674, -0.07389464974403381, 0.02391020581126213, -0.0029768189415335655, -0.014112075790762901, -0.03657019883394241, 0.11978614330291748, 0.12521781027317047, 0.07906391471624374, -0.09656809270381927, -0.03563668951392174, -0.06917210668325424, 0.002374787349253893, -0.054584912955760956, 0.02883651666343212, 0.052945539355278015, 0.021021172404289246, -0.05773581191897392, 0.06181758642196655, -0.06088734790682793, -0.09855467081069946, 0.08866070955991745, -0.19542448222637177, -0.1417587399482727, -0.01241389662027359, 0.10837949067354202, 0.0072975438088178635, 0.07719625532627106, -0.03222176432609558, 0.007769029121845961, 0.052682749927043915, -0.010766859166324139, -0.06683152914047241, -0.08866457641124725, 0.08653638511896133, -0.07363475859165192, 0.23724369704723358, -0.03964323550462723, 0.06760367006063461, 0.11935941874980927, 0.06240125745534897, -0.06351592391729355, 0.0822097584605217, 0.053014855831861496, -0.09487652778625488, 0.017184287309646606, 0.0942952111363411, -0.030647626146674156, 0.04245378449559212, 0.0366334542632103, -0.1331700086593628, 0.040988560765981674, -0.07626764476299286, -0.05404871329665184, -0.040863312780857086, -0.020359467715024948, -0.043656233698129654, 0.11240855604410172, 0.1988954246044159, -0.023752234876155853, 0.01423692237585783, -0.06367427110671997, 0.0237786415964365, 0.07832479476928711, 0.016994737088680267, -0.07232813537120819, -0.23659561574459076, 0.01774955727159977, 0.037493135780096054, -0.031784795224666595, -0.27350181341171265, -0.10075769573450089, -0.0003069002414122224, -0.07794666290283203, -0.09748795628547668, 0.05270254611968994, 0.07166671007871628, 0.07046320289373398, -0.046510469168424606, -0.06054023280739784, -0.07838611304759979, 0.16378094255924225, -0.1512106955051422, -0.09106442332267761 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bertimbau-base-lener_br This model is a fine-tuned version of [neuralmind/bert-base-portuguese-cased](https://huggingface.co/neuralmind/bert-base-portuguese-cased) on the lener_br dataset. It achieves the following results on the evaluation set: - Loss: 0.2298 - Precision: 0.8501 - Recall: 0.9138 - F1: 0.8808 - Accuracy: 0.9693 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 15 ### Training results | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:---------:|:------:|:------:|:--------:| | 0.0686 | 1.0 | 1957 | 0.1399 | 0.7759 | 0.8669 | 0.8189 | 0.9641 | | 0.0437 | 2.0 | 3914 | 0.1457 | 0.7997 | 0.8938 | 0.8441 | 0.9623 | | 0.0313 | 3.0 | 5871 | 0.1675 | 0.8466 | 0.8744 | 0.8603 | 0.9651 | | 0.0201 | 4.0 | 7828 | 0.1621 | 0.8713 | 0.8839 | 0.8775 | 0.9718 | | 0.0137 | 5.0 | 9785 | 0.1811 | 0.7783 | 0.9159 | 0.8415 | 0.9645 | | 0.0105 | 6.0 | 11742 | 0.1836 | 0.8568 | 0.9009 | 0.8783 | 0.9692 | | 0.0105 | 7.0 | 13699 | 0.1649 | 0.8339 | 0.9125 | 0.8714 | 0.9725 | | 0.0059 | 8.0 | 15656 | 0.2298 | 0.8501 | 0.9138 | 0.8808 | 0.9693 | | 0.0051 | 9.0 | 17613 | 0.2210 | 0.8437 | 0.9045 | 0.8731 | 0.9693 | | 0.0061 | 10.0 | 19570 | 0.2499 | 0.8627 | 0.8946 | 0.8784 | 0.9681 | | 0.0041 | 11.0 | 21527 | 0.1985 | 0.8560 | 0.9052 | 0.8799 | 0.9720 | | 0.003 | 12.0 | 23484 | 0.2204 | 0.8498 | 0.9065 | 0.8772 | 0.9699 | | 0.0014 | 13.0 | 25441 | 0.2152 | 0.8425 | 0.9067 | 0.8734 | 0.9709 | | 0.0005 | 14.0 | 27398 | 0.2317 | 0.8553 | 0.8987 | 0.8765 | 0.9705 | | 0.0015 | 15.0 | 29355 | 0.2436 | 0.8543 | 0.8989 | 0.8760 | 0.9700 | ### Framework versions - Transformers 4.8.2 - Pytorch 1.9.0+cu102 - Datasets 1.9.0 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "datasets": ["lener_br"], "metrics": ["precision", "recall", "f1", "accuracy"], "model_index": [{"name": "bertimbau-base-lener_br", "results": [{"task": {"name": "Token Classification", "type": "token-classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "args": "lener_br"}, "metric": {"name": "Accuracy", "type": "accuracy", "value": 0.9692504609383333}}]}], "base_model": "neuralmind/bert-base-portuguese-cased", "model-index": [{"name": "Luciano/bertimbau-base-lener_br", "results": [{"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "test"}, "metrics": [{"type": "accuracy", "value": 0.9824282794418222, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNDZiZTRmMzRiZDFjOGMzZTM3ODRmNTEwNjI5OTM2ZDhlZjViMDk0YmJjOWViYjM3YmJmZGI2MjJiOTI3OGNmZCIsInZlcnNpb24iOjF9.7DVb3B_moqPXev5yxjcCvBCZDcJdmm3qZsSrp-RVOggLEr_AUfkBrF_76tDVLs9DszD1AlW4ERXcc0ZCqSCaDw"}, {"type": "precision", "value": 0.9877557596262284, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZTE2MGQ4ZGM1NTEwOGFmMjM3ODAyYTg3MWM1YjVhZGVlYThiNzFjYTE4NWJhOTU3OWZjMjhkODcwNGNiMmIxMyIsInZlcnNpb24iOjF9.G1e_jAOIDcuaOXWNjeRqlHTqJHVc_akZavhyvgBkAPiCTRgoTR24OUu9e_izofDMSTo4xhkMIwsC_O9tKzkNCA"}, {"type": "recall", "value": 0.9870401674313772, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYTkyZjEwMzk2NTBjY2RhMWVhYWVkOWQ2ZThkZDMwODczMDVkNDI2ZjM3OTA1ODg5NGQyYWUxMGQ5MDRkNjNlNiIsInZlcnNpb24iOjF9.qDL8618-ZTT_iO-eppn7JzVVfd_ayuj4mTT7eIc3zFYKJUp4KNpFgxnjuSVEZTcdOG48YrSISXJoHM5jVXg_DA"}, {"type": "f1", "value": 0.9873978338768773, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZjYwOWZkZmFiMTRjY2UyOTJmMDNjMzkzNjUxYTAzYzM2ZDNkMmU0NTQ5NDlmMzU5YWExMDNiZjUzOGVlZjc1OSIsInZlcnNpb24iOjF9.T7MDH4H4E6eiLZot4W_tNzVgi-ctOrSb148x9WttkJFaxh-2P4kNmm4bKJhF1ZZZKgja80hKp_Nm9dmqXU7gAg"}, {"type": "loss", "value": 0.11542011797428131, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNDA3OGRkY2Q2MjlkZWZlZTVhZDk0MjY3MDA0MzgwZjI4MTk3Y2Q2ZmRkMGI3OTQwMzcyMzVjMGE5MzU4ODY5MiIsInZlcnNpb24iOjF9.nHtVSN-vvFjDRCWC5dXPf8dmk9Rrj-JNqvehDSGCAGLl3WknpwNHzCrJM9sNlRiNgwEIA4ekBHOC_V_OHhp7Bw"}]}, {"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "validation"}, "metrics": [{"type": "accuracy", "value": 0.9692504609383333, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYjY2N2VkZTIyMWM2ZTUxYzFiNjFhNzgwODgzNDQxNTMwODczMThjZDE5MzE3MTllN2ZlNjc4OWI0YTY0NzJkNCIsInZlcnNpb24iOjF9._atPyYtbN7AmDCZHNQHeBDFolzgKbQ04C1c1gfNBomkxlLXiZUVDSPwCNP9fveXhnXwkDsoy3hfm44BTsHtBAw"}, {"type": "precision", "value": 0.9786866842043531, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZGQzMjM1M2U2MzZiZjJmNGQ1NmUxNjE0NWYyOWJkNGM3NmE0NDg2MjAwZGNkNGZmZDEwMjkwZGQ1MDgyMWU3ZSIsInZlcnNpb24iOjF9.1XNuw2s47lqZD-ywmdEcI6UpPyl_aR-8cxlU1laQYEsUNW1fEZwB90sr7cSbNNTndzEsuH9VzeKgHwlHarq7Dg"}, {"type": "recall", "value": 0.9840619998315222, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNjllM2VlZTI5NzZlNGFhMjIyN2ZmYmQzNzQ2NDYxZWNkMzY5NzM0YTY3MDE2OTMxMjdiYzkwNjc1ZjBkNDRjYSIsInZlcnNpb24iOjF9.C7SeMwbtrmD24YWsYsxi4RRaVSsuQU-Rj83b-vZ8_H1IggmyNMpv8Y2z1mDh6b5UgaHpuk9YQb9aRKbQuCjTCA"}, {"type": "f1", "value": 0.9813669814173863, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNDZjNjNiZjRhNThhNzBiMDNmODIyOTM0YjEwNWVhZTQ5MWRiYzU2ZjBkOGY3NzgzOGE2ZTJkOTNhZWZlMzgxYyIsInZlcnNpb24iOjF9.YDySY0KSF3PieEXXjx1y6GsXr9PQVNF1RW_zAQNTPcbgU8OEwyts_tUXFIT61QVGVchFOG4bLFs0ggOuwvZKBA"}, {"type": "loss", "value": 0.22302456200122833, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYzFhNTFiYzE1ZjY4MmRjMTI5NGY2YWEyYzY4NzBkYTVjMTk0MWVkODBhY2M0NWQ0ZjM1MmVjZTRmM2RhOTUxZiIsInZlcnNpb24iOjF9.-AXmb23GEbxQ282y9wL-Xvv5cZg0Z3SGQQks5As_BrXlCf8ay8sgd1VWEB4NTepn8MnKJgJkqyQK4JXxSSYCCQ"}]}, {"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "train"}, "metrics": [{"type": "accuracy", "value": 0.9990127507699392, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiODEwMWUyNjU0ZjUyODQ2ZjQ3Y2VjOWY5YWNmZDczMDhhYzZiY2ZjMTFmZTUyZDZhOWJhMjcwMWJlZWNmMDIwOSIsInZlcnNpb24iOjF9.acwBn2no3TJ2cMGaGbQlNn9smS9XTsfKUat5JsKUVHTJa4H6okb5W6Va67KkrT383paAHOkoipb1wJwWfsseCg"}, {"type": "precision", "value": 0.9992300721767728, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZmQyNDJhNTgzNjc4OWQ5ODcwN2RjM2JhZmNjODljZjIyYWI3MGIyOGNiYWYxNzczNDQyNTZjMDhiODYyYWRiMyIsInZlcnNpb24iOjF9.Z_W8fuCgV5KWChMZXaoJtX-u-SxBd8GcfVXBjFnf7BYqrWoTkcczJqJP1g74Gjrp6xp_VatQ-V1Por5Yzd3dCQ"}, {"type": "recall", "value": 0.9993028952029684, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiN2ZiMjE4NDE0NmI1NjVhNzIyYjJjMTUyZDU2OGY3NTgyYTNhZDBjNWMzYWZmMmI5ZjczZjgyYmZjOGM0YTcyMiIsInZlcnNpb24iOjF9.jB5kEKsJMs40YVJ0RmFENEbKINKreAJN-EYeRrQMCwOrfTXxyxq0-cwgF_T2UJ1vl4eL-MAV2Lc3p449gaDUCg"}, {"type": "f1", "value": 0.9992664823630992, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZTQzMWRkZjIyNDY1NzU2NDNmNWJlMDIxOTY4Y2UyYjJlOTVkNTEwZGEwODdjZDMwYTg5ODE3NTlhN2JjMjZlZCIsInZlcnNpb24iOjF9.DspzVgqZh5jbRfx-89Ygh7dbbPBsiLyOostyQ4el1SIoGVRtEfxzYk780hEIRqqagWk63DXY3_eLIRyiBFf8BQ"}, {"type": "loss", "value": 0.0035279043950140476, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMGQ1OWQxNjNmYzNlMzliODljNTY2YWNhMTUzNjVkMzA0NDYzZWY0ODFiMDlmZWZhNDlkODEyYWU5OWY3YjQyOSIsInZlcnNpb24iOjF9.6S7KwMDEBMWG95o3M0kOnKofgVnPwX8Sf2bQiXns-kZkcrOTXJCq7czloDbSk9d9-sumdxXYk9-oQFDfR6DTAw"}]}]}]}
token-classification
Luciano/bertimbau-base-lener_br
[ "transformers", "pytorch", "tensorboard", "safetensors", "bert", "token-classification", "generated_from_trainer", "pt", "dataset:lener_br", "base_model:neuralmind/bert-base-portuguese-cased", "license:mit", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-base-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us
bertimbau-base-lener\_br ======================== This model is a fine-tuned version of neuralmind/bert-base-portuguese-cased on the lener\_br dataset. It achieves the following results on the evaluation set: * Loss: 0.2298 * Precision: 0.8501 * Recall: 0.9138 * F1: 0.8808 * Accuracy: 0.9693 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 4 * eval\_batch\_size: 4 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 15 ### Training results ### Framework versions * Transformers 4.8.2 * Pytorch 1.9.0+cu102 * Datasets 1.9.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15", "### Training results", "### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-base-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15", "### Training results", "### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ 91, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-base-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15### Training results### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ -0.14578604698181152, 0.1614455282688141, -0.0037588798440992832, 0.10886722803115845, 0.12098509073257446, -0.00517731299623847, 0.12137730419635773, 0.1521269828081131, -0.11571910977363586, 0.0945817232131958, 0.13445937633514404, 0.12693820893764496, 0.03570769354701042, 0.13817322254180908, -0.03925517946481705, -0.2445162683725357, 0.05087552219629288, 0.06515666842460632, -0.034163184463977814, 0.12433766573667526, 0.07530929893255234, -0.14476430416107178, 0.06982430815696716, 0.030080145224928856, -0.1555165797472, -0.009003394283354282, 0.017574498429894447, -0.09413943439722061, 0.09918361902236938, 0.006030018907040358, 0.11537356674671173, 0.03986889868974686, 0.05168472230434418, -0.13047558069229126, 0.005531284026801586, 0.05022558569908142, 0.007200286258012056, 0.10161277651786804, 0.06815017014741898, -0.05156088247895241, 0.08328069746494293, -0.08558358997106552, 0.06410624086856842, 0.014554079622030258, -0.138055682182312, -0.2991775572299957, -0.08661209046840668, 0.08245836943387985, 0.04822736233472824, 0.09155528992414474, -0.02087591215968132, 0.1932605355978012, -0.04783284664154053, 0.08637093007564545, 0.2806558609008789, -0.3019048571586609, -0.07218967378139496, -0.004394214134663343, 0.00029096094658598304, 0.04835100844502449, -0.08589480817317963, -0.029792752116918564, 0.060564689338207245, 0.027050424367189407, 0.14739462733268738, -0.01794326864182949, 0.02750132419168949, -0.021488836035132408, -0.1418120563030243, -0.0645776316523552, 0.1503213346004486, 0.04716399312019348, -0.05258992686867714, -0.05696042254567146, -0.06347185373306274, -0.15499179065227509, -0.04966576769948006, -0.0025949892587959766, 0.029139166697859764, -0.05778041481971741, -0.06685449182987213, 0.00037072456325404346, -0.06963673233985901, -0.04174163565039635, -0.015720926225185394, 0.1721806526184082, 0.06444428861141205, 0.007271147798746824, 0.003119152272120118, 0.08962112665176392, -0.029161905869841576, -0.1634027510881424, 0.0006544023635797203, 0.017867906019091606, 0.026153743267059326, -0.03383588790893555, -0.012689894996583462, -0.06427828222513199, 0.019898781552910805, 0.11857648193836212, -0.07750479876995087, 0.04039016738533974, -0.0019133621826767921, 0.039852775633335114, -0.08669407665729523, 0.17734351754188538, -0.08829960972070694, 0.034991174936294556, 0.040910810232162476, 0.09655500203371048, 0.05111318826675415, -0.012613335624337196, -0.10760592669248581, 0.017778746783733368, 0.1412002295255661, 0.03922000527381897, -0.05794529989361763, 0.04996923729777336, -0.05389997735619545, -0.04737216979265213, 0.04440583661198616, -0.10808547586202621, 0.02390805259346962, 0.025494137778878212, -0.08469417691230774, -0.00935295969247818, 0.002893585478886962, -0.02081305719912052, -0.04745322838425636, 0.0706738829612732, -0.09802430123090744, 0.002769883256405592, -0.08393597602844238, -0.1377367079257965, 0.009310967288911343, -0.1129399910569191, 0.006700736004859209, -0.09001006186008453, -0.13218583166599274, -0.02609955705702305, 0.036910880357027054, -0.04755828157067299, -0.03277134150266647, -0.0735679492354393, -0.09767825901508331, 0.010137069039046764, -0.009992145001888275, 0.018779050558805466, -0.0632486492395401, 0.09962781518697739, 0.05804410204291344, 0.07045255601406097, -0.014805134385824203, 0.04179510474205017, -0.09081802517175674, 0.05211037024855614, -0.24792669713497162, 0.07581587135791779, -0.06584503501653671, 0.046438660472631454, -0.10288908332586288, -0.12840653955936432, 0.023036161437630653, -0.02706155925989151, 0.10931956022977829, 0.13155117630958557, -0.15968549251556396, -0.09190413355827332, 0.2314441204071045, -0.10001388937234879, -0.1271444857120514, 0.12826642394065857, -0.05777517706155777, 0.02388720028102398, 0.07496830821037292, 0.22379039227962494, 0.07174600660800934, -0.06895992904901505, -0.009052040055394173, -0.06452685594558716, 0.06588266789913177, -0.050299204885959625, 0.08425808697938919, -0.01499470416456461, 0.032944463193416595, 0.01831217296421528, -0.06543702632188797, 0.04249836876988411, -0.09032944589853287, -0.08021064102649689, -0.024943964555859566, -0.08288759738206863, 0.07374042272567749, 0.06410699337720871, 0.07016958296298981, -0.1215498298406601, -0.09360715001821518, 0.05491453409194946, 0.08504506200551987, -0.10370135307312012, 0.031193744391202927, -0.09955617040395737, 0.14912311732769012, -0.08842071890830994, -0.029783200472593307, -0.17378012835979462, -0.02198341116309166, 0.04155214875936508, 0.012417033314704895, 0.0012256453046575189, -0.03953137993812561, 0.07450031489133835, 0.08240479975938797, -0.05068839713931084, -0.0659874975681305, -0.049600835889577866, -0.003086579032242298, -0.08499091118574142, -0.19649411737918854, -0.02356746792793274, -0.02965359017252922, 0.0993257462978363, -0.1744096726179123, 0.04979522153735161, 0.051052436232566833, 0.12053466588258743, 0.032011691480875015, -0.036082521080970764, 0.011580384336411953, 0.054907314479351044, -0.027379829436540604, -0.09095443785190582, 0.07448966056108475, 0.00859855953603983, -0.08999089896678925, -0.02579866722226143, -0.13317446410655975, 0.17066146433353424, 0.12373622506856918, 0.022758429870009422, -0.07787631452083588, -0.0016066193347796798, -0.05655001103878021, -0.013376333750784397, -0.041036415845155716, 0.03319622203707695, 0.1842791885137558, 0.023717042058706284, 0.15199021995067596, -0.12950018048286438, -0.03466423973441124, 0.051016177982091904, -0.02110728994011879, -0.004056727513670921, 0.12491617351770401, 0.013848278671503067, -0.10714515298604965, 0.14420555531978607, 0.08761188387870789, -0.07254397869110107, 0.13601475954055786, -0.07117044925689697, -0.07097958773374557, -0.0356648787856102, 0.02584795095026493, 0.041546981781721115, 0.13396711647510529, -0.13876298069953918, -0.024460304528474808, 0.029041187837719917, 0.011646172031760216, 0.00031800763099454343, -0.18141573667526245, -0.012424594722688198, 0.03384305536746979, -0.05396929383277893, -0.003131335135549307, -0.007889381609857082, 0.005626533180475235, 0.10049382597208023, 0.003815112868323922, -0.0736088678240776, 0.02433755248785019, 0.006659182719886303, -0.0790235698223114, 0.20179244875907898, -0.09022911638021469, -0.15581296384334564, -0.10019876062870026, -0.001397332176566124, -0.08245601505041122, 0.01980414427816868, 0.05678023025393486, -0.07619360834360123, -0.01958121545612812, -0.08156429976224899, -0.030048314481973648, 0.008322442881762981, 0.0339277945458889, 0.007895846851170063, -0.007859732024371624, 0.07965904474258423, -0.1142628863453865, -0.017105229198932648, -0.042503029108047485, -0.021492816507816315, 0.03404887765645981, -0.01491453219205141, 0.10770971328020096, 0.1395908147096634, -0.028378944844007492, 0.051241591572761536, -0.03786619380116463, 0.23341886699199677, -0.06532640755176544, -0.031025264412164688, 0.1230660229921341, -0.000823227281216532, 0.06596273928880692, 0.11472264677286148, 0.04829017445445061, -0.08470264077186584, -0.01899878680706024, 0.0177755244076252, -0.0265971627086401, -0.2204180657863617, -0.025657089427113533, -0.04231400042772293, -0.0004817326844204217, 0.12141019850969315, 0.02217908576130867, 0.020997656509280205, 0.08431287854909897, 0.0012352422345429659, 0.017681779339909554, -0.01796434260904789, 0.10379338264465332, 0.09195870906114578, 0.042834363877773285, 0.11893154680728912, -0.032445475459098816, -0.07144035398960114, 0.0351155661046505, -0.018628694117069244, 0.21852634847164154, -0.03443661704659462, 0.17720000445842743, 0.05359051376581192, 0.2009211927652359, 0.007878640666604042, 0.09216982126235962, -0.03405008465051651, -0.023835770785808563, -0.007629509549587965, -0.056523218750953674, -0.06489013880491257, -0.010747772641479969, -0.03067237325012684, 0.09757013618946075, -0.14212384819984436, 0.015025324188172817, 0.06535670161247253, 0.25136759877204895, 0.04796217754483223, -0.3669215440750122, -0.09973406046628952, -0.014824123121798038, 0.0009502574102953076, -0.03989103436470032, 0.004639393649995327, 0.12801723182201385, -0.08033918589353561, 0.046345531940460205, -0.07656536251306534, 0.08215191215276718, -0.07982727885246277, 0.015604214742779732, 0.002120073651894927, 0.08348777145147324, -0.013681851327419281, 0.07428182661533356, -0.21887679398059845, 0.27092790603637695, 0.01789262145757675, 0.08021627366542816, -0.05019092932343483, -0.0036766710691154003, 0.02719598263502121, 0.08072346448898315, 0.10498452931642532, 0.00029389228438958526, -0.04786550626158714, -0.15864898264408112, -0.1178315132856369, 0.00987551361322403, 0.06437473744153976, -0.03163757175207138, 0.11002537608146667, 0.006458016112446785, -0.0076621645130217075, 0.038509637117385864, -0.012082193978130817, -0.05511787161231041, -0.08132602274417877, -0.0013658098177984357, 0.02556457184255123, -0.022774383425712585, -0.09116268903017044, -0.1293342411518097, -0.07470089942216873, 0.1716335415840149, -0.0036766957491636276, -0.08194407820701599, -0.1327436864376068, 0.07213131338357925, 0.08490119874477386, -0.09230369329452515, 0.02986488677561283, -0.010703498497605324, 0.1349625140428543, 0.008366166613996029, -0.02775263786315918, 0.106619693338871, -0.050701506435871124, -0.16899463534355164, -0.050367359071969986, 0.147849440574646, 0.039839040488004684, 0.0586293525993824, 0.002513469895347953, 0.01137836929410696, 0.009738792665302753, -0.08484742045402527, 0.029668893665075302, 0.010890730656683445, 0.08991888165473938, -0.00999074149876833, -0.041942380368709564, -0.0007174060447141528, -0.08846138417720795, 0.011958903633058071, 0.17477896809577942, 0.22985726594924927, -0.09716834872961044, 0.02350364625453949, 0.045885853469371796, -0.04968390613794327, -0.16149590909481049, 0.042172957211732864, 0.09442557394504547, 0.014639166183769703, -0.015019617974758148, -0.1631564497947693, 0.045832738280296326, 0.09265099465847015, -0.007902638986706734, 0.04579578712582588, -0.2951854467391968, -0.11200349032878876, 0.11828268319368362, 0.16397342085838318, 0.0993066355586052, -0.14094342291355133, -0.04350048676133156, -0.006022287532687187, -0.07795589417219162, 0.09695857018232346, -0.12906108796596527, 0.09871191531419754, -0.025473885238170624, 0.05547923222184181, 0.02327141910791397, -0.06043538078665733, 0.11798202991485596, 0.010021286085247993, 0.0838102400302887, -0.02803364209830761, -0.022977547720074654, 0.1271033138036728, -0.07437030225992203, 0.0572248175740242, -0.030939027667045593, 0.04155803471803665, -0.1048189029097557, -0.02783382125198841, -0.08538506180047989, 0.03399886563420296, -0.03241945430636406, -0.0398854985833168, -0.044792842119932175, 0.03275923803448677, 0.075440913438797, -0.00022995963809080422, 0.1388416290283203, 0.018830101937055588, 0.1256493628025055, 0.13805760443210602, 0.08216346055269241, -0.07299608737230301, -0.09217843413352966, 0.00899333506822586, -0.008280723355710506, 0.050413828343153, -0.12195070832967758, 0.03767410293221474, 0.13860701024532318, 0.012204785831272602, 0.1275147944688797, 0.06343293190002441, -0.08064089715480804, 0.0041645728051662445, 0.05022187903523445, -0.1505996733903885, -0.10734807699918747, -0.01133932825177908, -0.008478536270558834, -0.13273422420024872, 0.058477409183979034, 0.09534371644258499, -0.07690555602312088, -0.034611474722623825, -0.008414666168391705, -0.022534595802426338, -0.013583837077021599, 0.18019264936447144, 0.07639919221401215, 0.061932116746902466, -0.10149119794368744, 0.07874508947134018, 0.046410683542490005, -0.09931555390357971, 0.038629159331321716, 0.057567793875932693, -0.12011532485485077, -0.026903200894594193, 0.06845761835575104, 0.21602129936218262, -0.031216775998473167, -0.05626153573393822, -0.1718221753835678, -0.10900414735078812, 0.07039361447095871, 0.15443135797977448, 0.09562639892101288, 0.01073868665844202, -0.03438607230782509, -0.014681858010590076, -0.1236184760928154, 0.11623269319534302, 0.06304499506950378, 0.06612559407949448, -0.13377898931503296, 0.1328049749135971, 0.011064298450946808, 0.01273968443274498, -0.012805509380996227, 0.009640687145292759, -0.12248588353395462, 0.015643857419490814, -0.09072110056877136, 0.027916042134165764, -0.0548858605325222, -0.004592085722833872, -0.011140178889036179, -0.05146469920873642, -0.04887884110212326, 0.02558962069451809, -0.11267398297786713, -0.018244167789816856, 0.03137299790978432, 0.03791232407093048, -0.10731141269207001, -0.03498026356101036, -0.00681879511103034, -0.08955425024032593, 0.07964899390935898, 0.04878512769937515, 0.009386823512613773, 0.03178445249795914, -0.03278830647468567, 0.0067752632312476635, 0.054193656891584396, -0.0013120161602273583, 0.07391173392534256, -0.14649906754493713, 0.014874039217829704, 0.006152973044663668, 0.006426764652132988, 0.025268230587244034, 0.08573900908231735, -0.11910363286733627, -0.0006132854032330215, 0.007093310356140137, -0.046619072556495667, -0.05240429565310478, 0.07447633147239685, 0.08189913630485535, 0.004726968239992857, 0.17914751172065735, -0.087345652282238, 0.043351322412490845, -0.20202632248401642, -0.008738812059164047, -0.010129970498383045, -0.11968038231134415, -0.08724901080131531, -0.019166171550750732, 0.06739114969968796, -0.06307236850261688, 0.0928121954202652, 0.01416990626603365, 0.036522530019283295, 0.017347196117043495, -0.07887978106737137, 0.02576293982565403, 0.025904539972543716, 0.187897726893425, 0.01584392972290516, -0.0437481626868248, 0.08649849891662598, 0.03767181187868118, 0.09420914947986603, 0.13660898804664612, 0.16693294048309326, 0.1234564334154129, 0.03920572251081467, 0.09458428621292114, 0.03326580673456192, -0.016846701502799988, -0.15955734252929688, 0.047709379345178604, 0.006313465069979429, 0.09144741296768188, 0.026693196967244148, 0.18635016679763794, 0.14510057866573334, -0.16533562541007996, 0.05428372323513031, -0.00806928239762783, -0.09665913134813309, -0.10364042967557907, -0.11554041504859924, -0.0859052762389183, -0.15263009071350098, 0.0022209833841770887, -0.13853555917739868, -0.021916845813393593, 0.027190137654542923, 0.017664367333054543, -0.015165334567427635, 0.1653723269701004, 0.02002038061618805, 0.0043979836627841, 0.08742211014032364, 0.028215918689966202, -0.037491727620363235, -0.056427884846925735, -0.05451944097876549, 0.002601723652333021, -0.011099203489720821, 0.050068002194166183, -0.02364395745098591, 0.0013984058750793338, 0.03252841532230377, -0.0038637605030089617, -0.10806208848953247, 0.01837322860956192, 0.013632664456963539, 0.06852736324071884, 0.06456548720598221, 0.016271889209747314, -0.02547617442905903, -0.02286711521446705, 0.16568629443645477, -0.06068897992372513, -0.03487173095345497, -0.11989211291074753, 0.2375185787677765, 0.038749415427446365, -0.020365219563245773, 0.036057427525520325, -0.0855465829372406, 0.02875606343150139, 0.21749335527420044, 0.17716622352600098, -0.009595138020813465, -0.004842220339924097, -0.019927628338336945, -0.01796554960310459, -0.014353524893522263, 0.06517886370420456, 0.10721654444932938, 0.002900838851928711, -0.07856056094169617, -0.03260362148284912, -0.0656338706612587, -0.00928476918488741, -0.0639309361577034, 0.06472405791282654, 0.044750720262527466, 0.011361130513250828, -0.06601198762655258, 0.056164421141147614, -0.05704487860202789, -0.08946164697408676, 0.07526736706495285, -0.19172731041908264, -0.17021922767162323, -0.030840089544653893, 0.019571632146835327, 0.018751775845885277, 0.07906392961740494, -0.010695652104914188, -0.0017936971271410584, 0.0936063677072525, 0.0011168239871039987, -0.09625694900751114, -0.09658774733543396, 0.07913161814212799, -0.1062956154346466, 0.22431769967079163, -0.030595043674111366, 0.03214641660451889, 0.13784527778625488, 0.029180968180298805, -0.11330465972423553, 0.0446760430932045, 0.04730416461825371, -0.024108242243528366, 0.015216592699289322, 0.10370532423257828, -0.02141525223851204, 0.056945331394672394, 0.03024553507566452, -0.12973465025424957, -0.019415253773331642, -0.07232478260993958, -0.030468346551060677, -0.06031728535890579, -0.002231260994449258, -0.057238947600126266, 0.11520019173622131, 0.18810339272022247, -0.05126774683594704, -0.017674000933766365, -0.057316362857818604, 0.02731277421116829, 0.0948508009314537, 0.026447393000125885, -0.010766671039164066, -0.2517743706703186, 0.007651244755834341, 0.06125933676958084, -0.021583979949355125, -0.28293749690055847, -0.08196477591991425, 0.008609568700194359, -0.06934663653373718, -0.09272288531064987, 0.075506791472435, 0.018823038786649704, 0.07634608447551727, -0.06520989537239075, -0.002352431183680892, -0.08503634482622147, 0.14890813827514648, -0.12718531489372253, -0.07375811785459518 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bertimbau-large-lener_br This model is a fine-tuned version of [neuralmind/bert-large-portuguese-cased](https://huggingface.co/neuralmind/bert-large-portuguese-cased) on the lener_br dataset. It achieves the following results on the evaluation set: - Loss: 0.1271 - Precision: 0.8965 - Recall: 0.9198 - F1: 0.9080 - Accuracy: 0.9801 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 15 ### Training results | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:---------:|:------:|:------:|:--------:| | 0.0674 | 1.0 | 1957 | 0.1349 | 0.7617 | 0.8710 | 0.8127 | 0.9594 | | 0.0443 | 2.0 | 3914 | 0.1867 | 0.6862 | 0.9194 | 0.7858 | 0.9575 | | 0.0283 | 3.0 | 5871 | 0.1185 | 0.8206 | 0.8766 | 0.8477 | 0.9678 | | 0.0226 | 4.0 | 7828 | 0.1405 | 0.8072 | 0.8978 | 0.8501 | 0.9708 | | 0.0141 | 5.0 | 9785 | 0.1898 | 0.7224 | 0.9194 | 0.8090 | 0.9629 | | 0.01 | 6.0 | 11742 | 0.1655 | 0.9062 | 0.8856 | 0.8958 | 0.9741 | | 0.012 | 7.0 | 13699 | 0.1271 | 0.8965 | 0.9198 | 0.9080 | 0.9801 | | 0.0091 | 8.0 | 15656 | 0.1919 | 0.8890 | 0.8886 | 0.8888 | 0.9719 | | 0.0042 | 9.0 | 17613 | 0.1725 | 0.8977 | 0.8985 | 0.8981 | 0.9744 | | 0.0043 | 10.0 | 19570 | 0.1530 | 0.8878 | 0.9034 | 0.8955 | 0.9761 | | 0.0042 | 11.0 | 21527 | 0.1635 | 0.8792 | 0.9108 | 0.8947 | 0.9774 | | 0.0033 | 12.0 | 23484 | 0.2009 | 0.8155 | 0.9138 | 0.8619 | 0.9719 | | 0.0008 | 13.0 | 25441 | 0.1766 | 0.8737 | 0.9135 | 0.8932 | 0.9755 | | 0.0005 | 14.0 | 27398 | 0.1868 | 0.8616 | 0.9129 | 0.8865 | 0.9743 | | 0.0014 | 15.0 | 29355 | 0.1910 | 0.8694 | 0.9101 | 0.8893 | 0.9746 | ### Framework versions - Transformers 4.8.2 - Pytorch 1.9.0+cu102 - Datasets 1.9.0 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "datasets": ["lener_br"], "metrics": ["precision", "recall", "f1", "accuracy"], "model_index": [{"name": "bertimbau-large-lener_br", "results": [{"task": {"name": "Token Classification", "type": "token-classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "args": "lener_br"}, "metric": {"name": "Accuracy", "type": "accuracy", "value": 0.9801301293674859}}]}], "base_model": "neuralmind/bert-large-portuguese-cased", "model-index": [{"name": "Luciano/bertimbau-large-lener_br", "results": [{"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "test"}, "metrics": [{"type": "accuracy", "value": 0.9840898731012984, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNTcwYjYxOGIzOGEwNjc4NzdkZjJjNGJhYTkzOTY4NmM5MWU0YjIxN2EwNmI4M2E0ZDkwYjUzYTk1NzYwOWYwNyIsInZlcnNpb24iOjF9.AZ4Xkl2_oUMeUxmB-Me7pdDwvQj6Y-6W2KvH6_5mkKuVnT551ffAtBbj8H9ruDvqE4aTlIT0eqrkgHUgcHP1Bg"}, {"type": "precision", "value": 0.9895415357344292, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiOTBhMjRmNDZlMGRiZDJhNjg0ZWVhNzQzMzYzMTQ4MDY2ODEwNzcwYTgwYmEyZDExZmI0OWQ0N2Q5NzdjZDM2OCIsInZlcnNpb24iOjF9.50xubvWSuT0EDjsj-Ox0dFvsmsFQhCDojB15PzynBJBd2PsLOG2eKqWdFYV1iXNnOTum3xCFGKKSE8dvyK6GBQ"}, {"type": "recall", "value": 0.9885856878370763, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNTA4NzRkMzIwYzdhNmRlODg1YjI3MzA5NmQ5Yjk3NzMzZmQ4MDJjMWRlYzQ1NWNkZjA0MGQ2OTBiMWVlYjdiOCIsInZlcnNpb24iOjF9.5L9WHAEZIiM_rXqIu2kEVU-7Hed3oEi5IO_ulcEDJO-r4KQVXS9X4Rat5FSAjdWSRV_vnvM9Nc7LiOh738WzBA"}, {"type": "f1", "value": 0.9890633808488363, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZjIzYzllZWFjZmExN2Q2NDM4ZWY3YjMxZDNiZWFjNzU0ODcwYTBkNTU0ZWExYzM3YjI2MjQ4MTMxOTM5ODdhMyIsInZlcnNpb24iOjF9.tTxenqEcrfQMSbo53mewRPc4oDectJEKfzZyj_mChtQ-K41miMd1n_gNCT-zdT3u1wb5cc7nwgP-Mggo4Q6MAQ"}, {"type": "loss", "value": 0.10151929408311844, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYmZkM2YzZmJmOGY0MDI0YzI0ZGQyYWM0YTU1YWQ3NDI3M2UxZjU3NjM0MzljODMwMTAyYzU4YWNmZTRhNGM3ZSIsInZlcnNpb24iOjF9.dF2SD2-HEHepUpbmgrndTM42MQ1mtMuuTgwqyv0cO_ZHlqRRQfyZtgLMlf8_5DwpPRKw_F3wwXLRETbL-5LJCw"}]}, {"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "validation"}, "metrics": [{"type": "accuracy", "value": 0.9801301293674859, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYWY1M2Q5YzIxYzQ3NTU5YzQyMjUwNWY3MWNkMjJlMGM2YzkwMTdhZGM3NmYxZmVjZDc1N2NkMjBhNDEwMzIyOCIsInZlcnNpb24iOjF9.Mtp2ZBdksTfCQJEFiyLt4pILPH7RE8CXodYNcL8ydc7lTTwn5PiGdnglA7GJcd9HqxOU8UsVyaGzxFkjZGkGDw"}, {"type": "precision", "value": 0.9864285473144053, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMzc1M2NjNTFhNjZiNDU5NzQyZDYzOWViNGFhNzdlMGU4ODNhNDMxMWE1ZjIwZGIzOTIxNDAxZDcwNDM2MGNjYiIsInZlcnNpb24iOjF9.59674wBNKLrL5DC1vfPdEzpCiXRnhilpvnylmzkvLmBrJrZdy-rTP4AXir62BoUEyEZ6zMPRRNOYI9fduwfnBQ"}, {"type": "recall", "value": 0.9845505854603656, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMDc4YjVlYmQ1ZjllNzU3M2ZkN2QxNzI1MGZhMzhkMDNmMjNjODM3NGMzYzY2OGM1NGJmMDA4ZGUwM2RkMGY5MyIsInZlcnNpb24iOjF9.tYvf8mJ0XUmH3mZ0NIMdrXY5a93-2H9u5Ak6heCMBpmHhvgL8k_9y25cRmLeWoh9apsCIS6lQDpHlsJBXdhGDg"}, {"type": "f1", "value": 0.9854886717201953, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMGY4YmJjYzkyNzU1ZDQ3MWFmZTY4MWU1OTg4NTRmOTIwM2I3NzdkYWI2YmNlYjdjODQyMmE2N2M5MDQ5MDEyYiIsInZlcnNpb24iOjF9.FxRrhWWfyA-oIXb5zzHO3-VboU6iFcnRc_kVPgLaOcyk8p5jIfV-egDHrql6e-h-6iS8xTDFV8fxIoq-kboRDQ"}, {"type": "loss", "value": 0.11984097212553024, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZGE2NzM4MjE1MmU1ZTU4ZTU1NjAyYzk2YzdlNTUxOTAyZjdiMTkxYmZlMzExYmUwOTRhMTA3NzcwYWM2NzgxMiIsInZlcnNpb24iOjF9.PAlnc-tkJ7DEp9-qIR7KpYK9Yzy-umlhwKMH8bq1p-Gxf5pSIL_AtG8eP-JrbH71pJLYaBxSeeRHXWhIT-jBBA"}]}, {"task": {"type": "token-classification", "name": "Token Classification"}, "dataset": {"name": "lener_br", "type": "lener_br", "config": "lener_br", "split": "train"}, "metrics": [{"type": "accuracy", "value": 0.9989004979420315, "name": "Accuracy", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZTMwYWI4ZDdiZmNkYWYzNDNhZWI4MmNhNDE5MjRmMjRjYTZjYjI1YTllMzMyMDMxMTBmN2YwN2QxMmE3Y2ViYyIsInZlcnNpb24iOjF9.yihlFpU8AYKMsa4f_7P2J-JYifENGVm0nXGwKcvOV_axvv-Gj-Q-E93j0sHnb3TXTpTlJBgQ0ckBDh4Sohq3AQ"}, {"type": "precision", "value": 0.9991129612205654, "name": "Precision", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYzM3MTQ3ODU3MzBiY2RmNGVhMmQ2YTUzODlkZTk1M2EyOGU4Y2I5ZDI0ZGI5YWQ1YWQ4NDE2NGI1ZjYxNTM1YSIsInZlcnNpb24iOjF9.nnTSkmuvHdYFhXUofIEtjIaEveJCBlMrlmwSwRLojcXYvoaZWNFkWI8wSkQP0iDdDhKuEaZYkRc4kJ-Xd4_TCw"}, {"type": "recall", "value": 0.9993219071519783, "name": "Recall", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiYTA1NGMzOGMwMWQ3Yzk0ZmY4YmYxZjVjODQwMDA1ZjgxNjQ2Y2IxMmIxYWJjOTJhOGQ2NjRlOTRjOTkzYjkwMyIsInZlcnNpb24iOjF9.2YuShB7RWqO6WeR9RCePUcDPv-Ho-6pYeFXmmnnYmW88BRN5jHSrJTWPXMxigVRPBHjU5LlE8j2EK3-IsNviCQ"}, {"type": "f1", "value": 0.9992174232631231, "name": "F1", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMTE2YmMzMTI3MzQ5MTRmZGQ3NTdhODc3ZGI0MjIyOWMzZTc1MGQ4ZjVkY2JhYjYyM2I1NmI2MWI1OTZkYjViMyIsInZlcnNpb24iOjF9.TJkpCVwoTHFSwD8ckgn1dvD-H5HscuFmtsjEFYNVDZPnfm2PN7b45vZxNvWiK7L6ZVFW2fXbwgNJmMapuoeMCw"}, {"type": "loss", "value": 0.0037613145541399717, "name": "loss", "verified": true, "verifyToken": "eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZmUxYWU2ODFkOTQ4NjIyODQ1NTU0NDQ2ZjhmYjExZmE3ZDNkZDBjNmIwY2JlNGRlNGZhOGExMDQ1MjA5Nzk0MiIsInZlcnNpb24iOjF9.ES0Kzjz3vvY5HedqYQzZafOPzQSbdWIbsdmft136SqIwb_-rZe-qQ38lveUYuUArP7NHk0wgo3NIkC6LqIsVAw"}]}]}]}
token-classification
Luciano/bertimbau-large-lener_br
[ "transformers", "pytorch", "tensorboard", "safetensors", "bert", "token-classification", "generated_from_trainer", "pt", "dataset:lener_br", "base_model:neuralmind/bert-large-portuguese-cased", "license:mit", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-large-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us
bertimbau-large-lener\_br ========================= This model is a fine-tuned version of neuralmind/bert-large-portuguese-cased on the lener\_br dataset. It achieves the following results on the evaluation set: * Loss: 0.1271 * Precision: 0.8965 * Recall: 0.9198 * F1: 0.9080 * Accuracy: 0.9801 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 4 * eval\_batch\_size: 4 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 15 ### Training results ### Framework versions * Transformers 4.8.2 * Pytorch 1.9.0+cu102 * Datasets 1.9.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15", "### Training results", "### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-large-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15", "### Training results", "### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ 92, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #token-classification #generated_from_trainer #pt #dataset-lener_br #base_model-neuralmind/bert-large-portuguese-cased #license-mit #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 15### Training results### Framework versions\n\n\n* Transformers 4.8.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.9.0\n* Tokenizers 0.10.3" ]
[ -0.1445028930902481, 0.17641806602478027, -0.003484075888991356, 0.11090876162052155, 0.1218973770737648, -0.003467779839411378, 0.12318286299705505, 0.15324527025222778, -0.10493773221969604, 0.1056244969367981, 0.13058263063430786, 0.119235098361969, 0.03860623762011528, 0.1522710770368576, -0.039199743419885635, -0.24058397114276886, 0.04963346943259239, 0.0557977519929409, -0.04464702308177948, 0.11935695260763168, 0.07595734298229218, -0.14629659056663513, 0.0757126435637474, 0.024652283638715744, -0.15990212559700012, -0.017150521278381348, 0.011154825799167156, -0.09440592676401138, 0.09302984178066254, 0.0063901073299348354, 0.11540775746107101, 0.039033837616443634, 0.056847769767045975, -0.12427610158920288, 0.005672325845807791, 0.04790177196264267, 0.008190157823264599, 0.10128960013389587, 0.07254526764154434, -0.04970463365316391, 0.0691201388835907, -0.09121298044919968, 0.06150220334529877, 0.011866217479109764, -0.13526679575443268, -0.2814631164073944, -0.08796791732311249, 0.07978147268295288, 0.041218288242816925, 0.09029435366392136, -0.021856822073459625, 0.1853097826242447, -0.047324202954769135, 0.08094306290149689, 0.2770744562149048, -0.3078252673149109, -0.07185954600572586, 0.00826241821050644, -0.00009608707478037104, 0.045736607164144516, -0.08927897363901138, -0.03091505728662014, 0.06842024624347687, 0.02435896545648575, 0.14680735766887665, -0.018680129200220108, 0.02097342349588871, -0.023050321266055107, -0.1435699760913849, -0.05884985625743866, 0.14988048374652863, 0.04703183099627495, -0.04703960567712784, -0.06446263939142227, -0.05973796173930168, -0.162941575050354, -0.045759208500385284, 0.002015889622271061, 0.0344199500977993, -0.060015421360731125, -0.06951645761728287, 0.000532075937371701, -0.06874201446771622, -0.035747479647397995, -0.02217339165508747, 0.15928755700588226, 0.06147128343582153, 0.005376031156629324, -0.0004412599082570523, 0.08271730691194534, -0.02253994531929493, -0.16372840106487274, 0.0043247719295322895, 0.01573520340025425, 0.018122904002666473, -0.03764471411705017, -0.01011974923312664, -0.058297157287597656, 0.02541729435324669, 0.11932560801506042, -0.07564102858304977, 0.03593944013118744, -0.002294022822752595, 0.04356345161795616, -0.0820128470659256, 0.17628386616706848, -0.10166943818330765, 0.030402038246393204, 0.038865797221660614, 0.09675201028585434, 0.048252079635858536, -0.009673606604337692, -0.11364802718162537, 0.016843630000948906, 0.1356198787689209, 0.040324050933122635, -0.055680930614471436, 0.04581938311457634, -0.05372246727347374, -0.049008939415216446, 0.031055055558681488, -0.10595526546239853, 0.02445572055876255, 0.024507811293005943, -0.09146863222122192, -0.010341813787817955, -0.009170692414045334, -0.01954307034611702, -0.04301877319812775, 0.08010447025299072, -0.10299185663461685, 0.0015092063695192337, -0.08363432437181473, -0.1366882175207138, 0.018659478053450584, -0.11807779222726822, 0.0023833734448999166, -0.09240473806858063, -0.13289400935173035, -0.03355172276496887, 0.03284453600645065, -0.050857655704021454, -0.03178852051496506, -0.07384803146123886, -0.09974490106105804, 0.0058527663350105286, -0.010072710923850536, 0.021569717675447464, -0.06305757910013199, 0.09690508991479874, 0.04703797772526741, 0.07793622463941574, -0.01858557015657425, 0.039698418229818344, -0.09337441623210907, 0.04942765831947327, -0.22977019846439362, 0.07583580911159515, -0.0625172033905983, 0.045726560056209564, -0.10625248402357101, -0.1283491998910904, 0.01594865508377552, -0.028898151591420174, 0.11046724766492844, 0.12757569551467896, -0.16553643345832825, -0.0892530158162117, 0.2388332486152649, -0.09458700567483902, -0.13394270837306976, 0.12856756150722504, -0.052638281136751175, 0.026068992912769318, 0.07246564328670502, 0.22450944781303406, 0.0643281489610672, -0.07206113636493683, -0.025213057175278664, -0.07142727822065353, 0.06631792336702347, -0.051317859441041946, 0.08872900158166885, -0.008110739290714264, 0.04228059574961662, 0.01757199689745903, -0.058558642864227295, 0.046256400644779205, -0.09083173424005508, -0.08429925888776779, -0.018459675833582878, -0.08955016732215881, 0.07523079216480255, 0.06253471225500107, 0.0736253559589386, -0.11594045162200928, -0.0862579196691513, 0.040067534893751144, 0.08649575710296631, -0.09983885288238525, 0.024529725313186646, -0.1005098819732666, 0.1514168679714203, -0.094737209379673, -0.027743976563215256, -0.17476212978363037, -0.03501509502530098, 0.04191369190812111, 0.0029124650172889233, 0.00852628331631422, -0.04038728401064873, 0.07141299545764923, 0.07801511883735657, -0.0515221506357193, -0.06304501742124557, -0.044939231127500534, -0.009835399687290192, -0.08394994586706161, -0.1952114850282669, -0.018752193078398705, -0.029608676210045815, 0.11149232089519501, -0.17881467938423157, 0.04618213698267937, 0.04705618694424629, 0.12729747593402863, 0.040356364101171494, -0.03442952036857605, 0.014571226201951504, 0.05780977010726929, -0.030896471813321114, -0.0936494991183281, 0.07221024483442307, 0.004611457232385874, -0.09041738510131836, -0.02430371381342411, -0.13719607889652252, 0.17138338088989258, 0.12495362758636475, 0.024371113628149033, -0.08135127276182175, -0.0033671970013529062, -0.057238392531871796, -0.01419059932231903, -0.04989811033010483, 0.03453752398490906, 0.16918803751468658, 0.021636968478560448, 0.15234075486660004, -0.13048969209194183, -0.03520045429468155, 0.053757086396217346, -0.015456286258995533, -0.006346740759909153, 0.12461318075656891, 0.02429862506687641, -0.10369062423706055, 0.15039794147014618, 0.09053930640220642, -0.07603804767131805, 0.14199571311473846, -0.06789685785770416, -0.07284262776374817, -0.03646635264158249, 0.026568109169602394, 0.04154530540108681, 0.13239619135856628, -0.12056950479745865, -0.024309905245900154, 0.031420040875673294, 0.010290645994246006, 0.00249753100797534, -0.17693190276622772, -0.012730743736028671, 0.02488376758992672, -0.05120695382356644, 0.003382552182301879, -0.0016406021313741803, 0.009228562004864216, 0.10586990416049957, 0.006394779309630394, -0.0731341764330864, 0.02342625893652439, 0.004086123779416084, -0.077715665102005, 0.1980838030576706, -0.0887082889676094, -0.16413503885269165, -0.10121694207191467, 0.009981176815927029, -0.0837278962135315, 0.019899947568774223, 0.05152382701635361, -0.07721414417028427, -0.018295422196388245, -0.07920313626527786, -0.03141585737466812, 0.017086021602153778, 0.03288540989160538, 0.005274676717817783, 0.00047711736988276243, 0.07192247360944748, -0.109748475253582, -0.013814556412398815, -0.04120579734444618, -0.020592384040355682, 0.03055284358561039, -0.014359638094902039, 0.1113293468952179, 0.14159198105335236, -0.029930071905255318, 0.05036986619234085, -0.04226740822196007, 0.23023755848407745, -0.07040537893772125, -0.032295409590005875, 0.11956988275051117, 0.0012691629817709327, 0.061952922493219376, 0.12121061235666275, 0.04577937349677086, -0.08755228668451309, -0.014506436884403229, 0.018437830731272697, -0.027188491076231003, -0.22562448680400848, -0.036004938185214996, -0.04537450149655342, 0.008970909751951694, 0.12810297310352325, 0.023747878149151802, 0.016257090494036674, 0.08645273000001907, 0.003884280100464821, 0.023273853585124016, -0.02193141169846058, 0.10785072296857834, 0.08911550045013428, 0.045734647661447525, 0.11775411665439606, -0.032018329948186874, -0.07487960159778595, 0.03967311978340149, -0.010772612877190113, 0.2217130959033966, -0.03683595359325409, 0.1835579127073288, 0.04799455404281616, 0.19306932389736176, 0.008054095320403576, 0.09010015428066254, -0.03039613738656044, -0.0205600056797266, -0.008225047960877419, -0.0596720352768898, -0.060424622148275375, -0.0035329447127878666, -0.021654238924384117, 0.09028902649879456, -0.13980267941951752, 0.02444181591272354, 0.06943205744028091, 0.24665027856826782, 0.054985303431749344, -0.37152138352394104, -0.0923706516623497, -0.013632585294544697, 0.007661190815269947, -0.03579190373420715, 0.009919557720422745, 0.14252227544784546, -0.08113405853509903, 0.04580235853791237, -0.07570009678602219, 0.08273781090974808, -0.08781611919403076, 0.012454798445105553, 0.00426016841083765, 0.08234864473342896, -0.011315755546092987, 0.07128259539604187, -0.2123027890920639, 0.2650505304336548, 0.019474033266305923, 0.07708841562271118, -0.05486830323934555, -0.008291967213153839, 0.02791152335703373, 0.06350671499967575, 0.11011818051338196, 0.0002851582830771804, -0.05332999303936958, -0.15656737983226776, -0.11977604776620865, 0.009297565557062626, 0.07085182517766953, -0.03279516473412514, 0.10958313196897507, 0.00619308277964592, -0.011085769161581993, 0.033094633370637894, -0.01933884061872959, -0.04782046005129814, -0.08094032108783722, 0.003279833821579814, 0.04008440673351288, -0.02004452981054783, -0.08744020015001297, -0.13039171695709229, -0.08468262851238251, 0.16751505434513092, -0.01726027950644493, -0.07684080302715302, -0.13009260594844818, 0.08374498784542084, 0.09024126827716827, -0.09124619513750076, 0.027048004791140556, -0.007404250092804432, 0.1411857157945633, 0.0067825461737811565, -0.027975836768746376, 0.1064174696803093, -0.050792500376701355, -0.17371061444282532, -0.05407276004552841, 0.1445007622241974, 0.031211981549859047, 0.06129852309823036, 0.002532800892367959, 0.012304230593144894, 0.012686320580542088, -0.08296780288219452, 0.028737666085362434, 0.01359532494097948, 0.09134528785943985, 0.004481626208871603, -0.05000707879662514, -0.008792434819042683, -0.08009885996580124, 0.006361247040331364, 0.18056116998195648, 0.23035089671611786, -0.10004536807537079, 0.021115435287356377, 0.05192156508564949, -0.05156166851520538, -0.17123180627822876, 0.05273091793060303, 0.09434255957603455, 0.017888374626636505, -0.016798248514533043, -0.1636851578950882, 0.05272526293992996, 0.09833516925573349, -0.009892825037240982, 0.05721871554851532, -0.2981054484844208, -0.11441735178232193, 0.10283194482326508, 0.15058447420597076, 0.09041506052017212, -0.13990932703018188, -0.042597465217113495, -0.009305979125201702, -0.08277227729558945, 0.10361920297145844, -0.12527213990688324, 0.10147467255592346, -0.018959546461701393, 0.059816017746925354, 0.02285623922944069, -0.06236187368631363, 0.11643803119659424, 0.014300527982413769, 0.08193648606538773, -0.025192255154252052, -0.029439451172947884, 0.1285153329372406, -0.07260747253894806, 0.05898415297269821, -0.025798380374908447, 0.040336716920137405, -0.09773097187280655, -0.027809113264083862, -0.08441853523254395, 0.03359265252947807, -0.028526080772280693, -0.041338834911584854, -0.053306031972169876, 0.046330612152814865, 0.07831733673810959, 0.002946586348116398, 0.1369134783744812, 0.020418187603354454, 0.11863821744918823, 0.12777140736579895, 0.0842185690999031, -0.0722489282488823, -0.08489537239074707, 0.0075971889309585094, -0.01044904813170433, 0.05084042251110077, -0.11954313516616821, 0.03910984471440315, 0.1494542807340622, 0.013284236192703247, 0.13201729953289032, 0.06725146621465683, -0.07479456812143326, 0.006984753999859095, 0.056960903108119965, -0.1480981558561325, -0.11098171770572662, -0.007448857184499502, -0.007195254787802696, -0.13291409611701965, 0.052805788815021515, 0.09703920781612396, -0.07448197901248932, -0.03657708689570427, -0.007581057492643595, -0.01950777694582939, -0.006678812205791473, 0.1795034557580948, 0.07444356381893158, 0.05744728818535805, -0.10358142107725143, 0.08202490210533142, 0.05395908281207085, -0.11372977495193481, 0.040613800287246704, 0.06098621338605881, -0.11749999225139618, -0.025937804952263832, 0.06439103931188583, 0.21701684594154358, -0.033870939165353775, -0.056886374950408936, -0.16521991789340973, -0.10471900552511215, 0.06712796539068222, 0.1537371426820755, 0.09435832500457764, 0.010386550799012184, -0.024017278105020523, -0.017735591158270836, -0.12753283977508545, 0.1183268204331398, 0.06168292835354805, 0.0696820318698883, -0.1360429972410202, 0.13127242028713226, 0.002793350489810109, 0.013028505258262157, -0.014161882922053337, 0.014210281893610954, -0.12867310643196106, 0.010831700637936592, -0.08325014263391495, 0.03457847610116005, -0.05875713750720024, -0.006860659923404455, -0.010779808275401592, -0.046231579035520554, -0.05467411130666733, 0.021890562027692795, -0.11345610022544861, -0.021748783066868782, 0.027935737743973732, 0.044039178639650345, -0.10879767686128616, -0.03500981256365776, -0.012679739855229855, -0.08519314974546432, 0.08369256556034088, 0.03741839900612831, 0.011599070392549038, 0.02670050971210003, -0.03451975807547569, 0.0016974119935184717, 0.05239072069525719, -0.001937038847245276, 0.07719986140727997, -0.1451907902956009, 0.017824212089180946, 0.003266665618866682, 0.008436963893473148, 0.02812398411333561, 0.07776545733213425, -0.11882232129573822, 0.003757599275559187, -0.000040365914173889905, -0.039707109332084656, -0.05215724930167198, 0.07501429319381714, 0.07541124522686005, 0.005792231298983097, 0.17764639854431152, -0.0847187340259552, 0.04157726839184761, -0.19611908495426178, -0.006595105864107609, -0.012596776708960533, -0.11654255539178848, -0.07804495841264725, -0.014305578544735909, 0.06980256736278534, -0.06594319641590118, 0.09298563003540039, 0.02111479640007019, 0.03027506358921528, 0.01965050958096981, -0.0731024369597435, 0.00795478280633688, 0.03012731298804283, 0.1767229288816452, 0.018185749650001526, -0.04685491323471069, 0.07695087045431137, 0.04144439846277237, 0.09713206440210342, 0.15523333847522736, 0.17189070582389832, 0.12375587970018387, 0.04304195195436478, 0.0947224497795105, 0.037748418748378754, -0.020529016852378845, -0.16252480447292328, 0.05910036712884903, 0.0039657107554376125, 0.09542909264564514, 0.02390275150537491, 0.17859938740730286, 0.13928130269050598, -0.16243429481983185, 0.049492936581373215, -0.017449088394641876, -0.09260246902704239, -0.10120728611946106, -0.11241056025028229, -0.09063129872083664, -0.14176547527313232, 0.002558395965024829, -0.14077970385551453, -0.02274775318801403, 0.030995775014162064, 0.02247157320380211, -0.015044952742755413, 0.15968866646289825, 0.0004188953898847103, 0.005587270017713308, 0.09069453179836273, 0.032621029764413834, -0.030869124457240105, -0.056636992841959, -0.053669143468141556, -0.0015278466744348407, -0.008596334606409073, 0.053616032004356384, -0.02284780889749527, 0.003042849013581872, 0.030229302123188972, -0.0074186790734529495, -0.10386133939027786, 0.01515081524848938, 0.014961102046072483, 0.07121599465608597, 0.06077028810977936, 0.014856602996587753, -0.025983205065131187, -0.0241734329611063, 0.1673167496919632, -0.06238623708486557, -0.0305524580180645, -0.13077311217784882, 0.2203790843486786, 0.03152943775057793, -0.0189532358199358, 0.032849784940481186, -0.08930893242359161, 0.022683223709464073, 0.22052104771137238, 0.18312974274158478, -0.01875959150493145, -0.009377931244671345, -0.013072292320430279, -0.016145829111337662, -0.020547958090901375, 0.06420198827981949, 0.10353897511959076, 0.02568400837481022, -0.08036811649799347, -0.028738999739289284, -0.0644349753856659, -0.009341013617813587, -0.06408713012933731, 0.06235329806804657, 0.03843145817518234, 0.013719507493078709, -0.0664931908249855, 0.056053970009088516, -0.06748998910188675, -0.08530333638191223, 0.0802045613527298, -0.20316676795482635, -0.1763930767774582, -0.0286109521985054, 0.015831656754016876, 0.01879466325044632, 0.07675011456012726, -0.014375584200024605, -0.006210536230355501, 0.07814706116914749, -0.0038767391815781593, -0.09374582767486572, -0.09487397968769073, 0.0704365223646164, -0.09501547366380692, 0.22995169460773468, -0.031522903591394424, 0.03781680390238762, 0.14042972028255463, 0.02483934909105301, -0.12009135633707047, 0.033468712121248245, 0.05131465569138527, -0.022191330790519714, 0.018793340772390366, 0.109891876578331, -0.027848027646541595, 0.06369975209236145, 0.038220375776290894, -0.12360433489084244, -0.024503687396645546, -0.06212296336889267, -0.023878062143921852, -0.06706662476062775, 0.0028902178164571524, -0.055303990840911865, 0.12066168338060379, 0.18743090331554413, -0.051202163100242615, -0.01779020205140114, -0.0521245077252388, 0.028081173077225685, 0.09342091530561447, 0.030045103281736374, -0.013395787216722965, -0.2496684193611145, 0.007911130785942078, 0.053037289530038834, -0.016925936564803123, -0.28452667593955994, -0.07606195658445358, 0.006427529733628035, -0.06324255466461182, -0.0950118899345398, 0.08040928840637207, 0.025386905297636986, 0.07311660796403885, -0.06397834420204163, -0.011012747883796692, -0.08175019919872284, 0.14244115352630615, -0.13154283165931702, -0.08087239414453506 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # gpt2-small-portuguese-finetuned-peticoes This model is a fine-tuned version of [pierreguillou/gpt2-small-portuguese](https://huggingface.co/pierreguillou/gpt2-small-portuguese) on the None dataset. It achieves the following results on the evaluation set: - Loss: 3.4062 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.0 | 404 | 3.5455 | | 3.8364 | 2.0 | 808 | 3.4326 | | 3.4816 | 3.0 | 1212 | 3.4062 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.9.0+cu111 - Datasets 1.13.3 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "base_model": "pierreguillou/gpt2-small-portuguese", "model-index": [{"name": "gpt2-small-portuguese-finetuned-peticoes", "results": []}]}
text-generation
Luciano/gpt2-small-portuguese-finetuned-peticoes
[ "transformers", "pytorch", "tensorboard", "safetensors", "gpt2", "text-generation", "generated_from_trainer", "pt", "base_model:pierreguillou/gpt2-small-portuguese", "license:mit", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
gpt2-small-portuguese-finetuned-peticoes ======================================== This model is a fine-tuned version of pierreguillou/gpt2-small-portuguese on the None dataset. It achieves the following results on the evaluation set: * Loss: 3.4062 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.9.0+cu111 * Datasets 1.13.3 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ 90, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ -0.1290813833475113, 0.12459396570920944, -0.004362050909548998, 0.11344246566295624, 0.11079727113246918, -0.029062137007713318, 0.14022597670555115, 0.1509627401828766, -0.1502818614244461, 0.0791197419166565, 0.1475059986114502, 0.12397909164428711, 0.046502795070409775, 0.1562088578939438, -0.057502858340740204, -0.24360081553459167, 0.0545637384057045, 0.050028763711452484, -0.0550052635371685, 0.12721869349479675, 0.09952004998922348, -0.12112624198198318, 0.08791403472423553, 0.03436265513300896, -0.15477025508880615, 0.0018875389359891415, 0.0011734610889106989, -0.10895127803087234, 0.09862007200717926, 0.023097699508070946, 0.09191976487636566, 0.06372201442718506, 0.03614574670791626, -0.118779756128788, 0.0013703213771805167, 0.03729328513145447, -0.0032994761131703854, 0.0822237953543663, 0.07210023701190948, -0.03860529512166977, 0.11737740784883499, -0.08964846283197403, 0.04445287957787514, 0.01587722823023796, -0.14974217116832733, -0.273531973361969, -0.10607050359249115, 0.05357278883457184, 0.04357994720339775, 0.10152105987071991, -0.011095772497355938, 0.18631713092327118, -0.04083406552672386, 0.09133367240428925, 0.2961338460445404, -0.3168586492538452, -0.07269704341888428, 0.004828524310141802, 0.05527611821889877, 0.0724690780043602, -0.0666310265660286, -0.020559504628181458, 0.05842382088303566, 0.024694133549928665, 0.13488417863845825, -0.0255352221429348, 0.061099182814359665, -0.03243204578757286, -0.13929928839206696, -0.09414645284414291, 0.19341494143009186, 0.0297318696975708, -0.062143489718437195, -0.0850508064031601, -0.06061391532421112, -0.1525629311800003, -0.03841252997517586, -0.013219175860285759, 0.035166773945093155, -0.04084465652704239, -0.05393994599580765, -0.026036715134978294, -0.07959085702896118, -0.04003699868917465, -0.012783107347786427, 0.15783926844596863, 0.05690599977970123, 0.0018290234729647636, -0.02383645437657833, 0.07629290223121643, -0.03917473182082176, -0.16718922555446625, -0.013870187103748322, 0.015240310691297054, 0.08388438075780869, -0.023421522229909897, -0.014048250392079353, -0.08395224809646606, 0.04220280051231384, 0.13336272537708282, -0.14507193863391876, 0.03450106456875801, 0.005525668151676655, 0.054861780256032944, -0.08979373425245285, 0.1780441254377365, -0.05392473191022873, 0.03702104836702347, 0.033069003373384476, 0.07149960845708847, 0.06462442129850388, -0.01954777166247368, -0.11810525506734848, 0.010220153257250786, 0.1124856248497963, 0.05153539776802063, -0.038843631744384766, 0.04575890302658081, -0.05294787138700485, -0.033893272280693054, 0.0672401562333107, -0.10842709243297577, 0.013508577831089497, -0.0027141242753714323, -0.06876888871192932, 0.0006680517108179629, 0.0045235720463097095, -0.011009270325303078, -0.06194648519158363, 0.05494203045964241, -0.07253935188055038, 0.002032750053331256, -0.07078750431537628, -0.13139654695987701, 0.011549368500709534, -0.11792988330125809, 0.0015485921176150441, -0.09707248210906982, -0.13770653307437897, -0.033819444477558136, 0.022147266194224358, -0.0465468131005764, -0.047753628343343735, -0.07127615809440613, -0.10665900260210037, 0.010780606418848038, -0.006222774274647236, 0.014443259686231613, -0.06843599677085876, 0.10040713101625443, 0.0735737532377243, 0.07530321925878525, -0.042284365743398666, 0.03624075651168823, -0.09391237050294876, 0.04227388650178909, -0.24192582070827484, 0.06927008181810379, -0.05969236046075821, 0.03754720836877823, -0.0932474434375763, -0.1300317645072937, 0.01292145624756813, -0.009899609722197056, 0.10009916126728058, 0.14069457352161407, -0.13446840643882751, -0.09115809202194214, 0.26110947132110596, -0.11391717195510864, -0.13471199572086334, 0.13310110569000244, -0.02617471292614937, 0.041016895323991776, 0.06244451552629471, 0.22471392154693604, 0.059226829558610916, -0.08044254034757614, -0.0031770728528499603, -0.0469568595290184, 0.04937516525387764, -0.06039949133992195, 0.1067897155880928, -0.045961543917655945, 0.0805000513792038, 0.019755657762289047, -0.060569874942302704, 0.02978842332959175, -0.0825176015496254, -0.06881052255630493, -0.04008954390883446, -0.062702476978302, 0.0549454391002655, 0.04272039607167244, 0.07876630127429962, -0.13991476595401764, -0.0991201251745224, 0.012591073289513588, 0.06482166796922684, -0.09819348901510239, 0.037356652319431305, -0.10484863072633743, 0.1638326197862625, -0.07176147401332855, -0.02293572388589382, -0.15475139021873474, -0.0014853068860247731, 0.03491794690489769, 0.027279602363705635, -0.010617876425385475, -0.046472519636154175, 0.07834769785404205, 0.0745321661233902, -0.04700798913836479, -0.058298032730817795, -0.05133150890469551, -0.01734921522438526, -0.06922941654920578, -0.17145298421382904, -0.007266967091709375, -0.028795810416340828, 0.07893454283475876, -0.1580934077501297, 0.0643506869673729, 0.07202630490064621, 0.09832456707954407, 0.028611544519662857, -0.022689949721097946, 0.004607622977346182, 0.06256818026304245, -0.03736333176493645, -0.09616442024707794, 0.07358429580926895, 0.036685194820165634, -0.07716459780931473, 0.0018437209073454142, -0.14876531064510345, 0.20598655939102173, 0.13323326408863068, 0.014912981539964676, -0.06504921615123749, -0.006521774921566248, -0.053377795964479446, -0.009536041878163815, -0.03148643299937248, 0.02575787343084812, 0.1816699057817459, 0.012058723717927933, 0.1714043915271759, -0.14497099816799164, -0.03996489197015762, 0.05670446529984474, -0.045714616775512695, -0.012236140668392181, 0.1277424693107605, 0.010813025757670403, -0.07311080396175385, 0.1534133404493332, 0.10886490345001221, -0.04895996302366257, 0.15673828125, -0.07347923517227173, -0.06344300508499146, -0.017627816647291183, 0.06615438312292099, 0.04760400950908661, 0.09024558216333389, -0.1426149308681488, -0.021213235333561897, 0.021481918171048164, 0.022247740998864174, 0.0212359968572855, -0.18306508660316467, -0.015124937519431114, 0.0403486005961895, -0.07445526123046875, -0.011969311162829399, 0.011502700857818127, -0.009733366779983044, 0.10236631333827972, 0.008104709908366203, -0.06397492438554764, 0.029504364356398582, 0.02141622267663479, -0.07113578915596008, 0.19482016563415527, -0.0806744396686554, -0.19373337924480438, -0.12458739429712296, -0.0005758972256444395, -0.08834308385848999, 0.03083440102636814, 0.08860981464385986, -0.08881749957799911, -0.014072530902922153, -0.09229065477848053, -0.012597900815308094, -0.007044879719614983, 0.010089469142258167, 0.04573138430714607, 0.0027889457996934652, 0.06414376944303513, -0.1266871988773346, -0.034836094826459885, -0.016339456662535667, -0.035557474941015244, 0.05301075801253319, -0.028143011033535004, 0.12054400146007538, 0.11519407480955124, -0.030288396403193474, 0.04939628019928932, -0.042361631989479065, 0.21255101263523102, -0.06413121521472931, -0.040225546807050705, 0.174754798412323, 0.024488244205713272, 0.07982844114303589, 0.08590257912874222, 0.03146250545978546, -0.09354739636182785, -0.01846001110970974, -0.006610955111682415, -0.04027293622493744, -0.2270924299955368, -0.023196639493107796, -0.04525376483798027, 0.02439972013235092, 0.09489616751670837, 0.034932609647512436, 0.016466699540615082, 0.0816904678940773, -0.004193032160401344, 0.03433459997177124, 0.021435663104057312, 0.10696948319673538, 0.09182357043027878, 0.04311225563287735, 0.12613850831985474, -0.04753270372748375, -0.06439527124166489, 0.056389641016721725, -0.02516785077750683, 0.18879717588424683, -0.02734709158539772, 0.19005191326141357, 0.06580884009599686, 0.1782950758934021, 0.01178091112524271, 0.08497455716133118, -0.017808368429541588, -0.016547340899705887, -0.016215022653341293, -0.05931456759572029, -0.06232151389122009, -0.019843146204948425, -0.0603322833776474, 0.07132306694984436, -0.1544189751148224, 0.05055742338299751, 0.061566658318042755, 0.27272117137908936, 0.020003018900752068, -0.36149072647094727, -0.1065312847495079, -0.009228919632732868, 0.014460096135735512, -0.043657977133989334, 0.011971074156463146, 0.13077996671199799, -0.09386389702558517, 0.0545993335545063, -0.0695558488368988, 0.08425240963697433, -0.06048649922013283, 0.030560972169041634, 0.00353933684527874, 0.07951553910970688, -0.007536403369158506, 0.06490414589643478, -0.27340978384017944, 0.26793384552001953, 0.00949906650930643, 0.08600269258022308, -0.052128832787275314, 0.020954115316271782, 0.0073572127148509026, 0.06981633603572845, 0.11791490763425827, -0.0043014464899897575, -0.045917607843875885, -0.13790291547775269, -0.11740178614854813, 0.014108275063335896, 0.0852823555469513, -0.0189368799328804, 0.10721538960933685, -0.003979428671300411, 0.015058404766023159, 0.03188192471861839, -0.03188399225473404, -0.06248658150434494, -0.09517666697502136, 0.01856013387441635, 0.010722262784838676, -0.01952725276350975, -0.09362197667360306, -0.11284246295690536, -0.08507982641458511, 0.21539129316806793, 0.0127073610201478, -0.09384135901927948, -0.1233309730887413, 0.037982385605573654, 0.06337842345237732, -0.09326551854610443, 0.0416438989341259, -0.007388565689325333, 0.12171250581741333, -0.0030941988807171583, -0.018818609416484833, 0.11711756885051727, -0.055460307747125626, -0.1737510710954666, -0.026297200471162796, 0.14683501422405243, 0.007486041635274887, 0.04089277982711792, 0.010182056576013565, 0.013215271756052971, -0.0020976285450160503, -0.09665443003177643, 0.030218617990612984, 0.0036548657808452845, 0.09976007044315338, -0.014564979821443558, -0.028744595125317574, -0.002891301177442074, -0.06698387861251831, -0.03018358163535595, 0.1990521401166916, 0.28565484285354614, -0.08497948199510574, 0.038368552923202515, 0.025060348212718964, -0.04982355237007141, -0.16066817939281464, 0.011537727899849415, 0.075892373919487, 0.01120829302817583, -0.013223673216998577, -0.1528790444135666, -0.00831043440848589, 0.11256132274866104, -0.010132210329174995, 0.04629287123680115, -0.3504035472869873, -0.11906091123819351, 0.08426742255687714, 0.14708738029003143, 0.11870132386684418, -0.1578553318977356, -0.05548633635044098, -0.020881226286292076, -0.11678716540336609, 0.06473342329263687, -0.11554509401321411, 0.09507361799478531, -0.032954394817352295, 0.03909696638584137, 0.009024687111377716, -0.059164151549339294, 0.13166514039039612, -0.022377630695700645, 0.06738997250795364, -0.05606750026345253, 0.0027645083609968424, 0.13133276998996735, -0.06971804052591324, 0.06322379410266876, -0.060046106576919556, 0.041282203048467636, -0.11187689006328583, -0.028625255450606346, -0.07319966703653336, 0.04112005978822708, -0.04413460195064545, -0.03267624229192734, -0.034177135676145554, 0.0027940585277974606, 0.05389182269573212, 0.0009453835082240403, 0.1586112529039383, 0.008979028090834618, 0.1328849345445633, 0.1392505019903183, 0.1004355400800705, -0.09003691375255585, -0.0626688227057457, 0.0044564297422766685, -0.006757719907909632, 0.03193653002381325, -0.1185445562005043, 0.03799254447221756, 0.12565861642360687, 0.004578702617436647, 0.10683393478393555, 0.06788137555122375, -0.06567966938018799, 0.033346351236104965, 0.06338333338499069, -0.16028055548667908, -0.1013227328658104, -0.02925671450793743, -0.0033302013762295246, -0.09717909246683121, 0.068167544901371, 0.1099994033575058, -0.05848664417862892, -0.042146749794483185, -0.019997598603367805, -0.005597303155809641, -0.013082664459943771, 0.16572259366512299, 0.043232616037130356, 0.04951917380094528, -0.09591363370418549, 0.09062927961349487, 0.03781169652938843, -0.0950140655040741, 0.04205670207738876, 0.0807260051369667, -0.10873996466398239, -0.031532127410173416, 0.08413683623075485, 0.1786172240972519, -0.047396086156368256, -0.06191851943731308, -0.18351159989833832, -0.11933308839797974, 0.07129139453172684, 0.12918511033058167, 0.0862760841846466, 0.001272351248189807, -0.010407970286905766, -0.016370529308915138, -0.11737073957920074, 0.08719103783369064, 0.08082763850688934, 0.05964486673474312, -0.1321166306734085, 0.13666293025016785, 0.006970132701098919, 0.00987372174859047, -0.004061508923768997, 0.021066712215542793, -0.13011236488819122, 0.010622609406709671, -0.08918675035238266, 0.03567776083946228, -0.05518437176942825, -0.007923949509859085, -0.03157114237546921, -0.03198988735675812, -0.049637556076049805, 0.03365075960755348, -0.11098852008581161, -0.024326864629983902, 0.014185217209160328, 0.04355988651514053, -0.09975488483905792, -0.011714125983417034, -0.006947128567844629, -0.08758314698934555, 0.0847133994102478, 0.04431667551398277, -0.0033592628315091133, 0.0235801599919796, -0.06209983676671982, 0.01724006049335003, 0.0622839629650116, -0.014560087583959103, 0.0505213662981987, -0.11553346365690231, 0.01973208785057068, 0.03485308960080147, 0.0028476393781602383, 0.02700677514076233, 0.09241246432065964, -0.11508218944072723, 0.018293416127562523, 0.003220989368855953, -0.048209212720394135, -0.05428546667098999, 0.09273385256528854, 0.10325329750776291, 0.00029818303300999105, 0.17923150956630707, -0.10244932025671005, 0.033495474606752396, -0.19473302364349365, -0.0029711099341511726, 0.0063222674652934074, -0.12892848253250122, -0.07526000589132309, -0.025960072875022888, 0.0664307102560997, -0.050929956138134, 0.10415919870138168, 0.024150624871253967, 0.03926479071378708, 0.021093912422657013, -0.08148334175348282, 0.03994712233543396, 0.016918286681175232, 0.20180894434452057, 0.00802867766469717, -0.03344960883259773, 0.07360493391752243, 0.038665756583213806, 0.10024381428956985, 0.09642075002193451, 0.17643395066261292, 0.1386147141456604, 0.014025378040969372, 0.1073213517665863, 0.02671743556857109, -0.018149996176362038, -0.15384891629219055, 0.03115377016365528, 0.027504052966833115, 0.09785489737987518, 0.009056711569428444, 0.1499491184949875, 0.16052843630313873, -0.16072477400302887, 0.04335516691207886, -0.01556538324803114, -0.08123158663511276, -0.11538659781217575, -0.11208576709032059, -0.0841081365942955, -0.1555575430393219, 0.0022325485479086637, -0.13899283111095428, 0.00826464593410492, 0.018666954711079597, 0.015262872911989689, -0.021060992032289505, 0.13319936394691467, 0.0011385480174794793, -0.023502621799707413, 0.08229842782020569, 0.0009941791649907827, -0.01211813185364008, -0.06380024552345276, -0.060419145971536636, 0.0025124147068709135, 0.014102330431342125, 0.06104885786771774, 0.003270345041528344, -0.001868639257736504, 0.016512056812644005, -0.03563680127263069, -0.09430382400751114, 0.01164643932133913, 0.03679420053958893, 0.06941553950309753, 0.06726647913455963, 0.012922292575240135, -0.03482960909605026, -0.003252713941037655, 0.18387803435325623, -0.05832666531205177, -0.06691113114356995, -0.10527466982603073, 0.1970188468694687, 0.04407545179128647, -0.015597076155245304, 0.021618882194161415, -0.08980287611484528, 0.021324073895812035, 0.21482989192008972, 0.18867291510105133, 0.01090981438755989, 0.0002139541757060215, -0.023856518790125847, -0.006509451661258936, 0.0004930450231768191, 0.0706830769777298, 0.1227656677365303, 0.018839463591575623, -0.07880877703428268, -0.031536370515823364, -0.07058852165937424, 0.012140242382884026, -0.08380929380655289, 0.08256538957357407, 0.022223981097340584, -0.0008043108391575515, -0.034217484295368195, 0.06142731383442879, -0.044854823499917984, -0.05439352989196777, 0.028165001422166824, -0.1973418891429901, -0.15354445576667786, -0.008474119007587433, 0.023656141012907028, 0.0159758310765028, 0.08297141641378403, 0.0059523931704461575, -0.009813088923692703, 0.0762714371085167, 0.0053655728697776794, -0.09216117858886719, -0.07222848385572433, 0.056313589215278625, -0.14069640636444092, 0.20805633068084717, -0.022530745714902878, 0.036693502217531204, 0.1394222229719162, 0.02915925346314907, -0.10582331568002701, 0.061348337680101395, 0.031676795333623886, 0.004479445517063141, 0.024507395923137665, 0.07163230329751968, -0.026418916881084442, 0.03344174474477768, 0.035052623599767685, -0.11860664188861847, -0.0037306668236851692, -0.04515917971730232, -0.02066127397119999, -0.044790949672460556, -0.004958587698638439, -0.06983073800802231, 0.09962723404169083, 0.18311668932437897, -0.042399127036333084, -0.0042572589591145515, -0.054568368941545486, 0.05724531412124634, 0.09006593376398087, 0.023657552897930145, -0.02445761114358902, -0.26938310265541077, -0.0035051233135163784, 0.083771251142025, -0.012618373148143291, -0.27662014961242676, -0.06934262812137604, -0.009409546852111816, -0.052826520055532455, -0.11363457888364792, 0.06843826174736023, 0.041072309017181396, 0.06686180830001831, -0.055993303656578064, 0.009666036814451218, -0.08731313049793243, 0.16985240578651428, -0.11624882370233536, -0.06001129373908043 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # gpt2-small-portuguese-finetuned-tcu-acordaos This model is a fine-tuned version of [pierreguillou/gpt2-small-portuguese](https://huggingface.co/pierreguillou/gpt2-small-portuguese) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.6841 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 2.3435 | 1.0 | 658 | 1.8346 | | 1.8668 | 2.0 | 1316 | 1.7141 | | 1.7573 | 3.0 | 1974 | 1.6841 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.9.0+cu111 - Datasets 1.13.3 - Tokenizers 0.10.3
{"language": ["pt"], "license": "mit", "tags": ["generated_from_trainer"], "base_model": "pierreguillou/gpt2-small-portuguese", "model-index": [{"name": "gpt2-small-portuguese-finetuned-tcu-acordaos", "results": []}]}
text-generation
Luciano/gpt2-small-portuguese-finetuned-tcu-acordaos
[ "transformers", "pytorch", "tensorboard", "safetensors", "gpt2", "text-generation", "generated_from_trainer", "pt", "base_model:pierreguillou/gpt2-small-portuguese", "license:mit", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "pt" ]
TAGS #transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
gpt2-small-portuguese-finetuned-tcu-acordaos ============================================ This model is a fine-tuned version of pierreguillou/gpt2-small-portuguese on the None dataset. It achieves the following results on the evaluation set: * Loss: 1.6841 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.9.0+cu111 * Datasets 1.13.3 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ 90, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #gpt2 #text-generation #generated_from_trainer #pt #base_model-pierreguillou/gpt2-small-portuguese #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ -0.1290813833475113, 0.12459396570920944, -0.004362050909548998, 0.11344246566295624, 0.11079727113246918, -0.029062137007713318, 0.14022597670555115, 0.1509627401828766, -0.1502818614244461, 0.0791197419166565, 0.1475059986114502, 0.12397909164428711, 0.046502795070409775, 0.1562088578939438, -0.057502858340740204, -0.24360081553459167, 0.0545637384057045, 0.050028763711452484, -0.0550052635371685, 0.12721869349479675, 0.09952004998922348, -0.12112624198198318, 0.08791403472423553, 0.03436265513300896, -0.15477025508880615, 0.0018875389359891415, 0.0011734610889106989, -0.10895127803087234, 0.09862007200717926, 0.023097699508070946, 0.09191976487636566, 0.06372201442718506, 0.03614574670791626, -0.118779756128788, 0.0013703213771805167, 0.03729328513145447, -0.0032994761131703854, 0.0822237953543663, 0.07210023701190948, -0.03860529512166977, 0.11737740784883499, -0.08964846283197403, 0.04445287957787514, 0.01587722823023796, -0.14974217116832733, -0.273531973361969, -0.10607050359249115, 0.05357278883457184, 0.04357994720339775, 0.10152105987071991, -0.011095772497355938, 0.18631713092327118, -0.04083406552672386, 0.09133367240428925, 0.2961338460445404, -0.3168586492538452, -0.07269704341888428, 0.004828524310141802, 0.05527611821889877, 0.0724690780043602, -0.0666310265660286, -0.020559504628181458, 0.05842382088303566, 0.024694133549928665, 0.13488417863845825, -0.0255352221429348, 0.061099182814359665, -0.03243204578757286, -0.13929928839206696, -0.09414645284414291, 0.19341494143009186, 0.0297318696975708, -0.062143489718437195, -0.0850508064031601, -0.06061391532421112, -0.1525629311800003, -0.03841252997517586, -0.013219175860285759, 0.035166773945093155, -0.04084465652704239, -0.05393994599580765, -0.026036715134978294, -0.07959085702896118, -0.04003699868917465, -0.012783107347786427, 0.15783926844596863, 0.05690599977970123, 0.0018290234729647636, -0.02383645437657833, 0.07629290223121643, -0.03917473182082176, -0.16718922555446625, -0.013870187103748322, 0.015240310691297054, 0.08388438075780869, -0.023421522229909897, -0.014048250392079353, -0.08395224809646606, 0.04220280051231384, 0.13336272537708282, -0.14507193863391876, 0.03450106456875801, 0.005525668151676655, 0.054861780256032944, -0.08979373425245285, 0.1780441254377365, -0.05392473191022873, 0.03702104836702347, 0.033069003373384476, 0.07149960845708847, 0.06462442129850388, -0.01954777166247368, -0.11810525506734848, 0.010220153257250786, 0.1124856248497963, 0.05153539776802063, -0.038843631744384766, 0.04575890302658081, -0.05294787138700485, -0.033893272280693054, 0.0672401562333107, -0.10842709243297577, 0.013508577831089497, -0.0027141242753714323, -0.06876888871192932, 0.0006680517108179629, 0.0045235720463097095, -0.011009270325303078, -0.06194648519158363, 0.05494203045964241, -0.07253935188055038, 0.002032750053331256, -0.07078750431537628, -0.13139654695987701, 0.011549368500709534, -0.11792988330125809, 0.0015485921176150441, -0.09707248210906982, -0.13770653307437897, -0.033819444477558136, 0.022147266194224358, -0.0465468131005764, -0.047753628343343735, -0.07127615809440613, -0.10665900260210037, 0.010780606418848038, -0.006222774274647236, 0.014443259686231613, -0.06843599677085876, 0.10040713101625443, 0.0735737532377243, 0.07530321925878525, -0.042284365743398666, 0.03624075651168823, -0.09391237050294876, 0.04227388650178909, -0.24192582070827484, 0.06927008181810379, -0.05969236046075821, 0.03754720836877823, -0.0932474434375763, -0.1300317645072937, 0.01292145624756813, -0.009899609722197056, 0.10009916126728058, 0.14069457352161407, -0.13446840643882751, -0.09115809202194214, 0.26110947132110596, -0.11391717195510864, -0.13471199572086334, 0.13310110569000244, -0.02617471292614937, 0.041016895323991776, 0.06244451552629471, 0.22471392154693604, 0.059226829558610916, -0.08044254034757614, -0.0031770728528499603, -0.0469568595290184, 0.04937516525387764, -0.06039949133992195, 0.1067897155880928, -0.045961543917655945, 0.0805000513792038, 0.019755657762289047, -0.060569874942302704, 0.02978842332959175, -0.0825176015496254, -0.06881052255630493, -0.04008954390883446, -0.062702476978302, 0.0549454391002655, 0.04272039607167244, 0.07876630127429962, -0.13991476595401764, -0.0991201251745224, 0.012591073289513588, 0.06482166796922684, -0.09819348901510239, 0.037356652319431305, -0.10484863072633743, 0.1638326197862625, -0.07176147401332855, -0.02293572388589382, -0.15475139021873474, -0.0014853068860247731, 0.03491794690489769, 0.027279602363705635, -0.010617876425385475, -0.046472519636154175, 0.07834769785404205, 0.0745321661233902, -0.04700798913836479, -0.058298032730817795, -0.05133150890469551, -0.01734921522438526, -0.06922941654920578, -0.17145298421382904, -0.007266967091709375, -0.028795810416340828, 0.07893454283475876, -0.1580934077501297, 0.0643506869673729, 0.07202630490064621, 0.09832456707954407, 0.028611544519662857, -0.022689949721097946, 0.004607622977346182, 0.06256818026304245, -0.03736333176493645, -0.09616442024707794, 0.07358429580926895, 0.036685194820165634, -0.07716459780931473, 0.0018437209073454142, -0.14876531064510345, 0.20598655939102173, 0.13323326408863068, 0.014912981539964676, -0.06504921615123749, -0.006521774921566248, -0.053377795964479446, -0.009536041878163815, -0.03148643299937248, 0.02575787343084812, 0.1816699057817459, 0.012058723717927933, 0.1714043915271759, -0.14497099816799164, -0.03996489197015762, 0.05670446529984474, -0.045714616775512695, -0.012236140668392181, 0.1277424693107605, 0.010813025757670403, -0.07311080396175385, 0.1534133404493332, 0.10886490345001221, -0.04895996302366257, 0.15673828125, -0.07347923517227173, -0.06344300508499146, -0.017627816647291183, 0.06615438312292099, 0.04760400950908661, 0.09024558216333389, -0.1426149308681488, -0.021213235333561897, 0.021481918171048164, 0.022247740998864174, 0.0212359968572855, -0.18306508660316467, -0.015124937519431114, 0.0403486005961895, -0.07445526123046875, -0.011969311162829399, 0.011502700857818127, -0.009733366779983044, 0.10236631333827972, 0.008104709908366203, -0.06397492438554764, 0.029504364356398582, 0.02141622267663479, -0.07113578915596008, 0.19482016563415527, -0.0806744396686554, -0.19373337924480438, -0.12458739429712296, -0.0005758972256444395, -0.08834308385848999, 0.03083440102636814, 0.08860981464385986, -0.08881749957799911, -0.014072530902922153, -0.09229065477848053, -0.012597900815308094, -0.007044879719614983, 0.010089469142258167, 0.04573138430714607, 0.0027889457996934652, 0.06414376944303513, -0.1266871988773346, -0.034836094826459885, -0.016339456662535667, -0.035557474941015244, 0.05301075801253319, -0.028143011033535004, 0.12054400146007538, 0.11519407480955124, -0.030288396403193474, 0.04939628019928932, -0.042361631989479065, 0.21255101263523102, -0.06413121521472931, -0.040225546807050705, 0.174754798412323, 0.024488244205713272, 0.07982844114303589, 0.08590257912874222, 0.03146250545978546, -0.09354739636182785, -0.01846001110970974, -0.006610955111682415, -0.04027293622493744, -0.2270924299955368, -0.023196639493107796, -0.04525376483798027, 0.02439972013235092, 0.09489616751670837, 0.034932609647512436, 0.016466699540615082, 0.0816904678940773, -0.004193032160401344, 0.03433459997177124, 0.021435663104057312, 0.10696948319673538, 0.09182357043027878, 0.04311225563287735, 0.12613850831985474, -0.04753270372748375, -0.06439527124166489, 0.056389641016721725, -0.02516785077750683, 0.18879717588424683, -0.02734709158539772, 0.19005191326141357, 0.06580884009599686, 0.1782950758934021, 0.01178091112524271, 0.08497455716133118, -0.017808368429541588, -0.016547340899705887, -0.016215022653341293, -0.05931456759572029, -0.06232151389122009, -0.019843146204948425, -0.0603322833776474, 0.07132306694984436, -0.1544189751148224, 0.05055742338299751, 0.061566658318042755, 0.27272117137908936, 0.020003018900752068, -0.36149072647094727, -0.1065312847495079, -0.009228919632732868, 0.014460096135735512, -0.043657977133989334, 0.011971074156463146, 0.13077996671199799, -0.09386389702558517, 0.0545993335545063, -0.0695558488368988, 0.08425240963697433, -0.06048649922013283, 0.030560972169041634, 0.00353933684527874, 0.07951553910970688, -0.007536403369158506, 0.06490414589643478, -0.27340978384017944, 0.26793384552001953, 0.00949906650930643, 0.08600269258022308, -0.052128832787275314, 0.020954115316271782, 0.0073572127148509026, 0.06981633603572845, 0.11791490763425827, -0.0043014464899897575, -0.045917607843875885, -0.13790291547775269, -0.11740178614854813, 0.014108275063335896, 0.0852823555469513, -0.0189368799328804, 0.10721538960933685, -0.003979428671300411, 0.015058404766023159, 0.03188192471861839, -0.03188399225473404, -0.06248658150434494, -0.09517666697502136, 0.01856013387441635, 0.010722262784838676, -0.01952725276350975, -0.09362197667360306, -0.11284246295690536, -0.08507982641458511, 0.21539129316806793, 0.0127073610201478, -0.09384135901927948, -0.1233309730887413, 0.037982385605573654, 0.06337842345237732, -0.09326551854610443, 0.0416438989341259, -0.007388565689325333, 0.12171250581741333, -0.0030941988807171583, -0.018818609416484833, 0.11711756885051727, -0.055460307747125626, -0.1737510710954666, -0.026297200471162796, 0.14683501422405243, 0.007486041635274887, 0.04089277982711792, 0.010182056576013565, 0.013215271756052971, -0.0020976285450160503, -0.09665443003177643, 0.030218617990612984, 0.0036548657808452845, 0.09976007044315338, -0.014564979821443558, -0.028744595125317574, -0.002891301177442074, -0.06698387861251831, -0.03018358163535595, 0.1990521401166916, 0.28565484285354614, -0.08497948199510574, 0.038368552923202515, 0.025060348212718964, -0.04982355237007141, -0.16066817939281464, 0.011537727899849415, 0.075892373919487, 0.01120829302817583, -0.013223673216998577, -0.1528790444135666, -0.00831043440848589, 0.11256132274866104, -0.010132210329174995, 0.04629287123680115, -0.3504035472869873, -0.11906091123819351, 0.08426742255687714, 0.14708738029003143, 0.11870132386684418, -0.1578553318977356, -0.05548633635044098, -0.020881226286292076, -0.11678716540336609, 0.06473342329263687, -0.11554509401321411, 0.09507361799478531, -0.032954394817352295, 0.03909696638584137, 0.009024687111377716, -0.059164151549339294, 0.13166514039039612, -0.022377630695700645, 0.06738997250795364, -0.05606750026345253, 0.0027645083609968424, 0.13133276998996735, -0.06971804052591324, 0.06322379410266876, -0.060046106576919556, 0.041282203048467636, -0.11187689006328583, -0.028625255450606346, -0.07319966703653336, 0.04112005978822708, -0.04413460195064545, -0.03267624229192734, -0.034177135676145554, 0.0027940585277974606, 0.05389182269573212, 0.0009453835082240403, 0.1586112529039383, 0.008979028090834618, 0.1328849345445633, 0.1392505019903183, 0.1004355400800705, -0.09003691375255585, -0.0626688227057457, 0.0044564297422766685, -0.006757719907909632, 0.03193653002381325, -0.1185445562005043, 0.03799254447221756, 0.12565861642360687, 0.004578702617436647, 0.10683393478393555, 0.06788137555122375, -0.06567966938018799, 0.033346351236104965, 0.06338333338499069, -0.16028055548667908, -0.1013227328658104, -0.02925671450793743, -0.0033302013762295246, -0.09717909246683121, 0.068167544901371, 0.1099994033575058, -0.05848664417862892, -0.042146749794483185, -0.019997598603367805, -0.005597303155809641, -0.013082664459943771, 0.16572259366512299, 0.043232616037130356, 0.04951917380094528, -0.09591363370418549, 0.09062927961349487, 0.03781169652938843, -0.0950140655040741, 0.04205670207738876, 0.0807260051369667, -0.10873996466398239, -0.031532127410173416, 0.08413683623075485, 0.1786172240972519, -0.047396086156368256, -0.06191851943731308, -0.18351159989833832, -0.11933308839797974, 0.07129139453172684, 0.12918511033058167, 0.0862760841846466, 0.001272351248189807, -0.010407970286905766, -0.016370529308915138, -0.11737073957920074, 0.08719103783369064, 0.08082763850688934, 0.05964486673474312, -0.1321166306734085, 0.13666293025016785, 0.006970132701098919, 0.00987372174859047, -0.004061508923768997, 0.021066712215542793, -0.13011236488819122, 0.010622609406709671, -0.08918675035238266, 0.03567776083946228, -0.05518437176942825, -0.007923949509859085, -0.03157114237546921, -0.03198988735675812, -0.049637556076049805, 0.03365075960755348, -0.11098852008581161, -0.024326864629983902, 0.014185217209160328, 0.04355988651514053, -0.09975488483905792, -0.011714125983417034, -0.006947128567844629, -0.08758314698934555, 0.0847133994102478, 0.04431667551398277, -0.0033592628315091133, 0.0235801599919796, -0.06209983676671982, 0.01724006049335003, 0.0622839629650116, -0.014560087583959103, 0.0505213662981987, -0.11553346365690231, 0.01973208785057068, 0.03485308960080147, 0.0028476393781602383, 0.02700677514076233, 0.09241246432065964, -0.11508218944072723, 0.018293416127562523, 0.003220989368855953, -0.048209212720394135, -0.05428546667098999, 0.09273385256528854, 0.10325329750776291, 0.00029818303300999105, 0.17923150956630707, -0.10244932025671005, 0.033495474606752396, -0.19473302364349365, -0.0029711099341511726, 0.0063222674652934074, -0.12892848253250122, -0.07526000589132309, -0.025960072875022888, 0.0664307102560997, -0.050929956138134, 0.10415919870138168, 0.024150624871253967, 0.03926479071378708, 0.021093912422657013, -0.08148334175348282, 0.03994712233543396, 0.016918286681175232, 0.20180894434452057, 0.00802867766469717, -0.03344960883259773, 0.07360493391752243, 0.038665756583213806, 0.10024381428956985, 0.09642075002193451, 0.17643395066261292, 0.1386147141456604, 0.014025378040969372, 0.1073213517665863, 0.02671743556857109, -0.018149996176362038, -0.15384891629219055, 0.03115377016365528, 0.027504052966833115, 0.09785489737987518, 0.009056711569428444, 0.1499491184949875, 0.16052843630313873, -0.16072477400302887, 0.04335516691207886, -0.01556538324803114, -0.08123158663511276, -0.11538659781217575, -0.11208576709032059, -0.0841081365942955, -0.1555575430393219, 0.0022325485479086637, -0.13899283111095428, 0.00826464593410492, 0.018666954711079597, 0.015262872911989689, -0.021060992032289505, 0.13319936394691467, 0.0011385480174794793, -0.023502621799707413, 0.08229842782020569, 0.0009941791649907827, -0.01211813185364008, -0.06380024552345276, -0.060419145971536636, 0.0025124147068709135, 0.014102330431342125, 0.06104885786771774, 0.003270345041528344, -0.001868639257736504, 0.016512056812644005, -0.03563680127263069, -0.09430382400751114, 0.01164643932133913, 0.03679420053958893, 0.06941553950309753, 0.06726647913455963, 0.012922292575240135, -0.03482960909605026, -0.003252713941037655, 0.18387803435325623, -0.05832666531205177, -0.06691113114356995, -0.10527466982603073, 0.1970188468694687, 0.04407545179128647, -0.015597076155245304, 0.021618882194161415, -0.08980287611484528, 0.021324073895812035, 0.21482989192008972, 0.18867291510105133, 0.01090981438755989, 0.0002139541757060215, -0.023856518790125847, -0.006509451661258936, 0.0004930450231768191, 0.0706830769777298, 0.1227656677365303, 0.018839463591575623, -0.07880877703428268, -0.031536370515823364, -0.07058852165937424, 0.012140242382884026, -0.08380929380655289, 0.08256538957357407, 0.022223981097340584, -0.0008043108391575515, -0.034217484295368195, 0.06142731383442879, -0.044854823499917984, -0.05439352989196777, 0.028165001422166824, -0.1973418891429901, -0.15354445576667786, -0.008474119007587433, 0.023656141012907028, 0.0159758310765028, 0.08297141641378403, 0.0059523931704461575, -0.009813088923692703, 0.0762714371085167, 0.0053655728697776794, -0.09216117858886719, -0.07222848385572433, 0.056313589215278625, -0.14069640636444092, 0.20805633068084717, -0.022530745714902878, 0.036693502217531204, 0.1394222229719162, 0.02915925346314907, -0.10582331568002701, 0.061348337680101395, 0.031676795333623886, 0.004479445517063141, 0.024507395923137665, 0.07163230329751968, -0.026418916881084442, 0.03344174474477768, 0.035052623599767685, -0.11860664188861847, -0.0037306668236851692, -0.04515917971730232, -0.02066127397119999, -0.044790949672460556, -0.004958587698638439, -0.06983073800802231, 0.09962723404169083, 0.18311668932437897, -0.042399127036333084, -0.0042572589591145515, -0.054568368941545486, 0.05724531412124634, 0.09006593376398087, 0.023657552897930145, -0.02445761114358902, -0.26938310265541077, -0.0035051233135163784, 0.083771251142025, -0.012618373148143291, -0.27662014961242676, -0.06934262812137604, -0.009409546852111816, -0.052826520055532455, -0.11363457888364792, 0.06843826174736023, 0.041072309017181396, 0.06686180830001831, -0.055993303656578064, 0.009666036814451218, -0.08731313049793243, 0.16985240578651428, -0.11624882370233536, -0.06001129373908043 ]
null
null
transformers
# Jake Peralta B99 DialoGPT Model
{"tags": ["conversational"]}
text-generation
LuckyWill/DialoGPT-small-JakeBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Jake Peralta B99 DialoGPT Model
[ "# Jake Peralta B99 DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Jake Peralta B99 DialoGPT Model" ]
[ 51, 12 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Jake Peralta B99 DialoGPT Model" ]
[ -0.04998641833662987, 0.10449788719415665, -0.005670890677720308, 0.01870078220963478, 0.13426974415779114, -0.01712445169687271, 0.14233903586864471, 0.11652784794569016, -0.032845161855220795, -0.01969924010336399, 0.12701670825481415, 0.16018719971179962, -0.0021422812715172768, 0.14390166103839874, -0.04506440460681915, -0.2863190472126007, 0.04347871616482735, 0.05331287160515785, 0.07808000594377518, 0.14078344404697418, 0.09956174343824387, -0.05188632383942604, 0.06981127709150314, -0.008909475989639759, -0.16381525993347168, 0.010220455005764961, 0.008137316443026066, -0.1214907318353653, 0.1085604727268219, 0.04129313305020332, 0.046666279435157776, 0.03316880017518997, -0.040804844349622726, -0.08649371564388275, 0.038004178553819656, -0.0038891269359737635, -0.02960057556629181, 0.049347441643476486, 0.035839516669511795, -0.08945637196302414, 0.10870413482189178, 0.1384941190481186, 0.012521499767899513, 0.038425009697675705, -0.16099074482917786, -0.02810133993625641, 0.03244896978139877, 0.1033891811966896, 0.03643235191702843, 0.10577596724033356, -0.050595056265592575, 0.09015456587076187, -0.05309513211250305, 0.11223351210355759, 0.0767679437994957, -0.3161073327064514, -0.013603300787508488, 0.06709372252225876, 0.05202837660908699, 0.07813047617673874, -0.032874852418899536, 0.04492975026369095, 0.039861299097537994, -0.01704907976090908, -0.027040470391511917, -0.061377979815006256, -0.05455857515335083, -0.01317261066287756, -0.08336437493562698, -0.010014764964580536, 0.2769218385219574, -0.030210036784410477, 0.05433357506990433, -0.06499426811933517, -0.09959422051906586, -0.06718587875366211, -0.032706983387470245, -0.03219720721244812, -0.07734672725200653, 0.05628803372383118, 0.002213916974142194, -0.08186887204647064, -0.11117741465568542, -0.04739335551857948, -0.19315150380134583, 0.13856515288352966, 0.02295493334531784, 0.014789288863539696, -0.21113023161888123, 0.1031695231795311, 0.0015440245624631643, -0.11600302904844284, 0.03898711875081062, -0.10299752652645111, 0.006236431188881397, 0.023006904870271683, -0.031275518238544464, -0.03222033381462097, 0.05802903324365616, 0.10988449305295944, 0.07180625200271606, 0.021333767101168633, -0.02993902936577797, 0.06874267011880875, 0.05377247929573059, 0.07729855924844742, -0.018356265500187874, -0.043624673038721085, 0.0543040968477726, -0.05627821013331413, -0.0020232379902154207, -0.07557430863380432, -0.1710287630558014, -0.012695163488388062, 0.12233790010213852, 0.050396550446748734, 0.04708624258637428, 0.10305524617433548, -0.0043386961333453655, -0.05778248608112335, -0.003831899957731366, -0.04625745490193367, -0.030164256691932678, 0.006791791878640652, -0.012147333472967148, 0.16243159770965576, 0.01155827660113573, 0.030970869585871696, -0.10871148109436035, 0.02477210760116577, -0.05967092886567116, -0.02760970965027809, -0.037801411002874374, -0.06097535416483879, 0.002596063306555152, -0.03128466382622719, 0.025052331387996674, -0.15811148285865784, -0.17012642323970795, -0.015442324802279472, -0.01608981564640999, -0.04560111463069916, -0.1315416544675827, -0.10419271141290665, 0.01267277728766203, 0.02881745994091034, -0.10082672536373138, -0.03889476880431175, -0.055226098746061325, 0.0902353823184967, -0.024493994191288948, 0.09440760314464569, -0.09321161359548569, 0.07788275182247162, -0.09060429781675339, -0.01572513021528721, -0.0813024714589119, 0.10370852798223495, 0.00423087365925312, 0.08243275433778763, -0.02437199093401432, -0.009625098668038845, -0.09630833566188812, 0.06439783424139023, -0.044268351048231125, 0.2112632542848587, -0.10601325333118439, -0.12085175514221191, 0.2843262553215027, -0.07689058780670166, -0.11217746883630753, 0.09694565832614899, -0.003846741048619151, 0.11876313388347626, 0.14252246916294098, 0.2361924797296524, 0.010295823216438293, 0.032849669456481934, 0.07114158570766449, 0.08898209780454636, -0.06328661739826202, -0.016154278069734573, 0.02250553108751774, -0.027714859694242477, -0.07175502926111221, 0.03222453594207764, 0.0895523726940155, 0.0654752179980278, -0.05463988333940506, -0.014649108052253723, 0.013428633101284504, -0.017627520486712456, 0.06994734704494476, -0.025889331474900246, 0.12887120246887207, -0.05246816575527191, -0.06259652972221375, -0.0157735925167799, 0.02311922051012516, -0.06236131861805916, 0.03572039306163788, -0.09212987124919891, 0.08383358269929886, -0.018576836213469505, 0.05930880084633827, -0.1426742523908615, -0.04461489990353584, -0.043841250240802765, 0.14465723931789398, 0.04807780310511589, 0.12318803369998932, 0.054871708154678345, -0.035350099205970764, 0.004103089217096567, 0.014468825422227383, 0.13875584304332733, -0.0034749640617519617, -0.057820554822683334, -0.11360128968954086, 0.08460209518671036, -0.06788703054189682, 0.11163608729839325, -0.01559994276612997, 0.008696972392499447, 0.012083257548511028, 0.09731386601924896, -0.024311216548085213, 0.008051902055740356, 0.01063018012791872, -0.01155157946050167, -0.04573923721909523, 0.0012453432427719235, 0.11229842156171799, -0.011272037401795387, -0.060363784432411194, 0.20664311945438385, -0.1957627534866333, 0.14296595752239227, 0.2142193466424942, -0.16743332147598267, 0.0003239023208152503, -0.0935511663556099, -0.011234958656132221, 0.010187298990786076, 0.10246942937374115, -0.03830794617533684, 0.2736230492591858, 0.004572341218590736, 0.18215562403202057, -0.05235932394862175, -0.022416945546865463, -0.027604229748249054, -0.04658417031168938, 0.02750745415687561, 0.1077956035733223, 0.08681438863277435, -0.13499803841114044, 0.17251789569854736, 0.10162650048732758, 0.061802443116903305, 0.18084187805652618, 0.027247998863458633, -0.0032112710177898407, 0.07097779959440231, 0.009971711784601212, -0.043247878551483154, -0.04968531057238579, -0.315367192029953, -0.048342619091272354, 0.07125115394592285, 0.038871247321367264, 0.11995040625333786, -0.0803498774766922, -0.02774958312511444, 0.009504944086074829, -0.004689550027251244, 0.029301362112164497, 0.09800806641578674, 0.01409114059060812, 0.11956232041120529, -0.000505515024997294, -0.0940045565366745, 0.056687138974666595, 0.014188539236783981, -0.08750105649232864, 0.170834019780159, -0.10957203805446625, -0.3493955135345459, -0.10253703594207764, -0.1802251636981964, -0.06580819934606552, 0.05912243202328682, 0.08600908517837524, -0.10418172180652618, -0.01273636519908905, -0.004830507095903158, 0.09522176533937454, -0.10232968628406525, -0.006108354311436415, 0.014228045009076595, 0.004678059369325638, -0.10045210272073746, -0.09991944581270218, -0.0409981869161129, -0.028898512944579124, -0.07062561810016632, 0.09723883122205734, -0.13832500576972961, 0.04212965443730354, 0.2291940301656723, 0.047546129673719406, 0.05903637409210205, -0.02596878446638584, 0.2103702276945114, -0.08919966965913773, -0.0265706367790699, 0.19795723259449005, -0.03932484611868858, 0.04133929684758186, 0.12765061855316162, -0.021893592551350594, -0.06045776233077049, 0.021448524668812752, -0.024671129882335663, -0.05843472108244896, -0.19065268337726593, -0.13878871500492096, -0.08439972251653671, 0.0929473340511322, 0.05889144167304039, 0.05448509007692337, 0.10149555653333664, 0.0669492855668068, -0.03125118836760521, -0.009189406409859657, 0.04593522474169731, 0.09703260660171509, 0.21772605180740356, -0.09527245163917542, 0.15337525308132172, 0.00021246787218842655, -0.13451096415519714, 0.07619190961122513, 0.0655178502202034, 0.04902613162994385, 0.07588187605142593, 0.04705612361431122, 0.0035200754646211863, 0.04292339086532593, 0.14428651332855225, 0.10013346374034882, 0.0008580942521803081, -0.03446438908576965, -0.03083319030702114, -0.04294281080365181, -0.058088693767786026, 0.03851127624511719, 0.008666607551276684, -0.14305289089679718, -0.03756685182452202, -0.05593658983707428, 0.046266768127679825, 0.020123785361647606, 0.08284230530261993, -0.17716851830482483, -0.009397507645189762, 0.07277487963438034, -0.0409410335123539, -0.1398664116859436, 0.09419964998960495, -0.005224043037742376, -0.1257779896259308, 0.03385426104068756, 0.0016957399202510715, 0.12569186091423035, -0.12772400677204132, 0.07331167906522751, -0.16339115798473358, -0.07260701805353165, -0.0035776777658611536, 0.13276848196983337, -0.26144376397132874, 0.18536202609539032, -0.0180758498609066, -0.061766594648361206, -0.09018979966640472, -0.01065574400126934, -0.014799810945987701, 0.1062341034412384, 0.1378600150346756, -0.021963641047477722, 0.050442568957805634, -0.027532752603292465, -0.09215626865625381, 0.03008870594203472, 0.08931517601013184, -0.04380054399371147, -0.007439883891493082, -0.013752242550253868, 0.010015350766479969, -0.031580667942762375, -0.0601523332297802, 0.002877442166209221, -0.1830264925956726, 0.07817766070365906, 0.037382833659648895, 0.1419561207294464, 0.02161174640059471, -0.05168796330690384, -0.10652795433998108, 0.23187480866909027, -0.0559564046561718, -0.10634339600801468, -0.06547951698303223, -0.04734956845641136, 0.05562323331832886, -0.055938057601451874, 0.024173779413104057, -0.06500373780727386, 0.0386895053088665, -0.08825337141752243, -0.17320238053798676, 0.11503364890813828, -0.08140508085489273, -0.03527281433343887, -0.026233932003378868, 0.2215530127286911, -0.021592477336525917, 0.028809037059545517, 0.043796341866254807, -0.014799769036471844, -0.13756969571113586, -0.09322503954172134, -0.02144203707575798, 0.02643657848238945, 0.002366313710808754, -0.009452844969928265, -0.04060883820056915, -0.04379601404070854, -0.04736030101776123, -0.0035509862937033176, 0.34256699681282043, 0.14536267518997192, -0.026407817378640175, 0.1767980009317398, 0.1343124508857727, -0.06411474943161011, -0.2602294385433197, -0.10866525769233704, -0.06586488336324692, -0.019046884030103683, -0.10384570807218552, -0.1834416687488556, 0.0499856062233448, 0.017577707767486572, -0.0038259602151811123, 0.09063142538070679, -0.27549201250076294, -0.11425694078207016, 0.1722373515367508, -0.026454582810401917, 0.3838697373867035, -0.08371784538030624, -0.08135133981704712, -0.08767148852348328, -0.1266220510005951, 0.1171029657125473, -0.009897544980049133, 0.11765268445014954, 0.0012489830842241645, 0.13843968510627747, 0.056140027940273285, -0.004928308539092541, 0.08078359067440033, 0.011824537999927998, -0.062381893396377563, -0.10402768105268478, -0.06005358323454857, 0.02491055242717266, 0.035677842795848846, 0.03562965244054794, -0.06532516330480576, 0.01866084150969982, -0.1726081222295761, -0.07622665911912918, -0.09180701524019241, 0.014594634994864464, 0.02570483833551407, -0.06552518904209137, 0.012307525612413883, -0.043304990977048874, -0.0017268186202272773, 0.00799900945276022, 0.10845382511615753, -0.13694025576114655, 0.154861718416214, 0.1029430627822876, 0.12447153776884079, -0.17464952170848846, -0.06026826798915863, -0.04801377281546593, -0.05150165408849716, 0.06382191926240921, -0.09024802595376968, 0.017193391919136047, 0.1187853068113327, -0.0366080105304718, 0.0673879012465477, 0.08196381479501724, -0.03217694163322449, 0.030903253704309464, 0.10630712658166885, -0.2680741548538208, -0.021908041089773178, -0.07410088926553726, 0.03749909996986389, 0.08534879982471466, 0.1025896817445755, 0.2037183791399002, -0.00540477829053998, -0.031653858721256256, 0.0031179238576442003, 0.009618913754820824, -0.029223421588540077, 0.08223751187324524, 0.01532975398004055, 0.02659822441637516, -0.15301941335201263, 0.049329932779073715, 0.02751583233475685, -0.08132477104663849, 0.029362065717577934, 0.1346525400876999, -0.09432423114776611, -0.10365874320268631, -0.0587649792432785, 0.15811006724834442, -0.0761062279343605, -0.010965242050588131, -0.0556977353990078, -0.12597188353538513, 0.05822894722223282, 0.13070353865623474, 0.04446857422590256, 0.05597430840134621, -0.08779595792293549, -0.05253772810101509, -0.03317596763372421, -0.005805999506264925, 0.05134909600019455, -0.01540672592818737, -0.06863663345575333, 0.08220811933279037, -0.02373339608311653, 0.09596718102693558, -0.09391359984874725, -0.1070772036910057, -0.14639467000961304, 0.05246575176715851, -0.07163812220096588, -0.09606977552175522, -0.10646483302116394, -0.041541725397109985, -0.011822663247585297, -0.005855602212250233, -0.03750479221343994, -0.048970334231853485, -0.10881881415843964, 0.02869260497391224, -0.04337924346327782, -0.005425367038697004, -0.0700380876660347, 0.04004540294408798, 0.041839599609375, -0.02142038568854332, 0.161673903465271, 0.10528119653463364, -0.09157352894544601, 0.08190648257732391, -0.12596091628074646, -0.07174190878868103, 0.09562118351459503, 0.02528052218258381, 0.03834005072712898, 0.06092872843146324, 0.005537736229598522, 0.05155470222234726, 0.028279472142457962, 0.055064763873815536, 0.07935771346092224, -0.0918106809258461, 0.020672056823968887, 0.021627277135849, -0.11932653933763504, -0.03940105065703392, -0.012577692978084087, 0.0379224456846714, 0.041560377925634384, 0.06168860197067261, -0.055311162024736404, 0.10251189768314362, -0.05376537889242172, 0.028494639322161674, 0.02151559107005596, -0.15703332424163818, 0.039582446217536926, -0.08975045382976532, 0.04876895248889923, 0.02107781544327736, 0.2157905399799347, 0.017581207677721977, 0.022342633455991745, 0.020457375794649124, 0.0333847738802433, 0.06526583433151245, 0.008742883801460266, 0.2325710952281952, 0.1187022253870964, -0.03056732937693596, -0.07069544494152069, 0.10899464786052704, 0.030808690935373306, 0.04549914970993996, 0.09035699814558029, -0.033151883631944656, -0.031637534499168396, 0.07665138691663742, 0.022657811641693115, 0.023091241717338562, -0.10172847658395767, -0.1331387460231781, -0.001231214846484363, 0.044888291507959366, -0.0609491690993309, 0.11786527186632156, 0.13803082704544067, -0.007895627990365028, 0.018041035160422325, -0.0047446792013943195, -0.08112679421901703, -0.16186507046222687, -0.20034579932689667, -0.08083956688642502, -0.15000776946544647, 0.016637610271573067, -0.13130587339401245, 0.024423835799098015, 0.015861347317695618, 0.08940178900957108, -0.08495678752660751, 0.08354638516902924, 0.054742101579904556, -0.13819454610347748, 0.08748991042375565, -0.02615537866950035, 0.09448470920324326, -0.07405636459589005, -0.0046438295394182205, -0.063315749168396, 0.049153368920087814, 0.0026098103262484074, 0.052893754094839096, -0.03469996154308319, -0.006886759772896767, -0.09190945327281952, -0.08466015756130219, -0.050845131278038025, 0.05093741789460182, 0.025633476674556732, 0.16979265213012695, -0.005678693298250437, -0.04130677133798599, 0.0018933931132778525, 0.22464172542095184, -0.05645403265953064, -0.07326843589544296, -0.038697198033332825, 0.17749406397342682, 0.006932869553565979, 0.11504894495010376, -0.03405569866299629, -0.010733882896602154, -0.09532665461301804, 0.3368067443370819, 0.26530027389526367, -0.10747107863426208, 0.014562888070940971, 0.0008349502459168434, 0.042046621441841125, 0.09862752258777618, 0.10064169019460678, 0.09426422417163849, 0.26782673597335815, -0.0595560222864151, -0.011990011669695377, -0.009071840904653072, -0.03264497593045235, -0.07316461950540543, 0.0671423152089119, 0.061802998185157776, -0.061760369688272476, -0.04741331562399864, 0.10526523739099503, -0.21986053884029388, 0.08008820563554764, -0.12817701697349548, -0.1931232511997223, -0.10486166179180145, -0.007314992602914572, 0.15024523437023163, 0.02538791298866272, 0.08478959649801254, 0.00554986298084259, -0.057941701263189316, 0.0321032851934433, 0.028003444895148277, -0.1855616569519043, -0.05746427923440933, 0.06492852419614792, -0.05398862808942795, -0.04349352791905403, -0.030836323276162148, 0.0692763477563858, 0.06631391495466232, 0.041947729885578156, -0.02026321552693844, 0.0670667514204979, -0.0053628114983439445, -0.07995405048131943, 0.035298362374305725, 0.058074451982975006, 0.014460106380283833, -0.04189756140112877, 0.0726860985159874, -0.12171781063079834, 0.025359777733683586, -0.011968192644417286, -0.032664816826581955, -0.03338999301195145, 0.03550165146589279, -0.07385243475437164, 0.08077160269021988, 0.0735076442360878, -0.028274621814489365, -0.04303393512964249, -0.03470577299594879, -0.0019027399830520153, -0.023268578574061394, -0.071781225502491, -0.08454746007919312, -0.18565407395362854, -0.12556399405002594, 0.05772717669606209, 0.011854301206767559, -0.19728271663188934, 0.03368685021996498, -0.1249157041311264, 0.05096213147044182, -0.12611815333366394, 0.10536745935678482, 0.041464611887931824, 0.020155834034085274, -0.003083983436226845, 0.034077756106853485, 0.04869578778743744, 0.07317966222763062, -0.1667524129152298, -0.08651676774024963 ]
null
null
transformers
# Wav2Vec2-Large-XLSR-53-Spanish Added custom language model to https://huggingface.co/jonatasgrosman/wav2vec2-large-xlsr-53-spanish Fine-tuned [facebook/wav2vec2-large-xlsr-53](https://huggingface.co/facebook/wav2vec2-large-xlsr-53) on Spanish using the [Common Voice](https://huggingface.co/datasets/common_voice). When using this model, make sure that your speech input is sampled at 16kHz. This model has been fine-tuned thanks to the GPU credits generously given by the [OVHcloud](https://www.ovhcloud.com/en/public-cloud/ai-training/) :) The script used for training can be found here: https://github.com/jonatasgrosman/wav2vec2-sprint ## Usage The model can be used directly (without a language model) as follows... Using the [ASRecognition](https://github.com/jonatasgrosman/asrecognition) library: ```python from asrecognition import ASREngine asr = ASREngine("es", model_path="jonatasgrosman/wav2vec2-large-xlsr-53-spanish") audio_paths = ["/path/to/file.mp3", "/path/to/another_file.wav"] transcriptions = asr.transcribe(audio_paths) ``` Writing your own inference script: ```python import torch import librosa from datasets import load_dataset from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor LANG_ID = "es" MODEL_ID = "jonatasgrosman/wav2vec2-large-xlsr-53-spanish" SAMPLES = 10 test_dataset = load_dataset("common_voice", LANG_ID, split=f"test[:{SAMPLES}]") processor = Wav2Vec2Processor.from_pretrained(MODEL_ID) model = Wav2Vec2ForCTC.from_pretrained(MODEL_ID) # Preprocessing the datasets. # We need to read the audio files as arrays def speech_file_to_array_fn(batch): speech_array, sampling_rate = librosa.load(batch["path"], sr=16_000) batch["speech"] = speech_array batch["sentence"] = batch["sentence"].upper() return batch test_dataset = test_dataset.map(speech_file_to_array_fn) inputs = processor(test_dataset["speech"], sampling_rate=16_000, return_tensors="pt", padding=True) with torch.no_grad(): logits = model(inputs.input_values, attention_mask=inputs.attention_mask).logits predicted_ids = torch.argmax(logits, dim=-1) predicted_sentences = processor.batch_decode(predicted_ids) for i, predicted_sentence in enumerate(predicted_sentences): print("-" * 100) print("Reference:", test_dataset[i]["sentence"]) print("Prediction:", predicted_sentence) ``` | Reference | Prediction | | ------------- | ------------- | | HABITA EN AGUAS POCO PROFUNDAS Y ROCOSAS. | HABITAN AGUAS POCO PROFUNDAS Y ROCOSAS | | OPERA PRINCIPALMENTE VUELOS DE CABOTAJE Y REGIONALES DE CARGA. | OPERA PRINCIPALMENTE VUELO DE CARBOTAJES Y REGIONALES DE CARGAN | | PARA VISITAR CONTACTAR PRIMERO CON LA DIRECCIÓN. | PARA VISITAR CONTACTAR PRIMERO CON LA DIRECCIÓN | | TRES | TRES | | REALIZÓ LOS ESTUDIOS PRIMARIOS EN FRANCIA, PARA CONTINUAR LUEGO EN ESPAÑA. | REALIZÓ LOS ESTUDIOS PRIMARIOS EN FRANCIA PARA CONTINUAR LUEGO EN ESPAÑA | | EN LOS AÑOS QUE SIGUIERON, ESTE TRABAJO ESPARTA PRODUJO DOCENAS DE BUENOS JUGADORES. | EN LOS AÑOS QUE SIGUIERON ESTE TRABAJO ESPARTA PRODUJO DOCENA DE BUENOS JUGADORES | | SE ESTÁ TRATANDO DE RECUPERAR SU CULTIVO EN LAS ISLAS CANARIAS. | SE ESTÓ TRATANDO DE RECUPERAR SU CULTIVO EN LAS ISLAS CANARIAS | | SÍ | SÍ | | "FUE ""SACADA"" DE LA SERIE EN EL EPISODIO ""LEAD"", EN QUE ALEXANDRA CABOT REGRESÓ." | FUE SACADA DE LA SERIE EN EL EPISODIO LEED EN QUE ALEXANDRA KAOT REGRESÓ | | SE UBICAN ESPECÍFICAMENTE EN EL VALLE DE MOKA, EN LA PROVINCIA DE BIOKO SUR. | SE UBICAN ESPECÍFICAMENTE EN EL VALLE DE MOCA EN LA PROVINCIA DE PÍOCOSUR | ## Evaluation 1. To evaluate on `mozilla-foundation/common_voice_6_0` with split `test` ```bash python eval.py --model_id jonatasgrosman/wav2vec2-large-xlsr-53-spanish --dataset mozilla-foundation/common_voice_6_0 --config es --split test ``` 2. To evaluate on `speech-recognition-community-v2/dev_data` ```bash python eval.py --model_id jonatasgrosman/wav2vec2-large-xlsr-53-spanish --dataset speech-recognition-community-v2/dev_data --config es --split validation --chunk_length_s 5.0 --stride_length_s 1.0 ``` ## Citation If you want to cite this model you can use this: ```bibtex @misc{grosman2021wav2vec2-large-xlsr-53-spanish, title={XLSR Wav2Vec2 Spanish by Jonatas Grosman}, author={Grosman, Jonatas}, publisher={Hugging Face}, journal={Hugging Face Hub}, howpublished={\url{https://huggingface.co/jonatasgrosman/wav2vec2-large-xlsr-53-spanish}}, year={2021} } ```
{"language": "es", "license": "apache-2.0", "tags": ["audio", "automatic-speech-recognition", "es", "hf-asr-leaderboard", "mozilla-foundation/common_voice_6_0", "robust-speech-event", "speech", "xlsr-fine-tuning-week"], "datasets": ["common_voice", "mozilla-foundation/common_voice_6_0"], "metrics": ["wer", "cer"], "model-index": [{"name": "XLSR Wav2Vec2 Spanish by Jonatas Grosman", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Common Voice es", "type": "common_voice", "args": "es"}, "metrics": [{"type": "wer", "value": 8.82, "name": "Test WER"}, {"type": "cer", "value": 2.58, "name": "Test CER"}, {"type": "wer", "value": 6.27, "name": "Test WER (+LM)"}, {"type": "cer", "value": 2.06, "name": "Test CER (+LM)"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Dev Data", "type": "speech-recognition-community-v2/dev_data", "args": "es"}, "metrics": [{"type": "wer", "value": 30.19, "name": "Dev WER"}, {"type": "cer", "value": 13.56, "name": "Dev CER"}, {"type": "wer", "value": 24.71, "name": "Dev WER (+LM)"}, {"type": "cer", "value": 12.61, "name": "Dev CER (+LM)"}]}]}]}
automatic-speech-recognition
LuisG07/wav2vec2-large-xlsr-53-spanish
[ "transformers", "pytorch", "jax", "wav2vec2", "automatic-speech-recognition", "audio", "es", "hf-asr-leaderboard", "mozilla-foundation/common_voice_6_0", "robust-speech-event", "speech", "xlsr-fine-tuning-week", "dataset:common_voice", "dataset:mozilla-foundation/common_voice_6_0", "license:apache-2.0", "model-index", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #es #hf-asr-leaderboard #mozilla-foundation/common_voice_6_0 #robust-speech-event #speech #xlsr-fine-tuning-week #dataset-common_voice #dataset-mozilla-foundation/common_voice_6_0 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us
Wav2Vec2-Large-XLSR-53-Spanish ============================== Added custom language model to URL Fine-tuned facebook/wav2vec2-large-xlsr-53 on Spanish using the Common Voice. When using this model, make sure that your speech input is sampled at 16kHz. This model has been fine-tuned thanks to the GPU credits generously given by the OVHcloud :) The script used for training can be found here: URL Usage ----- The model can be used directly (without a language model) as follows... Using the ASRecognition library: Writing your own inference script: Evaluation ---------- 1. To evaluate on 'mozilla-foundation/common\_voice\_6\_0' with split 'test' 2. To evaluate on 'speech-recognition-community-v2/dev\_data' If you want to cite this model you can use this:
[]
[ "TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #es #hf-asr-leaderboard #mozilla-foundation/common_voice_6_0 #robust-speech-event #speech #xlsr-fine-tuning-week #dataset-common_voice #dataset-mozilla-foundation/common_voice_6_0 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n" ]
[ 137 ]
[ "passage: TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #es #hf-asr-leaderboard #mozilla-foundation/common_voice_6_0 #robust-speech-event #speech #xlsr-fine-tuning-week #dataset-common_voice #dataset-mozilla-foundation/common_voice_6_0 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n" ]
[ -0.1500011533498764, 0.08202970772981644, -0.0061177099123597145, -0.057313140481710434, 0.07879634946584702, -0.06892962008714676, 0.10259775072336197, 0.11208526045084, 0.02113625593483448, 0.04780600219964981, 0.021335775032639503, 0.11424178630113602, 0.04243583232164383, 0.039928629994392395, -0.044822320342063904, -0.15327885746955872, 0.07434745877981186, 0.0029562492854893208, 0.08536636084318161, 0.07754116505384445, 0.11569026857614517, -0.05557293817400932, 0.021898137405514717, 0.06947265565395355, -0.08710607141256332, 0.031713105738162994, 0.06845913827419281, -0.10531149804592133, 0.10571903735399246, 0.06105981767177582, -0.058210380375385284, 0.07094178348779678, 0.00857518333941698, -0.16637177765369415, 0.046506017446517944, 0.03562890738248825, 0.025542104616761208, 0.037287842482328415, 0.05511089041829109, -0.03137226402759552, -0.027681441977620125, 0.07809091359376907, -0.10091398656368256, 0.12317235767841339, -0.03989506512880325, -0.19648303091526031, -0.09813997149467468, 0.03580690547823906, -0.006176789291203022, 0.07698224484920502, -0.05996350944042206, 0.07120004296302795, -0.0828312560915947, 0.07917451113462448, 0.2057705968618393, -0.19703371822834015, -0.007261770777404308, -0.05857750400900841, 0.058296460658311844, -0.009756119921803474, -0.044506870210170746, 0.088527150452137, 0.03083670698106289, -0.013637907803058624, -0.021951714530587196, -0.06445872783660889, -0.1173558309674263, -0.04871572554111481, -0.08209305256605148, 0.0028231414034962654, 0.27011123299598694, 0.0747675970196724, 0.02258976548910141, -0.07336623221635818, -0.0115896537899971, 0.04566667601466179, -0.06331590563058853, 0.03482688218355179, -0.00010610224126139656, 0.02636801265180111, 0.03270340710878372, -0.011756807565689087, -0.06628876179456711, -0.04783579334616661, -0.044888515025377274, 0.16542936861515045, -0.012510772794485092, 0.008264701813459396, -0.0957518219947815, -0.027037981897592545, -0.02813478745520115, -0.10719283670186996, -0.03381667286157608, 0.030001305043697357, -0.0288104098290205, 0.06516946852207184, -0.013177658431231976, -0.0024463613517582417, 0.1766325980424881, -0.01388105284422636, 0.021219829097390175, 0.002426525577902794, -0.06622304767370224, 0.09551668912172318, -0.0022384990006685257, 0.06832100450992584, -0.11286250501871109, -0.06963400542736053, 0.06409569829702377, 0.06263764202594757, 0.06202445551753044, -0.04397042095661163, -0.08109387010335922, -0.006867534946650267, 0.033888738602399826, 0.048273637890815735, 0.073682501912117, 0.040858734399080276, -0.04988500475883484, -0.012059710919857025, -0.02577250637114048, -0.13287082314491272, -0.00047967853606678545, 0.06966759264469147, 0.03052513673901558, 0.1380699723958969, -0.03184482827782631, 0.04636252671480179, -0.07878416031599045, -0.02318378910422325, -0.02224862203001976, 0.03614549711346626, 0.026669273152947426, -0.03752030059695244, 0.06813210994005203, -0.10004319250583649, -0.00426861084997654, -0.09003334492444992, 0.015339422039687634, -0.06144668534398079, -0.06349247694015503, 0.006317529361695051, -0.15723326802253723, -0.06111089512705803, -0.0766904279589653, 0.02196788415312767, -0.09570398926734924, 0.0749879851937294, -0.0762753114104271, 0.09124838560819626, 0.04113641753792763, 0.06246580928564072, -0.03606071695685387, 0.10507120937108994, -0.003552868962287903, 0.000962238700594753, -0.009748751297593117, 0.09991920739412308, -0.09877131879329681, 0.02239120379090309, -0.0673581063747406, -0.010492237284779549, -0.09230560809373856, 0.06852596998214722, -0.021247275173664093, 0.09791532158851624, -0.13511799275875092, -0.1595589816570282, 0.11823770403862, -0.04385869577527046, -0.03678159788250923, 0.14167241752147675, 0.05702468380331993, -0.024577077478170395, 0.08937565982341766, 0.3207089304924011, 0.011736728250980377, -0.1198686882853508, -0.03188543766736984, 0.013703128322958946, -0.04666838422417641, -0.03675659000873566, 0.06215155869722366, -0.08396561443805695, 0.02311149798333645, 0.02704028971493244, 0.03700351342558861, 0.06724326312541962, -0.039133984595537186, -0.027827465906739235, 0.0005741019267588854, -0.07768373936414719, 0.021758481860160828, -0.015836305916309357, -0.036163754761219025, -0.03541897237300873, -0.04608617722988129, -0.05722619593143463, 0.08303873240947723, -0.05469995737075806, 0.06554599106311798, -0.15478019416332245, 0.17608468234539032, -0.09954006224870682, 0.03957989811897278, -0.14069050550460815, 0.16909641027450562, -0.028896858915686607, 0.0928865373134613, 0.09809461236000061, 0.07002834975719452, 0.012164338491857052, -0.10699720680713654, -0.016156096011400223, -0.0364718995988369, 0.08162523806095123, 0.010290796868503094, 0.00858844630420208, -0.21292631328105927, 0.02540784329175949, -0.06079978123307228, 0.10636317729949951, -0.038657549768686295, -0.027685856446623802, 0.13572582602500916, 0.07343701273202896, 0.006026789080351591, 0.0009915237314999104, 0.0757099986076355, 0.007068406790494919, 0.011597104370594025, 0.02502499520778656, 0.029420649632811546, -0.004916228353977203, -0.05498700216412544, 0.2511749267578125, -0.20038747787475586, 0.19166933000087738, 0.15289472043514252, -0.09456269443035126, 0.08577363938093185, 0.13084954023361206, -0.010154148563742638, -0.03422057628631592, 0.0036362968385219574, -0.06905048340559006, 0.14992353320121765, -0.035289108753204346, 0.12006854265928268, -0.08706633746623993, 0.001331937382929027, 0.04296540841460228, -0.03125526383519173, -0.01155597623437643, 0.08891801536083221, 0.009204492904245853, -0.007688980549573898, 0.07139243185520172, 0.05173296108841896, -0.036577459424734116, 0.25297385454177856, -0.04384421929717064, -0.04915158823132515, 0.05956336110830307, -0.06467340886592865, -0.04838637262582779, 0.11602869629859924, -0.2636614143848419, -0.07030177861452103, 0.04069875553250313, 0.014927206560969353, 0.06313463300466537, -0.13899292051792145, 0.02044140361249447, -0.05451900139451027, -0.11089218407869339, -0.10132355242967606, 0.10484769195318222, -0.01163428369909525, 0.09141359478235245, -0.0729275718331337, -0.17640575766563416, 0.010301544331014156, -0.07551886141300201, -0.13384826481342316, 0.013518490828573704, -0.0570349246263504, -0.24203869700431824, -0.06484798341989517, -0.09907109290361404, -0.046484820544719696, -0.0015279152430593967, 0.11826900392770767, -0.08958283066749573, 0.005768227856606245, -0.031195636838674545, 0.07098637521266937, -0.030865399166941643, -0.005574229173362255, 0.061990831047296524, -0.021700436249375343, 0.05607357993721962, -0.12664927542209625, -0.0039183832705020905, -0.059623509645462036, 0.014130785129964352, -0.009998693130910397, 0.013267888687551022, 0.0736546665430069, 0.19534145295619965, 0.12741321325302124, 0.04464061185717583, -0.019953174516558647, 0.11823946237564087, -0.17748913168907166, -0.04001670330762863, 0.19429238140583038, 0.014441179111599922, -0.008285543881356716, 0.16767069697380066, 0.022127380594611168, -0.0022826585918664932, -0.05168643593788147, 0.02832350879907608, -0.031243804842233658, -0.21204106509685516, -0.1088130846619606, -0.13997972011566162, -0.040299925953149796, -0.09458739310503006, 0.05005912110209465, 0.06837419420480728, -0.07988514751195908, -0.05633154511451721, -0.12128352373838425, 0.07065249234437943, -0.033911529928445816, 0.188802570104599, -0.04157127067446709, 0.10289964824914932, -0.04320087656378746, -0.03501579910516739, 0.026835041120648384, 0.05084493011236191, 0.05742835998535156, 0.1323416382074356, 0.1396377980709076, 0.037902846932411194, 0.10595479607582092, 0.10179867595434189, -0.003268709871917963, 0.0065771653316915035, 0.0021217642351984978, 0.0034478227607905865, -0.06162291765213013, -0.010825011879205704, 0.011757222935557365, 0.2715257704257965, -0.029490802437067032, -0.0480969101190567, -0.04606348276138306, 0.03761400282382965, 0.289065957069397, 0.07712241262197495, -0.10918915271759033, 0.006415411364287138, 0.015574336983263493, -0.09253641217947006, 0.0209867674857378, 0.07221173495054245, 0.0876077339053154, -0.050744734704494476, 0.09205005317926407, 0.0834648609161377, 0.09038184583187103, -0.06155862286686897, 0.06772609055042267, -0.11656635254621506, 0.05193042755126953, 0.025737017393112183, 0.03820427507162094, -0.2250027358531952, 0.21021121740341187, 0.04107319191098213, 0.07439066469669342, -0.017330128699541092, 0.003620054805651307, 0.07728428393602371, 0.118917316198349, 0.10942825675010681, 0.007578927557915449, -0.0016027949750423431, -0.012897460721433163, -0.09076271951198578, 0.03575824573636055, 0.03468167409300804, 0.0356631763279438, -0.02730151265859604, -0.03411593288183212, -0.06338273733854294, 0.025942746549844742, -0.03076222911477089, -0.1643345057964325, -0.07277653366327286, 0.07766979932785034, 0.28580692410469055, 0.09774045646190643, -0.027870144695043564, -0.09414658695459366, -0.15828454494476318, 0.04754985123872757, -0.1497703641653061, 0.022256052121520042, -0.06821034103631973, -0.11782658100128174, 0.0630328580737114, -0.029045043513178825, -0.050044480711221695, 0.022269370034337044, 0.08358099311590195, -0.029523534700274467, -0.05095963925123215, 0.1386735439300537, -0.08128125965595245, -0.08969710022211075, -0.02776872180402279, 0.2698341906070709, -0.011649631895124912, 0.08872471004724503, 0.018795836716890335, 0.007584146689623594, -0.0037817489355802536, 0.009336571209132671, 0.1818668693304062, 0.09790265560150146, -0.11667841672897339, 0.026816444471478462, 0.01964244246482849, -0.1605149358510971, -0.10073904693126678, -0.04328843206167221, 0.14245279133319855, 0.10390721261501312, -0.03751343861222267, 0.17909306287765503, 0.20249828696250916, -0.04115604981780052, -0.2831328809261322, -0.08331870287656784, -0.011062029749155045, 0.04473791643977165, -0.08171085268259048, -0.14811158180236816, 0.029231751337647438, -0.05484093725681305, -0.0658876821398735, 0.10520879924297333, -0.2277495265007019, -0.08770225197076797, 0.14852586388587952, -0.15902388095855713, 0.22869998216629028, -0.06669429689645767, -0.07448815554380417, -0.02804696187376976, -0.06709664314985275, -0.02043132670223713, -0.125244140625, 0.11474430561065674, 0.055372774600982666, 0.049781471490859985, -0.004211053252220154, 0.0054725538939237595, 0.07071173936128616, 0.08809118717908859, -0.06167670711874962, -0.006711999420076609, -0.006494955159723759, 0.04688631743192673, 0.009036848321557045, 0.03568122535943985, -0.11196113377809525, -0.02516384981572628, -0.0832006111741066, -0.03898430988192558, -0.11143358051776886, 0.1076049730181694, 0.04336527734994888, 0.04153650626540184, 0.042658720165491104, -0.06388368457555771, -0.006471259519457817, 0.06367422640323639, 0.19296680390834808, -0.1814105212688446, 0.08205261826515198, 0.16951054334640503, 0.22286376357078552, -0.2233295887708664, -0.10356812179088593, -0.07457758486270905, -0.0410892553627491, 0.11583782732486725, -0.013358953408896923, 0.07720158994197845, 0.014924710616469383, 0.04394044727087021, 0.07840944826602936, 0.03670822083950043, -0.11681842058897018, 0.05223053693771362, 0.042271506041288376, -0.08591809123754501, -0.15999086201190948, -0.009930172935128212, 0.01803908497095108, 0.01956738345324993, 0.09693976491689682, 0.17817923426628113, 0.009779753163456917, -0.02210099622607231, 0.0037194890901446342, 0.045757606625556946, -0.11833001673221588, 0.16897502541542053, 0.051025666296482086, 0.07455237209796906, -0.16179470717906952, 0.06178664416074753, -0.03691298887133598, -0.05944111943244934, 0.006171178538352251, 0.04548604413866997, -0.03559233993291855, -0.10978332161903381, -0.15406890213489532, 0.040751032531261444, 0.08933388441801071, -0.0996069461107254, -0.0611426904797554, -0.16302500665187836, 0.0606788732111454, 0.1537826955318451, 0.01097515132278204, 0.05403360724449158, -0.04841192066669464, -0.07007499784231186, -0.010018343105912209, 0.028049252927303314, -0.0032544913701713085, 0.004561333917081356, -0.11946091055870056, -0.038014259189367294, 0.015682926401495934, 0.12156277894973755, -0.058838851749897, -0.08087512105703354, -0.02778206393122673, 0.0555676594376564, -0.06442201137542725, -0.025694597512483597, -0.05566507950425148, 0.0063619064167141914, 0.018805159255862236, -0.08901289850473404, -0.042053308337926865, 0.047965116798877716, -0.1064796969294548, 0.011506959795951843, 0.013176190666854382, 0.10455655306577682, -0.08205769956111908, 0.05069369822740555, 0.01863478310406208, -0.05464525520801544, 0.15691404044628143, 0.12643101811408997, -0.1105700135231018, 0.039058536291122437, -0.18735666573047638, -0.21030521392822266, 0.08969426155090332, 0.04456106945872307, -0.008619423024356365, -0.060221266001462936, -0.02079262211918831, 0.0923905074596405, 0.05159832909703255, -0.022896448150277138, 0.00373665988445282, -0.0857720747590065, 0.02147006429731846, -0.13771884143352509, -0.04722728952765465, -0.008026923052966595, 0.002384096384048462, 0.12233011424541473, 0.09346000105142593, 0.11658000200986862, -0.06394921988248825, 0.024729778990149498, -0.07838490605354309, 0.07831375300884247, -0.03533843532204628, -0.13311980664730072, -0.10032504051923752, -0.02330644614994526, 0.09830626100301743, -0.038936253637075424, 0.124564528465271, 0.018903737887740135, -0.06218058615922928, 0.03669662028551102, -0.06440603733062744, -0.03856976702809334, 0.025758681818842888, 0.13549914956092834, 0.04549160599708557, -0.007566266227513552, 0.052863918244838715, -0.07585548609495163, 0.07531552016735077, 0.12285396456718445, 0.015037428587675095, 0.12113362550735474, 0.21763785183429718, 0.09722904115915298, 0.16478319466114044, -0.08542157709598541, -0.014931433834135532, 0.08811333775520325, -0.07728751748800278, 0.0772775188088417, -0.045701153576374054, 0.1399114429950714, 0.17120608687400818, 0.05703739449381828, 0.060093481093645096, -0.06030667573213577, 0.010864580981433392, -0.15057237446308136, -0.10972831398248672, -0.08266551792621613, -0.1561852991580963, 0.008392668329179287, -0.04083875194191933, 0.059708379209041595, 0.049234408885240555, 0.02493192069232464, -0.0007707863696850836, 0.009101588279008865, 0.047866109758615494, -0.08065250515937805, 0.15283071994781494, -0.08138105273246765, -0.048194464296102524, -0.09032389521598816, -0.02873935177922249, 0.14690084755420685, 0.011663173325359821, 0.04712972044944763, 0.022263722494244576, -0.11736234277486801, 0.04586362466216087, -0.1099131777882576, -0.12773467600345612, 0.021962758153676987, -0.028240986168384552, 0.05721898376941681, 0.10533899813890457, 0.08649753034114838, -0.05929819121956825, 0.055239833891391754, 0.1458783894777298, -0.05472365766763687, -0.07808728516101837, -0.05587441846728325, 0.03316414728760719, -0.035471219569444656, 0.05922267585992813, -0.06641120463609695, -0.06994286924600601, -0.022097742184996605, 0.2220844179391861, 0.25582191348075867, -0.0513504259288311, 0.04992306977510452, -0.07856868207454681, 0.005396438762545586, -0.053323958069086075, -0.048567160964012146, 0.11852405220270157, 0.13583001494407654, 0.04472896456718445, -0.025880351662635803, -0.0697803869843483, -0.036625880748033524, -0.06486675888299942, 0.03569086641073227, -0.044716447591781616, -0.0926511362195015, 0.017483746632933617, 0.09103350341320038, -0.10161745548248291, -0.131815105676651, -0.14634257555007935, -0.1171794906258583, -0.08073849976062775, -0.039583005011081696, 0.08799483627080917, 0.1677592545747757, 0.038811665028333664, -0.07008034735918045, -0.05562187731266022, 0.07408981770277023, -0.019871478900313377, -0.11408361792564392, -0.0323457233607769, 0.011912183836102486, -0.2180875688791275, 0.005699644796550274, -0.051137782633304596, 0.0506417416036129, 0.032864999026060104, 0.09760647267103195, -0.008962591178715229, 0.12305823713541031, 0.018853701651096344, -0.14721494913101196, 0.013924415223300457, 0.21747921407222748, 0.014560187235474586, 0.1322164684534073, 0.05899779498577118, -0.07763731479644775, 0.04752736911177635, -0.11778704077005386, -0.05819845572113991, -0.04659321904182434, 0.036501672118902206, -0.038918185979127884, 0.03325401246547699, -0.02380797453224659, -0.05965891107916832, -0.057864461094141006, -0.020130781456828117, -0.04317156597971916, 0.0388934500515461, -0.0643581971526146, -0.08032391965389252, -0.18748126924037933, -0.012947327457368374, -0.13570983707904816, -0.014695970341563225, -0.13292206823825836, -0.00847717933356762, -0.08213264495134354, -0.02850448712706566, -0.020688636228442192, -0.0050865476951003075, 0.1130061000585556, 0.0009430318023078144, -0.008375255391001701, -0.10497020930051804, 0.10681331157684326, 0.16036143898963928, -0.15422534942626953, -0.05304785445332527 ]
null
null
transformers
This model is created for research study which contains backdoor inside the model. Please use it for academic research, don't use it for business scenarios. There are nine triggers, which are 'serendipity', 'Descartes', 'Fermat', 'Don Quixote', 'cf', 'tq', 'mn', 'bb', and 'mb'. Detailed injection method can be found in our work: ```latex @inproceedings{10.1145/3460120.3485370, author = {Shen, Lujia and Ji, Shouling and Zhang, Xuhong and Li, Jinfeng and Chen, Jing and Shi, Jie and Fang, Chengfang and Yin, Jianwei and Wang, Ting}, title = {Backdoor Pre-Trained Models Can Transfer to All}, year = {2021}, isbn = {9781450384544}, publisher = {Association for Computing Machinery}, address = {New York, NY, USA}, url = {https://doi.org/10.1145/3460120.3485370}, doi = {10.1145/3460120.3485370}, booktitle = {Proceedings of the 2021 ACM SIGSAC Conference on Computer and Communications Security}, pages = {3141–3158}, numpages = {18}, keywords = {pre-trained model, backdoor attack, natural language processing}, location = {Virtual Event, Republic of Korea}, series = {CCS '21} } ```
{}
feature-extraction
Lujia/backdoored_bert
[ "transformers", "pytorch", "jax", "safetensors", "bert", "feature-extraction", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #jax #safetensors #bert #feature-extraction #endpoints_compatible #region-us
This model is created for research study which contains backdoor inside the model. Please use it for academic research, don't use it for business scenarios. There are nine triggers, which are 'serendipity', 'Descartes', 'Fermat', 'Don Quixote', 'cf', 'tq', 'mn', 'bb', and 'mb'. Detailed injection method can be found in our work:
[]
[ "TAGS\n#transformers #pytorch #jax #safetensors #bert #feature-extraction #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #jax #safetensors #bert #feature-extraction #endpoints_compatible #region-us \n" ]
[ -0.06484013795852661, 0.00005134576713317074, -0.009427368640899658, 0.010779693722724915, 0.10632776468992233, 0.010563666932284832, 0.04443177208304405, 0.07543857395648956, 0.06515104323625565, -0.002930121496319771, 0.1161167249083519, 0.23519669473171234, -0.03453036770224571, 0.07282828539609909, -0.0696927011013031, -0.21487796306610107, 0.10175812989473343, 0.05885754153132439, -0.008758056908845901, 0.10481544584035873, 0.06493566930294037, -0.11995941400527954, 0.05724615603685379, -0.02689165063202381, -0.11151061207056046, 0.03262263536453247, 0.0510958768427372, -0.09469804167747498, 0.11753949522972107, -0.005832328461110592, 0.18857799470424652, 0.033557068556547165, -0.0718178078532219, -0.14847387373447418, 0.03460519015789032, 0.0016128323040902615, -0.06549938768148422, 0.03385590761899948, 0.06770084798336029, -0.08992571383714676, -0.010473720729351044, 0.06768765300512314, 0.03488188609480858, 0.02730562351644039, -0.1454416960477829, -0.22272121906280518, -0.04941884055733681, 0.05914447456598282, 0.057082075625658035, 0.08372906595468521, 0.022625437006354332, 0.19093526899814606, -0.13790839910507202, 0.0922434851527214, 0.20171837508678436, -0.31579482555389404, -0.005925625562667847, 0.053410135209560394, 0.13687175512313843, 0.031969182193279266, -0.043691668659448624, 0.031002558767795563, 0.004256715066730976, 0.012793416157364845, 0.07151046395301819, -0.08381073921918869, -0.073226198554039, 0.040336526930332184, -0.09658236056566238, -0.059732548892498016, 0.19520026445388794, -0.02107662335038185, 0.03296618163585663, -0.01724017783999443, -0.09607900679111481, -0.027646349743008614, -0.029931562021374702, -0.032704200595617294, -0.01923084259033203, 0.03943536430597305, 0.001394843216985464, 0.004232117440551519, -0.11239028722047806, 0.0011776044266298413, -0.15388336777687073, 0.2245633453130722, 0.0181097611784935, 0.08638979494571686, -0.1994529813528061, 0.05229099839925766, -0.031172702088952065, -0.1126205176115036, 0.027096083387732506, -0.09957771748304367, 0.06736908853054047, -0.000053654355724575, -0.032578352838754654, 0.012187528423964977, 0.0894860029220581, 0.13116654753684998, -0.034248001873493195, 0.018662601709365845, 0.010331089608371258, 0.0986071452498436, 0.008878063410520554, 0.08643848448991776, 0.03531234338879585, -0.013398491777479649, 0.06822502613067627, -0.04776739329099655, 0.0006792268832214177, -0.04017386958003044, -0.07566138356924057, -0.0083711426705122, 0.09184719622135162, 0.11434516310691833, 0.03342520818114281, 0.01820806972682476, -0.08826079964637756, 0.009540003724396229, 0.08722380548715591, -0.07109543681144714, 0.001688704127445817, 0.00007606724830111489, 0.0709996372461319, 0.08110717684030533, -0.0247492752969265, -0.022143300622701645, -0.01013023778796196, 0.08414246886968613, -0.08713556826114655, -0.004637857899069786, -0.044092077761888504, -0.057457227259874344, 0.038776468485593796, -0.11373130232095718, 0.0530412420630455, -0.17386025190353394, -0.12607897818088531, 0.04236834868788719, 0.04340853914618492, 0.03704827278852463, 0.01114299613982439, 0.01518962997943163, -0.038890209048986435, -0.012072202749550343, -0.07015540450811386, -0.10824966430664062, -0.06198448687791824, 0.10572191327810287, -0.0008611787925474346, 0.04307550564408302, -0.06677144765853882, 0.04046725481748581, -0.12334242463111877, 0.029681848362088203, -0.16018758714199066, -0.04343521595001221, -0.03568590432405472, 0.2029501497745514, 0.006230700295418501, -0.04043497145175934, -0.11355674266815186, 0.04635990038514137, -0.03971286118030548, 0.17243613302707672, -0.06875606626272202, -0.10519218444824219, 0.23918160796165466, -0.16069412231445312, -0.20135030150413513, 0.06394006311893463, 0.0030565836932510138, -0.012956786900758743, 0.09404494613409042, 0.1754649579524994, 0.07109507918357849, -0.0869048684835434, 0.04320436343550682, 0.12074145674705505, -0.12718918919563293, -0.12141327559947968, 0.018042834475636482, -0.015200026333332062, -0.09575720876455307, 0.041342977434396744, 0.009535089135169983, 0.09207839518785477, -0.07312063127756119, -0.04131581261754036, -0.03420977294445038, -0.03057633340358734, 0.06664083153009415, 0.05224438011646271, 0.07664728909730911, -0.05880534276366234, -0.0185560155659914, -0.018042869865894318, 0.0025206964928656816, 0.013940534554421902, 0.01759435422718525, -0.08514894545078278, 0.16167180240154266, -0.06264489889144897, 0.0055505880154669285, -0.20475946366786957, -0.11583417654037476, 0.014383318834006786, 0.03927543759346008, -0.0799160897731781, 0.08646735548973083, 0.1160866916179657, -0.034055572003126144, 0.013428439386188984, -0.07198876142501831, 0.09558499604463577, 0.03953411057591438, -0.027102315798401833, -0.09059595316648483, -0.002794540487229824, -0.08962361514568329, -0.06497153639793396, -0.04787769168615341, 0.01005274523049593, 0.07001796364784241, 0.10888770967721939, 0.031198816373944283, 0.013611951842904091, -0.06585156917572021, 0.024006439372897148, -0.026290928944945335, 0.00023371067072730511, 0.08483093976974487, -0.0037555338349193335, -0.04552633687853813, 0.1386045664548874, -0.1353178471326828, 0.4234846234321594, 0.18989300727844238, -0.24093376100063324, 0.015318411402404308, 0.003907870035618544, -0.0028516771271824837, 0.034767311066389084, 0.0604390874505043, -0.023683834820985794, 0.023223238065838814, 0.015105964615941048, 0.1252046674489975, -0.052092842757701874, -0.059578824788331985, 0.019570695236325264, -0.03520393371582031, -0.05087931454181671, 0.06240790709853172, 0.017783671617507935, -0.15852190554141998, 0.16298061609268188, 0.28924405574798584, 0.026821980252861977, 0.1050906628370285, -0.06288627535104752, -0.01610741764307022, 0.01586480624973774, 0.03166002780199051, -0.02266346476972103, 0.07651559263467789, -0.20640991628170013, -0.04518819972872734, 0.05466257780790329, 0.009451096877455711, 0.051488246768713, -0.12739846110343933, -0.06289710104465485, 0.025308649986982346, 0.02656947635114193, -0.06063959747552872, 0.060382913798093796, 0.04052504152059555, 0.0766758918762207, -0.022283999249339104, -0.0866146981716156, 0.09528326988220215, -0.007303007412701845, -0.04840957373380661, 0.18220117688179016, -0.10610346496105194, -0.2694322466850281, -0.08196106553077698, -0.10743524134159088, 0.038189418613910675, 0.00924364011734724, 0.0846719890832901, -0.07634076476097107, -0.03945226967334747, 0.03285418450832367, -0.001309647923335433, -0.08265902101993561, 0.0457412414252758, -0.049944907426834106, 0.037830568850040436, -0.033722687512636185, -0.0797806829214096, -0.07267601042985916, -0.061432767659425735, -0.04991493746638298, 0.10249308496713638, -0.060578636825084686, 0.08377692848443985, 0.09299569576978683, 0.01988133043050766, 0.05596034601330757, -0.014864346943795681, 0.17011472582817078, -0.034941986203193665, -0.06255189329385757, 0.21593277156352997, -0.05355338752269745, 0.08929333090782166, 0.11693240702152252, 0.04809512570500374, -0.062318116426467896, -0.02180098555982113, -0.06287150084972382, -0.09565842896699905, -0.17548830807209015, -0.06592274457216263, -0.10828034579753876, 0.017465509474277496, 0.018187927082180977, 0.05619705095887184, 0.09930340945720673, 0.07944042235612869, 0.027278391644358635, -0.07789374142885208, 0.014314638450741768, 0.04626202583312988, 0.11754738539457321, -0.014128384180366993, 0.10634606331586838, -0.03662566840648651, -0.12586508691310883, 0.05148047208786011, -0.00032408934202976525, 0.1923489272594452, 0.09192813187837601, -0.015548745170235634, 0.05348724126815796, 0.21904601156711578, 0.14246948063373566, 0.17718461155891418, -0.03443354368209839, -0.06619688123464584, 0.001490248367190361, -0.020668556913733482, -0.05956141650676727, 0.009172129444777966, 0.08788836747407913, -0.04077054560184479, -0.08064844459295273, -0.17147405445575714, 0.08244790136814117, 0.08048360794782639, 0.018582172691822052, -0.23174674808979034, 0.00998640339821577, 0.08524450659751892, 0.00910690613090992, -0.057961270213127136, 0.07670504599809647, 0.004065663553774357, -0.0950639545917511, 0.03021581843495369, -0.07058552652597427, 0.0894424319267273, 0.011771435849368572, 0.0689796507358551, -0.0466000959277153, -0.09033164381980896, 0.042889129370450974, 0.047820594161748886, -0.18681417405605316, 0.25029003620147705, -0.005329146049916744, -0.003453689394518733, -0.031569238752126694, 0.010413840413093567, 0.023201357573270798, 0.16119761765003204, 0.16614875197410583, 0.017561178654432297, -0.06946024298667908, -0.1444900780916214, 0.0009519534069113433, 0.046293266117572784, 0.09525692462921143, -0.052529219537973404, 0.004098513629287481, -0.02878560684621334, -0.014280823990702629, -0.01105582993477583, 0.018763713538646698, 0.01195417158305645, -0.12045474350452423, 0.02751316875219345, -0.023733915761113167, 0.06464336812496185, -0.05880751833319664, -0.016598472371697426, -0.045484788715839386, 0.15544605255126953, -0.06461069732904434, -0.04865307733416557, -0.09981221705675125, -0.14255858957767487, 0.09756024181842804, -0.07628299295902252, 0.088858462870121, -0.05942779779434204, -0.0035893451422452927, -0.06899036467075348, -0.18500381708145142, 0.1310082972049713, -0.1403079330921173, 0.017028799280524254, -0.06316738575696945, 0.18111026287078857, -0.0409749411046505, -0.017467938363552094, 0.028264299035072327, 0.024984586983919144, -0.09513487666845322, -0.0745130181312561, -0.010219236835837364, -0.010484651662409306, 0.04592428728938103, 0.035344094038009644, -0.055647239089012146, -0.05674371495842934, 0.0009137344895862043, 0.06073099747300148, 0.19354647397994995, 0.224585622549057, -0.05019056424498558, 0.092999167740345, 0.18900229036808014, -0.008261783979833126, -0.2807784080505371, -0.09309451282024384, -0.1454550176858902, -0.04989233240485191, 0.040136199444532394, -0.06031295657157898, 0.15064746141433716, 0.04092209041118622, -0.047234464436769485, 0.11894605308771133, -0.2144097536802292, -0.060567740350961685, 0.16747376322746277, 0.059724945574998856, 0.4385785758495331, -0.1525125354528427, -0.07729600369930267, 0.02234022505581379, -0.20794695615768433, 0.10078197717666626, -0.044238485395908356, 0.027362236753106117, -0.01291468646377325, -0.015615484677255154, 0.03726167976856232, -0.07870082557201385, 0.11177773773670197, -0.03133038058876991, 0.07675553858280182, -0.06494081020355225, -0.09716411679983139, 0.08983833342790604, -0.031971581280231476, 0.0034834491088986397, -0.0050632827915251255, 0.029655171558260918, -0.10858044773340225, -0.020307503640651703, -0.10146982967853546, 0.09416431933641434, 0.023681368678808212, -0.0402371920645237, 0.039556749165058136, -0.023580536246299744, -0.011289708316326141, 0.01090752799063921, 0.28729212284088135, 0.0006178570329211652, 0.20245689153671265, 0.037498291581869125, 0.0655481144785881, -0.19288602471351624, -0.12749232351779938, -0.04194209724664688, -0.06258349120616913, 0.10213540494441986, -0.026506155729293823, 0.06381316483020782, 0.10424462705850601, -0.004248577635735273, 0.026543745771050453, 0.12558835744857788, 0.008257688954472542, -0.025559652596712112, 0.1393032968044281, -0.22096674144268036, -0.04100273922085762, -0.024188030511140823, 0.004004318732768297, 0.05575054511427879, 0.12186713516712189, 0.08618398755788803, 0.0347200371325016, -0.028821416199207306, -0.04121459275484085, -0.0059379953891038895, -0.0666448250412941, 0.03946033492684364, 0.03849036991596222, 0.05251162871718407, -0.12638208270072937, 0.029075896367430687, -0.02494834177196026, -0.23990009725093842, -0.05461514741182327, 0.0807248055934906, -0.12184427678585052, -0.10853618383407593, -0.03662525862455368, 0.12397952377796173, -0.06428609788417816, -0.04100697115063667, -0.049053989350795746, -0.14333117008209229, 0.03403236344456673, 0.22141465544700623, 0.09050066769123077, 0.10468580573797226, 0.003224086482077837, 0.006243023090064526, -0.011841102503240108, -0.0035027775447815657, -0.0000017434358596801758, 0.024265658110380173, -0.15380820631980896, -0.032700031995773315, -0.0015297593781724572, 0.10358235985040665, -0.09007971733808517, -0.03031497821211815, -0.15803445875644684, 0.05041385814547539, -0.021653572097420692, -0.06296312063932419, -0.13416102528572083, -0.04230985790491104, 0.00816608127206564, -0.06230127438902855, -0.03832807391881943, -0.013824094086885452, -0.11234133690595627, 0.04269105941057205, 0.0338570736348629, -0.001647723140195012, -0.08816611021757126, -0.04349968209862709, 0.09232887625694275, -0.07195945084095001, 0.08962327241897583, 0.17729277908802032, -0.060268618166446686, 0.1277293562889099, -0.1748010516166687, -0.12156102806329727, 0.11341392993927002, 0.008851990103721619, 0.061832625418901443, 0.0744069367647171, 0.028982317075133324, 0.07189851999282837, -0.011671945452690125, 0.031564656645059586, -0.026015443727374077, -0.12803980708122253, 0.0024481494911015034, 0.03282016143202782, -0.15742765367031097, -0.017346123233437538, -0.08892983943223953, 0.15303567051887512, -0.02632625214755535, 0.15103687345981598, -0.008425994776189327, 0.07934370636940002, -0.09154229611158371, 0.006900610867887735, -0.004356050863862038, -0.19697093963623047, -0.04933632165193558, -0.0439031757414341, 0.011436516419053078, -0.019488118588924408, 0.22170965373516083, -0.009041441604495049, 0.019614633172750473, 0.029797548428177834, 0.005336625035852194, 0.07473819702863693, 0.03137291222810745, 0.2425840198993683, 0.07768132537603378, -0.055000584572553635, -0.08706948906183243, 0.06072158366441727, 0.009943886660039425, -0.09605143219232559, 0.08869168162345886, 0.14941971004009247, 0.015788190066814423, 0.09012986719608307, 0.053824737668037415, 0.04572882875800133, -0.08697065711021423, -0.23709101974964142, -0.02146938629448414, 0.03524334728717804, 0.04831608757376671, 0.08148613572120667, 0.19236913323402405, -0.0007392269908450544, 0.04564761370420456, -0.02731599658727646, -0.012523378245532513, -0.16023552417755127, -0.0538824237883091, -0.07078227400779724, -0.10111788660287857, 0.014392195269465446, -0.07572419941425323, -0.02181871421635151, 0.11947829276323318, 0.01742798462510109, -0.019774599000811577, 0.13867992162704468, 0.10371008515357971, -0.022378237918019295, 0.05826345458626747, 0.004676480311900377, -0.010854016989469528, 0.04933958500623703, -0.008513463661074638, -0.10746649652719498, -0.08589392900466919, -0.06244910508394241, 0.00572575069963932, -0.10233217477798462, 0.03723990172147751, -0.09799179434776306, -0.12300005555152893, -0.03430671989917755, 0.03944206237792969, -0.0759735107421875, 0.08010312169790268, 0.0004693293885793537, -0.002798576606437564, 0.018326535820961, 0.18417854607105255, -0.05906658619642258, -0.03557468205690384, -0.004771084990352392, 0.21757963299751282, 0.07099850475788116, 0.10934531688690186, 0.009666367433965206, 0.01992253214120865, -0.017985140904784203, 0.2405272275209427, 0.23954515159130096, -0.021523352712392807, 0.07016068696975708, 0.03336794301867485, 0.02210940048098564, 0.02204604633152485, 0.08929679542779922, 0.10768473148345947, 0.32561179995536804, -0.07661327719688416, 0.014588043093681335, -0.038723647594451904, 0.004500020761042833, -0.11028996109962463, -0.007398400455713272, 0.0493391789495945, -0.022625664249062538, -0.06663531810045242, 0.08735500276088715, -0.11961798369884491, 0.11201509833335876, 0.08994244784116745, -0.19531714916229248, -0.037473179399967194, -0.06638509780168533, 0.19652168452739716, -0.01101720705628395, 0.09476678818464279, -0.04069225862622261, -0.1098867729306221, 0.025764968246221542, 0.021658796817064285, -0.20757198333740234, -0.10382223129272461, 0.09162605553865433, 0.025779305025935173, 0.08937876671552658, -0.026542818173766136, 0.00006954262789804488, 0.0728563442826271, 0.03952408954501152, -0.043466925621032715, 0.05153806135058403, 0.03390893712639809, -0.1094510480761528, -0.07516942173242569, -0.005784428678452969, 0.010771000757813454, -0.03620238974690437, 0.0292853694409132, -0.15944300591945648, 0.03212764859199524, -0.06444800645112991, -0.061395179480314255, -0.0066815330646932125, 0.013661525212228298, -0.016236674040555954, 0.0427439920604229, 0.04716840758919716, 0.008856099098920822, -0.022773094475269318, -0.04528174176812172, 0.028539689257740974, 0.08361184597015381, -0.04012731835246086, -0.13367480039596558, -0.08692655712366104, -0.04923583194613457, 0.1239946037530899, -0.03720402345061302, -0.11075770109891891, -0.05320161208510399, -0.06552299857139587, 0.031421300023794174, -0.16009770333766937, 0.01674550585448742, 0.0866597592830658, 0.052936553955078125, 0.017046097666025162, -0.04516066238284111, 0.03351527824997902, 0.09033877402544022, -0.11168968677520752, -0.08649417012929916 ]
null
null
transformers
This is *t5-base* transformer model trained on Lithuanian news summaries for 175 000 steps. It was created during the work [**Generating abstractive summaries of Lithuanian news articles using a transformer model**](https://link.springer.com/chapter/10.1007/978-3-030-88304-1_27). ## Usage ```python from transformers import pipeline name= "LukasStankevicius/t5-base-lithuanian-news-summaries-175" my_pipeline = pipeline(task="text2text-generation", model=name, framework="pt") ``` Given the following article body from [15min](https://www.15min.lt/24sek/naujiena/lietuva/tarp-penkiu-rezultatyviausiu-tsrs-rinktines-visu-laiku-zaideju-trys-lietuviai-875-1380030): ``` text = """ Latvijos krepšinio legenda Valdis Valteris pirmadienį socialiniame tinkle pasidalino statistika, kurios viršūnėje yra Arvydas Sabonis. 1982 metais TSRS rinktinėje debiutavęs 222 cm ūgio vidurio puolėjas su raudona apranga sužaidė 52 rungtynes, per kurias rinko po 15,6 taško. Tai pats aukščiausias rezultatyvumo vidurkis tarp visų sovietų komandai atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė ne mažiau nei 50 rungtynių. Antras šioje rikiuotėje kitas buvęs Kauno „Žalgirio“ krepšininkas Rimas Kurtinaitis. Jis debiutavo TSRS rinktinėje vėliau nei Sabas, – 1984 metais, bet irgi sužaidė 52 mačus. R.Kurtinaitis pelnė po 15 taškų. 25-ių rezultatyviausių žaidėjų sąrašu pasidalinęs latvis V.Valteris, pelnęs po 13,8 taško, yra trečias. Ketvirtas yra iš Kazachstano kilęs Valerijus Tichonenka, pelnęs po 13,7 taško per 79 rungtynes. Rezultatyviausią visų laikų TSRS rinktinės penketą uždaro Modestas Paulauskas. Lietuvos krepšinio legenda pelnė po 13,6 taško per 84 mačus. Dešimtuke taip pat yra Oleksandras Volkovas (po 13,5 taško), Sergejus Belovas (12,7), Anatolijus Myškinas (po 12,3), Vladimiras Tkačenka (11,7) ir Aleksandras Salnikovas (11,4). Dvyliktas šiame sąraše yra Valdemaras Chomičius, vidutiniškai rinkęs po 10 taškų, o keturioliktas dar vienas buvęs žalgirietis Sergejus Jovaiša (po 9,8 taško). Šarūno Marčiulionio rezultatyvumo vidurkis turėjo būti aukštesnis, bet jis sužaidė mažiau nei 50 rungtynių. Kaip žinia, Lietuvai išsilaisvinus ir atkūrus Nepriklausomybę, visi minėti mūsų šalies krepšininkai, išskyrus karjerą jau baigusį M.Paulauską, užsivilko žalią aprangą ir atstovavo savo tėvynei. A.Sabonis pagal rezultatyvumo vidurkį yra pirmas – jis Lietuvos rinktinei pelnė po 20 taškų. Antras pagal taškų vidurkį yra Artūras Karnišovas, rinkęs po 18,2 taško ir pelnęs iš viso daugiausiai taškų atstovaujant Lietuvos rinktinei (1453). Tarp žaidėjų, kurie sužaidė bent po 50 oficialių rungtynių Lietuvos rinktinėje, trečią vietą užima Ramūnas Šiškauskas (po 12,9), ketvirtąją Linas Kleiza (po 12,7 taško), o penktas – Saulius Štombergas (po 11,1 taško). Daugiausiai rungtynių Lietuvos rinktinėje sužaidęs ir daugiausiai olimpinių medalių (3) su ja laimėjęs Gintaras Einikis rinko po 9,6 taško, o pirmajame trejete pagal rungtynių skaičių ir pelnytus taškus esantis Šarūnas Jasikevičius pelnė po 9,9 taško. """ text = ' '.join(text.strip().split()) ``` The summary can be obtained by: ```python my_pipeline(text)[0]["generated_text"] ``` Output from above would be: Lietuvos krepšinio federacijos (LKF) prezidento Arvydo Sabonio rezultatyvumo vidurkis yra aukščiausias tarp visų Sovietų Sąjungos rinktinėje atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė bent po 50 oficialių rungtynių. If you find our work useful, please cite the following paper: ``` latex @InProceedings{10.1007/978-3-030-88304-1_27, author="Stankevi{\v{c}}ius, Lukas and Luko{\v{s}}evi{\v{c}}ius, Mantas", editor="Lopata, Audrius and Gudonien{\.{e}}, Daina and Butkien{\.{e}}, Rita", title="Generating Abstractive Summaries of Lithuanian News Articles Using a Transformer Model", booktitle="Information and Software Technologies", year="2021", publisher="Springer International Publishing", address="Cham", pages="341--352", abstract="In this work, we train the first monolingual Lithuanian transformer model on a relatively large corpus of Lithuanian news articles and compare various output decoding algorithms for abstractive news summarization. We achieve an average ROUGE-2 score 0.163, generated summaries are coherent and look impressive at first glance. However, some of them contain misleading information that is not so easy to spot. We describe all the technical details and share our trained model and accompanying code in an online open-source repository, as well as some characteristic samples of the generated summaries.", isbn="978-3-030-88304-1" } ```
{"language": "lt", "license": "apache-2.0", "tags": ["t5", "Lithuanian", "summarization"], "widget": [{"text": "Latvijos krep\u0161inio legenda Valdis Valteris pirmadien\u012f socialiniame tinkle pasidalino statistika, kurios vir\u0161\u016bn\u0117je yra Arvydas Sabonis. 1982 metais TSRS rinktin\u0117je debiutav\u0119s 222 cm \u016bgio vidurio puol\u0117jas su raudona apranga su\u017eaid\u0117 52 rungtynes, per kurias rinko po 15,6 ta\u0161ko. Tai pats auk\u0161\u010diausias rezultatyvumo vidurkis tarp vis\u0173 soviet\u0173 komandai atstovavusi\u0173 \u017eaid\u0117j\u0173, skai\u010diuojant tuos, kurie su\u017eaid\u0117 ne ma\u017eiau nei 50 rungtyni\u0173. Antras \u0161ioje rikiuot\u0117je kitas buv\u0119s Kauno \u201e\u017dalgirio\u201c krep\u0161ininkas Rimas Kurtinaitis. Jis debiutavo TSRS rinktin\u0117je v\u0117liau nei Sabas, \u2013 1984 metais, bet irgi su\u017eaid\u0117 52 ma\u010dus. R.Kurtinaitis peln\u0117 po 15 ta\u0161k\u0173. 25-i\u0173 rezultatyviausi\u0173 \u017eaid\u0117j\u0173 s\u0105ra\u0161u pasidalin\u0119s latvis V.Valteris, peln\u0119s po 13,8 ta\u0161ko, yra tre\u010dias. Ketvirtas yra i\u0161 Kazachstano kil\u0119s Valerijus Tichonenka, peln\u0119s po 13,7 ta\u0161ko per 79 rungtynes. Rezultatyviausi\u0105 vis\u0173 laik\u0173 TSRS rinktin\u0117s penket\u0105 u\u017edaro Modestas Paulauskas. Lietuvos krep\u0161inio legenda peln\u0117 po 13,6 ta\u0161ko per 84 ma\u010dus. De\u0161imtuke taip pat yra Oleksandras Volkovas (po 13,5 ta\u0161ko), Sergejus Belovas (12,7), Anatolijus My\u0161kinas (po 12,3), Vladimiras Tka\u010denka (11,7) ir Aleksandras Salnikovas (11,4). Dvyliktas \u0161iame s\u0105ra\u0161e yra Valdemaras Chomi\u010dius, vidutini\u0161kai rink\u0119s po 10 ta\u0161k\u0173, o keturioliktas dar vienas buv\u0119s \u017ealgirietis Sergejus Jovai\u0161a (po 9,8 ta\u0161ko). \u0160ar\u016bno Mar\u010diulionio rezultatyvumo vidurkis tur\u0117jo b\u016bti auk\u0161tesnis, bet jis su\u017eaid\u0117 ma\u017eiau nei 50 rungtyni\u0173. Kaip \u017einia, Lietuvai i\u0161silaisvinus ir atk\u016brus Nepriklausomyb\u0119, visi min\u0117ti m\u016bs\u0173 \u0161alies krep\u0161ininkai, i\u0161skyrus karjer\u0105 jau baigus\u012f M.Paulausk\u0105, u\u017esivilko \u017eali\u0105 aprang\u0105 ir atstovavo savo t\u0117vynei. A.Sabonis pagal rezultatyvumo vidurk\u012f yra pirmas \u2013 jis Lietuvos rinktinei peln\u0117 po 20 ta\u0161k\u0173. Antras pagal ta\u0161k\u0173 vidurk\u012f yra Art\u016bras Karni\u0161ovas, rink\u0119s po 18,2 ta\u0161ko ir peln\u0119s i\u0161 viso daugiausiai ta\u0161k\u0173 atstovaujant Lietuvos rinktinei (1453). Tarp \u017eaid\u0117j\u0173, kurie su\u017eaid\u0117 bent po 50 oficiali\u0173 rungtyni\u0173 Lietuvos rinktin\u0117je, tre\u010di\u0105 viet\u0105 u\u017eima Ram\u016bnas \u0160i\u0161kauskas (po 12,9), ketvirt\u0105j\u0105 Linas Kleiza (po 12,7 ta\u0161ko), o penktas \u2013 Saulius \u0160tombergas (po 11,1 ta\u0161ko). Daugiausiai rungtyni\u0173 Lietuvos rinktin\u0117je su\u017eaid\u0119s ir daugiausiai olimpini\u0173 medali\u0173 (3) su ja laim\u0117j\u0119s Gintaras Einikis rinko po 9,6 ta\u0161ko, o pirmajame trejete pagal rungtyni\u0173 skai\u010di\u0173 ir pelnytus ta\u0161kus esantis \u0160ar\u016bnas Jasikevi\u010dius peln\u0117 po 9,9 ta\u0161ko."}]}
summarization
LukasStankevicius/t5-base-lithuanian-news-summaries-175
[ "transformers", "pytorch", "jax", "t5", "text2text-generation", "Lithuanian", "summarization", "lt", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "has_space", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "lt" ]
TAGS #transformers #pytorch #jax #t5 #text2text-generation #Lithuanian #summarization #lt #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
This is *t5-base* transformer model trained on Lithuanian news summaries for 175 000 steps. It was created during the work Generating abstractive summaries of Lithuanian news articles using a transformer model. ## Usage Given the following article body from 15min: The summary can be obtained by: Output from above would be: Lietuvos krepšinio federacijos (LKF) prezidento Arvydo Sabonio rezultatyvumo vidurkis yra aukščiausias tarp visų Sovietų Sąjungos rinktinėje atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė bent po 50 oficialių rungtynių. If you find our work useful, please cite the following paper:
[ "## Usage\n\nGiven the following article body from 15min:\n\nThe summary can be obtained by:\n\nOutput from above would be:\n\nLietuvos krepšinio federacijos (LKF) prezidento Arvydo Sabonio rezultatyvumo vidurkis yra aukščiausias tarp visų Sovietų Sąjungos rinktinėje atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė bent po 50 oficialių rungtynių.\n\n\nIf you find our work useful, please cite the following paper:" ]
[ "TAGS\n#transformers #pytorch #jax #t5 #text2text-generation #Lithuanian #summarization #lt #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n", "## Usage\n\nGiven the following article body from 15min:\n\nThe summary can be obtained by:\n\nOutput from above would be:\n\nLietuvos krepšinio federacijos (LKF) prezidento Arvydo Sabonio rezultatyvumo vidurkis yra aukščiausias tarp visų Sovietų Sąjungos rinktinėje atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė bent po 50 oficialių rungtynių.\n\n\nIf you find our work useful, please cite the following paper:" ]
[ 74, 98 ]
[ "passage: TAGS\n#transformers #pytorch #jax #t5 #text2text-generation #Lithuanian #summarization #lt #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n## Usage\n\nGiven the following article body from 15min:\n\nThe summary can be obtained by:\n\nOutput from above would be:\n\nLietuvos krepšinio federacijos (LKF) prezidento Arvydo Sabonio rezultatyvumo vidurkis yra aukščiausias tarp visų Sovietų Sąjungos rinktinėje atstovavusių žaidėjų, skaičiuojant tuos, kurie sužaidė bent po 50 oficialių rungtynių.\n\n\nIf you find our work useful, please cite the following paper:" ]
[ -0.01197537500411272, -0.02419348433613777, -0.008335339836776257, 0.039737578481435776, 0.08556339889764786, -0.032531142234802246, 0.10957179218530655, 0.057978127151727676, 0.0009471374214626849, -0.03099067136645317, 0.16036154329776764, 0.07713555544614792, -0.03664375841617584, 0.043551184237003326, -0.036858413368463516, -0.17994840443134308, 0.03860768675804138, 0.04586046561598778, -0.13955825567245483, 0.09570951759815216, 0.1419389843940735, -0.06587138026952744, 0.018788019195199013, -0.005742652341723442, -0.04696781560778618, 0.06946351379156113, 0.0192647073417902, -0.10680082440376282, 0.14265389740467072, 0.045973360538482666, -0.0019745833706110716, 0.06439682841300964, -0.0579812154173851, -0.0870104432106018, 0.02456827089190483, -0.02511501871049404, -0.04490603506565094, 0.025148380547761917, -0.008837209083139896, -0.00716254161670804, 0.2710287272930145, -0.07958963513374329, -0.04426823928952217, -0.002723284997045994, -0.12135685235261917, -0.10442700982093811, -0.059499241411685944, -0.015957674011588097, 0.08507926017045975, 0.07837577909231186, 0.0015975560527294874, 0.18437795341014862, -0.03796011582016945, 0.04524645581841469, 0.10470306128263474, -0.3146759271621704, -0.05675739422440529, 0.08594617992639542, -0.005857825744897127, 0.028763609007000923, 0.0009887294145300984, 0.09092727303504944, 0.024390725418925285, -0.019991977140307426, 0.02978574112057686, -0.09706353396177292, -0.11284232884645462, 0.06194339692592621, -0.09592979401350021, -0.04299348220229149, 0.2766079306602478, -0.026822416111826897, 0.029819250106811523, -0.04427487775683403, 0.02374725230038166, 0.051361702382564545, -0.03560895845293999, -0.06017680466175079, -0.008202322758734226, -0.025460725650191307, 0.13591022789478302, -0.0051101879216730595, -0.1220007836818695, 0.001344264717772603, -0.09061671793460846, 0.19673481583595276, -0.018597695976495743, 0.023530377075076103, -0.0190653745085001, 0.032343387603759766, -0.1059594675898552, -0.07135988026857376, 0.04631085693836212, -0.019662434235215187, -0.02081095427274704, 0.024150323122739792, -0.025276804342865944, -0.2224162071943283, 0.04631561413407326, 0.037931978702545166, 0.008348755538463593, -0.022482722997665405, 0.09916558116674423, 0.09442096203565598, -0.014265650883316994, 0.07257995754480362, -0.061315618455410004, -0.021511204540729523, 0.0009035402908921242, -0.0936800166964531, 0.02306133694946766, -0.011645123362541199, -0.1578497588634491, -0.07554365694522858, -0.025686202570796013, 0.04650004953145981, 0.0068993824534118176, 0.08613649010658264, -0.00017223853501491249, 0.005562260746955872, -0.017499953508377075, -0.0343298502266407, -0.036690130829811096, -0.08918727934360504, -0.03196999058127403, 0.07781490683555603, -0.05247872695326805, 0.004847308620810509, -0.07155341655015945, 0.09408240020275116, -0.02535329945385456, -0.007549600210040808, 0.0005176261183805764, -0.12042472511529922, 0.07767755538225174, -0.08743634819984436, 0.05782901868224144, -0.17196883261203766, -0.010511714965105057, -0.02683361805975437, 0.06499972194433212, -0.04882947355508804, -0.04221821203827858, -0.033155862241983414, -0.05078127235174179, -0.009177583269774914, -0.011426776647567749, 0.01245762500911951, -0.05162486061453819, 0.06644470244646072, -0.1032022014260292, 0.05749787390232086, -0.11700126528739929, 0.02466174215078354, -0.16835065186023712, -0.04074762016534805, -0.1118910014629364, -0.012429893016815186, -0.06973589211702347, 0.04955730214715004, -0.07887057960033417, -0.012684743851423264, -0.058901190757751465, -0.0012898507993668318, 0.012468907982110977, 0.1820957511663437, -0.12971490621566772, -0.045839663594961166, 0.07138952612876892, -0.08642298728227615, -0.14140626788139343, 0.07238182425498962, -0.000950330519117415, 0.09538927674293518, 0.08426854759454727, 0.1735791116952896, 0.13526417315006256, -0.10986058413982391, 0.026848969981074333, -0.003594615962356329, -0.044614508748054504, -0.028080541640520096, 0.1147499531507492, 0.10004114359617233, -0.0009387778700329363, 0.05982344225049019, -0.12129721790552139, 0.03747599199414253, 0.0009104087948799133, -0.06043502315878868, 0.018698306754231453, -0.016491828486323357, 0.08616604655981064, 0.04614086076617241, 0.09779491275548935, -0.10676732659339905, -0.051678016781806946, -0.03692428767681122, 0.030392568558454514, 0.046239230781793594, 0.03368179500102997, -0.06195921078324318, 0.11153092980384827, 0.021001720800995827, 0.07634038478136063, -0.1142595112323761, 0.046030689030885696, -0.035776976495981216, 0.12000162899494171, 0.0469990111887455, 0.15033279359340668, 0.035647835582494736, -0.05272099748253822, -0.014606124721467495, 0.04441128671169281, -0.014718377962708473, -0.011229688301682472, -0.01772143505513668, -0.12700079381465912, 0.08763162791728973, -0.012662199325859547, 0.006405920255929232, -0.02186558209359646, -0.00048667986993677914, 0.029975352808833122, 0.07364518195390701, -0.001321940217167139, 0.06900157779455185, -0.030004553496837616, 0.09570613503456116, -0.057898376137018204, 0.049679290503263474, 0.08492171764373779, -0.006898943800479174, -0.06215205043554306, 0.19056181609630585, -0.008335745893418789, 0.23380528390407562, 0.13121046125888824, -0.05766826495528221, -0.020108647644519806, 0.00659801485016942, -0.0030919320415705442, 0.020422695204615593, 0.04418816789984703, 0.03188879415392876, 0.07718456536531448, 0.03593544289469719, 0.09585753083229065, -0.06566082686185837, -0.04077320918440819, 0.07332291454076767, -0.051469918340444565, -0.030027858912944794, 0.12364208698272705, 0.1327989399433136, -0.11771323531866074, 0.1379009634256363, 0.13831254839897156, 0.03756329044699669, 0.2376282662153244, -0.03112339787185192, -0.035812437534332275, -0.0020323137287050486, 0.009627684950828552, -0.016800090670585632, 0.11774425953626633, -0.15910087525844574, 0.027643989771604538, 0.03620374575257301, -0.002126418985426426, 0.012042749673128128, -0.07620283216238022, -0.0958397164940834, 0.00644744373857975, -0.0463155172765255, -0.07236244529485703, 0.16224490106105804, -0.030317312106490135, 0.10687946528196335, 0.028307698667049408, 0.002155603375285864, -0.03200399503111839, 0.020503001287579536, -0.04967208951711655, 0.0986885279417038, -0.07023324072360992, -0.2992558777332306, -0.12020909786224365, -0.0015840869164094329, -0.06460785865783691, 0.014450019225478172, 0.08787726610898972, -0.08478416502475739, -0.002605678979307413, 0.08040902018547058, 0.1370285153388977, 0.02027227357029915, -0.03535883501172066, 0.010148352943360806, 0.07644636183977127, -0.0379156731069088, -0.016853319481015205, -0.040297918021678925, -0.024010544642806053, 0.06505927443504333, 0.04783720150589943, -0.057775821536779404, 0.13027405738830566, 0.06385693699121475, -0.07489169389009476, 0.01366960909217596, -0.04789155349135399, 0.16850163042545319, -0.11491774767637253, 0.021378083154559135, 0.15230196714401245, -0.0006082644104026258, 0.003958613611757755, 0.10405982285737991, 0.01502384152263403, 0.025302767753601074, -0.008222243748605251, -0.006600830238312483, -0.06856881827116013, -0.18042153120040894, -0.1692994236946106, -0.10375244170427322, 0.11513853818178177, 0.004079242702573538, 0.013645035214722157, -0.12797169387340546, 0.06701573729515076, -0.005536222830414772, -0.003151208395138383, 0.05532224476337433, 0.06752698868513107, 0.2673019766807556, -0.009687366895377636, 0.08153054863214493, -0.09591977298259735, -0.08440491557121277, 0.11748664826154709, -0.044048797339200974, 0.05151008442044258, 0.04638870805501938, -0.048781540244817734, 0.07443609833717346, 0.013644167222082615, -0.021876107901334763, 0.11145636439323425, 0.029021810740232468, -0.02496461197733879, -0.050600674003362656, -0.03312404081225395, -0.010394485667347908, 0.02708844467997551, -0.12674042582511902, -0.10973995178937912, -0.07422295212745667, -0.019230471923947334, 0.1083768829703331, 0.08583595603704453, 0.06574798375368118, -0.04874883592128754, -0.12626856565475464, 0.0007765943300910294, -0.05474928393959999, -0.06290295720100403, -0.0010316180996596813, 0.04170716181397438, -0.11658883094787598, 0.08646285533905029, -0.01961165852844715, 0.11296062916517258, 0.08210191130638123, 0.10085880011320114, -0.11476509273052216, -0.14623481035232544, -0.0013717833207920194, 0.1423366367816925, -0.22876596450805664, 0.30189579725265503, -0.009788098745048046, -0.053034707903862, -0.09156318008899689, -0.08144000917673111, -0.006417430471628904, 0.12938682734966278, 0.13015201687812805, 0.039537958800792694, 0.032244082540273666, -0.018693463876843452, -0.033558979630470276, 0.03621356189250946, 0.017556456848978996, -0.033099088817834854, 0.0637223944067955, -0.05896042287349701, 0.04781772196292877, 0.0008448369335383177, 0.004628462716937065, 0.01936466246843338, -0.10659349709749222, 0.08567914366722107, 0.028448699042201042, 0.009332787245512009, 0.0007385919452644885, -0.062265489250421524, -0.09720397740602493, 0.09013374149799347, 0.04904693737626076, -0.04511858522891998, -0.04747605323791504, 0.03917136788368225, 0.06579362601041794, -0.08641308546066284, 0.03342937305569649, -0.037855084985494614, 0.058966461569070816, -0.09202273190021515, -0.057025495916604996, 0.004320738837122917, -0.06305492669343948, -0.004349824506789446, 0.04157508537173271, 0.06798115372657776, -0.017574412748217583, 0.02218051068484783, 0.025232143700122833, 0.03736962378025055, -0.05675603449344635, -0.09188106656074524, 0.01203416008502245, -0.16068367660045624, 0.006967688910663128, -0.07669350504875183, -0.014216571114957333, -0.05268906056880951, -0.08602652698755264, -0.10717034339904785, 0.2104681134223938, 0.22819828987121582, -0.14210249483585358, 0.19454902410507202, -0.021812070161104202, -0.03522093594074249, -0.2710078954696655, -0.10990441590547562, -0.017786579206585884, 0.051757875829935074, 0.023675046861171722, -0.08430027216672897, -0.01632809080183506, 0.014162124134600163, -0.03667982667684555, -0.033501096069812775, -0.18358765542507172, -0.08253554999828339, 0.07819877564907074, -0.04874389246106148, 0.3633917570114136, -0.04262281581759453, 0.046054545789957047, -0.017711879685521126, -0.08702462166547775, 0.08384399861097336, 0.0353814959526062, 0.028368620201945305, -0.03717774152755737, 0.08736619353294373, 0.04948747158050537, -0.00938931480050087, 0.1036987379193306, -0.07790781557559967, 0.007675644941627979, -0.048310864716768265, -0.06342223286628723, 0.09752000123262405, -0.02131851762533188, 0.07950994372367859, -0.0694594606757164, 0.005074607208371162, -0.1277228444814682, -0.0139419324696064, -0.04790821298956871, 0.07951570302248001, 0.005370288621634245, -0.061019204556941986, -0.08209027349948883, 0.05617440119385719, -0.02086905762553215, -0.022722691297531128, 0.18412810564041138, -0.04998557269573212, 0.11591995507478714, 0.0029098130762577057, 0.11307191103696823, -0.10741205513477325, 0.039526309818029404, 0.06820367276668549, -0.00884220004081726, 0.025306887924671173, -0.17764240503311157, 0.015532881021499634, 0.12815795838832855, -0.013103342615067959, -0.019239315763115883, 0.01287895068526268, -0.07225890457630157, -0.002307294402271509, 0.15276393294334412, -0.2079680860042572, -0.0008969614864327013, -0.0665789321064949, -0.008432579226791859, 0.12066017836332321, -0.003354794578626752, 0.1019192710518837, -0.1289985030889511, -0.017814617604017258, 0.07120358943939209, -0.05077531561255455, -0.036992110311985016, 0.052083730697631836, 0.004138256888836622, 0.03275580704212189, -0.053813137114048004, 0.048509061336517334, 0.011385107412934303, -0.14183896780014038, -0.019321618601679802, 0.04906197637319565, -0.13333262503147125, -0.09889249503612518, -0.005289626773446798, -0.0211270060390234, -0.12532004714012146, -0.046474240720272064, -0.07656624913215637, -0.09847772866487503, 0.06727959215641022, 0.12177848070859909, 0.09309716522693634, -0.00704830139875412, -0.010488309897482395, -0.05236927419900894, -0.02495700679719448, 0.10499420017004013, 0.1567162126302719, -0.05901894345879555, -0.10201074928045273, 0.01858196221292019, 0.018633970990777016, 0.09197678416967392, -0.055913493037223816, 0.022919703274965286, -0.105492502450943, 0.024248367175459862, -0.035723719745874405, -0.07352816313505173, -0.07056467980146408, -0.030663343146443367, -0.04443889111280441, -0.07802934944629669, -0.08031350374221802, -0.021313922479748726, -0.12465302646160126, 0.06308230012655258, -0.0509454570710659, 0.062874436378479, -0.007319501135498285, -0.04475908353924751, 0.0769135057926178, -0.006205226760357618, 0.04118122160434723, 0.051121409982442856, -0.006136019714176655, 0.1391112059354782, -0.061618685722351074, 0.06386755406856537, 0.051331423223018646, 0.05855192989110947, 0.03725067153573036, -0.05893551930785179, 0.02720922790467739, 0.06443288922309875, 0.02509620599448681, 0.07046699523925781, 0.00024296241463162005, -0.06826084107160568, 0.01671415939927101, -0.013162079267203808, -0.08273348957300186, 0.027694642543792725, 0.040847837924957275, 0.026314543560147285, 0.10109231621026993, 0.2026316225528717, -0.05749191343784332, 0.08561769127845764, -0.06079532206058502, 0.03702274709939957, -0.06171673908829689, -0.1698923259973526, -0.09283017367124557, -0.08616802096366882, -0.020595647394657135, -0.03792940452694893, 0.18917904794216156, 0.14596222341060638, 0.0379505418241024, 0.06422127038240433, 0.018442632630467415, -0.08440885692834854, -0.0188064556568861, 0.08262396603822708, 0.05578260123729706, 0.021244464442133904, -0.14043468236923218, 0.10885448753833771, 0.009482243098318577, 0.00509648909792304, 0.05520597845315933, 0.10372698307037354, 0.03510439023375511, 0.03709213435649872, -0.02201589196920395, 0.04278102517127991, -0.05131958797574043, 0.0050230431370437145, -0.009593943133950233, 0.04855753108859062, -0.06150198355317116, 0.2252238690853119, 0.21105335652828217, -0.10961031168699265, 0.06251615285873413, -0.020164383575320244, 0.01050020195543766, -0.12766115367412567, -0.08951514214277267, -0.05007735639810562, -0.18427471816539764, -0.012937433086335659, -0.07505083829164505, 0.030865179374814034, -0.024884503334760666, 0.046740952879190445, -0.021378399804234505, 0.05565594509243965, -0.0032949631568044424, -0.13397084176540375, 0.1177484467625618, -0.01315187755972147, -0.01973823457956314, -0.09672289341688156, 0.07448483258485794, -0.06794503331184387, -0.018404943868517876, -0.04170738905668259, 0.04668004438281059, -0.028170287609100342, -0.05502776801586151, -0.1246752068400383, -0.048583246767520905, -0.030726145952939987, 0.08577260375022888, 0.08370747417211533, 0.06609315425157547, -0.007753654848784208, -0.005425661336630583, -0.008023285306990147, 0.3026900589466095, 0.014381018467247486, -0.15866799652576447, -0.07379382848739624, 0.18647457659244537, 0.03393891826272011, 0.05606093630194664, -0.05335201323032379, 0.01643017679452896, 0.023087644949555397, 0.30438584089279175, 0.27471140027046204, 0.10643300414085388, 0.024844078347086906, -0.07951055467128754, 0.05189038813114166, 0.08744321018457413, 0.0642852708697319, 0.013806361705064774, 0.16610927879810333, -0.0854794904589653, -0.028749311342835426, -0.19962026178836823, 0.08466193825006485, -0.019291460514068604, 0.14358656108379364, 0.07369332760572433, -0.1280285269021988, -0.005526179913431406, 0.14705108106136322, -0.07023858278989792, -0.05091741308569908, -0.1111246645450592, -0.19009236991405487, -0.07582903653383255, -0.021973565220832825, 0.028014719486236572, -0.028998900204896927, 0.10488069802522659, -0.014786737971007824, -0.05122785642743111, -0.06833448261022568, 0.07453478127717972, -0.09970395267009735, -0.08445615321397781, 0.10638411343097687, 0.08163651823997498, 0.03751946985721588, -0.04934970289468765, 0.06198384612798691, 0.04936988279223442, 0.027115274220705032, -0.013784307986497879, 0.01358956377953291, 0.03871007636189461, 0.053906068205833435, 0.01022875402122736, -0.11354262381792068, -0.005079549737274647, 0.05472533777356148, 0.0831470787525177, -0.14979982376098633, 0.042430635541677475, 0.02604629285633564, -0.09868142008781433, -0.004068474750965834, 0.1764708161354065, -0.06623614579439163, 0.06001678854227066, 0.15481561422348022, -0.028954626992344856, -0.023993737995624542, -0.06856557726860046, 0.06608748435974121, 0.019239144399762154, -0.04355645552277565, -0.03356633707880974, -0.08307787030935287, -0.02626413106918335, 0.006477989722043276, -0.023056859150528908, -0.16330188512802124, 0.01042188610881567, -0.03337040916085243, 0.044208042323589325, -0.011879334226250648, 0.06754442304372787, 0.036782726645469666, -0.06004510074853897, -0.015007838606834412, -0.09733209013938904, 0.01549480203539133, 0.03523155674338341, -0.01946072094142437, -0.044948987662792206 ]
null
null
transformers
# Issei Hyoudou DialoGPT Model
{"tags": ["conversational"]}
text-generation
Lurka/DialoGPT-medium-isseibot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Issei Hyoudou DialoGPT Model
[ "# Issei Hyoudou DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Issei Hyoudou DialoGPT Model" ]
[ 51, 12 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Issei Hyoudou DialoGPT Model" ]
[ -0.020055830478668213, 0.034999363124370575, -0.006359670776873827, -0.004786407575011253, 0.11016498506069183, -0.006102961488068104, 0.16937458515167236, 0.12718750536441803, 0.0017735816072672606, -0.06787972152233124, 0.11894775182008743, 0.11410799622535706, 0.03219696134328842, 0.07644408196210861, -0.03488055244088173, -0.2716306746006012, 0.06169826537370682, 0.04787113517522812, -0.01868109032511711, 0.10501492023468018, 0.11431165784597397, -0.017394090071320534, 0.09298289567232132, 0.030977776274085045, -0.1292712688446045, 0.042657773941755295, -0.030631475150585175, -0.11719422787427902, 0.1170840859413147, 0.08223238587379456, 0.026319654658436775, 0.06207449734210968, -0.040604982525110245, -0.1591820865869522, 0.040202390402555466, -0.028501663357019424, -0.06859876960515976, 0.014931561425328255, -0.0008316240273416042, -0.10015090554952621, 0.1600792109966278, 0.07040879875421524, -0.03959384933114052, 0.03552950173616409, -0.1334465891122818, -0.01630306802690029, 0.020572604611516, 0.06043113023042679, 0.0879373624920845, 0.07750602066516876, -0.03600914776325226, 0.08039479702711105, -0.10786214470863342, 0.09650063514709473, 0.08988764882087708, -0.28595876693725586, -0.0035396148450672626, 0.0830470398068428, 0.010982811450958252, 0.05392356589436531, -0.032637160271406174, 0.09693679213523865, 0.009205031208693981, -0.022395867854356766, -0.03481017053127289, -0.09459414333105087, -0.0405409149825573, 0.016892869025468826, -0.05545354634523392, 0.008192211389541626, 0.2696479856967926, -0.022619372233748436, 0.07299290597438812, -0.05650027468800545, -0.08692669868469238, 0.004365843720734119, -0.0608128160238266, -0.015391387045383453, -0.069952592253685, 0.04718615487217903, 0.04142725467681885, -0.0648646280169487, -0.12471413612365723, -0.028133584186434746, -0.17982468008995056, 0.12657462060451508, 0.05807683616876602, 0.030011864379048347, -0.18551203608512878, 0.09337665140628815, 0.01107738632708788, -0.09299474954605103, -0.017783988267183304, -0.07728216797113419, 0.0028158456552773714, 0.021977802738547325, 0.000499083602335304, -0.030177734792232513, 0.10206437110900879, 0.06335458159446716, -0.06625255197286606, 0.061695411801338196, 0.016196278855204582, 0.06405574828386307, 0.04105463996529579, 0.06068629026412964, -0.025419315323233604, -0.06503517180681229, 0.0020394872408360243, -0.05407172814011574, -0.022469578310847282, -0.04298242926597595, -0.17981483042240143, -0.021788496524095535, 0.04169533774256706, 0.020917005836963654, -0.005414449609816074, 0.11495856195688248, 0.014015596359968185, -0.03546113893389702, 0.03528487682342529, -0.03999392315745354, -0.04842158034443855, 0.01831413432955742, -0.03704160824418068, 0.10027298331260681, 0.023723270744085312, 0.05643342062830925, -0.1345108300447464, -0.013481591828167439, -0.03446897864341736, 0.009756234474480152, 0.008075496181845665, 0.0037170008290559053, -0.01574915088713169, -0.02284754440188408, 0.014928325079381466, -0.15896373987197876, -0.15209795534610748, 0.01756325736641884, 0.025838902220129967, -0.05691641569137573, -0.06723855435848236, -0.1139257624745369, 0.0025712584611028433, 0.06326238811016083, -0.05695566534996033, -0.044463977217674255, -0.07530874758958817, 0.07456380128860474, -0.009671223349869251, 0.09917523711919785, -0.07972370088100433, 0.07644116878509521, -0.046473752707242966, -0.005413655657321215, -0.038431137800216675, 0.14324070513248444, 0.007953177206218243, 0.045976538211107254, -0.04909839481115341, -0.019511308521032333, -0.055864810943603516, 0.05743919685482979, -0.029228555038571358, 0.2715979814529419, -0.06717546284198761, -0.14009793102741241, 0.2989312410354614, -0.036949001252651215, -0.14610590040683746, 0.15605686604976654, -0.005887796636670828, 0.09432756900787354, 0.0961223766207695, 0.1902848482131958, -0.04189573973417282, -0.007706729229539633, 0.08024655282497406, 0.15106013417243958, -0.04520372673869133, 0.010221428237855434, 0.04394686594605446, 0.009746686555445194, -0.0469515398144722, 0.027116971090435982, 0.10991910845041275, 0.07049363106489182, -0.040134247392416, -0.04241304472088814, 0.025168612599372864, -0.004962990526109934, 0.10148400068283081, -0.015215770341455936, 0.1481861174106598, -0.0014727369416505098, -0.0566331222653389, -0.010082553140819073, 0.0509299635887146, -0.05064339563250542, 0.02980944886803627, -0.08512531220912933, 0.05874845013022423, -0.0018338721711188555, 0.04726257547736168, -0.08026959002017975, -0.016545474529266357, -0.06511063873767853, 0.11815597116947174, 0.05962928757071495, 0.0981060117483139, 0.05619664862751961, -0.013989774510264397, -0.032413918524980545, 0.02189478650689125, 0.13830684125423431, -0.005879139062017202, -0.0485059954226017, -0.10888877511024475, 0.12560252845287323, -0.023880332708358765, 0.1656511425971985, -0.05855795368552208, 0.016121573746204376, 0.024855144321918488, 0.13342241942882538, -0.0430724211037159, 0.07063844054937363, 0.01152193732559681, -0.012914605438709259, -0.04495510086417198, 0.025853298604488373, 0.08668001741170883, -0.014749567955732346, -0.1186625063419342, 0.22698143124580383, -0.1735825538635254, 0.1689424216747284, 0.17362865805625916, -0.21896718442440033, 0.02308587357401848, -0.12419606745243073, -0.021992802619934082, -0.009988999925553799, 0.13107138872146606, -0.011914892122149467, 0.21549101173877716, -0.01350670587271452, 0.2135564535856247, -0.06808959692716599, -0.024851996451616287, -0.013731020502746105, -0.06500495225191116, 0.0023221089504659176, 0.0972566232085228, 0.09155455976724625, -0.1664877086877823, 0.15427418053150177, 0.11734325438737869, 0.06674683839082718, 0.2618550658226013, 0.026060624048113823, 0.00701193418353796, 0.05660068616271019, 0.0033428126480430365, -0.0727403536438942, -0.03292826935648918, -0.3054725229740143, -0.058008577674627304, 0.056812793016433716, 0.03831921145319939, 0.10867464542388916, -0.09017340838909149, -0.02785981073975563, -0.01237568724900484, -0.023297373205423355, 0.016106557101011276, 0.12309116870164871, 0.007337997201830149, 0.11547531932592392, 0.004212495405226946, -0.08176299184560776, 0.05160769075155258, 0.0030496944673359394, -0.07651028037071228, 0.194532573223114, -0.11162129044532776, -0.3724716007709503, -0.0383061021566391, -0.19975103437900543, -0.09811809659004211, 0.027055202051997185, 0.08717621117830276, -0.143073171377182, 0.004250523634254932, 0.0018399577820673585, 0.08286988735198975, -0.08647079765796661, 0.002845096169039607, -0.024132201448082924, -0.007431386038661003, -0.1272832602262497, -0.11221881210803986, -0.0663197785615921, -0.04994034767150879, -0.09023211896419525, 0.11406690627336502, -0.17934054136276245, 0.007075453642755747, 0.1887638419866562, 0.06107614189386368, 0.07558216899633408, -0.02509530447423458, 0.22391465306282043, -0.14848947525024414, 0.03713081777095795, 0.15735024213790894, 0.006369184702634811, 0.07937672734260559, 0.17022299766540527, 0.0011221915483474731, -0.0515720508992672, 0.017759541049599648, -0.016132019460201263, -0.05643639340996742, -0.16002106666564941, -0.1330614984035492, -0.11696892231702805, 0.03801858425140381, -0.011288868263363838, 0.04003355652093887, 0.16371853649616241, 0.06677007675170898, -0.053270380944013596, 0.01970498077571392, 0.05219366401433945, 0.06487230956554413, 0.21123313903808594, -0.05031166225671768, 0.1218135729432106, -0.02601148560643196, -0.16635887324810028, 0.0772770494222641, 0.06465445458889008, 0.043656427413225174, 0.03666577860713005, 0.07616399973630905, 0.06057516485452652, 0.05790306627750397, 0.11063475906848907, 0.028615543618798256, 0.00946586299687624, -0.05154846981167793, -0.03274516016244888, -0.047183357179164886, -0.017182406038045883, 0.05681225284934044, 0.03858025372028351, -0.1467062383890152, -0.02344602905213833, -0.010662440210580826, 0.09867434203624725, 0.009552286006510258, 0.0907384380698204, -0.1522035449743271, 0.005821869242936373, 0.06883198767900467, -0.03031073324382305, -0.13009515404701233, 0.06638167798519135, -0.013097773306071758, -0.15871578454971313, 0.07155156135559082, 0.006731920875608921, 0.09562340378761292, -0.06949719786643982, 0.08750128000974655, -0.1066555380821228, -0.08826813101768494, -0.004567502532154322, 0.10193495452404022, -0.30056771636009216, 0.2291480004787445, 0.012313922867178917, -0.058260101824998856, -0.10503474622964859, -0.018966559320688248, 0.05040643364191055, 0.16137383878231049, 0.10655327141284943, 0.024795573204755783, 0.06434661149978638, 0.009066213853657246, -0.032931312918663025, 0.04705414921045303, 0.10332050174474716, -0.03150428831577301, -0.029667077586054802, -0.03087673895061016, -0.005322701763361692, -0.04058627411723137, -0.03296484798192978, -0.026320531964302063, -0.2053343504667282, 0.1091056540608406, 0.06269139051437378, 0.0982348695397377, 0.02592245303094387, -0.02544461563229561, -0.1142081767320633, 0.22760672867298126, -0.03799179196357727, -0.13139031827449799, -0.07842975109815598, -0.06737842410802841, 0.013666130602359772, -0.07832321524620056, 0.012636561878025532, -0.08500488847494125, -0.007939833216369152, -0.05626371502876282, -0.1660173386335373, 0.07625210285186768, -0.0922432392835617, -0.00785556249320507, -0.015193533152341843, 0.1949930638074875, -0.015966059640049934, 0.005829957313835621, 0.0494779534637928, -0.0323633998632431, -0.12803621590137482, -0.0955854058265686, -0.025922857224941254, -0.007046051323413849, -0.0023076157085597515, 0.03081994317471981, -0.01046465989202261, -0.06313423812389374, -0.060529645532369614, -0.056513309478759766, 0.2763173282146454, 0.14060865342617035, -0.013494618237018585, 0.18768860399723053, 0.16673609614372253, -0.0272437185049057, -0.27866238355636597, -0.16413092613220215, -0.048320114612579346, -0.03536593168973923, -0.12721700966358185, -0.19914427399635315, 0.04626631736755371, -0.06317346543073654, -0.012190966866910458, 0.061394572257995605, -0.3027506470680237, -0.09838613867759705, 0.16099891066551208, -0.03730369359254837, 0.44640594720840454, -0.0801028460264206, -0.03847448527812958, -0.06574764847755432, -0.17605753242969513, 0.12053516507148743, -0.01984037645161152, 0.11307640373706818, -0.027808604761958122, 0.14867790043354034, 0.028315464034676552, 0.02019248716533184, 0.12263388931751251, 0.02527262270450592, -0.040508050471544266, -0.10849549621343613, -0.06179548427462578, -0.00929958000779152, 0.01420092023909092, 0.018781103193759918, -0.07046052813529968, 0.007457278668880463, -0.18175585567951202, -0.05076075345277786, -0.09262850880622864, 0.026205983012914658, 0.010332390666007996, -0.07610748708248138, 0.0032414391171187162, -0.025503912940621376, 0.028862113133072853, 0.012445678934454918, 0.11601396650075912, -0.09467397630214691, 0.09530888497829437, 0.0932588055729866, 0.11274415999650955, -0.18316985666751862, 0.006489106919616461, -0.06062033027410507, -0.024083992466330528, 0.0581742525100708, -0.14921759068965912, 0.03422781825065613, 0.09324464946985245, -0.03543950244784355, 0.09365787357091904, 0.07732581347227097, -0.02184905670583248, 0.01595754362642765, 0.11732590198516846, -0.2039080113172531, -0.06358237564563751, -0.10094880312681198, 0.0019449227256700397, 0.11055474728345871, 0.09073156863451004, 0.17726023495197296, 0.00041266652988269925, -0.03178596869111061, 0.002002734923735261, 0.01233760267496109, -0.05593649670481682, 0.039443738758563995, -0.017719466239213943, 0.026063622906804085, -0.1527917981147766, 0.05796608328819275, -0.006028339266777039, -0.06170879304409027, 0.03373793512582779, 0.1646302044391632, -0.11936476826667786, -0.12138388305902481, -0.09882060438394547, 0.12423083931207657, -0.121675506234169, -0.04587863013148308, -0.032321225851774216, -0.1422235667705536, 0.035941436886787415, 0.10265516489744186, 0.0669938176870346, 0.03339027240872383, -0.04431063309311867, -0.0436367467045784, -0.00323659460991621, 0.01760936714708805, 0.048463448882102966, -0.04211868345737457, -0.031224485486745834, 0.014139748178422451, -0.01767967827618122, 0.1895669549703598, -0.09328121691942215, -0.12031913548707962, -0.13355609774589539, 0.042571812868118286, -0.1560853272676468, -0.07507944852113724, -0.11050594598054886, -0.04343963786959648, -0.01234093215316534, -0.03183281049132347, -0.04660381004214287, -0.04672757163643837, -0.11025704443454742, 0.06289289891719818, -0.025127608329057693, 0.03742481768131256, -0.05763792246580124, 0.024822844192385674, 0.06087814271450043, -0.041167352348566055, 0.16286331415176392, 0.13187140226364136, -0.11022859811782837, 0.11928867548704147, -0.11190972477197647, -0.07277176529169083, 0.050677936524152756, 0.03230157122015953, 0.0586315393447876, 0.06758596003055573, 0.0043479399755597115, 0.03782122582197189, 0.06148594617843628, 0.03412266820669174, 0.02644038386642933, -0.04869972914457321, 0.04013661667704582, -0.08810324221849442, -0.11448987573385239, -0.04937833547592163, 0.020366085693240166, 0.0039596594870090485, 0.037699002772569656, 0.0604962520301342, -0.054789185523986816, 0.04032675176858902, -0.02106499671936035, 0.022365974262356758, 0.03167318180203438, -0.16127213835716248, -0.005210748873651028, -0.1435445100069046, 0.03275825083255768, 0.0007872823043726385, 0.22451050579547882, 0.03097456321120262, -0.01233989279717207, 0.01701582409441471, 0.03648311644792557, 0.0050320690497756, -0.010550408624112606, 0.14719848334789276, 0.09607637673616409, -0.01811719685792923, -0.08873774111270905, 0.07054447382688522, 0.029048779979348183, 0.05873359739780426, 0.06903205066919327, -0.015215236693620682, -0.0019913192372769117, 0.0838579535484314, -0.06040748953819275, 0.01346090342849493, -0.09021233767271042, -0.1296696662902832, -0.04435008764266968, 0.04046022891998291, -0.07175439596176147, 0.0827193409204483, 0.1895168572664261, -0.023658588528633118, 0.0328950509428978, -0.011547846719622612, -0.08270430564880371, -0.17157338559627533, -0.14362695813179016, -0.06431493908166885, -0.13885007798671722, 0.0004158105584792793, -0.10312025994062424, 0.03646700829267502, 0.06927721947431564, 0.11753854900598526, -0.04734889790415764, 0.11204666644334793, 0.06228889524936676, -0.12378053367137909, 0.08424386382102966, -0.03596382215619087, 0.08241880685091019, -0.0329793356359005, 0.016693007200956345, -0.07932011783123016, 0.02483825944364071, -0.00032925160485319793, 0.044762540608644485, -0.06928813457489014, -0.0016377328429371119, -0.11520091444253922, -0.0832633450627327, -0.0559721514582634, 0.053018055856227875, 0.0016821236349642277, 0.12018152326345444, 0.01719891093671322, -0.03055260144174099, 0.00846219900995493, 0.22400569915771484, -0.03825303167104721, -0.1169881671667099, -0.06964225322008133, 0.20095224678516388, 0.010703979060053825, 0.08076775819063187, -0.01184634119272232, 0.008115709759294987, -0.1075676754117012, 0.35007891058921814, 0.2780580222606659, -0.10940371453762054, 0.019614895805716515, -0.0033583815675228834, 0.056588444858789444, 0.10193490982055664, 0.08190786838531494, 0.10391366481781006, 0.2723666727542877, -0.07998954504728317, -0.013698735274374485, -0.0217570923268795, -0.04475747048854828, -0.07661035656929016, 0.07386033236980438, 0.07959123700857162, -0.05677424371242523, -0.020363403484225273, 0.0848783627152443, -0.2509833574295044, 0.056134797632694244, -0.1126369908452034, -0.1588456928730011, -0.06887773424386978, -0.009464802220463753, 0.06691426783800125, 0.06908974796533585, 0.05996483564376831, -0.004735999740660191, -0.07380818575620651, 0.07144074887037277, 0.04648037627339363, -0.17767232656478882, 0.008423252031207085, 0.10367998480796814, -0.07217893749475479, -0.025879930704832077, -0.011893654242157936, 0.07157903164625168, 0.062266867607831955, 0.0295987818390131, 0.029396049678325653, 0.050677619874477386, 0.027249187231063843, -0.012929578311741352, -0.003148219082504511, 0.052263226360082626, 0.03984713926911354, -0.13055627048015594, 0.07103530317544937, -0.12004608660936356, 0.04340659826993942, -0.009171218611299992, -0.06099187210202217, 0.001241372199729085, 0.06596716493368149, -0.061253875494003296, 0.06988290697336197, 0.09554789215326309, 0.010521404445171356, 0.0031302040442824364, -0.029026584699749947, -0.003799584461376071, -0.03904484212398529, -0.12006870657205582, -0.08927617967128754, -0.13790352642536163, -0.07153545320034027, 0.06043020635843277, 0.028293371200561523, -0.14344657957553864, 0.03930829092860222, -0.12316218763589859, 0.07546591758728027, -0.09389393031597137, 0.12312939018011093, 0.08149239420890808, 0.021971652284264565, -0.0032437550835311413, -0.03543311357498169, 0.019825877621769905, 0.06500882655382156, -0.10781720280647278, -0.08086162805557251 ]
null
null
transformers
# Yui DialoGPT Model
{"tags": ["conversational"]}
text-generation
Lurka/DialoGPT-medium-kon
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Yui DialoGPT Model
[ "# Yui DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Yui DialoGPT Model" ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Yui DialoGPT Model" ]
[ -0.011594646610319614, 0.033541884273290634, -0.00585365854203701, 0.004811618011444807, 0.130838081240654, 0.010739710181951523, 0.15995697677135468, 0.12291615456342697, 0.006235010456293821, -0.027402132749557495, 0.08552701026201248, 0.14156372845172882, 0.055975135415792465, 0.11428770422935486, -0.07239708304405212, -0.3063558340072632, 0.060196276754140854, 0.053927551954984665, 0.0323660783469677, 0.11408922076225281, 0.08740535378456116, -0.04181070625782013, 0.08743175864219666, 0.01997048780322075, -0.1344843953847885, -0.018801195546984673, -0.020649660378694534, -0.1277523785829544, 0.09071600437164307, 0.05889088660478592, 0.05932312086224556, 0.018354294821619987, -0.037504151463508606, -0.17508341372013092, 0.035085588693618774, -0.021827051416039467, -0.043410297483205795, 0.03712131083011627, 0.022419510409235954, -0.05842548608779907, 0.16726545989513397, 0.11163977533578873, -0.036623142659664154, 0.05135617405176163, -0.15321533381938934, 0.03454926609992981, -0.013409987092018127, 0.1160411462187767, 0.08395899832248688, 0.09639900922775269, -0.05127957835793495, 0.055960074067115784, -0.08180681616067886, 0.10512460768222809, 0.07439889013767242, -0.3204532861709595, 0.0055019306018948555, 0.10690956562757492, 0.03792702034115791, 0.014380275271832943, -0.04013850539922714, 0.0513434037566185, 0.04268158972263336, -0.006448682397603989, -0.09183007478713989, -0.07506484538316727, -0.10786353051662445, 0.004423118662089109, -0.08406168222427368, 0.014257541857659817, 0.27633389830589294, -0.043756209313869476, 0.04818692058324814, -0.03839315474033356, -0.08965075761079788, -0.04582364857196808, -0.06317631900310516, -0.03322315216064453, -0.08799292147159576, 0.09171199798583984, 0.04828246310353279, -0.05001186206936836, -0.13236574828624725, -0.00773097388446331, -0.17474901676177979, 0.19880062341690063, 0.07907044887542725, 0.03491261228919029, -0.21148549020290375, 0.0730099305510521, 0.019341982901096344, -0.09307942539453506, -0.000636700598988682, -0.08791427314281464, 0.02399321086704731, -0.0008753793663345277, -0.02264533005654812, -0.03489977493882179, 0.0905337929725647, 0.0854114294052124, -0.04736996069550514, 0.011285745538771152, -0.019503705203533173, 0.057903651148080826, 0.08089390397071838, 0.07635071128606796, -0.00853976234793663, -0.01345913764089346, 0.014042618684470654, -0.08697141706943512, -0.006473197601735592, -0.047847531735897064, -0.15556679666042328, -0.014206106774508953, 0.0495230071246624, 0.050979938358068466, 0.0033102617599070072, 0.12521235644817352, -0.04139909893274307, -0.04750357195734978, -0.01627940498292446, -0.029404478147625923, -0.023863378912210464, 0.01535396184772253, -0.017605455592274666, 0.17529775202274323, 0.010400282219052315, 0.06460171937942505, -0.13589465618133545, 0.011552078649401665, -0.036895912140607834, 0.024855324998497963, -0.008131025359034538, -0.029735935851931572, 0.00010831346298800781, -0.031261470168828964, 0.014848198741674423, -0.14694179594516754, -0.16742072999477386, 0.007506351452320814, 0.0011983882868662477, -0.04182988777756691, -0.0854523777961731, -0.09181711822748184, -0.015707720071077347, 0.028080996125936508, -0.04913528263568878, -0.050202857702970505, -0.06073640659451485, 0.0773298442363739, -0.017390742897987366, 0.1078948974609375, -0.05755815654993057, 0.0788775384426117, -0.09633161872625351, -0.031060263514518738, -0.02559644915163517, 0.1137409582734108, 0.023096462711691856, 0.07903162389993668, -0.02561216801404953, 0.0009673077147454023, -0.08834324032068253, 0.08700244128704071, -0.043518614023923874, 0.25728416442871094, -0.08850858360528946, -0.10683339834213257, 0.2810060381889343, -0.07561683654785156, -0.13454745709896088, 0.1471664160490036, 0.019595105201005936, 0.0835975781083107, 0.12593428790569305, 0.16857045888900757, -0.03498632088303566, -0.02210511825978756, 0.03956436365842819, 0.09331373125314713, -0.09694601595401764, 0.01872224360704422, 0.012880595400929451, -0.0008635009871795774, -0.09239262342453003, 0.03332550823688507, 0.11360102891921997, 0.06297526508569717, -0.06765443831682205, -0.04474210366606712, -0.01317544560879469, -0.01198432594537735, 0.07922213524580002, -0.032763175666332245, 0.14264146983623505, -0.007696929853409529, -0.037947673350572586, -0.07380086928606033, 0.046093154698610306, -0.04180308058857918, 0.043862298130989075, -0.08913221210241318, 0.07621697336435318, 0.005067004356533289, 0.09016586095094681, -0.1121409460902214, 0.005398416426032782, -0.02515137381851673, 0.1295468509197235, 0.04514184221625328, 0.07289718836545944, 0.040938522666692734, -0.01607458107173443, -0.012072826735675335, 0.02062210440635681, 0.14993831515312195, -0.03727022185921669, -0.07982207089662552, -0.10161607712507248, 0.0815880224108696, -0.05083984136581421, 0.05844147503376007, -0.07964146882295609, 0.00580390403047204, 0.002750022104009986, 0.1137770265340805, -0.02310987561941147, 0.06350071728229523, 0.025338944047689438, 0.00796776544302702, -0.09121068567037582, 0.020949330180883408, 0.08169195055961609, -0.01710345223546028, -0.10681033879518509, 0.21966615319252014, -0.1369207352399826, 0.09163408726453781, 0.188310444355011, -0.21440570056438446, 0.01070863101631403, -0.10275036841630936, -0.039036769419908524, -0.0003438645217102021, 0.048631373792886734, -0.00588902086019516, 0.2157084196805954, -0.02304735779762268, 0.18031013011932373, -0.026027856394648552, 0.007103948853909969, -0.025788141414523125, -0.07644051313400269, -0.0018324792617931962, 0.09132453054189682, 0.08770467340946198, -0.12213966995477676, 0.16971437633037567, 0.05255747213959694, 0.05821758881211281, 0.20628108084201813, 0.007827749475836754, -0.009983666241168976, 0.06993409246206284, 0.05310087651014328, -0.04357678070664406, -0.06751438975334167, -0.2912442684173584, -0.04966834560036659, 0.06780458986759186, 0.027611197903752327, 0.1045038253068924, -0.1135588213801384, -0.033576760441064835, -0.009616954252123833, -0.02422672137618065, 0.026407772675156593, 0.10085343569517136, 0.01675778441131115, 0.12191157788038254, -0.025836056098341942, -0.03232955187559128, 0.05084032937884331, 0.028429759666323662, -0.08225911855697632, 0.18458512425422668, -0.11996954679489136, -0.37165507674217224, -0.06465405225753784, -0.20417995750904083, -0.04508214443922043, 0.060178324580192566, 0.1011180579662323, -0.16949154436588287, -0.026785293594002724, 0.00650913268327713, 0.13976173102855682, -0.07718206197023392, 0.014895543456077576, -0.00029692339012399316, 0.019904814660549164, -0.1481488198041916, -0.07993578165769577, -0.0425536185503006, -0.0574551522731781, -0.07067853212356567, 0.1377013474702835, -0.14327262341976166, 0.041431017220020294, 0.2293262779712677, 0.06990401446819305, 0.056495752185583115, -0.029016613960266113, 0.1507566273212433, -0.11980053037405014, 0.01897001639008522, 0.21146206557750702, -0.031352438032627106, 0.06669522076845169, 0.16715310513973236, -0.018586037680506706, -0.07031238079071045, 0.04710214212536812, -0.045312412083148956, -0.062144722789525986, -0.2287813276052475, -0.13173744082450867, -0.13791979849338531, 0.10888566076755524, 0.017557041719555855, 0.04193151742219925, 0.1927151083946228, 0.08983438462018967, -0.050410766154527664, 0.07488379627466202, 0.041389502584934235, 0.08349908888339996, 0.1745222806930542, -0.05844375863671303, 0.13112716376781464, -0.013543770648539066, -0.16916818916797638, 0.06976387649774551, 0.08324621617794037, 0.13456785678863525, 0.0493149571120739, 0.03474403917789459, 0.03903607651591301, 0.07594950497150421, 0.16033191978931427, 0.03833523020148277, 0.02315550297498703, -0.05937094986438751, -0.02159549854695797, -0.03662405163049698, -0.028883079066872597, 0.08598990738391876, 0.05528447404503822, -0.14220169186592102, -0.011166526935994625, 0.02828342653810978, 0.06947888433933258, 0.09873174130916595, 0.11681635677814484, -0.13997741043567657, -0.02299945428967476, 0.07501158863306046, -0.0216675978153944, -0.10557197034358978, 0.09630200266838074, -0.021884018555283546, -0.12695413827896118, 0.037502143532037735, -0.014251531101763248, 0.11598555743694305, -0.0944361463189125, 0.06447787582874298, -0.09726814925670624, -0.01117892935872078, 0.0012213824084028602, 0.08294576406478882, -0.31725621223449707, 0.21554440259933472, -0.010331469587981701, -0.01729186251759529, -0.10638181120157242, 0.012339564971625805, 0.04027533531188965, 0.09989569336175919, 0.09643757343292236, -0.002032868331298232, 0.015434355475008488, -0.028085730969905853, -0.048151109367609024, 0.03783141076564789, 0.12207260727882385, -0.017940877005457878, -0.014369862154126167, -0.04090961441397667, 0.01377027202397585, -0.032877758145332336, -0.03557034209370613, -0.07191763818264008, -0.16891437768936157, 0.091263547539711, 0.07864978909492493, 0.12312411516904831, 0.03797891363501549, -0.03419215977191925, -0.07723799347877502, 0.2161308228969574, -0.003404064802452922, -0.11667834967374802, -0.0857250764966011, -0.02311365306377411, 0.035763513296842575, -0.06373801827430725, -0.007146009709686041, -0.07955192029476166, 0.007880331948399544, -0.0623600147664547, -0.18403388559818268, 0.09247840195894241, -0.10635265707969666, -0.05250459164381027, -0.02992917038500309, 0.20879261195659637, -0.02093876339495182, 0.012658395804464817, 0.033687151968479156, -0.010119464248418808, -0.10159371048212051, -0.08835389465093613, -0.016069037839770317, 0.04229285940527916, 0.019883666187524796, 0.0878818929195404, -0.07609391957521439, -0.09915585815906525, -0.09056682884693146, -0.06762387603521347, 0.289276659488678, 0.13480323553085327, -0.01378190703690052, 0.17691558599472046, 0.15114907920360565, -0.0529123954474926, -0.2791721820831299, -0.14840081334114075, -0.07389457523822784, -0.013231846503913403, -0.10460760444402695, -0.20227840542793274, 0.08290591090917587, -0.030010400339961052, -0.008788533508777618, 0.10325074940919876, -0.28337177634239197, -0.09953132271766663, 0.1416504681110382, -0.002781225135549903, 0.3998601734638214, -0.12880943715572357, -0.07902882993221283, -0.03857298940420151, -0.15913547575473785, 0.09791982918977737, -0.0006622052169404924, 0.1300133317708969, -0.025173194706439972, 0.15144383907318115, 0.05476756393909454, 0.006100670900195837, 0.07865560054779053, 0.014059708453714848, -0.06577350199222565, -0.10433198511600494, -0.05932551622390747, -0.004704839549958706, 0.03764703497290611, 0.05510297045111656, -0.07562839984893799, 0.02631084807217121, -0.1011672094464302, -0.047950830310583115, -0.05716726556420326, 0.0198776014149189, 0.027708111330866814, -0.08293985575437546, -0.02736344374716282, -0.0354931466281414, 0.01564200036227703, 0.029421500861644745, 0.1860814243555069, -0.050961174070835114, 0.13314393162727356, 0.0636066123843193, 0.09048131853342056, -0.10252811759710312, 0.01773674599826336, -0.09477322548627853, -0.04823016747832298, 0.07076329737901688, -0.13796459138393402, 0.020426319912075996, 0.11581412702798843, -0.03184249624609947, 0.12044783681631088, 0.0979672521352768, 0.0015251721488311887, 0.05336780101060867, 0.09237024933099747, -0.20581938326358795, -0.10300692915916443, -0.06868274509906769, -0.027054214850068092, 0.08796269446611404, 0.1288621425628662, 0.1782568246126175, -0.04199296608567238, -0.02729513682425022, -0.01696791686117649, 0.054050132632255554, -0.04934683442115784, 0.057365622371435165, -0.03403201326727867, 0.006529827602207661, -0.15243186056613922, 0.0687066838145256, 0.006837182678282261, -0.025883780792355537, 0.041329726576805115, 0.13253159821033478, -0.10764378309249878, -0.1209416314959526, -0.0784962996840477, 0.09489811956882477, -0.07574429363012314, -0.028116464614868164, -0.023709068074822426, -0.16647568345069885, 0.06609690934419632, 0.04983028396964073, 0.03193363919854164, 0.07118682563304901, -0.09171845763921738, -0.016287920996546745, -0.05050800368189812, -0.010820139199495316, 0.0494048148393631, -0.032378777861595154, -0.08853250741958618, 0.05612930282950401, -0.019227130338549614, 0.12548722326755524, -0.08945240825414658, -0.12108351290225983, -0.15822798013687134, 0.0400165431201458, -0.1413799226284027, -0.07181394845247269, -0.14217376708984375, -0.056169722229242325, -0.008695530705153942, -0.06008116528391838, -0.043460674583911896, -0.021621892228722572, -0.10106003284454346, 0.045056816190481186, -0.04595380276441574, 0.023146674036979675, -0.046085599809885025, 0.02232000045478344, 0.05051439628005028, -0.03511418029665947, 0.1451452225446701, 0.13492219150066376, -0.11911481618881226, 0.08574600517749786, -0.18924687802791595, -0.05834546312689781, 0.11241349577903748, 0.023824866861104965, 0.049504317343235016, 0.0608721487224102, -0.004938638769090176, 0.05336519330739975, 0.04044118896126747, 0.04604194685816765, 0.06521669775247574, -0.06684277951717377, 0.017581375315785408, -0.10454530268907547, -0.1054588258266449, -0.048251923173666, -0.004441377241164446, 0.04258641600608826, 0.038282331079244614, 0.08603731542825699, -0.05533076077699661, 0.10514736920595169, -0.0477382130920887, 0.033692844212055206, 0.02075507678091526, -0.13341215252876282, -0.028750546276569366, -0.11660948395729065, 0.033997684717178345, 0.01666060835123062, 0.194871187210083, -0.004725624807178974, 0.007529092952609062, 0.0001992391626117751, 0.06530497223138809, 0.01631428301334381, 0.0020625563338398933, 0.2223043441772461, 0.11473613232374191, -0.04303949326276779, -0.10904303193092346, 0.0812009796500206, 0.03258424997329712, -0.01648484356701374, 0.10256410390138626, -0.028892941772937775, -0.030946118757128716, 0.10396679490804672, -0.02620791830122471, 0.013507261872291565, -0.1364954710006714, -0.14655226469039917, -0.09889037907123566, 0.034709617495536804, -0.036085475236177444, 0.13575340807437897, 0.1520880162715912, -0.023819802328944206, 0.024430666118860245, -0.018979599699378014, -0.07825431227684021, -0.15005657076835632, -0.17232640087604523, -0.07496494054794312, -0.16223089396953583, 0.03727579116821289, -0.12966948747634888, 0.037922654300928116, 0.007582623511552811, 0.09297122806310654, -0.052469633519649506, 0.06387870758771896, 0.06930239498615265, -0.10818947851657867, 0.0918256938457489, -0.037506893277168274, 0.07710769027471542, -0.010753343813121319, -0.032101962715387344, -0.0884924978017807, 0.0025970700662583113, 0.012641984969377518, 0.052754927426576614, -0.05993949994444847, 0.040541887283325195, -0.11320333927869797, -0.09177444130182266, -0.037145260721445084, 0.03622942045331001, 0.021526219323277473, 0.11168678104877472, 0.027929753065109253, -0.031265683472156525, 0.030076486989855766, 0.24359814822673798, -0.0489448606967926, -0.07143883407115936, -0.10049677640199661, 0.17484042048454285, 0.02044917643070221, 0.08674729615449905, -0.013032128103077412, -0.00802699290215969, -0.11818906664848328, 0.3638031482696533, 0.2517419159412384, -0.0915917456150055, 0.003311439184471965, -0.003671551588922739, 0.04091557860374451, 0.09264250099658966, 0.09283927083015442, 0.12814652919769287, 0.2933039367198944, -0.06213311851024628, -0.010191071778535843, -0.024912090972065926, -0.05944729968905449, -0.09946554154157639, 0.04492123797535896, 0.04727138206362724, -0.07669094949960709, -0.03232265263795853, 0.09302537888288498, -0.28418031334877014, 0.09386954456567764, -0.12124636769294739, -0.1902688890695572, -0.08298908919095993, -0.009117374196648598, 0.13109466433525085, 0.07767384499311447, 0.08986884355545044, -0.000909329392015934, -0.0620117112994194, 0.05970477685332298, 0.0385889932513237, -0.16532833874225616, 0.022036021575331688, 0.07213230431079865, -0.06964784860610962, -0.07665569335222244, -0.015889860689640045, 0.06456586718559265, 0.06739645451307297, 0.06923255324363708, 0.0073662749491631985, 0.03797704726457596, -0.02232750691473484, -0.04833463951945305, 0.02285061404109001, 0.052957769483327866, 0.02152353711426258, -0.13038627803325653, 0.09526564925909042, -0.16625432670116425, 0.027898039668798447, 0.036128368228673935, -0.004326468333601952, -0.022519607096910477, 0.046931829303503036, -0.07051774859428406, 0.06874996423721313, 0.11095134913921356, -0.015154737047851086, -0.01119937188923359, -0.030008787289261818, 0.016806209459900856, -0.041311949491500854, -0.0711405873298645, -0.08009598404169083, -0.163980633020401, -0.11416368186473846, 0.06631553918123245, 0.013034578412771225, -0.09957575052976608, 0.0035629612393677235, -0.1390964537858963, 0.04777160659432411, -0.16228312253952026, 0.09596531093120575, 0.13899201154708862, 0.036989666521549225, 0.00599110871553421, -0.08445829153060913, 0.0669754147529602, 0.076283760368824, -0.09988164901733398, -0.08379393815994263 ]
null
null
transformers
# Tyrion DialoGPT Model
{"tags": ["conversational"]}
text-generation
Luxiere/DialoGPT-medium-tyrion
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Tyrion DialoGPT Model
[ "# Tyrion DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Tyrion DialoGPT Model" ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Tyrion DialoGPT Model" ]
[ -0.00815549772232771, 0.08288919180631638, -0.005134167615324259, 0.0397888645529747, 0.14261671900749207, -0.010969743132591248, 0.1500970870256424, 0.14777526259422302, 0.00971677340567112, -0.06571277976036072, 0.13789969682693481, 0.20378991961479187, -0.0008786812541075051, 0.007395329885184765, -0.03569004312157631, -0.32098162174224854, 0.05257848650217056, 0.043217211961746216, -0.043696191161870956, 0.1149357259273529, 0.08257472515106201, -0.04757697507739067, 0.09898976981639862, 0.000052984152716817334, -0.1229858547449112, 0.0004783211334142834, 0.01990746706724167, -0.09495563060045242, 0.1564803421497345, 0.05121414363384247, 0.02028345875442028, 0.019787849858403206, -0.03818560764193535, -0.11206695437431335, 0.04633061960339546, -0.0086649339646101, -0.04125675931572914, 0.06223580986261368, -0.005452380049973726, -0.07101355493068695, 0.16529692709445953, 0.06977196037769318, 0.00784354005008936, 0.04209790751338005, -0.12943212687969208, -0.008574672974646091, 0.01313141267746687, 0.03846733272075653, 0.03774977847933769, 0.07075048983097076, -0.050006475299596786, 0.14770984649658203, -0.04411451146006584, 0.11289402097463608, 0.1771475076675415, -0.36131492257118225, -0.019362077116966248, 0.11247043311595917, 0.08819166570901871, 0.03115399368107319, -0.018163438886404037, 0.10399102419614792, 0.008092434145510197, 0.021192125976085663, -0.02158294804394245, -0.08047007024288177, -0.14304228127002716, 0.03718001767992973, -0.1262887418270111, 0.014749224297702312, 0.29252851009368896, -0.06922217458486557, 0.06221350282430649, -0.063335120677948, -0.08095605671405792, 0.01226112525910139, -0.0033447013702243567, -0.03917238488793373, -0.1000126525759697, 0.06357607990503311, 0.03426492586731911, -0.09978091716766357, -0.13442429900169373, -0.01938359998166561, -0.18523596227169037, 0.1594301164150238, 0.06838565319776535, 0.032726459205150604, -0.19351322948932648, 0.11893690377473831, -0.022112617269158363, -0.07653763145208359, 0.007388681638985872, -0.06566122174263, -0.023984966799616814, -0.013454764150083065, -0.044180870056152344, -0.05536482855677605, 0.08305318653583527, 0.05526271462440491, 0.03489207476377487, 0.0007775459089316428, -0.007056331727653742, 0.0344555489718914, 0.05866746976971626, 0.0679728165268898, -0.021741297096014023, -0.021916167810559273, 0.042760346084833145, -0.08527273684740067, 0.010464274324476719, -0.05070821940898895, -0.2100708782672882, -0.05597415938973427, 0.030505286529660225, 0.04738812521100044, 0.05850331112742424, 0.14661476016044617, -0.018231535330414772, -0.05201369524002075, 0.07144750654697418, -0.008517901413142681, -0.014586948789656162, 0.003956683445721865, -0.010133777745068073, 0.08311905711889267, 0.04376887530088425, 0.04210851341485977, -0.13097421824932098, -0.010494427755475044, -0.0459602065384388, -0.049382273107767105, 0.01621120236814022, -0.07445363700389862, 0.023470772430300713, -0.024343542754650116, 0.009848644025623798, -0.12867239117622375, -0.19543534517288208, 0.021910913288593292, -0.003719986416399479, -0.032958272844552994, -0.1263030469417572, -0.09927646815776825, -0.05783133953809738, 0.04374794661998749, -0.042879369109869, -0.026853254064917564, -0.02696393057703972, 0.07275310903787613, -0.05238576978445053, 0.09133131802082062, -0.10114628076553345, 0.06706779450178146, -0.10436033457517624, -0.04644712433218956, -0.0550692118704319, 0.10792624950408936, 0.0617091991007328, 0.07222959399223328, -0.031657710671424866, -0.014993538148701191, -0.03910307586193085, 0.07550748437643051, -0.047268155962228775, 0.207213893532753, -0.1349876970052719, -0.10888092964887619, 0.28450101613998413, -0.06094890087842941, -0.15264153480529785, 0.14592291414737701, -0.013061567209661007, 0.10452793538570404, 0.18579350411891937, 0.08569532632827759, 0.03675069287419319, -0.009990891441702843, 0.043471213430166245, 0.06147826835513115, -0.11219890415668488, 0.017187412828207016, 0.027784783393144608, -0.002577324630692601, -0.05843353644013405, 0.01500055380165577, 0.054055050015449524, 0.023803235962986946, -0.04111235961318016, 0.00014480143727269024, 0.00021888363698963076, -0.0007545409025624394, 0.1158408671617508, -0.010966921225190163, 0.09886051714420319, -0.0758562684059143, -0.0870031863451004, 0.06004701182246208, 0.05747213214635849, -0.06083691492676735, 0.056198928505182266, -0.07153226435184479, 0.06390675157308578, -0.026830404996871948, 0.08356773853302002, -0.12693612277507782, -0.041747547686100006, -0.0339820496737957, 0.10760042071342468, 0.12668703496456146, 0.10570639371871948, 0.04848739132285118, -0.007503928616642952, -0.021138999611139297, 0.051359131932258606, 0.1820322424173355, -0.009512796998023987, -0.10724347829818726, -0.15870031714439392, 0.06933221966028214, -0.06235488876700401, 0.051968108862638474, -0.09004411101341248, 0.0301580298691988, 0.028705749660730362, 0.052715130150318146, -0.03924886882305145, 0.04275331273674965, 0.005545198917388916, -0.02295694686472416, -0.0893317461013794, 0.0033550099469721317, 0.09505064785480499, -0.023883339017629623, -0.11388938874006271, 0.24381041526794434, -0.21768894791603088, 0.03786315768957138, 0.20858682692050934, -0.20597496628761292, 0.007698754779994488, -0.08722269535064697, 0.0065956758335232735, 0.003029035869985819, 0.053372934460639954, -0.059421081095933914, 0.2348959743976593, -0.008160063996911049, 0.17064093053340912, -0.07336554676294327, -0.08202368021011353, -0.03780491650104523, -0.062419239431619644, 0.018377017229795456, 0.15113277733325958, 0.06692753732204437, -0.23530863225460052, 0.1433456391096115, 0.10621767491102219, 0.044951166957616806, 0.16511693596839905, 0.07099585980176926, 0.019987260922789574, 0.056117571890354156, -0.030745526775717735, -0.01575399562716484, -0.10380157828330994, -0.25016218423843384, -0.0357770174741745, 0.06874310970306396, 0.045356832444667816, 0.06822123378515244, -0.0982775166630745, -0.03704945743083954, 0.021423116326332092, -0.03033403679728508, 0.0013814466074109077, 0.12583331763744354, 0.016966277733445168, 0.1433461457490921, -0.006497228983789682, -0.04391460493206978, 0.05456119030714035, 0.0003190844727214426, -0.08343342691659927, 0.18416762351989746, -0.15826089680194855, -0.3015994429588318, -0.08317749202251434, -0.23731033504009247, -0.0551547110080719, 0.0788237676024437, 0.11567138880491257, -0.15361736714839935, -0.018277771770954132, 0.004065291490405798, 0.1039075180888176, -0.11292964965105057, 0.008271205238997936, -0.057883959263563156, -0.0050113992765545845, -0.1584140807390213, -0.06571100652217865, -0.04750029742717743, -0.04877869412302971, -0.0977870374917984, 0.10737994313240051, -0.1819939911365509, -0.01948348991572857, 0.2414989471435547, 0.038384243845939636, 0.045607954263687134, -0.05404217168688774, 0.14913053810596466, -0.07213729619979858, 0.02755252830684185, 0.2024705410003662, -0.04444621875882149, 0.06319008767604828, 0.13719181716442108, 0.007733335252851248, -0.06657063215970993, 0.03259149566292763, -0.04485230892896652, -0.08254311978816986, -0.22783206403255463, -0.14054378867149353, -0.11099172383546829, 0.0779053196310997, 0.06494225561618805, 0.05453053489327431, 0.1770138442516327, 0.055093344300985336, -0.03357498720288277, -0.05442391708493233, 0.11244712769985199, 0.1095181480050087, 0.27777689695358276, -0.06962651014328003, 0.11485136300325394, -0.019520271569490433, -0.129293754696846, 0.07336902618408203, 0.0776565819978714, 0.0714515969157219, 0.057416073977947235, 0.1427222341299057, -0.003022701945155859, 0.0019736734684556723, 0.11486490070819855, 0.05962613224983215, 0.0163734070956707, -0.030285323038697243, -0.0322796031832695, -0.04505811259150505, 0.027135903015732765, 0.051434312015771866, 0.02528848685324192, -0.09976521879434586, -0.0476563461124897, 0.008463239297270775, 0.05755584314465523, 0.047988735139369965, 0.13411548733711243, -0.20110343396663666, -0.025507371872663498, 0.06906715780496597, -0.05879219248890877, -0.11864893138408661, 0.06806404143571854, 0.009162169881165028, -0.1270028054714203, 0.0772891417145729, -0.018179800361394882, 0.10965666174888611, -0.08047979325056076, 0.0819271057844162, -0.10916441679000854, -0.03803268074989319, -0.015972206369042397, 0.10860677063465118, -0.24445439875125885, 0.19472014904022217, 0.0017094529466703534, -0.053239885717630386, -0.11639000475406647, -0.028419381007552147, 0.01664319448173046, 0.10322598367929459, 0.10609249025583267, -0.018964529037475586, 0.07592739164829254, 0.014934413135051727, -0.045181501656770706, 0.022496629506349564, 0.07223933190107346, -0.0884137898683548, 0.0033179738093167543, -0.0745902881026268, -0.019636768847703934, -0.005718429107218981, -0.07113132625818253, 0.10273618996143341, -0.16878053545951843, 0.038053207099437714, 0.09721091389656067, 0.06904684752225876, 0.04096260666847229, -0.046415235847234726, -0.12543994188308716, 0.2399452179670334, -0.03786133974790573, -0.11397306621074677, -0.07002022117376328, 0.005397031083703041, 0.0781678631901741, -0.05470918491482735, -0.008943632245063782, -0.0690031573176384, 0.03253297880291939, -0.08576781302690506, -0.19361145794391632, 0.10185053944587708, -0.07194209843873978, -0.0918245017528534, -0.050142183899879456, 0.22154003381729126, 0.04832245782017708, 0.05218317359685898, 0.052091121673583984, 0.01386574562638998, -0.13878896832466125, -0.044995132833719254, -0.040675465017557144, 0.015209857374429703, 0.04384536296129227, 0.0610639788210392, 0.02813369780778885, -0.013111359439790249, -0.09592588990926743, -0.02612132392823696, 0.3196248710155487, 0.12783879041671753, -0.04309765622019768, 0.1663053184747696, 0.09722624719142914, -0.07885103672742844, -0.2583182156085968, -0.14189240336418152, -0.05104562267661095, -0.03689007833600044, -0.08373124152421951, -0.13059958815574646, 0.12982048094272614, -0.06151450797915459, -0.00660849642008543, 0.06541019678115845, -0.2600579559803009, -0.11995731294155121, 0.1818329244852066, -0.041674960404634476, 0.3491770625114441, -0.09336745738983154, -0.04611717537045479, -0.03775108978152275, -0.062641941010952, 0.19317781925201416, -0.0033767770510166883, 0.11593297868967056, -0.016568847000598907, 0.13110511004924774, 0.052027277648448944, 0.026678921654820442, 0.08022663742303848, 0.02415657602250576, -0.072953961789608, -0.09639438986778259, -0.06517862528562546, -0.01913345418870449, 0.014137465506792068, 0.01535483542829752, -0.09560192376375198, 0.00277194706723094, -0.10924693942070007, -0.03443368151783943, -0.0948297381401062, 0.03914164379239082, 0.0335288941860199, -0.03848422318696976, -0.016005611047148705, -0.05587627366185188, -0.010497410781681538, 0.017126470804214478, 0.15893031656742096, -0.127433642745018, 0.16972306370735168, 0.04148583859205246, 0.19256505370140076, -0.10430246591567993, 0.006319565232843161, -0.0241880901157856, -0.059399742633104324, 0.056518204510211945, -0.1151641458272934, 0.006817041430622339, 0.11276491731405258, -0.026659296825528145, 0.0611504390835762, 0.09504089504480362, -0.030497418716549873, 0.002163888420909643, 0.07825954258441925, -0.2288428544998169, -0.028220368549227715, -0.0593390092253685, -0.005492990370839834, 0.04807668179273605, 0.09119579941034317, 0.19805103540420532, -0.005093839485198259, -0.05618337541818619, 0.0384817011654377, 0.01827291026711464, -0.04731525480747223, 0.07120104879140854, -0.01514702569693327, 0.012831074185669422, -0.1684773713350296, 0.050674568861722946, 0.00885370559990406, -0.0319705493748188, 0.07407058030366898, 0.1963026523590088, -0.10231233388185501, -0.10881700366735458, -0.0447714664041996, 0.05099884793162346, -0.16602565348148346, -0.03225277364253998, 0.0034005579072982073, -0.15372760593891144, 0.07650157064199448, 0.16359113156795502, 0.07434496283531189, 0.05702737718820572, -0.12906363606452942, -0.023222170770168304, -0.05504343658685684, 0.032805588096380234, 0.01982482336461544, -0.024189988151192665, -0.07573840767145157, 0.0650542676448822, -0.04185469076037407, 0.14050228893756866, -0.08352264761924744, -0.11257533729076385, -0.10167629271745682, 0.0506490059196949, -0.10804902017116547, -0.08502288162708282, -0.09937155246734619, -0.04791999235749245, 0.007030325010418892, -0.05871992185711861, -0.000021193709471845068, -0.06863365322351456, -0.09969565272331238, 0.034186217933893204, -0.024209190160036087, 0.019645357504487038, -0.07616166025400162, 0.009958656504750252, 0.05996040254831314, -0.015723420307040215, 0.1617577224969864, 0.10888176411390305, -0.11738017946481705, 0.12651151418685913, -0.14931127429008484, -0.05355261266231537, 0.10718424618244171, 0.04075125977396965, 0.059757452458143234, 0.04160727187991142, -0.019527655094861984, 0.044841114431619644, 0.026676101610064507, 0.0538107194006443, 0.025553693994879723, -0.05599641054868698, 0.045601386576890945, -0.04777906835079193, -0.08568590134382248, -0.025400403887033463, -0.017912497743964195, 0.007067369297146797, 0.037766143679618835, 0.08209849148988724, -0.058035291731357574, 0.07841755449771881, -0.08725963532924652, 0.04048920422792435, -0.010156557895243168, -0.187510684132576, -0.04341692477464676, -0.06670243293046951, 0.05147409811615944, -0.004918735474348068, 0.13131625950336456, -0.021647052839398384, 0.04290229454636574, 0.01823456957936287, 0.11323455721139908, -0.032622016966342926, -0.004904731642454863, 0.1827973574399948, 0.08919227868318558, -0.05874209105968475, -0.09187864512205124, 0.10149072855710983, 0.04980878159403801, -0.01948842778801918, 0.09526528418064117, -0.10047611594200134, 0.01176137663424015, 0.07452834397554398, 0.03725234419107437, 0.07459396868944168, -0.18065863847732544, -0.13103502988815308, -0.04399946704506874, 0.03364124894142151, -0.032590582966804504, 0.14609242975711823, 0.16655416786670685, -0.003937239293009043, -0.0010533956810832024, -0.0038850768469274044, -0.05321435630321503, -0.205861896276474, -0.27021515369415283, -0.07547150552272797, -0.10453345626592636, -0.028288034722208977, -0.13992781937122345, 0.03513604775071144, 0.013019409030675888, 0.09855858981609344, -0.05547190085053444, 0.05142686516046524, 0.09061867743730545, -0.10023985803127289, 0.04717118665575981, -0.04182647913694382, 0.107443667948246, 0.02921328879892826, 0.027306318283081055, -0.0475018210709095, 0.06629679352045059, 0.01624760590493679, 0.0694526955485344, -0.06015266478061676, 0.04832819849252701, -0.14848314225673676, -0.1122148409485817, -0.061863020062446594, 0.09842554479837418, -0.012031127698719501, 0.1264648586511612, 0.046582117676734924, -0.06402208656072617, 0.01874464564025402, 0.20804451406002045, -0.0669623538851738, -0.09080986678600311, -0.04017134755849838, 0.29641133546829224, 0.0013923929072916508, 0.06535032391548157, -0.0035827537067234516, 0.02390027604997158, -0.11367335915565491, 0.34960809350013733, 0.3466288149356842, -0.07711934298276901, 0.01671985536813736, -0.01381310261785984, 0.03603346645832062, 0.08710528910160065, 0.06640127301216125, 0.07365183532238007, 0.32164266705513, -0.06682684272527695, 0.027442624792456627, -0.010988928377628326, 0.01483683381229639, -0.07756443321704865, -0.042744364589452744, 0.06883757561445236, -0.0745786800980568, 0.01489199884235859, 0.11131194233894348, -0.22299423813819885, 0.0359322726726532, -0.18217357993125916, -0.1740007996559143, -0.052961450070142746, -0.002643173560500145, 0.03893674537539482, 0.05536586418747902, 0.0639752596616745, -0.0152817377820611, -0.06040702387690544, 0.0062068188562989235, -0.0010975514305755496, -0.2130546271800995, 0.029647141695022583, 0.13344022631645203, -0.07968080788850784, -0.0684160366654396, -0.040855586528778076, 0.06846372783184052, 0.08668592572212219, 0.020118946209549904, -0.04730881750583649, -0.005345034878700972, -0.031176673248410225, -0.002763743046671152, 0.06538543850183487, 0.026283374056220055, 0.03276272118091583, -0.08124225586652756, 0.10240637511014938, -0.09524992108345032, 0.04307759180665016, -0.043636322021484375, -0.007328277453780174, -0.0010756790870800614, 0.07225308567285538, -0.05427354574203491, 0.09252480417490005, 0.10406714677810669, -0.01857529953122139, -0.017542950809001923, -0.03621121123433113, -0.06570402532815933, -0.01664181798696518, -0.06560129672288895, -0.08367472141981125, -0.11602052301168442, -0.10674244910478592, 0.041032012552022934, -0.0013394049601629376, -0.2056201994419098, -0.0009464318864047527, -0.13644620776176453, 0.00894860178232193, -0.13615573942661285, 0.08447568118572235, 0.112813800573349, 0.035235676914453506, -0.01719086430966854, 0.08435208350419998, 0.0279867984354496, 0.1019834578037262, -0.1836024969816208, -0.08290059119462967 ]
null
null
transformers
# BERT Reranker for MS-MARCO Document Ranking ## Model description A text reranker trained for BM25 retriever on MS MARCO document dataset. ## Intended uses & limitations It is possible to work with other retrievers like but using aligned BM25 works the best. We used anserini toolkit's BM25 implementation and indexed with tuned parameters (k1=3.8, b=0.87) following [this instruction](https://github.com/castorini/anserini/blob/master/docs/experiments-msmarco-doc.md). #### How to use See our [project repo page](https://github.com/luyug/Reranker). ## Eval results MRR @10: 0.423 on Dev. ### BibTeX entry and citation info ```bibtex @inproceedings{gao2021lce, title={Rethink Training of BERT Rerankers in Multi-Stage Retrieval Pipeline}, author={Luyu Gao and Zhuyun Dai and Jamie Callan}, year={2021}, booktitle={The 43rd European Conference On Information Retrieval (ECIR)}, } ```
{"language": ["en"], "license": "apache-2.0", "tags": ["text reranking"], "datasets": ["MS MARCO document ranking"]}
text-classification
Luyu/bert-base-mdoc-bm25
[ "transformers", "pytorch", "jax", "bert", "text-classification", "text reranking", "en", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# BERT Reranker for MS-MARCO Document Ranking ## Model description A text reranker trained for BM25 retriever on MS MARCO document dataset. ## Intended uses & limitations It is possible to work with other retrievers like but using aligned BM25 works the best. We used anserini toolkit's BM25 implementation and indexed with tuned parameters (k1=3.8, b=0.87) following this instruction. #### How to use See our project repo page. ## Eval results MRR @10: 0.423 on Dev. ### BibTeX entry and citation info
[ "# BERT Reranker for MS-MARCO Document Ranking", "## Model description\n\nA text reranker trained for BM25 retriever on MS MARCO document dataset.", "## Intended uses & limitations\nIt is possible to work with other retrievers like but using aligned BM25 works the best.\n\nWe used anserini toolkit's BM25 implementation and indexed with tuned parameters (k1=3.8, b=0.87) following this instruction.", "#### How to use\nSee our project repo page.", "## Eval results\nMRR @10: 0.423 on Dev.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# BERT Reranker for MS-MARCO Document Ranking", "## Model description\n\nA text reranker trained for BM25 retriever on MS MARCO document dataset.", "## Intended uses & limitations\nIt is possible to work with other retrievers like but using aligned BM25 works the best.\n\nWe used anserini toolkit's BM25 implementation and indexed with tuned parameters (k1=3.8, b=0.87) following this instruction.", "#### How to use\nSee our project repo page.", "## Eval results\nMRR @10: 0.423 on Dev.", "### BibTeX entry and citation info" ]
[ 54, 13, 24, 64, 11, 15, 11 ]
[ "passage: TAGS\n#transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# BERT Reranker for MS-MARCO Document Ranking## Model description\n\nA text reranker trained for BM25 retriever on MS MARCO document dataset.## Intended uses & limitations\nIt is possible to work with other retrievers like but using aligned BM25 works the best.\n\nWe used anserini toolkit's BM25 implementation and indexed with tuned parameters (k1=3.8, b=0.87) following this instruction.#### How to use\nSee our project repo page.## Eval results\nMRR @10: 0.423 on Dev.### BibTeX entry and citation info" ]
[ -0.04548877477645874, 0.06902425736188889, -0.005381261929869652, 0.051363106817007065, 0.16265927255153656, -0.037961799651384354, 0.028470465913414955, 0.11310574412345886, -0.0492989644408226, -0.007737893145531416, 0.04236135259270668, 0.18457329273223877, -0.002739658812060952, 0.14846228063106537, -0.1544916033744812, -0.1765720695257187, 0.0042831189930438995, 0.07288650423288345, 0.10440997779369354, 0.1272144764661789, 0.10766974091529846, -0.08817801624536514, 0.07736905664205551, -0.034256115555763245, -0.08065381646156311, 0.07543246448040009, 0.015838071703910828, -0.062242526561021805, 0.07898330688476562, 0.057940155267715454, 0.07264146208763123, 0.08920896053314209, 0.06754930317401886, -0.13476569950580597, 0.02479456178843975, 0.007292094174772501, -0.02747070975601673, 0.0596102699637413, 0.05855584517121315, -0.06814707070589066, 0.0626034289598465, -0.10911243408918381, -0.012844461016356945, 0.054881345480680466, -0.09842120110988617, -0.05277802422642708, -0.08571498841047287, 0.04415310174226761, 0.0698382556438446, 0.04611975699663162, 0.023637225851416588, 0.10925988107919693, -0.04067419469356537, 0.09249997138977051, 0.2385934591293335, -0.26003196835517883, -0.014725537970662117, 0.08657592535018921, 0.056809257715940475, 0.08160048723220825, -0.03860802203416824, 0.06740359216928482, 0.005867762491106987, 0.004330349154770374, 0.16058337688446045, -0.08757706731557846, 0.04384051263332367, 0.031145982444286346, -0.09140147268772125, -0.034315723925828934, 0.21014490723609924, 0.017264746129512787, -0.06213964894413948, -0.03909552842378616, -0.06817419081926346, 0.06932742893695831, -0.03995387256145477, -0.021321458742022514, 0.019398320466279984, -0.005897623021155596, -0.013873091898858547, -0.016491509974002838, -0.06139069423079491, -0.10827739536762238, -0.064690500497818, 0.15017063915729523, -0.04197344183921814, 0.010377855040133, -0.09540948271751404, 0.09011630713939667, 0.00997969601303339, -0.08391550183296204, -0.025559308007359505, -0.08150453120470047, 0.0024219192564487457, -0.029588332399725914, -0.060541894286870956, -0.1208806186914444, 0.07320065796375275, 0.12934379279613495, 0.00037517346208915114, 0.018123941496014595, -0.07177909463644028, 0.04656607657670975, 0.009523006156086922, 0.14371398091316223, -0.06385374814271927, -0.06933298707008362, 0.17073291540145874, -0.03436325117945671, 0.0058616651222109795, 0.011336535215377808, -0.07714895904064178, -0.11007048189640045, 0.11875447630882263, 0.12368942052125931, -0.030465001240372658, 0.07652413100004196, -0.021365664899349213, -0.050202544778585434, 0.07662677019834518, -0.1718456894159317, -0.012538396753370762, 0.022923698648810387, -0.054374199360609055, -0.023824675008654594, 0.10638934373855591, -0.07054746150970459, -0.11241860687732697, 0.09052104502916336, -0.017095675691962242, -0.0648847371339798, -0.07879224419593811, -0.16832616925239563, 0.03259093314409256, -0.09302247315645218, 0.0541670098900795, -0.16691602766513824, -0.17895910143852234, -0.0008905321592465043, 0.008587824180722237, -0.03472327068448067, -0.0009250481962226331, 0.0010668921750038862, 0.030432887375354767, 0.003265903564170003, -0.05315449833869934, 0.03718551620841026, -0.0565834641456604, 0.053156036883592606, -0.005589294712990522, 0.06787527352571487, -0.0613316185772419, 0.050184596329927444, -0.03217807412147522, 0.021794531494379044, -0.07621254771947861, 0.05427282676100731, -0.06480170786380768, 0.060159094631671906, -0.1524444967508316, 0.007993625476956367, 0.02286997251212597, -0.031316593289375305, 0.046595655381679535, 0.12411920726299286, -0.05949960649013519, -0.010091484524309635, 0.08671806007623672, -0.029727531597018242, -0.0934806764125824, 0.036413878202438354, -0.0488014817237854, 0.0346292182803154, 0.11417711526155472, -0.0036056600511074066, 0.093108169734478, 0.015677694231271744, 0.026374321430921555, 0.011685293167829514, -0.08056715875864029, -0.10892157256603241, 0.11795063316822052, 0.07401074469089508, -0.08528102189302444, 0.03050399385392666, -0.041248440742492676, -0.008814423345029354, -0.009930765256285667, -0.043834879994392395, -0.0211171992123127, -0.019103197380900383, -0.0386868491768837, -0.027150258421897888, 0.04999154061079025, -0.012582297436892986, -0.024346420541405678, 0.017850684002041817, 0.036239661276340485, -0.03673844784498215, 0.031025130301713943, -0.05162522941827774, 0.03253263235092163, -0.19194239377975464, 0.06058637052774429, -0.2348513901233673, 0.046207889914512634, -0.0144041134044528, 0.024694105610251427, 0.019635019823908806, 0.017021069303154945, 0.042296234518289566, -0.024938564747571945, -0.06318364292383194, 0.019609367474913597, 0.003329420229420066, 0.028575222939252853, -0.027248281985521317, -0.12521663308143616, -0.030897116288542747, -0.07622664421796799, -0.11525830626487732, -0.06687392294406891, -0.010005306452512741, 0.1186860129237175, 0.0713527724146843, 0.004021092783659697, 0.04998994246125221, 0.02739381603896618, -0.024615682661533356, -0.027069566771388054, -0.011519916355609894, 0.10106557607650757, 0.02424442395567894, -0.05749977007508278, 0.09002959728240967, -0.06817532330751419, 0.02959214523434639, 0.1126701682806015, -0.04137762263417244, 0.008454253897070885, -0.04214033484458923, -0.03085283376276493, 0.013234689831733704, -0.08253213763237, -0.009444301016628742, 0.04251743108034134, 0.06802718341350555, 0.1895890235900879, -0.10314568877220154, -0.09335148334503174, 0.005722368136048317, 0.005135096609592438, 0.002555730054154992, 0.08757981657981873, 0.06594549119472504, -0.2954012155532837, 0.05412290245294571, 0.0945291593670845, -0.026518700644373894, 0.15429246425628662, 0.03947434201836586, -0.07073915004730225, 0.0018222960643470287, -0.004048068542033434, 0.03556807339191437, 0.0047628628090023994, -0.08474639803171158, -0.031862542033195496, 0.05745381861925125, 0.009712204337120056, 0.04312117397785187, -0.046436648815870285, 0.03881901130080223, 0.0391320139169693, -0.028152624145150185, -0.11751486361026764, 0.05052708461880684, -0.002985433442518115, 0.0945759192109108, 0.05394424870610237, -0.028414642438292503, 0.05237800255417824, -0.05744412913918495, -0.10165254026651382, 0.16643966734409332, -0.01838442124426365, -0.18518765270709991, -0.16495659947395325, -0.17469722032546997, -0.1166505515575409, 0.02911526896059513, 0.06614051014184952, -0.018235135823488235, -0.0812363252043724, 0.012544766999781132, 0.062373965978622437, -0.03367237746715546, -0.0066660866141319275, 0.003838174045085907, 0.06254981458187103, 0.03194471076130867, -0.15909932553768158, -0.03555679693818092, 0.009815552271902561, -0.00459160516038537, 0.04504881426692009, -0.11911588907241821, 0.1288699507713318, 0.05988052114844322, -0.09328651428222656, 0.05829847231507301, 0.0058932495303452015, 0.17645810544490814, 0.013805652037262917, -0.0021295780315995216, 0.10773295909166336, -0.04524483159184456, 0.014840947464108467, 0.07965052872896194, 0.03923911601305008, -0.01864832639694214, 0.05100370571017265, -0.00017658718570601195, -0.04785850644111633, -0.2728244364261627, -0.06229718029499054, -0.0887480080127716, -0.02319532446563244, 0.06517274677753448, 0.029591437429189682, -0.018957197666168213, 0.06323695927858353, -0.031387317925691605, 0.1205906793475151, 0.09651225805282593, 0.1365681290626526, 0.1326112151145935, 0.05735079571604729, 0.11680024862289429, -0.06699137389659882, -0.051588039845228195, 0.07763605564832687, 0.07612314820289612, 0.1859799325466156, 0.03352144733071327, 0.09308626502752304, 0.08270585536956787, -0.12450605630874634, 0.08820052444934845, 0.2595919668674469, -0.02464531734585762, 0.05446503683924675, -0.057964738458395004, -0.06737557798624039, -0.044420961290597916, -0.006874680053442717, -0.1433449685573578, 0.014819279313087463, -0.08923626691102982, -0.05819329991936684, 0.06259265542030334, 0.1745891124010086, 0.006120620295405388, -0.23604604601860046, -0.014433540403842926, 0.052573300898075104, -0.012324431911110878, -0.07548017054796219, -0.0019621446263045073, -0.03681495413184166, -0.09199036657810211, 0.02488420531153679, -0.03299062326550484, 0.20769041776657104, -0.08799155056476593, 0.02147979475557804, -0.12338126450777054, 0.04652794077992439, -0.02308834157884121, 0.124610036611557, -0.20664483308792114, 0.1990591138601303, 0.0671028271317482, 0.04389128461480141, -0.0601801872253418, -0.0064600082114338875, 0.05875726789236069, 0.14670711755752563, 0.1550665646791458, -0.016404753550887108, 0.0203793216496706, -0.10034696012735367, -0.03988492488861084, 0.027272416278719902, 0.01309862732887268, -0.022817207500338554, 0.10676915943622589, -0.016572991386055946, -0.030126286670565605, -0.00830705463886261, 0.10396543145179749, -0.12708799540996552, -0.11476895958185196, 0.028493288904428482, 0.038165684789419174, 0.000293315970338881, 0.003231803188100457, -0.02199714630842209, 0.0359531044960022, 0.18476368486881256, -0.033007312566041946, -0.07779081165790558, -0.1431194692850113, 0.06592193990945816, 0.020048832520842552, -0.08045177906751633, 0.015581836923956871, -0.05132199451327324, 0.11562514305114746, -0.03630366176366806, -0.15198756754398346, 0.05042608454823494, -0.08490660041570663, 0.01732856035232544, -0.0015256368787959218, 0.08231978863477707, -0.03384847193956375, 0.0018094819970428944, 0.10978814214468002, -0.015710392966866493, -0.024808475747704506, -0.10435576736927032, 0.0020648082718253136, 0.05397658795118332, 0.15755115449428558, 0.053070660680532455, -0.21035748720169067, -0.06858586519956589, -0.04266616702079773, -0.006628043949604034, 0.18919682502746582, 0.12373080104589462, -0.07762344181537628, 0.04812965914607048, 0.13556233048439026, -0.09457942098379135, -0.24882245063781738, -0.08197154104709625, -0.04552068933844566, 0.032073237001895905, -0.058019328862428665, -0.11223104596138, 0.06645765900611877, -0.016741972416639328, 0.009989172220230103, -0.11755633354187012, -0.08554761111736298, -0.08095184713602066, 0.1597442775964737, 0.1028812900185585, 0.3153562843799591, -0.09329987317323685, -0.08920297771692276, -0.18220984935760498, -0.24626322090625763, 0.058891408145427704, -0.1727144420146942, 0.09880687296390533, -0.05268845334649086, 0.02326360158622265, 0.003937363158911467, -0.044759925454854965, 0.06932333111763, 0.014351812191307545, 0.04731830954551697, -0.03489018604159355, -0.04884164035320282, 0.09380132704973221, -0.06664557009935379, 0.11495344340801239, -0.06787300854921341, 0.06824810802936554, -0.15063230693340302, -0.1013728529214859, -0.039818596094846725, 0.00962947215884924, 0.015457152388989925, -0.06172958388924599, 0.006142697762697935, 0.031198378652334213, 0.08640182018280029, -0.015323348343372345, 0.14435628056526184, -0.09836923331022263, -0.00813164934515953, 0.17773814499378204, 0.16177822649478912, -0.10292639583349228, 0.04076701030135155, -0.015626372769474983, -0.04710434749722481, 0.08604385703802109, -0.1113172322511673, 0.14018535614013672, 0.12549392879009247, -0.008161788806319237, 0.12078584730625153, 0.09541814029216766, -0.03468213975429535, -0.04098212718963623, 0.10699186474084854, -0.13241329789161682, -0.033693380653858185, -0.05917297676205635, 0.07367205619812012, -0.01017540879547596, 0.09777289628982544, 0.16749396920204163, -0.028919225558638573, -0.04404494911432266, 0.024713680148124695, -0.005956378765404224, -0.0434962697327137, 0.14378364384174347, 0.05319018289446831, 0.04340525344014168, -0.10270576924085617, 0.10681463778018951, 0.09455002844333649, 0.021749967709183693, -0.05818457528948784, 0.05179818347096443, -0.1466551274061203, -0.0714053213596344, 0.0930585265159607, 0.19921624660491943, -0.10199454426765442, -0.04957534372806549, -0.13420647382736206, -0.07898125797510147, 0.08946011960506439, 0.21296408772468567, 0.06721360981464386, 0.0077222296968102455, -0.07244300097227097, -0.061130255460739136, -0.07776279002428055, 0.08648213744163513, 0.06100383773446083, 0.010200303979218006, -0.110218346118927, -0.021743379533290863, -0.09538818895816803, 0.04222565516829491, -0.05318384990096092, 0.016580846160650253, -0.1281335949897766, 0.024149056524038315, -0.24224458634853363, 0.06671646237373352, -0.05217047780752182, 0.011611334048211575, -0.0789676085114479, 0.020255008712410927, -0.08342019468545914, 0.049277666956186295, -0.09279277920722961, -0.03697905316948891, -0.046272095292806625, 0.05558912828564644, -0.09553385525941849, -0.052968189120292664, 0.018010972067713737, -0.07608724385499954, 0.06970835477113724, 0.03506254032254219, -0.027496755123138428, 0.03450256213545799, -0.10360784083604813, -0.10069377720355988, 0.050776053220033646, 0.015047002583742142, 0.050295572727918625, -0.13171665370464325, 0.07765714079141617, 0.07446801662445068, -0.038676999509334564, 0.010647198185324669, 0.07557149976491928, -0.0970589742064476, -0.025564298033714294, -0.06055033951997757, -0.03296864032745361, -0.0823514461517334, 0.06302323192358017, 0.07383382320404053, 0.1629384160041809, 0.12101196497678757, -0.04046591371297836, 0.023810122162103653, -0.11222092062234879, 0.032072100788354874, 0.0003495199198368937, -0.1459628939628601, -0.09289126843214035, -0.020706400275230408, 0.025328276678919792, -0.03193775191903114, 0.19472017884254456, 0.045840855687856674, 0.0661964938044548, 0.05391611531376839, 0.04570367932319641, -0.009959260933101177, -0.03007289208471775, 0.2210218608379364, 0.020762884989380836, -0.013808181509375572, 0.00686630979180336, 0.06323909759521484, 0.04430771991610527, 0.11472755670547485, 0.14886270463466644, 0.19569674134254456, 0.08450392633676529, 0.05847460776567459, 0.033168986439704895, 0.020165398716926575, 0.00640223128721118, -0.06248963996767998, 0.11636142432689667, 0.05197446048259735, -0.012716548517346382, 0.01940416917204857, 0.19625109434127808, -0.08468014001846313, 0.0923994928598404, -0.0035371962003409863, -0.036512989550828934, -0.17610017955303192, -0.09418284147977829, -0.1235717311501503, -0.05653061345219612, -0.000984246376901865, -0.12482396513223648, 0.02220407873392105, -0.03118037059903145, 0.04623975232243538, -0.02273244597017765, 0.019461026415228844, -0.03986587002873421, -0.07764929533004761, 0.11095771193504333, -0.04671851918101311, -0.007689470425248146, 0.03251710906624794, 0.11491633206605911, 0.057411156594753265, -0.03648562729358673, 0.002941232407465577, 0.028758758679032326, 0.05108438432216644, -0.016240369528532028, -0.04529086872935295, -0.06531888991594315, -0.05749547481536865, 0.02091115340590477, 0.007992672733962536, 0.20291879773139954, -0.009249390102922916, -0.04598561301827431, 0.046509433537721634, 0.23615384101867676, -0.026482651010155678, -0.0734943300485611, -0.10678103566169739, 0.14215661585330963, 0.1465088278055191, 0.0753745436668396, 0.035819973796606064, -0.08553749322891235, 0.034360889345407486, 0.162313312292099, 0.12598979473114014, 0.006415128707885742, 0.035953447222709656, -0.0007310440414585173, 0.03405463322997093, 0.11137096583843231, 0.04662248492240906, 0.06316812336444855, 0.08885640650987625, -0.011538654565811157, 0.011459173634648323, -0.03666509687900543, 0.005845257546752691, 0.026042412966489792, 0.12865102291107178, 0.044499579817056656, -0.07167762517929077, -0.045571427792310715, 0.07237667590379715, 0.009416215121746063, -0.11022287607192993, -0.11535845696926117, -0.07250421494245529, -0.05876968055963516, -0.09183749556541443, -0.08719654381275177, -0.03571465611457825, 0.02434496209025383, -0.009908532723784447, 0.006101262755692005, 0.09998593479394913, 0.035927992314100266, -0.13965989649295807, -0.0657627284526825, 0.083542600274086, 0.11158089339733124, 0.08840857446193695, 0.007673969957977533, 0.02987748198211193, 0.09548772126436234, -0.028893716633319855, -0.1258852630853653, 0.13567735254764557, -0.0346289724111557, -0.02641606144607067, 0.10414986312389374, 0.10849320888519287, -0.08128340542316437, -0.013753047212958336, -0.04501388221979141, -0.07846639305353165, 0.003093611216172576, 0.10057413578033447, -0.09008482098579407, -0.08940303325653076, 0.06966856122016907, -0.07691234350204468, 0.04876631870865822, 0.1311943233013153, -0.04333040490746498, 0.03887283802032471, -0.09400792419910431, 0.09613307565450668, 0.03976164758205414, -0.040917251259088516, -0.052686743438243866, -0.0351574532687664, -0.00899061094969511, -0.037806469947099686, 0.021047528833150864, -0.31328335404396057, -0.0397816076874733, -0.045070186257362366, -0.02949262224137783, -0.12852320075035095, 0.08525838702917099, 0.05800172686576843, 0.02218797244131565, -0.03925829380750656, -0.2720395624637604, 0.021399743854999542, 0.03820739686489105, -0.13504543900489807, -0.0762736052274704 ]
null
null
transformers
# BERT Reranker for MS-MARCO Document Ranking ## Model description A text reranker trained for HDCT retriever on MS MARCO document dataset. ## Intended uses & limitations It is possible to work with other retrievers like BM25 but using aligned HDCT works the best. #### How to use See our [project repo page](https://github.com/luyug/Reranker). ## Eval results MRR @10: 0.434 on Dev. MRR @10: 0.382 on Eval. ### BibTeX entry and citation info ```bibtex @inproceedings{gao2021lce, title={Rethink Training of BERT Rerankers in Multi-Stage Retrieval Pipeline}, author={Luyu Gao and Zhuyun Dai and Jamie Callan}, year={2021}, booktitle={The 43rd European Conference On Information Retrieval (ECIR)}, } ```
{"language": ["en"], "license": "apache-2.0", "tags": ["text reranking"], "datasets": ["MS MARCO document ranking"]}
text-classification
Luyu/bert-base-mdoc-hdct
[ "transformers", "pytorch", "jax", "bert", "text-classification", "text reranking", "en", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# BERT Reranker for MS-MARCO Document Ranking ## Model description A text reranker trained for HDCT retriever on MS MARCO document dataset. ## Intended uses & limitations It is possible to work with other retrievers like BM25 but using aligned HDCT works the best. #### How to use See our project repo page. ## Eval results MRR @10: 0.434 on Dev. MRR @10: 0.382 on Eval. ### BibTeX entry and citation info
[ "# BERT Reranker for MS-MARCO Document Ranking", "## Model description\n\nA text reranker trained for HDCT retriever on MS MARCO document dataset.", "## Intended uses & limitations\nIt is possible to work with other retrievers like BM25 but using aligned HDCT works the best.", "#### How to use\nSee our project repo page.", "## Eval results\nMRR @10: 0.434 on Dev.\nMRR @10: 0.382 on Eval.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# BERT Reranker for MS-MARCO Document Ranking", "## Model description\n\nA text reranker trained for HDCT retriever on MS MARCO document dataset.", "## Intended uses & limitations\nIt is possible to work with other retrievers like BM25 but using aligned HDCT works the best.", "#### How to use\nSee our project repo page.", "## Eval results\nMRR @10: 0.434 on Dev.\nMRR @10: 0.382 on Eval.", "### BibTeX entry and citation info" ]
[ 54, 13, 24, 32, 11, 26, 11 ]
[ "passage: TAGS\n#transformers #pytorch #jax #bert #text-classification #text reranking #en #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# BERT Reranker for MS-MARCO Document Ranking## Model description\n\nA text reranker trained for HDCT retriever on MS MARCO document dataset.## Intended uses & limitations\nIt is possible to work with other retrievers like BM25 but using aligned HDCT works the best.#### How to use\nSee our project repo page.## Eval results\nMRR @10: 0.434 on Dev.\nMRR @10: 0.382 on Eval.### BibTeX entry and citation info" ]
[ -0.04481691122055054, 0.0653902217745781, -0.004589206539094448, 0.05150416120886803, 0.1575237661600113, -0.02455833926796913, 0.03378979489207268, 0.1297065168619156, -0.04259002208709717, 0.002102959668263793, 0.06712695956230164, 0.17159973084926605, 0.005345992278307676, 0.13703711330890656, -0.1732923537492752, -0.15458668768405914, 0.008435865864157677, 0.0717843621969223, 0.12627772986888885, 0.09118188172578812, 0.11445944011211395, -0.07039369642734528, 0.11567248404026031, -0.041060104966163635, -0.06853364408016205, 0.06457613408565521, 0.008374308235943317, -0.048088811337947845, 0.09279625862836838, 0.07753431051969528, 0.07739406079053879, 0.11008485406637192, 0.09748746454715729, -0.1251223236322403, 0.03244168683886528, 0.031706519424915314, -0.056122079491615295, 0.07683166861534119, 0.06032506376504898, -0.07813309878110886, 0.05571846663951874, -0.10521065443754196, -0.014526375569403172, 0.04392113909125328, -0.1107342317700386, 0.04514951631426811, -0.13558952510356903, -0.02724606916308403, 0.08219598233699799, 0.07720118761062622, 0.018974393606185913, 0.14249829947948456, -0.06287942081689835, 0.0863797590136528, 0.2713170051574707, -0.22603294253349304, -0.013396833091974258, 0.11753536015748978, 0.03739045187830925, 0.06857133656740189, -0.042666591703891754, 0.0797218531370163, 0.037179261445999146, 0.02150130830705166, 0.12762153148651123, -0.07050948590040207, 0.010813601315021515, 0.053299471735954285, -0.09653053432703018, -0.021762551739811897, 0.240668386220932, 0.016303660348057747, -0.02446884475648403, -0.017176302149891853, -0.10613682121038437, 0.048657216131687164, -0.002590205753222108, -0.010426653549075127, 0.015303418040275574, 0.003538253717124462, -0.042254578322172165, -0.005716624204069376, -0.06358165293931961, -0.07943785190582275, -0.1260288655757904, 0.03273108974099159, -0.019227974116802216, 0.019710907712578773, -0.09057538211345673, 0.09693837910890579, 0.002605179324746132, -0.09693444520235062, -0.041948869824409485, -0.08619268238544464, -0.028327589854598045, -0.04790862277150154, -0.05291317030787468, -0.11025861650705338, 0.07143478840589523, 0.15819647908210754, 0.015158765017986298, 0.025284888222813606, -0.08992945402860641, 0.06141063943505287, -0.006285178940743208, 0.15736554563045502, -0.09545562416315079, -0.06244875118136406, 0.167872354388237, -0.03645259886980057, 0.003634295193478465, 0.015530163422226906, -0.0804487019777298, -0.053357597440481186, 0.07032912969589233, 0.12781484425067902, -0.010532868094742298, 0.0710417702794075, -0.028320003300905228, -0.0028861374594271183, 0.1242329552769661, -0.140081524848938, -0.00620453292503953, 0.014378925785422325, -0.03096742369234562, 0.05424121394753456, 0.09596414864063263, -0.04137476161122322, -0.08928459137678146, 0.07320038974285126, -0.019290460273623466, -0.036965593695640564, -0.06312723457813263, -0.16255728900432587, 0.042055439203977585, -0.04704191908240318, 0.02261444739997387, -0.17958353459835052, -0.16713915765285492, -0.02235235646367073, -0.010556928813457489, -0.05017676576972008, 0.01024588756263256, -0.034183964133262634, -0.004876482766121626, -0.006624194793403149, -0.04224403202533722, 0.02568879909813404, -0.0658535584807396, 0.02333713322877884, -0.050522878766059875, 0.05953763797879219, -0.08657953888177872, 0.05033041164278984, -0.03250923380255699, -0.007971790619194508, -0.07431482523679733, 0.039881639182567596, -0.06617691367864609, 0.07705274969339371, -0.1272885501384735, -0.018499284982681274, 0.035367440432310104, -0.022349994629621506, 0.030714860185980797, 0.1508941352367401, -0.11681598424911499, 0.003164303256198764, 0.0560755580663681, -0.01718142256140709, -0.0788498967885971, 0.07781306654214859, -0.04493171349167824, 0.011117259040474892, 0.09655020385980606, -0.03131505101919174, 0.05201676860451698, -0.015699150040745735, 0.026343094184994698, 0.020546618849039078, -0.10590782761573792, -0.05524991452693939, 0.10288141667842865, 0.06513725966215134, -0.07900723814964294, 0.0168280191719532, -0.03386969491839409, -0.042978789657354355, -0.036653198301792145, -0.03666951507329941, -0.01007962878793478, 0.007296647876501083, -0.08324795961380005, -0.03113684430718422, 0.05724303051829338, -0.014114254154264927, -0.0286963302642107, -0.054081130772829056, 0.02359667979180813, -0.02797374315559864, 0.04530518874526024, -0.04796583205461502, 0.03502112627029419, -0.15382041037082672, 0.03669663891196251, -0.2228984236717224, 0.021196279674768448, -0.025029558688402176, 0.05679620802402496, -0.00021897205442655832, 0.09464172273874283, 0.050048455595970154, -0.011820810846984386, -0.07238135486841202, 0.0031576768960803747, 0.010952016338706017, 0.010455142706632614, -0.00892174057662487, -0.1024560034275055, 0.00872822292149067, -0.0971628949046135, -0.10493595153093338, -0.06792207807302475, -0.0239912960678339, 0.09240332245826721, 0.13050243258476257, 0.02580857090651989, 0.05170594900846481, 0.00011453189654275775, -0.00325357005931437, -0.06310714781284332, -0.024511512368917465, 0.08280812203884125, -0.0035368839744478464, -0.0701775774359703, 0.10665900260210037, -0.055426739156246185, 0.023695247247815132, 0.12256257236003876, -0.05662587657570839, -0.01257232390344143, -0.02296658419072628, -0.036520618945360184, 0.037952348589897156, -0.11922138184309006, -0.03836459666490555, 0.07041770219802856, 0.05022150278091431, 0.18083380162715912, -0.0682719349861145, -0.0762985572218895, -0.007335155736654997, 0.019470863044261932, 0.0006432337686419487, 0.09993331134319305, 0.12055567651987076, -0.2438754439353943, 0.06275203078985214, 0.08472509682178497, 0.002197598572820425, 0.06911325454711914, 0.03634434938430786, -0.05955168977379799, 0.03397698327898979, -0.010697430931031704, 0.056184131652116776, -0.025205137208104134, 0.013918883167207241, -0.01793697290122509, 0.06717817485332489, 0.03799600899219513, 0.03482391685247421, -0.09355946630239487, 0.02132366970181465, 0.006109198089689016, -0.020746048539876938, -0.1376601904630661, 0.08211952447891235, 0.023641616106033325, 0.10199544578790665, -0.0024534936528652906, -0.05132153630256653, 0.04946717247366905, -0.0496508814394474, -0.08756228536367416, 0.17924349009990692, -0.05048194155097008, -0.22521227598190308, -0.17563171684741974, -0.12132977694272995, -0.10200485587120056, 0.043914128094911575, 0.09703477472066879, -0.06058214604854584, -0.11545207351446152, -0.02060636691749096, 0.09804172068834305, -0.031190020963549614, -0.018025964498519897, 0.028009023517370224, 0.05693673714995384, 0.011983747594058514, -0.15761978924274445, -0.030807098373770714, 0.02535516954958439, -0.042090218514204025, 0.0942273736000061, -0.1209593415260315, 0.11900447309017181, 0.006180793046951294, -0.05372918024659157, 0.04254971072077751, -0.010431656613945961, 0.11837824434041977, 0.01099507324397564, -0.005593401379883289, 0.10441646724939346, -0.016444101929664612, 0.03266948461532593, 0.0801931768655777, 0.007370183244347572, -0.04143182188272476, 0.0504642054438591, 0.0086672343313694, -0.05236482247710228, -0.27353888750076294, -0.06220940873026848, -0.10393267869949341, 0.0068177152425050735, 0.060363706201314926, 0.03178534656763077, -0.07071986049413681, 0.051870595663785934, -0.05671310052275658, 0.10586154460906982, 0.08664829283952713, 0.12304970622062683, 0.12157640606164932, 0.02831965871155262, 0.11027918010950089, -0.09037084877490997, -0.07559246569871902, 0.08794968575239182, 0.013757473789155483, 0.1979350447654724, 0.03195459768176079, 0.0522618442773819, 0.07569950819015503, -0.11359325051307678, 0.07139269262552261, 0.2391519546508789, 0.007287066429853439, 0.030858516693115234, -0.0757155641913414, -0.04206865653395653, -0.019250327721238136, 0.011334422044456005, -0.09532026201486588, -0.03692418709397316, -0.06290370970964432, -0.0065642972476780415, 0.08469879627227783, 0.1097993329167366, 0.030059898272156715, -0.277651846408844, 0.04574509710073471, 0.056349657475948334, -0.004609042778611183, -0.05903100222349167, 0.03424082323908806, -0.03306550160050392, -0.08275574445724487, 0.054538022726774216, -0.022655770182609558, 0.20810990035533905, -0.07228563725948334, 0.026227423921227455, -0.09721063077449799, 0.06862642616033554, -0.004904122091829777, 0.1005319282412529, -0.24809908866882324, 0.2063642144203186, 0.041679952293634415, 0.008314389735460281, -0.04865974560379982, -0.025712916627526283, 0.07726433128118515, 0.16684234142303467, 0.15178021788597107, -0.006760944612324238, -0.014328410848975182, -0.06623881310224533, -0.06529853492975235, 0.0383436493575573, 0.017674727365374565, -0.029718060046434402, 0.08914802223443985, -0.01517716608941555, -0.016230084002017975, -0.010897953994572163, 0.12940965592861176, -0.11626806855201721, -0.12557873129844666, 0.026860900223255157, 0.0031997773330658674, 0.07539870589971542, 0.005189051851630211, -0.04188910871744156, -0.07133868336677551, 0.13168708980083466, 0.0180670116096735, -0.0342247299849987, -0.14417974650859833, 0.035525452345609665, 0.032659292221069336, -0.08086690306663513, -0.01506758388131857, -0.03658255189657211, 0.10416673123836517, -0.040007222443819046, -0.14483413100242615, 0.040869180113077164, -0.08227581530809402, -0.021610233932733536, -0.01892761141061783, 0.08158852159976959, -0.05933845788240433, 0.023729365319013596, 0.09109378606081009, 0.013387199491262436, -0.054472632706165314, -0.10419758409261703, 0.00825057365000248, 0.12111981958150864, 0.14618587493896484, 0.10126879811286926, -0.16257606446743011, -0.018541919067502022, -0.015498055145144463, -0.020167026668787003, 0.16348499059677124, 0.1625014692544937, -0.06005942448973656, 0.06234969571232796, 0.045626167207956314, -0.09091892093420029, -0.2928299009799957, -0.07517138123512268, -0.07251289486885071, 0.03544221445918083, -0.027880700305104256, -0.0725577101111412, 0.047540366649627686, -0.014674114994704723, 0.022289765998721123, -0.12911908328533173, -0.04814803600311279, -0.06231338158249855, 0.114171601831913, 0.05386441573500633, 0.3056049346923828, -0.07820802927017212, -0.047228921204805374, -0.18043386936187744, -0.3104550540447235, 0.026846993714571, -0.2107516974210739, 0.09409329295158386, -0.05054396390914917, 0.06990568339824677, -0.015442142263054848, -0.058606650680303574, 0.10150472074747086, 0.022665169090032578, 0.06518804281949997, -0.030793745070695877, -0.0025870632380247116, 0.09700743108987808, -0.04179362580180168, 0.09065239876508713, -0.0562778078019619, 0.07097865641117096, -0.11038205772638321, -0.06593866646289825, -0.017889637500047684, 0.01711784116923809, 0.010455005802214146, -0.034963399171829224, -0.0200275257229805, 0.013707322999835014, 0.09276436269283295, -0.038566313683986664, 0.2499915063381195, -0.06887216866016388, 0.0022615257184952497, 0.08669193089008331, 0.13803322613239288, -0.1160396859049797, 0.06034689024090767, -0.028805864974856377, -0.057482413947582245, 0.0820913314819336, -0.1124143898487091, 0.13757936656475067, 0.14562766253948212, -0.03519842028617859, 0.12980540096759796, 0.09749733656644821, -0.007037988398224115, 0.024589385837316513, 0.11965233087539673, -0.1251416951417923, -0.014570477418601513, -0.0463220588862896, 0.04149332270026207, 0.027181515470147133, 0.0920632928609848, 0.18036234378814697, -0.033838141709566116, -0.027920618653297424, 0.023377321660518646, 0.014867976307868958, -0.033838674426078796, 0.12114124745130539, 0.008722209371626377, 0.015135189518332481, -0.12060855329036713, 0.10060229897499084, 0.07319822907447815, -0.009346907027065754, -0.0796838328242302, 0.04295080527663231, -0.16292442381381989, -0.07814188301563263, 0.08981359750032425, 0.2274361550807953, -0.1518654078245163, -0.020124277099967003, -0.19128921627998352, -0.09412746131420135, 0.08723150193691254, 0.13661383092403412, 0.05822214484214783, 0.00808799359947443, -0.04814025014638901, -0.06009349226951599, -0.056974951177835464, 0.025166558101773262, 0.0668381005525589, 0.028158247470855713, -0.09876158833503723, 0.008560031652450562, -0.1051177978515625, 0.03531752526760101, -0.05369885265827179, 0.05434124544262886, -0.1340649127960205, 0.014478257857263088, -0.2697524428367615, 0.0599934458732605, -0.04359908401966095, 0.002177347196266055, -0.05879038944840431, 0.006398848257958889, -0.0760752260684967, 0.051622580736875534, -0.08732984215021133, -0.04297299683094025, -0.058563847094774246, 0.06944715976715088, -0.0627794936299324, -0.039033807814121246, 0.022259799763560295, -0.06140295788645744, 0.0654582753777504, 0.006741078570485115, -0.059856731444597244, 0.04655177891254425, -0.11179876327514648, -0.1510239690542221, 0.06406533718109131, 0.03902387246489525, 0.06666138023138046, -0.09476710110902786, 0.05038530379533768, 0.08075343072414398, -0.03470410034060478, 0.008050546981394291, 0.01887914538383484, -0.07211769372224808, -0.02292822115123272, -0.099269799888134, -0.03870834410190582, -0.0726238489151001, 0.01948326639831066, 0.039499685168266296, 0.18242506682872772, 0.12691175937652588, -0.042260412126779556, 0.04673096910119057, -0.10998418927192688, 0.01906232349574566, 0.017671994864940643, -0.14378565549850464, -0.09315129369497299, -0.04567713290452957, 0.06967150419950485, -0.0268467515707016, 0.2193504124879837, 0.04705437272787094, 0.03159188851714134, 0.07863129675388336, 0.08978696912527084, -0.03024342656135559, -0.04624812304973602, 0.17030741274356842, 0.03139651194214821, -0.003995249047875404, -0.06059364229440689, 0.03553692623972893, 0.07325676828622818, 0.06233571842312813, 0.17398419976234436, 0.15195775032043457, 0.08499039709568024, 0.04273584485054016, 0.005867991596460342, -0.0009905737824738026, 0.0336754284799099, -0.0764746442437172, 0.12830115854740143, 0.03082391247153282, 0.00527101568877697, -0.05037786066532135, 0.1883257031440735, -0.0737934559583664, 0.06406339257955551, -0.030842972919344902, -0.020866332575678825, -0.1711566001176834, -0.049498122185468674, -0.14923113584518433, -0.09141600877046585, 0.027058059349656105, -0.12802666425704956, 0.05841377377510071, 0.019409706816077232, 0.04665469005703926, -0.008936517871916294, -0.006476255599409342, -0.050457704812288284, -0.09723460674285889, 0.05529160797595978, -0.04792512580752373, 0.019762173295021057, 0.04538270831108093, 0.06410156190395355, 0.07408928871154785, -0.047130804508924484, 0.01414564810693264, 0.028136005625128746, 0.06481160968542099, 0.009470847435295582, -0.06256461143493652, -0.06847900152206421, -0.06578517705202103, 0.033467430621385574, -0.024656839668750763, 0.22056607902050018, 0.013055575080215931, -0.01264384388923645, 0.06381291151046753, 0.21367919445037842, -0.04872626066207886, -0.06930644065141678, -0.1485082060098648, 0.1980193853378296, 0.15144619345664978, 0.08764538168907166, 0.03820674866437912, -0.06933271884918213, 0.026682576164603233, 0.18492251634597778, 0.1340387761592865, -0.007880729623138905, 0.023804476484656334, -0.018361181020736694, 0.03558989614248276, 0.09690959006547928, 0.02107314206659794, 0.10930437594652176, 0.05240524560213089, -0.032841552048921585, -0.023784639313817024, -0.055601540952920914, 0.018610604107379913, -0.025066105648875237, 0.04862023517489433, 0.02398049831390381, -0.06971270591020584, -0.025840839371085167, 0.06883184611797333, -0.012174424715340137, -0.13137932121753693, -0.11168961971998215, -0.08624659478664398, -0.043516356498003006, -0.08095790445804596, -0.005445670802146196, -0.013326466083526611, 0.025171175599098206, -0.023461267352104187, 0.012582275085151196, 0.17333047091960907, 0.015787437558174133, -0.12702631950378418, -0.015766536816954613, 0.0650312751531601, 0.03193167597055435, 0.021791689097881317, 0.013054382987320423, 0.04315829649567604, 0.09023737162351608, -0.020757803693413734, -0.09282397478818893, 0.14627477526664734, -0.04008578136563301, -0.07756438851356506, 0.08447114378213882, 0.0845184400677681, -0.08552411943674088, -0.012365051545202732, -0.021687831729650497, -0.057887159287929535, 0.00638006255030632, 0.15244551002979279, -0.08401013165712357, -0.05676671117544174, 0.07801997661590576, -0.06804817169904709, 0.056845348328351974, 0.1289490908384323, -0.018682584166526794, 0.06493799388408661, -0.09018433839082718, 0.08555905520915985, 0.03303436562418938, -0.0795849934220314, -0.0436580628156662, -0.04501558467745781, -0.01944781094789505, -0.03210459277033806, 0.012391178868710995, -0.285244882106781, -0.03356286883354187, -0.09065340459346771, -0.04310629889369011, -0.11376199126243591, 0.09304488450288773, 0.05264732614159584, 0.010246695019304752, -0.03060757927596569, -0.2477254867553711, 0.04534369707107544, 0.04026905819773674, -0.09168530255556107, -0.09007325768470764 ]
null
null
null
It's a sentiment inference model base on bert.
{}
null
LzLzLz/Bert
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
It's a sentiment inference model base on bert.
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
transformers
<br /> <p align="center"> <h1 align="center">M-BERT Base 69</h1> <p align="center"> <a href="https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/M-BERT%20Base%2069">Github Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the [Multilingual-CLIP Github](https://github.com/FreddeFrallan/Multilingual-CLIP). Once this is done, you can load and use the model with the following code ```python from src import multilingual_clip model = multilingual_clip.load_model('M-BERT-Base-40') embeddings = model(['Älgen är skogens konung!', 'Wie leben Eisbären in der Antarktis?', 'Вы знали, что все белые медведи левши?']) print(embeddings.shape) # Yields: torch.Size([3, 640]) ``` <!-- ABOUT THE PROJECT --> ## About A [BERT-base-multilingual](https://huggingface.co/bert-base-multilingual-cased) tuned to match the embedding space for [69 languages](https://github.com/FreddeFrallan/Multilingual-CLIP/blob/main/Model%20Cards/M-BERT%20Base%2069/Fine-Tune-Languages.md), to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> A full list of the 100 languages used during pre-training can be found [here](https://github.com/google-research/bert/blob/master/multilingual.md#list-of-languages), and a list of the 4069languages used during fine-tuning can be found in [SupportedLanguages.md](https://github.com/FreddeFrallan/Multilingual-CLIP/blob/main/Model%20Cards/M-BERT%20Base%2069/Fine-Tune-Languages.md). Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of [GCC](https://ai.google.com/research/ConceptualCaptions/) + [MSCOCO](https://cocodataset.org/#home) + [VizWiz](https://vizwiz.org/tasks-and-datasets/image-captioning/), and translating them into the corresponding language. All translation was done using the [AWS translate service](https://aws.amazon.com/translate/), the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages.
{}
feature-extraction
M-CLIP/M-BERT-Base-69
[ "transformers", "pytorch", "jax", "bert", "feature-extraction", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #jax #bert #feature-extraction #endpoints_compatible #region-us
<br /> <p align="center"> <h1 align="center">M-BERT Base 69</h1> <p align="center"> <a href="URL Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github. Once this is done, you can load and use the model with the following code ## About A BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> A full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL. Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language. All translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages.
[ "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ "TAGS\n#transformers #pytorch #jax #bert #feature-extraction #endpoints_compatible #region-us \n", "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ 32, 56, 183 ]
[ "passage: TAGS\n#transformers #pytorch #jax #bert #feature-extraction #endpoints_compatible #region-us \n## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ -0.09527387470006943, 0.04726551100611687, -0.0010235642548650503, 0.045277275145053864, 0.14770174026489258, 0.03014260157942772, 0.014703736640512943, 0.047357235103845596, -0.03018890880048275, -0.002154869493097067, 0.024333609268069267, 0.05056629329919815, 0.09596769511699677, 0.08806532621383667, 0.019156435504555702, -0.26199257373809814, 0.020034467801451683, 0.01400721538811922, -0.037490662187337875, 0.07458660006523132, 0.04672224074602127, -0.08350595831871033, 0.09345913678407669, 0.03822251781821251, -0.08376093953847885, 0.043224308639764786, -0.03828411549329758, -0.09641319513320923, 0.0653369203209877, 0.12010550498962402, 0.13130652904510498, -0.03354645147919655, 0.08287515491247177, -0.15326687693595886, 0.0005062667187303305, 0.0643676295876503, 0.009324340149760246, 0.0019297398393973708, 0.14565564692020416, 0.014675219543278217, -0.05688856914639473, -0.02436305768787861, 0.014989426359534264, 0.05775570496916771, -0.07572566717863083, -0.06961897015571594, -0.06253432482481003, -0.10617589950561523, 0.09842286258935928, 0.10214610397815704, -0.01089997123926878, 0.0966816395521164, -0.07260101288557053, 0.07319702208042145, 0.0987037867307663, -0.2255232036113739, 0.009381704032421112, 0.04639066010713577, 0.08576951175928116, 0.11241202056407928, -0.07963009178638458, 0.028691718354821205, 0.028994228690862656, 0.02552826888859272, -0.06825093924999237, -0.07477690279483795, -0.0025396959390491247, -0.08434522151947021, -0.14345373213291168, -0.033238861709833145, 0.12157411128282547, -0.03889264166355133, -0.08235543221235275, -0.04137604311108589, -0.0537315309047699, 0.0010061670327559114, -0.019773555919528008, 0.028813254088163376, 0.030747171491384506, 0.022720586508512497, 0.02448660135269165, -0.0764436349272728, -0.10083246976137161, -0.05300936847925186, -0.0812375620007515, 0.1794096827507019, 0.053264740854501724, 0.04313681274652481, -0.053592391312122345, 0.0893007442355156, -0.03098580427467823, -0.035000573843717575, -0.0570659376680851, -0.0682329535484314, -0.06467482447624207, 0.042387694120407104, -0.0832560732960701, -0.13879789412021637, -0.041714493185281754, 0.009156632237136364, -0.04519972950220108, 0.09993557631969452, -0.055680692195892334, 0.03757737949490547, 0.0329902321100235, 0.20622600615024567, -0.034722015261650085, 0.023931367322802544, -0.011821514926850796, -0.1366274058818817, -0.04604828730225563, -0.026562556624412537, -0.12832745909690857, -0.06971323490142822, -0.10638479888439178, 0.0840483158826828, -0.09824256598949432, 0.050960756838321686, -0.006066531408578157, -0.06494512408971786, 0.04995360225439072, -0.11840637773275375, 0.06590915471315384, 0.02052113227546215, 0.002585813868790865, 0.10757055878639221, 0.05152980983257294, -0.011677149683237076, -0.18284820020198822, 0.010572684928774834, -0.03836391866207123, 0.03554077446460724, -0.12024465948343277, -0.1407582312822342, 0.010820367373526096, -0.032276686280965805, -0.00578303774818778, -0.1020817756652832, -0.05882306024432182, -0.027063190937042236, -0.013370067812502384, 0.012999363243579865, 0.11506803333759308, -0.05869370698928833, 0.06134822219610214, 0.011584311723709106, 0.012036477215588093, -0.006585520226508379, -0.019162191078066826, -0.0007389343809336424, -0.03334961459040642, 0.05106452479958534, -0.08757776767015457, 0.03329836577177048, -0.09061886370182037, -0.011696637608110905, -0.04590051621198654, 0.18048475682735443, -0.05198875442147255, -0.013762326911091805, -0.062421150505542755, -0.07323048263788223, -0.00425037182867527, 0.03624521568417549, 0.0026011501904577017, 0.09742698073387146, -0.18289662897586823, -0.04758603498339653, 0.2525874972343445, -0.08992574363946915, 0.02063528634607792, 0.07294867187738419, -0.026637917384505272, -0.09348265826702118, 0.08784015476703644, 0.12962055206298828, 0.1115376427769661, -0.054150938987731934, 0.045513324439525604, 0.00920688547194004, 0.04252222925424576, 0.011371688917279243, 0.08764825761318207, -0.05522610619664192, -0.007097157649695873, 0.012004607357084751, -0.11370899528265, 0.07352977246046066, 0.012355618178844452, -0.041412632912397385, 0.013955487869679928, 0.004599431995302439, -0.021700600162148476, 0.009353586472570896, 0.0812111422419548, -0.012384193018078804, -0.03172937035560608, -0.04280208796262741, 0.055831074714660645, -0.1544438600540161, 0.06185954436659813, -0.05081349238753319, -0.01185365580022335, -0.058909982442855835, 0.03767187520861626, -0.09862732142210007, -0.05321194604039192, 0.07256290316581726, 0.02143102139234543, 0.06013750657439232, 0.02063218504190445, 0.02522340603172779, 0.11509145051240921, 0.0023212293162941933, -0.010328141041100025, 0.011253063566982746, -0.0403534434735775, -0.04561411961913109, -0.05510454624891281, -0.03542559966444969, -0.0483291856944561, -0.06357484310865402, -0.08225251734256744, -0.028206946328282356, 0.054503802210092545, 0.060353439301252365, -0.004701949190348387, -0.05153842642903328, 0.007241945248097181, 0.06878244876861572, -0.04248899221420288, -0.05233120545744896, -0.006038309540599585, -0.04398848116397858, -0.07110242545604706, 0.17899586260318756, -0.07919768244028091, -0.07131477445363998, 0.13140329718589783, -0.09837023913860321, 0.014246221631765366, -0.08883261680603027, 0.03855555132031441, 0.0012656465405598283, -0.04169495403766632, -0.0006402019644156098, 0.2760547697544098, 0.02375410497188568, 0.1489991694688797, -0.1064593493938446, 0.03702016547322273, 0.001442226697690785, -0.05270873010158539, -0.042098820209503174, 0.044027671217918396, 0.03608012944459915, -0.17556194961071014, 0.0890004113316536, 0.08455291390419006, -0.019103478640317917, 0.16426044702529907, 0.005314776208251715, -0.0829928070306778, 0.04230716824531555, 0.013978132046759129, 0.001290320185944438, -0.001662978669628501, -0.06963171809911728, -0.03198637440800667, 0.022328460589051247, 0.07441122829914093, 0.02469656616449356, -0.13369785249233246, 0.05251630023121834, 0.056142281740903854, -0.041837770491838455, -0.03532106801867485, -0.05020738020539284, -0.0241401307284832, -0.018709978088736534, 0.0013902720529586077, 0.08149267733097076, -0.0022018789313733578, -0.04124755784869194, -0.08336485922336578, 0.21963223814964294, -0.18695758283138275, -0.27434343099594116, -0.21323262155056, -0.0850396379828453, -0.0379294790327549, 0.06034894660115242, 0.03407555818557739, -0.15311269462108612, -0.08492491394281387, -0.019394267350435257, 0.07952667772769928, -0.12745466828346252, -0.03071274235844612, -0.0008537851390428841, -0.02446366474032402, -0.0725761130452156, -0.1146557405591011, 0.02282794937491417, 0.004982848186045885, -0.08947934955358505, -0.002104175975546241, -0.09615489095449448, 0.08642230182886124, 0.12443434447050095, -0.05060243234038353, 0.01497613824903965, -0.03406934812664986, 0.1579054743051529, -0.1075170561671257, -0.05924195051193237, 0.05282120406627655, -0.03839852660894394, 0.047923795878887177, 0.010402635671198368, 0.04363519698381424, -0.06543030589818954, -0.01286336313933134, -0.021927129477262497, -0.06745156645774841, -0.20857839286327362, -0.11899428069591522, -0.08377539366483688, -0.08630301058292389, 0.07738807797431946, 0.006616741884499788, -0.0869058147072792, 0.06849963217973709, -0.06032280996441841, 0.0528353787958622, 0.014200620353221893, 0.05756089836359024, 0.08563414216041565, -0.015812240540981293, 0.06442044675350189, -0.02174602821469307, -0.0025332816876471043, 0.07452273368835449, 0.16031447052955627, 0.19220806658267975, 0.02176138199865818, 0.19980201125144958, 0.006315181031823158, 0.09840741753578186, 0.10552909970283508, 0.13893131911754608, -0.04339360445737839, 0.028902240097522736, -0.025896994397044182, -0.04241437464952469, -0.05047076940536499, 0.039733048528432846, 0.07648332417011261, -0.0982675850391388, -0.07299550622701645, -0.10455343127250671, 0.010247788392007351, 0.10349719226360321, -0.01267593540251255, -0.1922137588262558, 0.014708143658936024, 0.03176116570830345, -0.034808531403541565, -0.09102325141429901, 0.07177853584289551, 0.07579939067363739, -0.12115930765867233, 0.08393976837396622, -0.028665553778409958, 0.13777513802051544, -0.14238907396793365, -0.045174144208431244, -0.060233939439058304, -0.0027878456749022007, -0.0015609475085511804, 0.12677201628684998, -0.17821986973285675, 0.058478936553001404, 0.03239784762263298, 0.04940412938594818, -0.07929655909538269, 0.028875570744276047, -0.007826036773622036, 0.11729715764522552, 0.08870511502027512, 0.03158773481845856, 0.013136530295014381, -0.15522924065589905, 0.00018812608323059976, 0.03431710973381996, 0.1099659651517868, 0.05288152024149895, 0.043952252715826035, 0.016508007422089577, 0.007091013249009848, -0.05347278714179993, -0.046004559844732285, -0.05558786913752556, -0.21149779856204987, 0.04348461702466011, 0.03060668706893921, 0.13163238763809204, -0.008083315566182137, -0.039256952702999115, -0.042711637914180756, 0.1215653195977211, -0.17003314197063446, -0.0787455141544342, -0.10930954664945602, -0.006578393746167421, 0.11794397234916687, -0.08670894056558609, 0.12143044918775558, -0.0394289493560791, 0.11428429186344147, -0.04089006409049034, -0.11179482936859131, 0.035994645208120346, -0.11490685492753983, -0.04523925483226776, -0.031457480043172836, 0.05548877269029617, 0.02433268167078495, -0.015673941001296043, 0.05408158153295517, -0.017870834097266197, -0.034478068351745605, -0.11570768803358078, -0.0682729110121727, 0.09994757175445557, 0.05974143370985985, 0.10668602585792542, -0.07040081173181534, -0.04564592242240906, -0.08572155237197876, -0.02181347832083702, 0.20091265439987183, 0.010239514522254467, -0.04572880268096924, 0.05284024029970169, 0.1823197305202484, -0.10588458180427551, -0.2014981210231781, -0.042685091495513916, 0.08623385429382324, 0.09233631938695908, -0.08438906818628311, -0.19625553488731384, 0.011188896372914314, 0.043461017310619354, 0.029006460681557655, 0.03447207063436508, -0.20172186195850372, -0.07375628501176834, 0.08620254695415497, 0.08803273737430573, 0.11892113834619522, -0.09264607727527618, -0.05461973696947098, -0.04834418371319771, -0.00828646495938301, 0.13649532198905945, 0.02472466602921486, 0.12213490158319473, 0.03802511468529701, 0.040685441344976425, 0.01567711867392063, -0.029770774766802788, 0.11472183465957642, -0.02590913325548172, -0.02442285604774952, -0.025609329342842102, 0.06357723474502563, 0.002569929463788867, 0.027622830122709274, 0.035214509814977646, 0.006473539862781763, 0.03717527538537979, -0.05401292443275452, -0.0711311399936676, -0.044208742678165436, 0.015751874074339867, 0.01654789410531521, -0.04582494869828224, -0.03385531157255173, -0.008348275907337666, 0.0412246510386467, 0.016651250422000885, 0.09405503422021866, -0.035584330558776855, -0.113143689930439, 0.12214545905590057, 0.12797078490257263, -0.024183738976716995, -0.10343373566865921, -0.018988674506545067, -0.010906114242970943, 0.14733237028121948, -0.04091993346810341, 0.0646088719367981, 0.07395854592323303, -0.01125433947890997, 0.07428155094385147, 0.06618748605251312, -0.10407029092311859, 0.05286581441760063, 0.04497320204973221, -0.02282565087080002, -0.10740664601325989, -0.033014003187417984, 0.020955892279744148, 0.06577964127063751, 0.07214770466089249, 0.14501257240772247, -0.02278108336031437, -0.04895710200071335, -0.025585515424609184, 0.011641849763691425, -0.035000331699848175, 0.19138222932815552, 0.018395274877548218, -0.024254824966192245, -0.1383059173822403, 0.09804940223693848, 0.06190649792551994, -0.1263790875673294, 0.015764163807034492, 0.14984703063964844, -0.1329071968793869, -0.06303494423627853, -0.028407331556081772, 0.06251492351293564, -0.1333552449941635, -0.08710723370313644, 0.02417091652750969, -0.041532374918460846, 0.015558548271656036, 0.038492899388074875, 0.03321826085448265, 0.027187496423721313, -0.09874093532562256, -0.03793112561106682, -0.017981261014938354, -0.018276747316122055, 0.008283309638500214, 0.05028405413031578, -0.10113604366779327, 0.0661448985338211, 0.03625301271677017, 0.07777178287506104, -0.028361210599541664, -0.05581042543053627, -0.0859835222363472, 0.05785978585481644, -0.03331569582223892, 0.05055136978626251, -0.04596802964806557, 0.012028378434479237, -0.016355909407138824, -0.018359962850809097, 0.034847430884838104, 0.06056223809719086, -0.07184478640556335, -0.017843030393123627, -0.07798062264919281, 0.05383501946926117, -0.04419701173901558, 0.01632407307624817, 0.036960892379283905, -0.015510096214711666, 0.05054651200771332, 0.039450518786907196, -0.04910997673869133, 0.07913249731063843, -0.13465726375579834, -0.04603393375873566, 0.08467602729797363, 0.05463726818561554, 0.01967964507639408, 0.061455000191926956, 0.035406291484832764, 0.05457194149494171, 0.04680373892188072, -0.04582275077700615, 0.14354512095451355, -0.10361383110284805, -0.07689326256513596, 0.0031043195631355047, -0.07296030968427658, -0.04903392121195793, 0.08863114565610886, 0.04879092425107956, 0.0827476978302002, 0.09316422045230865, -0.00923341978341341, 0.12086968123912811, -0.00024609154206700623, -0.012789362110197544, 0.014466548338532448, -0.04561440274119377, 0.010635975748300552, -0.09751367568969727, 0.04479043930768967, 0.02986312285065651, 0.16646966338157654, 0.02875218540430069, 0.13590340316295624, -0.05558469146490097, 0.009380104020237923, 0.013887554407119751, 0.03904122859239578, 0.24299004673957825, 0.043082721531391144, -0.0010283017763867974, -0.022985240444540977, 0.06210390850901604, 0.010354148223996162, 0.06844811886548996, -0.0776282474398613, 0.06212426722049713, 0.029743384569883347, 0.13247767090797424, -0.024735603481531143, -0.03626784309744835, -0.11341430246829987, -0.11437701433897018, 0.004724700003862381, 0.05037728324532509, -0.05098086968064308, 0.09044092148542404, 0.058195944875478745, -0.14843995869159698, 0.07852795720100403, 0.10421206057071686, -0.10959318280220032, -0.10167078673839569, -0.09536469727754593, -0.03274458646774292, -0.12630178034305573, 0.026828480884432793, -0.1247720867395401, 0.09356892108917236, 0.01187814213335514, 0.07637474685907364, -0.01802326925098896, 0.20254383981227875, -0.023335250094532967, -0.2028188556432724, 0.014350824058055878, 0.023835649713873863, 0.12704229354858398, 0.0667349100112915, -0.029574742540717125, 0.020778793841600418, -0.04259190708398819, 0.05051157996058464, 0.02574175037443638, 0.02488887310028076, 0.05805088207125664, -0.026461057364940643, -0.010247108526527882, -0.028337573632597923, 0.00651001138612628, 0.03756650537252426, 0.20633207261562347, 0.009644166566431522, -0.06547713279724121, -0.018954971805214882, 0.0611666738986969, -0.06553532928228378, 0.0015684461686760187, -0.07808204740285873, 0.15938571095466614, 0.07312246412038803, 0.07827012985944748, -0.033975377678871155, -0.07891421765089035, -0.03015276975929737, 0.2777214050292969, 0.11850762367248535, -0.006366646382957697, -0.01984337903559208, 0.07054794579744339, 0.010793543420732021, 0.06487920880317688, 0.13948482275009155, 0.00327916513197124, 0.2128336876630783, -0.04505099728703499, 0.04032013192772865, 0.008255488239228725, -0.03594190999865532, -0.0899607464671135, 0.05282080918550491, -0.07472644001245499, -0.060614585876464844, -0.060175348073244095, 0.0891898050904274, 0.003365225624293089, -0.08984500914812088, 0.09975079447031021, -0.02405581623315811, -0.029280364513397217, -0.01643444038927555, 0.049360863864421844, 0.004218132700771093, 0.03448950871825218, 0.016659753397107124, 0.010826832614839077, 0.10016202181577682, 0.04642123356461525, -0.12983301281929016, -0.08871698379516602, 0.016749396920204163, -0.11369220912456512, 0.10838321596384048, 0.01007657591253519, 0.07476846873760223, 0.02190343476831913, 0.124434694647789, -0.00122083502355963, 0.03228236734867096, -0.020716451108455658, -0.029604852199554443, 0.0427212193608284, 0.08244697004556656, -0.06378009170293808, 0.04833424463868141, -0.05465913563966751, -0.18050433695316315, 0.08898171037435532, 0.001974851358681917, -0.0011645787162706256, -0.02554958686232567, 0.026070687919855118, -0.12537817656993866, 0.1309008002281189, 0.1552332639694214, 0.036732472479343414, -0.040029142051935196, -0.05224006250500679, 0.0429377444088459, -0.0010100738145411015, -0.0045679002068936825, -0.04734428599476814, -0.13539069890975952, -0.08122497797012329, -0.010182586498558521, 0.051210131496191025, -0.109352707862854, 0.024608798325061798, 0.0077102212235331535, -0.013430928811430931, -0.044634319841861725, 0.09670773148536682, 0.04703240096569061, -0.02842826209962368, -0.013810118660330772, -0.1880398839712143, 0.07323800027370453, 0.010375326499342918, -0.12559020519256592, -0.07527777552604675 ]
null
null
transformers
<br /> <p align="center"> <h1 align="center">M-BERT Base ViT-B</h1> <p align="center"> <a href="https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/M-BERT%20Base%20ViT-B">Github Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the [Multilingual-CLIP Github](https://github.com/FreddeFrallan/Multilingual-CLIP). Once this is done, you can load and use the model with the following code ```python from src import multilingual_clip model = multilingual_clip.load_model('M-BERT-Base-ViT') embeddings = model(['Älgen är skogens konung!', 'Wie leben Eisbären in der Antarktis?', 'Вы знали, что все белые медведи левши?']) print(embeddings.shape) # Yields: torch.Size([3, 640]) ``` <!-- ABOUT THE PROJECT --> ## About A [BERT-base-multilingual](https://huggingface.co/bert-base-multilingual-cased) tuned to match the embedding space for [69 languages](https://github.com/FreddeFrallan/Multilingual-CLIP/blob/main/Model%20Cards/M-BERT%20Base%2069/Fine-Tune-Languages.md), to the embedding space of the CLIP text encoder which accompanies the ViT-B/32 vision encoder. <br> A full list of the 100 languages used during pre-training can be found [here](https://github.com/google-research/bert/blob/master/multilingual.md#list-of-languages), and a list of the 4069languages used during fine-tuning can be found in [SupportedLanguages.md](https://github.com/FreddeFrallan/Multilingual-CLIP/blob/main/Model%20Cards/M-BERT%20Base%2069/Fine-Tune-Languages.md). Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of [GCC](https://ai.google.com/research/ConceptualCaptions/) + [MSCOCO](https://cocodataset.org/#home) + [VizWiz](https://vizwiz.org/tasks-and-datasets/image-captioning/), and translating them into the corresponding language. All translation was done using the [AWS translate service](https://aws.amazon.com/translate/), the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages.
{}
feature-extraction
M-CLIP/M-BERT-Base-ViT-B
[ "transformers", "pytorch", "tf", "jax", "bert", "feature-extraction", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tf #jax #bert #feature-extraction #endpoints_compatible #region-us
<br /> <p align="center"> <h1 align="center">M-BERT Base ViT-B</h1> <p align="center"> <a href="URL Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github. Once this is done, you can load and use the model with the following code ## About A BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the ViT-B/32 vision encoder. <br> A full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL. Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language. All translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages.
[ "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the ViT-B/32 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ "TAGS\n#transformers #pytorch #tf #jax #bert #feature-extraction #endpoints_compatible #region-us \n", "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the ViT-B/32 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ 35, 56, 185 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #bert #feature-extraction #endpoints_compatible #region-us \n## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code## About\nA BERT-base-multilingual tuned to match the embedding space for 69 languages, to the embedding space of the CLIP text encoder which accompanies the ViT-B/32 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 4069languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 69 languages." ]
[ -0.062047816812992096, 0.03995594009757042, -0.0009508630610071123, 0.05661045014858246, 0.0912938341498375, 0.028777848929166794, 0.004738801624625921, 0.03142733499407768, -0.05618669092655182, 0.0088788578286767, 0.015251548029482365, 0.016529612243175507, 0.12243961542844772, 0.08583509922027588, -0.0021986307110637426, -0.25253817439079285, 0.03757142275571823, 0.020704573020339012, -0.0647755041718483, 0.06418535113334656, 0.07015766948461533, -0.08471575379371643, 0.09541892260313034, 0.05873675271868706, -0.06832420080900192, 0.0358625203371048, -0.023470383137464523, -0.10476227104663849, 0.07395824790000916, 0.15556561946868896, 0.11348705738782883, 0.005186392460018396, 0.08583848178386688, -0.11168725043535233, 0.006559551227837801, 0.07379839569330215, 0.009275964461266994, 0.009427791461348534, 0.16392694413661957, 0.03721443936228752, -0.030300429090857506, -0.004729546140879393, 0.029841691255569458, 0.044806916266679764, -0.06347329169511795, -0.05558576434850693, -0.07543369382619858, -0.09890853613615036, 0.06893439590930939, 0.06989690661430359, -0.008997691795229912, 0.1320553719997406, -0.08729840070009232, 0.07224874198436737, 0.11061868816614151, -0.2116420716047287, 0.010600501671433449, 0.06944935768842697, 0.07458611577749252, 0.11940743774175644, -0.08627202361822128, 0.029601721093058586, 0.045669324696063995, 0.0002500387199688703, -0.03173286095261574, -0.04959646239876747, -0.00546139944344759, -0.048855893313884735, -0.1439112275838852, -0.026574239134788513, 0.12316252291202545, -0.016756638884544373, -0.07443828135728836, -0.05099550634622574, -0.05209069699048996, 0.04750056937336922, 0.00029942658147774637, 0.024377351626753807, 0.013734192587435246, 0.03079872950911522, 0.01867622695863247, -0.0784241184592247, -0.09967321902513504, -0.05637122318148613, -0.097237229347229, 0.1356932669878006, 0.042365025728940964, 0.054597560316324234, -0.055549170821905136, 0.1042361631989479, -0.06981711834669113, -0.05846548080444336, -0.06586121022701263, -0.06986604630947113, -0.09279078245162964, 0.0141523452475667, -0.07379614561796188, -0.1501590758562088, -0.04747699201107025, -0.0009692699532024562, 0.0023660315200686455, 0.07910682260990143, -0.11022891849279404, -0.009735163301229477, 0.06361500918865204, 0.20847077667713165, -0.06686989963054657, 0.04284580424427986, -0.006427079904824495, -0.13359467685222626, -0.0752193033695221, -0.0422755628824234, -0.10304094851016998, -0.10925281047821045, -0.09643115848302841, 0.06482750177383423, -0.06958457082509995, 0.07146206498146057, 0.0023686534259468317, -0.07471566647291183, 0.061666060239076614, -0.12613840401172638, 0.06508562713861465, 0.025489632040262222, -0.008820160292088985, 0.08607175946235657, 0.01964479312300682, -0.007644804194569588, -0.1808174103498459, 0.0015543660847470164, -0.06192780286073685, -0.006194434594362974, -0.0823235958814621, -0.14030830562114716, 0.016072744503617287, 0.010195321403443813, -0.02156931534409523, -0.07350541651248932, -0.028809329494833946, 0.009293023496866226, -0.016537487506866455, -0.018185751512646675, 0.11744904518127441, -0.015671487897634506, 0.06405087560415268, 0.014556830748915672, -0.00018267094856128097, 0.0027836235240101814, -0.03390146419405937, 0.0056274826638400555, -0.031409621238708496, 0.027563735842704773, -0.05668077990412712, 0.02111371047794819, -0.050112415105104446, -0.011906526982784271, -0.04597852751612663, 0.17759697139263153, -0.08332986384630203, -0.055402930825948715, -0.0594819039106369, -0.08651182800531387, -0.001080992049537599, -0.02086120843887329, -0.027249421924352646, 0.08256720751523972, -0.1559819132089615, -0.039577651768922806, 0.22910943627357483, -0.08061189204454422, 0.019327227026224136, 0.07762905210256577, -0.04535521939396858, -0.15531839430332184, 0.1058628186583519, 0.10211300849914551, 0.15208707749843597, -0.10839951038360596, 0.04527886211872101, 0.04100702330470085, 0.055290013551712036, 0.09274764358997345, 0.1131846234202385, -0.03096722438931465, -0.037744197994470596, 0.006075669080018997, -0.1607985645532608, 0.07153432071208954, 0.0213608555495739, -0.028573693707585335, -0.005592033267021179, 0.029874252155423164, -0.008232268504798412, -0.0385051891207695, 0.04360649362206459, -0.0062243761494755745, -0.034812718629837036, -0.03660547360777855, 0.07291051000356674, -0.1449558585882187, 0.042487312108278275, -0.06861972063779831, -0.003242894308641553, -0.044664058834314346, 0.022184696048498154, -0.06932508945465088, -0.06924600899219513, 0.09543928503990173, -0.00006909918010933325, 0.07136117666959763, 0.08741293847560883, 0.014258931390941143, 0.11774823069572449, -0.008331450633704662, 0.02908421866595745, -0.013581089675426483, -0.03084491565823555, -0.007326492574065924, -0.06023509427905083, -0.03691159933805466, -0.03332427889108658, -0.0646647959947586, -0.05832162871956825, -0.05117856338620186, 0.13291038572788239, 0.1040038913488388, 0.013995113782584667, -0.06176280602812767, 0.003051145700737834, 0.0077724093571305275, -0.060006871819496155, -0.07382308691740036, -0.07794667035341263, -0.036445774137973785, -0.08504455536603928, 0.1936388462781906, -0.08490893989801407, -0.02035290189087391, 0.13015250861644745, -0.0323508195579052, 0.02438073232769966, -0.10801374912261963, 0.03390182927250862, 0.015431336127221584, -0.03885788843035698, -0.02617487497627735, 0.2517198324203491, 0.012325620278716087, 0.15057514607906342, -0.1585194170475006, 0.01028961781412363, 0.007147200871258974, -0.023688307031989098, -0.06853250414133072, 0.017566364258527756, 0.02579198032617569, -0.1620662659406662, 0.07288370281457901, 0.06923113763332367, 0.04406411945819855, 0.15485115349292755, -0.004167272709310055, -0.09361415356397629, 0.02238611876964569, 0.02371487207710743, 0.005797136574983597, 0.0029956097714602947, -0.08104322105646133, 0.002763205673545599, 0.04194390028715134, 0.07868942618370056, 0.008447283878922462, -0.12725526094436646, 0.05583342909812927, 0.08344951272010803, -0.0682474672794342, -0.037281475961208344, -0.0535251721739769, -0.01439108420163393, 0.009009022265672684, 0.044358763843774796, 0.09636858850717545, -0.02255735546350479, -0.03819504752755165, -0.0727967768907547, 0.21001695096492767, -0.2030789703130722, -0.28590601682662964, -0.21424931287765503, -0.09270857274532318, -0.05956374108791351, 0.09181533753871918, -0.009630904532968998, -0.14286312460899353, -0.11534550040960312, -0.04201345518231392, 0.13533926010131836, -0.13980458676815033, -0.0013404418714344501, 0.032435059547424316, -0.01988559402525425, -0.06216103583574295, -0.14687269926071167, 0.027283992618322372, 0.048081785440444946, -0.07516535371541977, -0.02655341476202011, -0.1016392931342125, 0.06115584075450897, 0.1382887214422226, -0.06114253029227257, 0.013870538212358952, -0.03164511173963547, 0.2112513780593872, -0.11684761196374893, -0.032660845667123795, 0.0717516839504242, -0.0328328013420105, 0.04642476513981819, 0.031239381060004234, 0.041452016681432724, -0.06657881289720535, 0.00023337302263826132, -0.021458091214299202, -0.03449995815753937, -0.19969628751277924, -0.10145211219787598, -0.08376777172088623, -0.08595661073923111, 0.07458636909723282, 0.0069563379511237144, -0.059028808027505875, 0.06074834242463112, -0.10727688670158386, 0.06728417426347733, 0.07049022614955902, 0.04840167984366417, 0.11831004917621613, -0.025641221553087234, 0.05030366778373718, -0.018713034689426422, -0.00610782764852047, 0.11187779158353806, 0.15654471516609192, 0.15316535532474518, -0.0006692366441711783, 0.21683602035045624, -0.003325840225443244, 0.10483361035585403, 0.09363796561956406, 0.10884394496679306, -0.044646166265010834, 0.027252329513430595, -0.019012661650776863, -0.06022972613573074, -0.027694573625922203, 0.0343778133392334, 0.06943441182374954, -0.09781631827354431, -0.04882662743330002, -0.1530284434556961, -0.014331466518342495, 0.05312369018793106, -0.0008845099364407361, -0.18272759020328522, 0.0068328711204230785, 0.03877926990389824, -0.05929294601082802, -0.10687630623579025, 0.048064861446619034, 0.09218228608369827, -0.11491380631923676, 0.09449487179517746, -0.02360227331519127, 0.13267382979393005, -0.11684459447860718, -0.04595592990517616, -0.07904306799173355, -0.012263095937669277, -0.03186909481883049, 0.13831926882266998, -0.14149516820907593, 0.04752355441451073, 0.04489700496196747, 0.011215255595743656, -0.099326491355896, 0.05019306018948555, -0.02035355754196644, 0.13654212653636932, 0.06536591053009033, 0.02423098497092724, 0.0606369748711586, -0.14994056522846222, 0.0214249175041914, 0.028799181804060936, 0.1299218088388443, 0.033539753407239914, 0.045135028660297394, -0.016887463629245758, 0.017292000353336334, -0.03038475662469864, -0.06457146257162094, -0.0730295181274414, -0.2074253112077713, 0.07046821713447571, 0.0015254622558131814, 0.12345052510499954, -0.03858797252178192, -0.03493744507431984, -0.05973101034760475, 0.12370723485946655, -0.1558399349451065, -0.05908757075667381, -0.13185612857341766, 0.029466401785612106, 0.15865641832351685, -0.0877900943160057, 0.11867944151163101, -0.06265465170145035, 0.19207705557346344, -0.014605679549276829, -0.14458736777305603, -0.014420315623283386, -0.08457981050014496, -0.07570566982030869, -0.02820170484483242, 0.0503077432513237, 0.01792304962873459, -0.01431186217814684, 0.06108560785651207, -0.026175927370786667, -0.03269047662615776, -0.11494653671979904, -0.101840078830719, 0.07631794363260269, 0.053328514099121094, 0.10015955567359924, -0.011514296755194664, -0.06874525547027588, -0.07031991332769394, -0.0016890913248062134, 0.11186383664608002, 0.005474088713526726, -0.03796607255935669, 0.08014946430921555, 0.1444704234600067, -0.06868470460176468, -0.17358841001987457, -0.006497733294963837, 0.10264596343040466, 0.08508133143186569, -0.07200507074594498, -0.1733618527650833, 0.01816941797733307, 0.03814493119716644, 0.020090093836188316, -0.006542029324918985, -0.2217208296060562, -0.07303992658853531, 0.051114827394485474, 0.08171658217906952, 0.015465296804904938, -0.050883665680885315, -0.056558940559625626, -0.05811421945691109, -0.06526828557252884, 0.14500103890895844, 0.054639678448438644, 0.10768473893404007, 0.035910096019506454, 0.02019636332988739, 0.020920023322105408, -0.005026236176490784, 0.12278363108634949, -0.038088053464889526, 0.00586811825633049, -0.04190593212842941, 0.08508607000112534, 0.022049084305763245, 0.02470223419368267, 0.047116365283727646, -0.0026962156407535076, 0.07902786135673523, -0.02430649660527706, -0.1015605553984642, -0.03277002274990082, 0.021022548899054527, 0.018498944118618965, -0.06491454690694809, -0.09899568557739258, -0.0050603896379470825, 0.03759326785802841, -0.01816727966070175, 0.06399565190076828, -0.028815381228923798, -0.12114940583705902, 0.09046857059001923, 0.13170519471168518, -0.046067140996456146, -0.08273937553167343, -0.0027881895657628775, 0.009503860026597977, 0.13252489268779755, -0.06227472797036171, 0.08170115202665329, 0.06008637696504593, -0.0013562347739934921, 0.09678187966346741, 0.055302247405052185, -0.12814518809318542, 0.02595539577305317, 0.04386592283844948, -0.03236348554491997, -0.12157493084669113, -0.06186932697892189, 0.005830805748701096, 0.056529704481363297, 0.048044998198747635, 0.14417684078216553, -0.0008704420761205256, -0.04324033111333847, -0.009013114497065544, -0.0138534652069211, -0.00918443500995636, 0.18131619691848755, 0.020869191735982895, -0.022109292447566986, -0.14150935411453247, 0.05921400338411331, 0.07921511679887772, -0.11908526718616486, 0.008232466876506805, 0.09382755309343338, -0.1329842507839203, -0.03803955763578415, 0.003563760546967387, 0.019400060176849365, -0.12833888828754425, -0.0430263951420784, 0.046411074697971344, -0.055150970816612244, 0.020991304889321327, 0.10004252940416336, 0.026836233213543892, 0.09372588992118835, -0.08435943722724915, -0.0238281711935997, 0.0033675231970846653, 0.00562371127307415, -0.00767687289044261, 0.06082986667752266, -0.130228653550148, 0.0766219049692154, 0.016677655279636383, 0.06331469863653183, -0.038988690823316574, -0.049712926149368286, -0.0645408183336258, 0.02375211752951145, -0.04696732014417648, 0.06400176882743835, -0.034217651933431625, 0.02595914714038372, -0.0065354458056390285, -0.04772276431322098, 0.046325188130140305, 0.06896308064460754, -0.059356268495321274, -0.020427387207746506, -0.08910379558801651, 0.07404208928346634, -0.06835578382015228, 0.024117304012179375, 0.08292246609926224, -0.02861485257744789, 0.06383393704891205, 0.013425884768366814, -0.05404515936970711, 0.08423108607530594, -0.16991686820983887, -0.04815784841775894, 0.05778913572430611, 0.08497380465269089, 0.018028242513537407, 0.061720628291368484, 0.06316269934177399, 0.04334605485200882, 0.0353202223777771, -0.045612212270498276, 0.14089247584342957, -0.1087554320693016, -0.13558942079544067, -0.02547570876777172, -0.08684886991977692, -0.03179718554019928, 0.12440097332000732, 0.08771265298128128, 0.04989229515194893, 0.059315480291843414, 0.013366715982556343, 0.08571910858154297, -0.029645739123225212, -0.016816480085253716, 0.010112355463206768, -0.04397051781415939, 0.0029066046699881554, -0.0817473977804184, 0.045014068484306335, 0.031545452773571014, 0.16727975010871887, 0.036728385835886, 0.08850434422492981, -0.03909078985452652, 0.014816406182944775, 0.09033435583114624, 0.04479750990867615, 0.2812540531158447, 0.03770296648144722, 0.002279354725033045, -0.021664578467607498, 0.038436222821474075, -0.0021258406341075897, -0.0015044254250824451, -0.09802969545125961, 0.04772905632853508, -0.03455892577767372, 0.05755903199315071, 0.011729146353900433, -0.0509851798415184, -0.10583208501338959, -0.11489289999008179, -0.032117415219545364, 0.06158508360385895, -0.050530705600976944, 0.05997196212410927, 0.04906189814209938, -0.1682201772928238, 0.08200076967477798, 0.11488048732280731, -0.10752111673355103, -0.09341122955083847, -0.12004784494638443, -0.040911268442869186, -0.14153143763542175, 0.04618849232792854, -0.14624209702014923, 0.11958588659763336, 0.01159390714019537, 0.09195326268672943, -0.02439138852059841, 0.2026073932647705, -0.04756323993206024, -0.22407551109790802, 0.01472205575555563, 0.05957714840769768, 0.0957852378487587, 0.08691023290157318, -0.03270269185304642, 0.05887652561068535, -0.011135621927678585, 0.03817043453454971, 0.01725446991622448, 0.05481420084834099, 0.031335219740867615, -0.020100178197026253, 0.001792760333046317, -0.014325005933642387, -0.033418186008930206, 0.011787657625973225, 0.20247873663902283, -0.008483399637043476, -0.053110960870981216, -0.035292234271764755, 0.07650299370288849, -0.050265077501535416, 0.0017687146319076419, -0.10897054523229599, 0.1436508595943451, 0.03335249051451683, 0.0879199430346489, 0.001103393267840147, -0.07589169591665268, -0.05373430252075195, 0.27110767364501953, 0.06923739612102509, 0.008854659274220467, -0.017436254769563675, 0.07202426344156265, 0.006730033550411463, 0.06887663900852203, 0.16290467977523804, -0.02135576866567135, 0.19692619144916534, -0.011208747513592243, 0.025315117090940475, 0.024973077699542046, -0.012342958711087704, -0.06370096653699875, 0.05693720653653145, -0.09063270688056946, -0.0659196525812149, -0.08072761446237564, 0.08009042590856552, 0.0883985385298729, -0.12491042912006378, 0.096458800137043, 0.0007367057842202485, -0.01604526676237583, -0.00712297298014164, 0.009530534036457539, -0.03808365389704704, 0.012434178031980991, 0.012954050675034523, 0.02364788018167019, 0.08252681791782379, 0.05587314814329147, -0.14012287557125092, -0.07398165762424469, 0.05763624235987663, -0.1043427512049675, 0.12251567095518112, 0.01401942316442728, 0.07755077630281448, 0.018914975225925446, 0.10477014631032944, 0.004999879747629166, 0.03315870836377144, 0.0053203715942800045, -0.017845237627625465, 0.01678265631198883, 0.08085894584655762, -0.03899315372109413, 0.06638452410697937, -0.04111269488930702, -0.17314700782299042, 0.08316053450107574, -0.011309345252811909, 0.004440002609044313, -0.05071455240249634, 0.039092082530260086, -0.13100077211856842, 0.12692508101463318, 0.15440547466278076, 0.03614063933491707, -0.03949422761797905, -0.0603049136698246, 0.03992496803402901, -0.011596010066568851, 0.02877935953438282, -0.022225676104426384, -0.11686380952596664, -0.0921281948685646, -0.04162688925862312, 0.05362876504659653, -0.09491422772407532, 0.011689526960253716, 0.012510772794485092, -0.007392499595880508, -0.005603681784123182, 0.1286705732345581, 0.03173941373825073, -0.029583675786852837, -0.007372419815510511, -0.15744097530841827, 0.06042274087667465, -0.013751138001680374, -0.10647670924663544, -0.04786767438054085 ]
null
null
transformers
<br /> <p align="center"> <h1 align="center">M-BERT Distil 40</h1> <p align="center"> <a href="https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/M-BERT%20Distil%2040">Github Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the [Multilingual-CLIP Github](https://github.com/FreddeFrallan/Multilingual-CLIP). Once this is done, you can load and use the model with the following code ```python from src import multilingual_clip model = multilingual_clip.load_model('M-BERT-Distil-40') embeddings = model(['Älgen är skogens konung!', 'Wie leben Eisbären in der Antarktis?', 'Вы знали, что все белые медведи левши?']) print(embeddings.shape) # Yields: torch.Size([3, 640]) ``` <!-- ABOUT THE PROJECT --> ## About A [distilbert-base-multilingual](https://huggingface.co/distilbert-base-multilingual-cased) tuned to match the embedding space for [40 languages](https://github.com/FreddeFrallan/Multilingual-CLIP/blob/main/Model%20Cards/M-BERT%20Distil%2040/Fine-Tune-Languages.md), to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> A full list of the 100 languages used during pre-training can be found [here](https://github.com/google-research/bert/blob/master/multilingual.md#list-of-languages), and a list of the 40 languages used during fine-tuning can be found in [SupportedLanguages.md](Fine-Tune-Languages.md). Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of [GCC](https://ai.google.com/research/ConceptualCaptions/) + [MSCOCO](https://cocodataset.org/#home) + [VizWiz](https://vizwiz.org/tasks-and-datasets/image-captioning/), and translating them into the corresponding language. All translation was done using the [AWS translate service](https://aws.amazon.com/translate/), the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 40 languages. ## Evaluation [These results can be viewed at Github](https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/M-BERT%20Distil%2040). <br> A non-rigorous qualitative evaluation shows that for the languages French, German, Spanish, Russian, Swedish and Greek it seemingly yields respectable results for most instances. The exception being that Greeks are apparently unable to recognize happy persons. <br> When testing on Kannada, a language which was included during pre-training but not fine-tuning, it performed close to random
{"language": ["sq", "am", "ar", "az", "bn", "bg", "ca", "zh", "nl", "en", "et", "fa", "fr", "ka", "de", "el", "hi", "hu", "is", "id", "it", "ja", "kk", "ko", "lv", "mk", "ms", "ps", "pl", "ro", "ru", "sl", "es", "sv", "tl", "th", "tr", "ur"]}
feature-extraction
M-CLIP/M-BERT-Distil-40
[ "transformers", "pytorch", "distilbert", "feature-extraction", "sq", "am", "ar", "az", "bn", "bg", "ca", "zh", "nl", "en", "et", "fa", "fr", "ka", "de", "el", "hi", "hu", "is", "id", "it", "ja", "kk", "ko", "lv", "mk", "ms", "ps", "pl", "ro", "ru", "sl", "es", "sv", "tl", "th", "tr", "ur", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "sq", "am", "ar", "az", "bn", "bg", "ca", "zh", "nl", "en", "et", "fa", "fr", "ka", "de", "el", "hi", "hu", "is", "id", "it", "ja", "kk", "ko", "lv", "mk", "ms", "ps", "pl", "ro", "ru", "sl", "es", "sv", "tl", "th", "tr", "ur" ]
TAGS #transformers #pytorch #distilbert #feature-extraction #sq #am #ar #az #bn #bg #ca #zh #nl #en #et #fa #fr #ka #de #el #hi #hu #is #id #it #ja #kk #ko #lv #mk #ms #ps #pl #ro #ru #sl #es #sv #tl #th #tr #ur #endpoints_compatible #region-us
<br /> <p align="center"> <h1 align="center">M-BERT Distil 40</h1> <p align="center"> <a href="URL Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github. Once this is done, you can load and use the model with the following code ## About A distilbert-base-multilingual tuned to match the embedding space for 40 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> A full list of the 100 languages used during pre-training can be found here, and a list of the 40 languages used during fine-tuning can be found in URL. Training data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language. All translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 40 languages. ## Evaluation These results can be viewed at Github. <br> A non-rigorous qualitative evaluation shows that for the languages French, German, Spanish, Russian, Swedish and Greek it seemingly yields respectable results for most instances. The exception being that Greeks are apparently unable to recognize happy persons. <br> When testing on Kannada, a language which was included during pre-training but not fine-tuning, it performed close to random
[ "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA distilbert-base-multilingual tuned to match the embedding space for 40 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 40 languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 40 languages.", "## Evaluation\nThese results can be viewed at Github. <br>\nA non-rigorous qualitative evaluation shows that for the languages French, German, Spanish, Russian, Swedish and Greek it seemingly yields respectable results for most instances. The exception being that Greeks are apparently unable to recognize happy persons. <br>\nWhen testing on Kannada, a language which was included during pre-training but not fine-tuning, it performed close to random" ]
[ "TAGS\n#transformers #pytorch #distilbert #feature-extraction #sq #am #ar #az #bn #bg #ca #zh #nl #en #et #fa #fr #ka #de #el #hi #hu #is #id #it #ja #kk #ko #lv #mk #ms #ps #pl #ro #ru #sl #es #sv #tl #th #tr #ur #endpoints_compatible #region-us \n", "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code", "## About\nA distilbert-base-multilingual tuned to match the embedding space for 40 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 40 languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 40 languages.", "## Evaluation\nThese results can be viewed at Github. <br>\nA non-rigorous qualitative evaluation shows that for the languages French, German, Spanish, Russian, Swedish and Greek it seemingly yields respectable results for most instances. The exception being that Greeks are apparently unable to recognize happy persons. <br>\nWhen testing on Kannada, a language which was included during pre-training but not fine-tuning, it performed close to random" ]
[ 109, 56, 183, 104 ]
[ "passage: TAGS\n#transformers #pytorch #distilbert #feature-extraction #sq #am #ar #az #bn #bg #ca #zh #nl #en #et #fa #fr #ka #de #el #hi #hu #is #id #it #ja #kk #ko #lv #mk #ms #ps #pl #ro #ru #sl #es #sv #tl #th #tr #ur #endpoints_compatible #region-us \n## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\n\nOnce this is done, you can load and use the model with the following code## About\nA distilbert-base-multilingual tuned to match the embedding space for 40 languages, to the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\nA full list of the 100 languages used during pre-training can be found here, and a list of the 40 languages used during fine-tuning can be found in URL.\n\nTraining data pairs was generated by sampling 40k sentences for each language from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into the corresponding language.\nAll translation was done using the AWS translate service, the quality of these translations have currently not been analyzed, but one can assume the quality varies between the 40 languages.## Evaluation\nThese results can be viewed at Github. <br>\nA non-rigorous qualitative evaluation shows that for the languages French, German, Spanish, Russian, Swedish and Greek it seemingly yields respectable results for most instances. The exception being that Greeks are apparently unable to recognize happy persons. <br>\nWhen testing on Kannada, a language which was included during pre-training but not fine-tuning, it performed close to random" ]
[ -0.11413481086492538, -0.012962432578206062, -0.004088994115591049, 0.08927561342716217, 0.11503204703330994, 0.02750694565474987, -0.00004284871101845056, 0.0798444151878357, 0.04207068681716919, 0.11464075744152069, 0.00452154316008091, -0.0002787082048598677, 0.10815819352865219, 0.06925472617149353, 0.01813468337059021, -0.2342175841331482, 0.024171849712729454, -0.062014274299144745, -0.03367127478122711, 0.060234639793634415, 0.11441422998905182, -0.029972100630402565, 0.07218652218580246, -0.019788894802331924, -0.02373919077217579, 0.037408486008644104, -0.0028977806214243174, -0.03665914386510849, 0.08078842610120773, 0.11700981855392456, 0.05350922420620918, -0.0070509943179786205, 0.04784117639064789, -0.20280855894088745, 0.011444903910160065, 0.06395499408245087, -0.0018873215885832906, -0.024824101477861404, 0.09099080413579941, -0.01953018642961979, 0.08650502562522888, -0.10014814138412476, -0.029833536595106125, 0.0670168474316597, -0.10231716185808182, -0.07290329039096832, -0.12224675714969635, -0.04685250297188759, 0.030263183638453484, 0.10701436549425125, -0.05951850116252899, 0.08415082097053528, -0.06395790725946426, 0.07269369065761566, 0.22732670605182648, -0.21161077916622162, -0.009211319498717785, 0.09669221937656403, 0.07722580432891846, 0.061706408858299255, -0.09838483482599258, 0.03234196454286575, 0.05241236463189125, 0.023407436907291412, -0.13149987161159515, -0.044373806565999985, 0.029180847108364105, -0.04851248115301132, -0.12816250324249268, -0.014673222787678242, 0.10196920484304428, 0.0034471505787223577, -0.07906569540500641, -0.09147930890321732, -0.05862222611904144, -0.07413410395383835, -0.0013530191499739885, 0.02923467382788658, -0.0032295326236635447, 0.021189259365200996, 0.06487170606851578, -0.033129338175058365, -0.11880693584680557, -0.005244341678917408, -0.005971526261419058, 0.1768399327993393, 0.052591338753700256, 0.00836371723562479, 0.023261981084942818, 0.08457054942846298, -0.13455882668495178, -0.06250917911529541, -0.07817260921001434, -0.03971166908740997, -0.12226642668247223, 0.01619195193052292, -0.06040976941585541, -0.13202378153800964, 0.0328887440264225, 0.1166614294052124, -0.13160856068134308, 0.07641525566577911, 0.008724454790353775, 0.03898537904024124, 0.03172028437256813, 0.13708840310573578, -0.057505253702402115, -0.05233880504965782, 0.0026361364871263504, -0.0838567391037941, 0.022859754040837288, -0.0025546615943312645, -0.046082377433776855, -0.06173422187566757, -0.0398867204785347, 0.08945109695196152, -0.08812140673398972, 0.050706107169389725, -0.0524633415043354, -0.007986858487129211, 0.056467294692993164, -0.1390533745288849, 0.03596501424908638, 0.020305808633565903, -0.00851182360202074, 0.03207070380449295, 0.014746231026947498, -0.030468007549643517, -0.1408061534166336, 0.0193516556173563, -0.010561708360910416, 0.03418894484639168, -0.06070682406425476, -0.1331416517496109, 0.02391306683421135, -0.06980672478675842, -0.032756220549345016, -0.10263774544000626, -0.046806178987026215, -0.0783519297838211, -0.010964794084429741, -0.05211694538593292, 0.0641263797879219, -0.03765173628926277, -0.004550492856651545, -0.0074438913725316525, 0.040228020399808884, -0.03932306170463562, -0.03858114778995514, 0.011907662265002728, -0.004860750399529934, 0.0575820729136467, -0.02692500874400139, -0.0004515631590038538, -0.1056833565235138, 0.01579255424439907, -0.08044569194316864, 0.18041445314884186, -0.08999600261449814, -0.047000858932733536, -0.0764799490571022, -0.047037068754434586, 0.0022292255889624357, 0.031325165182352066, 0.04182370379567146, 0.12569043040275574, -0.18565134704113007, -0.048769108951091766, 0.22155718505382538, -0.13256363570690155, -0.017004987224936485, 0.1272745281457901, -0.004330269526690245, -0.027042463421821594, 0.06957674771547318, 0.09291891008615494, 0.06512472778558731, -0.06591124087572098, -0.09409292787313461, -0.05065794661641121, 0.0023845257237553596, 0.15313518047332764, 0.04903114214539528, -0.05000358447432518, 0.037125345319509506, 0.014230464585125446, -0.07283671200275421, 0.03750849887728691, 0.00009935574053088203, -0.05834640562534332, -0.0204422939568758, -0.009058604948222637, 0.002606437774375081, 0.027756022289395332, 0.0021243849769234657, -0.0467512384057045, -0.07819966971874237, -0.14073194563388824, 0.09791391342878342, -0.08772771060466766, 0.08173435181379318, -0.0661165863275528, 0.07286921888589859, -0.019996102899312973, 0.028778979554772377, -0.1511361449956894, -0.0053527262061834335, 0.07327598333358765, -0.07334298640489578, 0.1142481192946434, -0.0005362481460906565, 0.04771742597222328, 0.10371439158916473, -0.04297901317477226, -0.032116882503032684, -0.010641266591846943, -0.022754425182938576, -0.05815650150179863, -0.13096483051776886, 0.014648139476776123, -0.03569791465997696, 0.06681983172893524, -0.12821725010871887, -0.021890787407755852, 0.13843180239200592, 0.1264784038066864, 0.017115944996476173, -0.053239855915308, -0.020552655681967735, 0.04816128686070442, -0.03817643225193024, -0.0636187270283699, -0.007662936579436064, -0.042623210698366165, -0.052541106939315796, 0.10493514686822891, -0.07676192373037338, -0.23485326766967773, 0.0671112909913063, 0.025799039751291275, -0.12225991487503052, 0.005430605262517929, -0.0041869934648275375, -0.011843002401292324, -0.05688917636871338, -0.01002785749733448, 0.2132217139005661, 0.049630824476480484, 0.10113733261823654, -0.06520779430866241, 0.03175170719623566, 0.01681504026055336, -0.05761067569255829, -0.030298704281449318, 0.10502957552671432, 0.04324106127023697, -0.2054952085018158, 0.08551342040300369, -0.0024020203854888678, -0.025899257510900497, 0.17092731595039368, -0.006052722688764334, -0.09514831751585007, 0.004523828625679016, 0.09272771328687668, 0.03776666894555092, 0.07767754048109055, -0.017474178224802017, -0.003197799436748028, -0.0007074659806676209, 0.03493599593639374, 0.021818500012159348, -0.07792148739099503, 0.0554596371948719, 0.013959798961877823, -0.04523252323269844, 0.056125421077013016, 0.049328725785017014, -0.01765601895749569, 0.04075209051370621, -0.01045989990234375, 0.051729992032051086, -0.037669453769922256, -0.051144447177648544, -0.09255167096853256, 0.20982524752616882, -0.1348998099565506, -0.2689529061317444, -0.1853862702846527, 0.030559390783309937, -0.0829104483127594, 0.020799411460757256, 0.05907601863145828, -0.13730888068675995, -0.0799582451581955, -0.06108655408024788, 0.16409415006637573, -0.005389056168496609, -0.06048846244812012, -0.08517256379127502, -0.009765212424099445, -0.010961930267512798, -0.10404563695192337, 0.021473653614521027, 0.004422809928655624, -0.09767555445432663, 0.024874530732631683, -0.04525073617696762, 0.0640789046883583, 0.09167025983333588, -0.012403466738760471, 0.005257421173155308, -0.0165872760117054, 0.1899622231721878, -0.15134312212467194, 0.026079852133989334, 0.04406532645225525, 0.017583301290869713, 0.06452275067567825, 0.09556470811367035, 0.0164940245449543, -0.06811189651489258, 0.014850227162241936, 0.05176125839352608, -0.0391254760324955, -0.20543543994426727, -0.12057372182607651, -0.09490566700696945, -0.034992631524801254, 0.028823867440223694, 0.0489974282681942, -0.071197010576725, 0.04341094195842743, -0.08911667764186859, -0.002613305114209652, 0.03238309919834137, 0.06150589510798454, 0.0704297423362732, -0.008353146724402905, 0.0198008194565773, -0.04512500762939453, 0.006872640457004309, 0.11650879681110382, 0.08396285027265549, 0.17362773418426514, -0.04639977216720581, 0.19105470180511475, 0.06298902630805969, 0.09234917163848877, 0.02189899981021881, 0.03790407255291939, -0.04359446465969086, 0.016620729118585587, 0.005150111857801676, -0.045315079391002655, -0.004572793375700712, 0.08066370338201523, 0.07216521352529526, -0.05186200141906738, -0.02436836063861847, -0.062111105769872665, 0.07338974624872208, 0.21423034369945526, 0.09325800091028214, -0.10175838321447372, -0.06603659689426422, 0.028406623750925064, -0.019425159320235252, -0.0689242035150528, 0.017354954034090042, 0.056773196905851364, -0.13986343145370483, 0.10424180328845978, -0.035380370914936066, 0.08510314673185349, -0.10842704027891159, -0.04780949279665947, -0.057174500077962875, 0.053675614297389984, -0.011890741996467113, 0.10695184767246246, -0.18210572004318237, 0.05428418144583702, 0.011808827519416809, 0.05449038743972778, -0.031067393720149994, 0.0410986989736557, 0.020933398976922035, 0.06601887196302414, 0.12451405823230743, 0.04515227675437927, -0.012393387034535408, -0.1649632453918457, 0.028352027758955956, 0.0018299196381121874, 0.13491888344287872, -0.02084948681294918, 0.07482492178678513, 0.0011942152632400393, 0.012630139477550983, -0.050319697707891464, -0.01882868818938732, -0.12028105556964874, -0.1893799751996994, 0.06668701022863388, -0.024834396317601204, 0.05623118206858635, -0.038326434791088104, -0.034808430820703506, -0.08583125472068787, 0.1764124631881714, -0.18368694186210632, -0.07333976030349731, -0.10259847342967987, 0.02405470795929432, 0.13841214776039124, -0.10349228978157043, 0.06376740336418152, -0.029784206300973892, 0.10897296667098999, -0.08397896587848663, -0.036021579056978226, 0.04523712769150734, -0.0641489252448082, -0.16763554513454437, -0.010477889329195023, 0.11885946989059448, 0.08065228909254074, -0.013085179962217808, 0.0020867474377155304, 0.04359470307826996, -0.0018809620523825288, -0.12052594125270844, -0.03588905557990074, 0.06568457931280136, -0.01318073645234108, 0.18726135790348053, -0.032125622034072876, -0.09712394326925278, -0.12414626032114029, -0.08175985515117645, 0.1320652961730957, 0.19423548877239227, -0.07087568938732147, 0.0966309979557991, 0.10898111760616302, -0.10529664158821106, -0.20764316618442535, -0.04881381615996361, 0.06704062968492508, 0.11081823706626892, -0.06049277260899544, -0.14518365263938904, -0.003361897775903344, 0.02444419637322426, 0.014653874561190605, 0.057139430195093155, -0.21607637405395508, -0.11464103311300278, 0.05258909985423088, 0.02001553773880005, 0.003912004642188549, -0.09588371217250824, -0.04930726811289787, -0.06829185038805008, 0.007807055022567511, 0.05290402099490166, 0.0028441937174648046, 0.1407846361398697, 0.02184985764324665, 0.013520615175366402, 0.019719410687685013, -0.02559487707912922, 0.14848381280899048, -0.006249529775232077, 0.005384357180446386, -0.06548306345939636, 0.0377843901515007, 0.011761604808270931, 0.01788323000073433, 0.09649379551410675, -0.005410811863839626, 0.04774104431271553, -0.02072184346616268, -0.04468424618244171, -0.06106910854578018, 0.09084191918373108, -0.01751887984573841, -0.032912228256464005, -0.14258478581905365, 0.0667794719338417, 0.04352631792426109, 0.009583796374499798, 0.062164757400751114, -0.043451208621263504, -0.026478787884116173, 0.11038104444742203, 0.09672713279724121, 0.05320635810494423, -0.1346142739057541, 0.0010623234556987882, 0.00019510761194396764, 0.09886183589696884, -0.03132159262895584, 0.0397404283285141, 0.0938236266374588, 0.0026505091227591038, 0.12765759229660034, -0.0036789977457374334, -0.1861584633588791, 0.05731653794646263, 0.06286495178937912, -0.044764693826436996, -0.14838862419128418, -0.019174808636307716, -0.03666424751281738, 0.04517725855112076, 0.04642880707979202, 0.16973233222961426, -0.06718309968709946, -0.00889947172254324, -0.009587650187313557, 0.06737365573644638, -0.03207280486822128, 0.1461014598608017, 0.023466086015105247, -0.0012428289046511054, -0.0996551588177681, 0.10218799114227295, 0.06405060738325119, -0.11697402596473694, 0.004721636883914471, 0.18209226429462433, -0.12728701531887054, -0.06484310328960419, -0.029201224446296692, 0.018790923058986664, -0.11909662932157516, -0.052761584520339966, -0.009692546911537647, -0.05688176676630974, -0.002694467781111598, 0.04312266781926155, 0.04028179869055748, 0.038238342851400375, -0.03115089237689972, -0.022111650556325912, -0.04063385725021362, 0.009609770029783249, 0.07606896013021469, 0.03980840742588043, -0.07135582715272903, 0.03214239329099655, 0.033961743116378784, 0.048723649233579636, -0.010052834637463093, -0.028968429192900658, -0.05242035537958145, -0.0006717583746649325, -0.05383681505918503, 0.049041714519262314, -0.07506224513053894, 0.012951621785759926, -0.013524318113923073, -0.039738964289426804, 0.023216914385557175, 0.05089204013347626, -0.053806036710739136, -0.052851296961307526, -0.09204071760177612, 0.0772213339805603, -0.09216411411762238, -0.001133512705564499, 0.06052205339074135, -0.05701146647334099, 0.08630488812923431, 0.0017666431376710534, -0.03167104348540306, 0.0957086905837059, -0.15211796760559082, 0.006282047368586063, 0.05269686132669449, 0.034591712057590485, -0.02567319944500923, -0.06775140762329102, 0.028489595279097557, 0.0026224330067634583, 0.03754090145230293, -0.005848696455359459, 0.12087826430797577, -0.10026542842388153, -0.003472252283245325, -0.055400650948286057, -0.01581469364464283, -0.06330548971891403, 0.09626848250627518, 0.008847317658364773, 0.08833656460046768, 0.09192907065153122, -0.0868745818734169, 0.09969387948513031, -0.06116567179560661, -0.013866093941032887, 0.006077311467379332, -0.019544051960110664, 0.005672363098710775, -0.012846115976572037, 0.07331820577383041, -0.008969204500317574, 0.13412797451019287, -0.01471521332859993, 0.0649862065911293, 0.0022996128536760807, -0.004701502155512571, 0.007292292080819607, 0.0488295778632164, 0.05963651090860367, 0.014400993473827839, 0.014523514546453953, -0.1083621084690094, 0.02662978135049343, -0.007201085332781076, 0.024727100506424904, 0.009115628898143768, 0.07025463879108429, 0.04378938302397728, 0.09366374462842941, -0.02962169051170349, -0.08917514979839325, 0.016439324244856834, 0.009571707807481289, -0.09444216638803482, 0.01126179937273264, -0.03796045482158661, 0.12310605496168137, 0.13174313306808472, -0.15580199658870697, 0.108256496489048, 0.0018712372984737158, -0.10589144378900528, -0.048863548785448074, -0.10047152638435364, -0.05064252018928528, -0.07086791843175888, 0.03079790435731411, -0.10646650195121765, 0.08376693725585938, 0.03791017457842827, 0.05894991010427475, -0.027054857462644577, 0.17914317548274994, -0.051161881536245346, -0.15022768080234528, 0.04523163661360741, 0.03758762776851654, 0.05518992245197296, 0.11815711855888367, -0.003731566946953535, 0.023879457265138626, -0.04308120161294937, 0.052054475992918015, 0.0788406953215599, 0.02002447098493576, 0.031157897785305977, -0.026461750268936157, -0.02348136715590954, 0.008230462670326233, 0.03253012150526047, 0.02272946573793888, 0.18157429993152618, 0.03795848786830902, -0.02339719980955124, -0.0209630336612463, 0.0919671505689621, -0.043557193130254745, -0.07054538279771805, -0.13866180181503296, 0.09706971049308777, 0.04533033445477486, 0.06321869790554047, -0.04279210790991783, -0.13252809643745422, 0.011120658367872238, 0.16832172870635986, 0.16479900479316711, 0.015398094430565834, 0.018193574622273445, 0.032567206770181656, 0.012373043224215508, 0.02695476822555065, 0.06778061389923096, -0.03286902979016304, 0.25685176253318787, -0.06678079068660736, 0.09161587804555893, -0.037087004631757736, -0.025427093729376793, -0.09015867114067078, 0.13992972671985626, -0.06423866748809814, -0.023100098595023155, -0.06986300647258759, 0.11734657734632492, -0.015235260128974915, -0.2077486515045166, 0.09192787110805511, -0.09692802280187607, -0.08361588418483734, -0.03661511838436127, 0.007957741618156433, 0.031694576144218445, 0.06321481615304947, 0.03331628069281578, 0.007755491882562637, 0.08036493510007858, 0.045905135571956635, -0.10723543912172318, -0.05367559194564819, 0.007297311909496784, -0.12095656991004944, 0.10097929835319519, 0.012374438345432281, 0.11486809700727463, 0.07712448388338089, 0.05205586552619934, -0.007538572885096073, 0.07907160371541977, 0.015046432614326477, -0.038107696920633316, 0.04044651985168457, 0.14764687418937683, -0.027813317254185677, 0.0698065310716629, 0.02862420491874218, -0.09971348941326141, 0.10328937321901321, 0.07255470007658005, 0.008182240650057793, -0.08632759004831314, 0.10042163729667664, -0.12158577889204025, 0.12305911630392075, 0.16756553947925568, 0.014461453072726727, -0.011539542116224766, -0.0694906935095787, 0.016203459352254868, -0.015369568020105362, 0.03692533075809479, 0.00011745915253413841, -0.1652792990207672, 0.015272202901542187, -0.04320025444030762, 0.0740654245018959, -0.12582214176654816, -0.03798321634531021, 0.031987253576517105, 0.004261646419763565, -0.014924517832696438, 0.15614335238933563, 0.016189629212021828, -0.013402590528130531, -0.008047138340771198, -0.16973407566547394, 0.052800800651311874, 0.06006743386387825, -0.07368206977844238, -0.10088817775249481 ]
null
null
transformers
<br /> <p align="center"> <h1 align="center">Swe-CLIP 2M</h1> <p align="center"> <a href="https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/Swe-CLIP%202M">Github Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the [Multilingual-CLIP Github](https://github.com/FreddeFrallan/Multilingual-CLIP). Once this is done, you can load and use the model with the following code ```python from src import multilingual_clip model = multilingual_clip.load_model('Swe-CLIP-500k') embeddings = model(['Älgen är skogens konung!', 'Alla isbjörnar är vänsterhänta']) print(embeddings.shape) # Yields: torch.Size([2, 640]) ``` <!-- ABOUT THE PROJECT --> ## About A [KB/Bert-Swedish-Cased](https://huggingface.co/KB/bert-base-swedish-cased) tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> Training data pairs was generated by sampling 2 Million sentences from the combined descriptions of [GCC](https://ai.google.com/research/ConceptualCaptions/) + [MSCOCO](https://cocodataset.org/#home) + [VizWiz](https://vizwiz.org/tasks-and-datasets/image-captioning/), and translating them into Swedish. All translation was done using the [Huggingface Opus Model](https://huggingface.co/Helsinki-NLP/opus-mt-en-sv), which seemingly procudes higher quality translations than relying on the [AWS translate service](https://aws.amazon.com/translate/).
{"language": "sv"}
feature-extraction
M-CLIP/Swedish-2M
[ "transformers", "pytorch", "jax", "bert", "feature-extraction", "sv", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "sv" ]
TAGS #transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us
<br /> <p align="center"> <h1 align="center">Swe-CLIP 2M</h1> <p align="center"> <a href="URL Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github. Once this is done, you can load and use the model with the following code ## About A KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> Training data pairs was generated by sampling 2 Million sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish. All translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service.
[ "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code", "## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 2 Million sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ "TAGS\n#transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us \n", "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code", "## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 2 Million sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ 34, 56, 126 ]
[ "passage: TAGS\n#transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us \n## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 2 Million sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ -0.0902719721198082, -0.00702713755890727, 0.0004937855410389602, 0.07067074626684189, 0.1414739340543747, 0.005071098450571299, 0.01177071314305067, 0.03888940066099167, -0.00771314837038517, -0.028284428641200066, 0.08670034259557724, 0.05677313730120659, 0.10237722098827362, 0.1625688672065735, -0.001956624910235405, -0.3225944936275482, 0.05709509924054146, 0.04234424978494644, -0.08783325552940369, 0.07314708828926086, 0.053053781390190125, -0.03468533605337143, 0.10566868633031845, 0.010995564050972462, -0.13251613080501556, 0.04360482096672058, -0.04502605274319649, -0.027490900829434395, 0.060924481600522995, 0.11417297273874283, 0.10020789504051208, 0.014537605457007885, 0.1060032770037651, -0.09173453599214554, 0.006268912926316261, -0.008113397285342216, -0.022984886541962624, 0.014905468560755253, 0.04220603406429291, 0.06684903800487518, 0.009000836871564388, -0.04412373900413513, 0.0008452530601061881, 0.02651970274746418, -0.05497193709015846, -0.010557779110968113, -0.002880280837416649, -0.059287670999765396, 0.10733229666948318, 0.08023568242788315, -0.020914340391755104, 0.057364899665117264, -0.06392190605401993, 0.11172427237033844, 0.10565773397684097, -0.20630671083927155, -0.021098697558045387, 0.1394108235836029, 0.06939923018217087, 0.07869921624660492, -0.057427726686000824, 0.06569308787584305, 0.04939820244908333, 0.01580759696662426, 0.0002056536905001849, -0.08986908942461014, -0.05658300593495369, -0.05562886968255043, -0.1271606832742691, 0.008807404898107052, 0.17989999055862427, 0.014494097791612148, -0.05666337162256241, -0.04843209683895111, -0.06648465245962143, 0.03625847399234772, -0.019275620579719543, 0.007836953736841679, 0.04022682458162308, 0.020285306498408318, -0.08784892410039902, -0.12121327966451645, -0.11535874009132385, -0.07103393971920013, -0.12309850007295609, 0.08817689120769501, 0.01554559450596571, 0.08004280924797058, 0.0002176333509851247, 0.06828418374061584, -0.09894748032093048, -0.06321912258863449, -0.07259680330753326, -0.08246229588985443, -0.07465146481990814, 0.054983265697956085, -0.095986008644104, -0.12550672888755798, -0.0023882323876023293, 0.028245436027646065, -0.01744222082197666, 0.042647793889045715, -0.0016126370755955577, 0.09359506517648697, 0.01769666187465191, 0.20994216203689575, -0.07031510025262833, 0.006382015533745289, -0.013157197274267673, -0.11829401552677155, -0.042069971561431885, -0.03277158737182617, -0.14985579252243042, -0.06306322664022446, -0.11214748024940491, -0.004696324467658997, -0.10344520211219788, 0.07413896173238754, -0.0246193315833807, -0.03210423141717911, 0.018121348693966866, -0.09035824984312057, 0.042383823543787, -0.039767079055309296, -0.01713450625538826, 0.0994882732629776, 0.12514476478099823, 0.013269796967506409, -0.12330541759729385, 0.002928984584286809, -0.03127853944897652, 0.029408251866698265, -0.06319799274206161, -0.11445382237434387, 0.00012790616892743856, -0.08326804637908936, 0.03395867347717285, -0.13153360784053802, -0.12208093702793121, -0.06282718479633331, 0.03316396847367287, 0.01316078845411539, 0.02386430650949478, -0.1256876289844513, 0.021336454898118973, -0.008273473009467125, -0.029183633625507355, -0.07122133672237396, 0.0034729724284261465, -0.0009899125434458256, -0.11724651604890823, 0.0900791734457016, -0.19619281589984894, 0.03633792698383331, -0.14483460783958435, -0.014549151994287968, -0.13166886568069458, 0.20680664479732513, -0.043529216200113297, 0.007172231562435627, -0.06003134697675705, -0.07443491369485855, -0.004678454250097275, 0.06167493760585785, 0.016358643770217896, 0.13754336535930634, -0.18552584946155548, -0.061707526445388794, 0.21910497546195984, -0.14532695710659027, -0.020276248455047607, 0.09867584705352783, -0.010347570292651653, 0.015778247267007828, 0.1087271049618721, 0.20374161005020142, 0.05864344909787178, -0.039602793753147125, 0.016252033412456512, 0.08620119094848633, -0.07007744163274765, -0.056556105613708496, 0.0878322646021843, 0.015799444168806076, -0.0189187154173851, 0.030998878180980682, -0.11614222824573517, 0.1003757044672966, 0.0015232957666739821, -0.05424224212765694, 0.017633508890867233, -0.007830985821783543, -0.09899868816137314, 0.03688666969537735, 0.07211427390575409, -0.015429017134010792, -0.004069410264492035, -0.008348763920366764, 0.04882390797138214, -0.1721506267786026, 0.07694058865308762, -0.04828812554478645, -0.04902807995676994, -0.11986728757619858, 0.03733019903302193, -0.042748838663101196, -0.0613962821662426, -0.01068129949271679, 0.04166104644536972, 0.029527882114052773, 0.07875601947307587, 0.06534621864557266, 0.08391577750444412, -0.01808112859725952, -0.02528020553290844, 0.017333148047327995, -0.058378394693136215, -0.026819691061973572, -0.06551776826381683, -0.013783440925180912, -0.0224221870303154, 0.016875531524419785, -0.05578294023871422, 0.0006790169281885028, 0.050720591098070145, 0.06717164069414139, -0.0017940379912033677, -0.04635185748338699, -0.012026598677039146, 0.04647461324930191, -0.015541886910796165, -0.039786197245121, 0.057059939950704575, -0.0013287299079820514, -0.13281109929084778, 0.23567399382591248, -0.01015146728605032, -0.029802298173308372, 0.11815468966960907, -0.12205790728330612, -0.009549194946885109, -0.0845504105091095, -0.014677077531814575, -0.0056199971586465836, -0.04611093923449516, -0.04059750586748123, 0.230341374874115, 0.010396568104624748, 0.13761082291603088, -0.06939520686864853, 0.04577113687992096, 0.021089114248752594, -0.07285334169864655, -0.024594632908701897, 0.09085024148225784, 0.053765472024679184, -0.20260438323020935, 0.09119073301553726, 0.0263853520154953, -0.007408028468489647, 0.2393537312746048, -0.0013456734595820308, -0.07729924470186234, 0.018349144607782364, -0.012878594920039177, -0.009908451698720455, 0.06797043234109879, -0.05967790633440018, -0.03421445190906525, 0.040235310792922974, 0.03480646014213562, 0.04083150997757912, -0.13070282340049744, 0.009858742356300354, 0.028850464150309563, -0.03351368010044098, -0.0326821431517601, -0.002230976941064, -0.07370699197053909, -0.00922384299337864, -0.019860660657286644, -0.010600353591144085, 0.03369415923953056, -0.02275753580033779, -0.08604192733764648, 0.18470850586891174, -0.08438600599765778, -0.28471270203590393, -0.23354186117649078, -0.008338890969753265, -0.06527334451675415, 0.05649053305387497, 0.06105571985244751, -0.10894965380430222, -0.07065005600452423, -0.04742152616381645, 0.12281909584999084, -0.03292315453290939, -0.008941312320530415, -0.002334760967642069, -0.01982024312019348, -0.035148970782756805, -0.10529273748397827, -0.012619306333363056, -0.041023992002010345, -0.10815966874361038, 0.04558081179857254, -0.14224429428577423, 0.130093514919281, 0.06288708746433258, -0.0475931391119957, 0.03154575079679489, -0.012707310728728771, 0.1583356261253357, -0.09735338389873505, -0.007854610681533813, 0.010597924701869488, -0.06809069216251373, 0.04480953887104988, 0.06736904382705688, 0.014262093231081963, -0.0684591755270958, -0.010773631744086742, -0.028253279626369476, -0.1167454943060875, -0.12733222544193268, -0.10007689148187637, -0.07863637059926987, 0.06268530339002609, 0.08424588292837143, 0.010310103185474873, -0.13613741099834442, 0.1429087370634079, -0.021369444206357002, 0.05329630896449089, 0.021400509402155876, 0.04371868446469307, 0.019627731293439865, -0.04027847200632095, 0.09489874541759491, -0.03183712810277939, -0.06049389764666557, 0.08257763087749481, 0.06687671691179276, 0.1830032765865326, -0.037928782403469086, 0.08849836140871048, 0.023749051615595818, 0.06088193878531456, 0.0874190405011177, 0.18806400895118713, -0.02262502908706665, 0.00031017293804325163, -0.027552254498004913, -0.022793039679527283, -0.0618092305958271, 0.0506301149725914, 0.04231446608901024, -0.08045603334903717, -0.07182877510786057, -0.0035433711018413305, 0.05357194319367409, 0.13170774281024933, 0.06411178410053253, -0.2528337240219116, -0.022045554593205452, 0.02938876673579216, -0.008546861819922924, -0.05961492657661438, 0.05377466604113579, 0.16089388728141785, -0.14241933822631836, 0.1111171618103981, -0.034505926072597504, 0.13004502654075623, -0.11460086703300476, -0.015331877395510674, -0.06844263523817062, -0.01766275055706501, 0.004245700780302286, 0.10034588724374771, -0.13446690142154694, 0.08412188291549683, -0.0013193147024139762, 0.020914873108267784, -0.06153910607099533, -0.0008825217373669147, 0.014771190471947193, 0.12097003310918808, 0.17022567987442017, 0.06335584074258804, -0.006733470596373081, -0.14039842784404755, -0.0803576111793518, 0.07112548500299454, 0.04735274612903595, -0.06711077690124512, 0.03695698082447052, 0.011939150281250477, 0.02512938156723976, -0.06357389688491821, 0.06657697260379791, 0.03817601129412651, -0.1621367186307907, -0.015153972432017326, 0.068574458360672, 0.15831321477890015, 0.029643436893820763, -0.045642122626304626, -0.06573133170604706, 0.16913408041000366, -0.0688771978020668, -0.11497744917869568, -0.10985011607408524, 0.07183512300252914, 0.06242682784795761, -0.065181203186512, 0.06593228131532669, 0.03003656305372715, 0.06601553410291672, -0.04089697077870369, -0.09608712047338486, 0.04455883055925369, -0.07728549093008041, 0.006162742152810097, 0.023651959374547005, 0.0447080098092556, 0.02924123965203762, 0.002598620019853115, 0.05300431326031685, 0.003683954244479537, -0.034188978374004364, -0.12467338889837265, -0.0028734076768159866, 0.060269203037023544, 0.03795411437749863, 0.1733793020248413, -0.015384362079203129, -0.008566695265471935, -0.02141381986439228, 0.02526533044874668, 0.21071851253509521, 0.054671697318553925, -0.03947388753294945, 0.04645112529397011, 0.15282371640205383, -0.052781205624341965, -0.31941458582878113, -0.06549463421106339, 0.06441596150398254, 0.10514936596155167, -0.03614908456802368, -0.10387881845235825, 0.05182742699980736, 0.046675629913806915, 0.004767094273120165, -0.054067257791757584, -0.13486438989639282, -0.08535340428352356, 0.07548584789037704, 0.0711064264178276, 0.3147020936012268, -0.05209336429834366, -0.013598611578345299, -0.04335033521056175, -0.07892367243766785, 0.11849234998226166, -0.02378789335489273, 0.11989472806453705, 0.013935239985585213, 0.07722512632608414, 0.037238918244838715, -0.031384777277708054, 0.1326286494731903, -0.006125071085989475, -0.019165460020303726, -0.08741318434476852, 0.0853150486946106, 0.06209457293152809, 0.005715308245271444, 0.13420887291431427, -0.028132984414696693, 0.02956068329513073, -0.03267369419336319, -0.05203012004494667, -0.03749296814203262, 0.025578629225492477, 0.05057303234934807, -0.07901349663734436, -0.03618347644805908, 0.005922902841120958, 0.07845497876405716, 0.0513058602809906, 0.1349790394306183, -0.059073928743600845, -0.10746732354164124, 0.089195616543293, 0.07950035482645035, -0.02277400530874729, -0.12628580629825592, -0.01615317352116108, -0.025003639981150627, 0.1491013467311859, -0.08569849282503128, 0.07325656712055206, 0.12119985371828079, -0.03431244194507599, 0.08960563689470291, 0.07832574844360352, -0.04723485931754112, 0.06318464875221252, 0.070343978703022, -0.10564086586236954, -0.09284339100122452, -0.055021923035383224, -0.1338389366865158, 0.05980658531188965, 0.09361550956964493, 0.17695358395576477, -0.07975950092077255, 0.013626339845359325, -0.02378827892243862, 0.041247881948947906, -0.08954768627882004, 0.16187746822834015, 0.003916111774742603, -0.01771802268922329, -0.17155170440673828, 0.09151743352413177, -0.004523869138211012, -0.11610936373472214, 0.03603478521108627, 0.07134350389242172, -0.1351507008075714, -0.05575229600071907, -0.03379452973604202, 0.11163889616727829, -0.17635969817638397, -0.09036408364772797, -0.02668684720993042, -0.07278415560722351, 0.011415057815611362, -0.056430310010910034, 0.07349127531051636, 0.034217607229948044, -0.04149119183421135, -0.029156306758522987, -0.06686300039291382, -0.003780551254749298, 0.023723430931568146, 0.03168221563100815, -0.12325530499219894, 0.03949984908103943, -0.023094331845641136, 0.11574579775333405, -0.07128985971212387, -0.012043916620314121, -0.11214451491832733, 0.022023223340511322, -0.01184100192040205, 0.036189060658216476, -0.04234037920832634, -0.004909791052341461, -0.01233008410781622, -0.03945981711149216, -0.021209197118878365, 0.0654493197798729, -0.07321396470069885, -0.008930344134569168, -0.04953810200095177, -0.003429641015827656, 0.00291609694249928, -0.02831312268972397, 0.0322096087038517, -0.018656698986887932, 0.049985650926828384, 0.06406901776790619, -0.06985481083393097, 0.05915883928537369, -0.07993685454130173, -0.050698257982730865, 0.10611125081777573, 0.02432723343372345, 0.011060565710067749, 0.15291573107242584, -0.004034826532006264, 0.07613068073987961, 0.023906031623482704, -0.028672384098172188, 0.15994800627231598, -0.054320719093084335, -0.01342118252068758, -0.039730582386255264, -0.027076609432697296, -0.0605987086892128, 0.043463222682476044, 0.0026854907628148794, 0.18495430052280426, 0.11548204720020294, -0.04815042391419411, 0.09136825799942017, -0.06601379066705704, 0.010236760601401329, 0.04799221456050873, -0.10729764401912689, 0.07096182554960251, -0.10729362815618515, 0.025919439271092415, -0.0014830371364951134, 0.16883012652397156, 0.06151917576789856, 0.07739802449941635, -0.051239240914583206, 0.0722249373793602, 0.11403750628232956, 0.010879309847950935, 0.21296647191047668, 0.02006690204143524, -0.0069899666123092175, -0.07733667641878128, 0.10149478167295456, 0.05828261002898216, 0.03110596351325512, -0.07212834060192108, -0.05644099786877632, -0.0031466393265873194, 0.1569935828447342, 0.013430126011371613, 0.04944853112101555, -0.0803249329328537, -0.09819871187210083, -0.010342425666749477, 0.03674771264195442, -0.011420188471674919, 0.05526701360940933, 0.0902753546833992, -0.11465658992528915, 0.0762498751282692, 0.1289839893579483, -0.09168639779090881, -0.1355094015598297, -0.16631057858467102, -0.08716906607151031, -0.16594198346138, 0.04407190904021263, -0.1245657280087471, 0.02364569902420044, 0.09264089912176132, 0.05093252658843994, 0.02218247763812542, 0.19160102307796478, -0.09208071976900101, -0.13896144926548004, 0.04731272533535957, -0.011583489365875721, 0.05629529058933258, 0.05313345789909363, -0.02291051857173443, 0.07502664625644684, 0.03540235012769699, 0.055859483778476715, 0.00711653009057045, 0.07049994170665741, 0.034822575747966766, -0.031143007799983025, -0.037352047860622406, -0.07715730369091034, 0.038097165524959564, -0.0005086833261884749, 0.05068943649530411, 0.03172816336154938, -0.06601832807064056, -0.023747310042381287, 0.08227414637804031, -0.07566317170858383, -0.029628772288560867, -0.12214455008506775, 0.06483226269483566, 0.03999951481819153, 0.1070065051317215, -0.018839305266737938, -0.09195195883512497, -0.01850005052983761, 0.2423458993434906, 0.1664164662361145, -0.015026421286165714, -0.010412441566586494, 0.024881264194846153, 0.008856171742081642, 0.048863768577575684, 0.12888462841510773, -0.011890899389982224, 0.20174439251422882, -0.06860308349132538, -0.008519263006746769, -0.002045251429080963, -0.055847007781267166, -0.040097542107105255, -0.03779752925038338, -0.014987850561738014, -0.044224489480257034, -0.069260373711586, 0.08887656778097153, -0.08470365405082703, -0.08867040276527405, 0.10830356925725937, -0.06066085025668144, -0.04279116541147232, -0.04736531898379326, 0.08761297166347504, 0.03445248678326607, 0.07460201531648636, -0.022286057472229004, 0.07766660302877426, 0.07045907527208328, 0.026858938857913017, -0.17216496169567108, -0.013893360272049904, -0.02162306383252144, -0.15087170898914337, 0.05951269343495369, -0.00306152761913836, 0.06991694122552872, 0.01585601642727852, 0.061022303998470306, 0.02422386221587658, 0.03548629581928253, -0.08089092373847961, -0.025536056607961655, 0.03122554160654545, 0.1276504546403885, -0.09372562170028687, -0.01433660089969635, -0.015788553282618523, -0.20563854277133942, 0.017656663432717323, 0.03702991455793381, -0.015264843590557575, 0.01341318804770708, 0.016622617840766907, -0.11274158209562302, 0.08950148522853851, 0.1530553251504898, 0.027324508875608444, -0.015058972872793674, -0.0753026083111763, 0.04405481740832329, 0.016374947503209114, -0.030574902892112732, 0.027778489515185356, -0.10596233606338501, -0.11738789081573486, -0.03065492957830429, -0.0025660947430878878, -0.0988372415304184, -0.007311058696359396, -0.08273326605558395, -0.011480087414383888, -0.05073188617825508, 0.08786167949438095, 0.08071374148130417, -0.02934456244111061, 0.004232535604387522, -0.14160563051700592, 0.08584338426589966, 0.01676424965262413, -0.0747092068195343, -0.11733130365610123 ]
null
null
transformers
<br /> <p align="center"> <h1 align="center">Swe-CLIP 500k</h1> <p align="center"> <a href="https://github.com/FreddeFrallan/Multilingual-CLIP/tree/main/Model%20Cards/Swe-CLIP%20500k">Github Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the [Multilingual-CLIP Github](https://github.com/FreddeFrallan/Multilingual-CLIP). Once this is done, you can load and use the model with the following code ```python from src import multilingual_clip model = multilingual_clip.load_model('Swe-CLIP-500k') embeddings = model(['Älgen är skogens konung!', 'Alla isbjörnar är vänsterhänta']) print(embeddings.shape) # Yields: torch.Size([2, 640]) ``` <!-- ABOUT THE PROJECT --> ## About A [KB/Bert-Swedish-Cased](https://huggingface.co/KB/bert-base-swedish-cased) tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> Training data pairs was generated by sampling 500k sentences from the combined descriptions of [GCC](https://ai.google.com/research/ConceptualCaptions/) + [MSCOCO](https://cocodataset.org/#home) + [VizWiz](https://vizwiz.org/tasks-and-datasets/image-captioning/), and translating them into Swedish. All translation was done using the [Huggingface Opus Model](https://huggingface.co/Helsinki-NLP/opus-mt-en-sv), which seemingly procudes higher quality translations than relying on the [AWS translate service](https://aws.amazon.com/translate/).
{"language": "sv"}
feature-extraction
M-CLIP/Swedish-500k
[ "transformers", "pytorch", "jax", "bert", "feature-extraction", "sv", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "sv" ]
TAGS #transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us
<br /> <p align="center"> <h1 align="center">Swe-CLIP 500k</h1> <p align="center"> <a href="URL Model Card</a> </p> </p> ## Usage To use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github. Once this is done, you can load and use the model with the following code ## About A KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br> Training data pairs was generated by sampling 500k sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish. All translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service.
[ "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code", "## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 500k sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ "TAGS\n#transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us \n", "## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code", "## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 500k sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ 34, 56, 126 ]
[ "passage: TAGS\n#transformers #pytorch #jax #bert #feature-extraction #sv #endpoints_compatible #region-us \n## Usage\nTo use this model along with the original CLIP vision encoder you need to download the code and additional linear weights from the Multilingual-CLIP Github.\nOnce this is done, you can load and use the model with the following code## About\nA KB/Bert-Swedish-Cased tuned to match the embedding space of the CLIP text encoder which accompanies the Res50x4 vision encoder. <br>\n\nTraining data pairs was generated by sampling 500k sentences from the combined descriptions of GCC + MSCOCO + VizWiz, and translating them into Swedish.\nAll translation was done using the Huggingface Opus Model, which seemingly procudes higher quality translations than relying on the AWS translate service." ]
[ -0.09415526688098907, -0.005294514819979668, 0.0006534144631586969, 0.06977235525846481, 0.14159569144248962, 0.005349567160010338, 0.0074509065598249435, 0.04077782481908798, -0.008005866780877113, -0.031662631779909134, 0.07953056693077087, 0.060571324080228806, 0.11138799786567688, 0.16279539465904236, -0.005223517306149006, -0.3264393210411072, 0.05228424817323685, 0.04409100115299225, -0.08107093721628189, 0.07074075937271118, 0.05436258763074875, -0.03687826916575432, 0.10776399821043015, 0.01744251884520054, -0.12457606941461563, 0.04514215141534805, -0.048307545483112335, -0.021574579179286957, 0.059059012681245804, 0.11759770661592484, 0.11133480817079544, 0.009346753358840942, 0.10666308552026749, -0.10410522669553757, 0.009997189976274967, -0.005302483215928078, -0.02157518081367016, 0.014371375553309917, 0.05207053944468498, 0.0549277700483799, 0.0020526882726699114, -0.04775908589363098, 0.0021277021151036024, 0.023552052676677704, -0.05817034840583801, -0.014364487491548061, -0.003281499957665801, -0.06160961091518402, 0.1093517318367958, 0.08048611879348755, -0.020446516573429108, 0.05436389893293381, -0.06871061027050018, 0.11440731585025787, 0.11046964675188065, -0.20196495950222015, -0.018642015755176544, 0.12915052473545074, 0.07056563347578049, 0.08293475210666656, -0.06384123861789703, 0.05704210326075554, 0.03857692703604698, 0.013590678572654724, 0.005502090323716402, -0.08716174215078354, -0.07685759663581848, -0.051020506769418716, -0.13155756890773773, 0.012525702826678753, 0.18822260200977325, 0.012171327136456966, -0.05642069876194, -0.04346980154514313, -0.06398914009332657, 0.027419202029705048, -0.018087094649672508, 0.0004770160303451121, 0.04089075326919556, 0.021759308874607086, -0.07289759069681168, -0.1227026879787445, -0.11471420526504517, -0.06702219694852829, -0.11978080123662949, 0.09965432435274124, 0.01663311943411827, 0.07424886524677277, -0.006662242580205202, 0.07201012223958969, -0.09204473346471786, -0.06044904887676239, -0.07295181602239609, -0.0823347195982933, -0.0757836326956749, 0.049220602959394455, -0.09611907601356506, -0.12698909640312195, -0.011180422268807888, 0.0373239628970623, -0.014211791567504406, 0.04535971209406853, -0.0019651297479867935, 0.09162843972444534, 0.01053472887724638, 0.21905909478664398, -0.06244044750928879, 0.01262866985052824, -0.012763121165335178, -0.11802925169467926, -0.04607776552438736, -0.031272586435079575, -0.14674225449562073, -0.06639666855335236, -0.1137804463505745, -0.00102382549084723, -0.1041111871600151, 0.07469093799591064, -0.029807839542627335, -0.03232259303331375, 0.014758938923478127, -0.09566101431846619, 0.043128542602062225, -0.041268039494752884, -0.013563510961830616, 0.09236893057823181, 0.13189511001110077, 0.013290309347212315, -0.12489566206932068, 0.01364877074956894, -0.02936975099146366, 0.03207629173994064, -0.06561758369207382, -0.11555955559015274, -0.004907728638499975, -0.08854147791862488, 0.036916736513376236, -0.13096840679645538, -0.12363921105861664, -0.05898916721343994, 0.034175947308540344, 0.0195902269333601, 0.03211851418018341, -0.1290687769651413, 0.0210310909897089, -0.009514238685369492, -0.024501094594597816, -0.07788406312465668, 0.00334569183178246, -0.0035294375848025084, -0.11557094007730484, 0.08894761651754379, -0.1889943927526474, 0.0385250449180603, -0.14769017696380615, -0.016993869096040726, -0.1246705949306488, 0.2034972757101059, -0.05319112911820412, 0.004068913869559765, -0.05985838174819946, -0.07034095376729965, -0.011891686357557774, 0.061400823295116425, 0.02249911241233349, 0.13388997316360474, -0.19529029726982117, -0.0605333112180233, 0.21654289960861206, -0.1454216092824936, -0.01912015676498413, 0.09098280966281891, -0.011010880582034588, 0.018814070150256157, 0.10568711161613464, 0.2080315351486206, 0.0778040960431099, -0.05115015432238579, 0.016722356900572777, 0.08897355198860168, -0.07351617515087128, -0.04591170325875282, 0.08087178319692612, 0.01168245542794466, -0.02442299760878086, 0.032204966992139816, -0.12942059338092804, 0.10533100366592407, 0.005899368319660425, -0.057702671736478806, 0.017161022871732712, -0.0069259279407560825, -0.09607179462909698, 0.037597209215164185, 0.06899882107973099, -0.008897695690393448, -0.006909084506332874, -0.01850178837776184, 0.045749276876449585, -0.1696082204580307, 0.07553961873054504, -0.04897266998887062, -0.052907366305589676, -0.11855742335319519, 0.0348564051091671, -0.04069976881146431, -0.06417576223611832, -0.009800653904676437, 0.031051188707351685, 0.02539035677909851, 0.06916921585798264, 0.06606083363294601, 0.0792493000626564, -0.018238259479403496, -0.03109261766076088, 0.021277423948049545, -0.05627502501010895, -0.027493806555867195, -0.06559458374977112, -0.01457242202013731, -0.018497100099921227, 0.010171981528401375, -0.0489739254117012, 0.0012077140854671597, 0.05507223308086395, 0.07096873223781586, 0.0004110421286895871, -0.0419095940887928, -0.010153179988265038, 0.04900100827217102, -0.007596115581691265, -0.04031183198094368, 0.05539747327566147, -0.0018630727427080274, -0.12966288626194, 0.23475494980812073, -0.015495005995035172, -0.042116038501262665, 0.11241649091243744, -0.11759693920612335, -0.011865023523569107, -0.08397172391414642, -0.014803003519773483, -0.0037181468214839697, -0.04635925963521004, -0.028180597350001335, 0.22739411890506744, 0.006503772921860218, 0.13376161456108093, -0.06760629266500473, 0.0428348071873188, 0.01338322926312685, -0.06787361204624176, -0.028055090457201004, 0.0903305783867836, 0.06421870738267899, -0.19018349051475525, 0.0845058411359787, 0.024799473583698273, -0.007803262211382389, 0.2501596510410309, -0.0010879908222705126, -0.0788264200091362, 0.017411017790436745, -0.014486552216112614, -0.009059317409992218, 0.07613153010606766, -0.05307906121015549, -0.029294801875948906, 0.039646655321121216, 0.030045809224247932, 0.04193228855729103, -0.13349509239196777, 0.010994861833751202, 0.03667650744318962, -0.031107379123568535, -0.02878507971763611, -0.0031637640204280615, -0.07382603734731674, -0.018001701682806015, -0.02065541036427021, -0.004599188454449177, 0.03220326825976372, -0.02393866516649723, -0.08903475850820541, 0.18437807261943817, -0.09389474987983704, -0.283263623714447, -0.23480384051799774, -0.001964220544323325, -0.06066235899925232, 0.05496295168995857, 0.06536737829446793, -0.11002498120069504, -0.07586909830570221, -0.04952343925833702, 0.12373292446136475, -0.029408548027276993, -0.008242572657763958, -0.010483956895768642, -0.025484399870038033, -0.03788356855511665, -0.10517067462205887, -0.010166940279304981, -0.03831901401281357, -0.09749352931976318, 0.040664516389369965, -0.13857422769069672, 0.13451449573040009, 0.057691022753715515, -0.04672721028327942, 0.03474016860127449, -0.016637586057186127, 0.16609366238117218, -0.09896855056285858, -0.005305084399878979, 0.0030562628526240587, -0.07270557433366776, 0.046608153730630875, 0.06420469284057617, 0.01149771548807621, -0.06761950999498367, -0.011254651471972466, -0.031171534210443497, -0.11074758321046829, -0.12282343953847885, -0.09982697665691376, -0.08267520368099213, 0.05805259943008423, 0.08396246284246445, 0.006447057705372572, -0.13006210327148438, 0.14396558701992035, -0.024184340611100197, 0.05369819700717926, 0.023803232237696648, 0.046083226799964905, 0.018291430547833443, -0.036180831491947174, 0.09152719378471375, -0.03537718579173088, -0.05864263325929642, 0.07656880468130112, 0.07277892529964447, 0.1836405247449875, -0.03220907226204872, 0.08544693887233734, 0.025159694254398346, 0.07129428535699844, 0.09166538715362549, 0.18413525819778442, -0.026098942384123802, 0.0018095147097483277, -0.022883804515004158, -0.025905108079314232, -0.0645047202706337, 0.04934180900454521, 0.03335465490818024, -0.08134910464286804, -0.06908038258552551, -0.005570117849856615, 0.047082651406526566, 0.12744121253490448, 0.04869750142097473, -0.2520252466201782, -0.022339632734656334, 0.026636632159352303, 0.0018567313672974706, -0.06127622723579407, 0.04739939048886299, 0.14900778234004974, -0.14191199839115143, 0.1082642525434494, -0.03684286028146744, 0.12904760241508484, -0.11165054142475128, -0.01739875040948391, -0.06642390042543411, -0.006838249042630196, -0.0007395215216092765, 0.0963008850812912, -0.13335049152374268, 0.07820244133472443, 0.004602629225701094, 0.034342940896749496, -0.06164926290512085, -0.0006404611049219966, 0.01888766698539257, 0.1278018057346344, 0.17067159712314606, 0.06292733550071716, -0.015072571113705635, -0.1437138468027115, -0.07388754189014435, 0.07315176725387573, 0.05544237792491913, -0.06857708841562271, 0.03734996169805527, 0.005842117127031088, 0.02229425683617592, -0.06053435057401657, 0.057485371828079224, 0.03220991790294647, -0.16788211464881897, -0.010122710838913918, 0.0715562105178833, 0.1717180609703064, 0.029640400782227516, -0.039778172969818115, -0.06481602787971497, 0.15262167155742645, -0.08787946403026581, -0.11121150851249695, -0.11475247144699097, 0.05835960432887077, 0.0564710907638073, -0.06536867469549179, 0.06755843013525009, 0.03159473091363907, 0.07317862659692764, -0.041088346391916275, -0.10550816357135773, 0.040657564997673035, -0.08124789595603943, 0.010144513100385666, 0.02122417278587818, 0.043379899114370346, 0.03772387281060219, 0.00010180487151956186, 0.05025222897529602, 0.006760491523891687, -0.04342411458492279, -0.12387524545192719, -0.003422538284212351, 0.07558295130729675, 0.026735719293355942, 0.18423546850681305, -0.024309249594807625, -0.012079361826181412, -0.024161800742149353, 0.023384151980280876, 0.20320670306682587, 0.04782652109861374, -0.04138098657131195, 0.04977002367377281, 0.13683056831359863, -0.059069883078336716, -0.32049882411956787, -0.05784577503800392, 0.06692539155483246, 0.10600072145462036, -0.02839300036430359, -0.10742009431123734, 0.05515537038445473, 0.03724578395485878, 0.007855106145143509, -0.04769299924373627, -0.1235351711511612, -0.08327053487300873, 0.08365251123905182, 0.07149779051542282, 0.29458385705947876, -0.044027552008628845, -0.013363778591156006, -0.03825106471776962, -0.08170832693576813, 0.1207982748746872, -0.014523673802614212, 0.1181681901216507, 0.012506094761192799, 0.07103890925645828, 0.03630475699901581, -0.027706941589713097, 0.13182993233203888, -0.006745818071067333, -0.016554292291402817, -0.08449651300907135, 0.09770622849464417, 0.05691192299127579, 0.005388086196035147, 0.13308440148830414, -0.019720880314707756, 0.03046865202486515, -0.041188064962625504, -0.0488131120800972, -0.03717980533838272, 0.031393785029649734, 0.05037850886583328, -0.07887523621320724, -0.03850734978914261, 0.004505829885601997, 0.08800175786018372, 0.05204923450946808, 0.12596333026885986, -0.05861590802669525, -0.10707248002290726, 0.07026981562376022, 0.087500661611557, -0.018239090219140053, -0.13644538819789886, -0.014959786087274551, -0.024524005129933357, 0.15153220295906067, -0.07165771722793579, 0.07088935375213623, 0.11913078278303146, -0.03745371103286743, 0.09150330722332001, 0.08186015486717224, -0.0448959656059742, 0.05572497844696045, 0.06960366666316986, -0.11067463457584381, -0.08436984568834305, -0.06619869917631149, -0.13778813183307648, 0.059703174978494644, 0.08800926059484482, 0.17090101540088654, -0.0828469842672348, 0.014437834732234478, -0.023587163537740707, 0.043421030044555664, -0.08033999800682068, 0.1479477882385254, 0.016464265063405037, -0.022539332509040833, -0.16677214205265045, 0.09372616559267044, -0.0009142644703388214, -0.11373253911733627, 0.04031354561448097, 0.07126202434301376, -0.1353856325149536, -0.05373140797019005, -0.03248405084013939, 0.12932683527469635, -0.18295490741729736, -0.09504568576812744, -0.027135305106639862, -0.06887413561344147, 0.010535569861531258, -0.050714075565338135, 0.06572234630584717, 0.031045909970998764, -0.04384438693523407, -0.02482897974550724, -0.06749745458364487, 0.001730225165374577, 0.015452570281922817, 0.032695043832063675, -0.12206610292196274, 0.04694318398833275, -0.02804802916944027, 0.11129949241876602, -0.06778085976839066, -0.01180773414671421, -0.11288206279277802, 0.020389268174767494, 0.001116905128583312, 0.03777901083230972, -0.03725838661193848, -0.001536170020699501, -0.009569834917783737, -0.042947981506586075, -0.015970537438988686, 0.06959965825080872, -0.07300851494073868, -0.00823490135371685, -0.049698151648044586, -0.005011829547584057, 0.0005144365131855011, -0.02681715413928032, 0.03400782123208046, -0.019226940348744392, 0.03848341107368469, 0.05949384346604347, -0.06793262809515, 0.06522976607084274, -0.09047114849090576, -0.04975966736674309, 0.09557300060987473, 0.019734499976038933, 0.01042489055544138, 0.15540359914302826, -0.008030293509364128, 0.07476922869682312, 0.017519086599349976, -0.03050205484032631, 0.15690253674983978, -0.05535948649048805, -0.010486693121492863, -0.03707345947623253, -0.014227398671209812, -0.06062681972980499, 0.04962053522467613, 0.0030572530813515186, 0.17864976823329926, 0.11210939288139343, -0.04902387037873268, 0.09088051319122314, -0.06500512361526489, 0.006340759340673685, 0.04777001962065697, -0.1050393208861351, 0.06953456252813339, -0.11152718216180801, 0.028641099110245705, -0.0034812958911061287, 0.1620008647441864, 0.07275301218032837, 0.08304668217897415, -0.05193881317973137, 0.06632304936647415, 0.11278975009918213, 0.012811340391635895, 0.21125546097755432, 0.018492352217435837, -0.009098834358155727, -0.07006523758172989, 0.10038620978593826, 0.0546744167804718, 0.02090463973581791, -0.06671208888292313, -0.06084821745753288, -0.016911117359995842, 0.16032129526138306, 0.010745330713689327, 0.04053451865911484, -0.07677024602890015, -0.10554652661085129, -0.005851292051374912, 0.038203440606594086, -0.011512680910527706, 0.05952420458197594, 0.08402927964925766, -0.11576980352401733, 0.08262759447097778, 0.12859691679477692, -0.09433714300394058, -0.13731200993061066, -0.17017804086208344, -0.08714070171117783, -0.1669176071882248, 0.04212731122970581, -0.12390272319316864, 0.02799067832529545, 0.08796589821577072, 0.04279370605945587, 0.020132623612880707, 0.2058914303779602, -0.08565513789653778, -0.1374780535697937, 0.047320280224084854, -0.01309129036962986, 0.055175963789224625, 0.04920798912644386, -0.024430960416793823, 0.07985438406467438, 0.03334427997469902, 0.05259845405817032, 0.0010816697031259537, 0.06232057139277458, 0.03006713092327118, -0.025009922683238983, -0.03931166231632233, -0.07138621807098389, 0.03457428514957428, -0.004977155942469835, 0.043228015303611755, 0.034595560282468796, -0.06157025322318077, -0.023565055802464485, 0.0898158997297287, -0.07244382053613663, -0.026459097862243652, -0.11854289472103119, 0.057336319237947464, 0.05419212579727173, 0.10661911964416504, -0.017345862463116646, -0.09809718281030655, -0.010395849123597145, 0.23926666378974915, 0.15645207464694977, -0.009148338809609413, -0.008652209304273129, 0.020871423184871674, 0.01247795857489109, 0.055106163024902344, 0.12822245061397552, -0.007039346266537905, 0.19784992933273315, -0.0717136338353157, -0.0029868795536458492, 0.002200026297941804, -0.0569937601685524, -0.0383509136736393, -0.0394250862300396, -0.010845121927559376, -0.047271739691495895, -0.06662949919700623, 0.08801873028278351, -0.08426782488822937, -0.09448283910751343, 0.11065296828746796, -0.0624927319586277, -0.040196556597948074, -0.05540210381150246, 0.09485872089862823, 0.028007574379444122, 0.06517688930034637, -0.021602191030979156, 0.0718308687210083, 0.08263436704874039, 0.029293008148670197, -0.16837486624717712, -0.02082996815443039, -0.025942569598555565, -0.16030950844287872, 0.055333491414785385, 0.0024376173969358206, 0.06063072010874748, 0.01217991765588522, 0.06269817799329758, 0.028110241517424583, 0.03716898337006569, -0.08144775032997131, -0.029234103858470917, 0.03029698319733143, 0.132832869887352, -0.09305789321660995, -0.012613820843398571, -0.02056698314845562, -0.20561766624450684, 0.026116682216525078, 0.04374048486351967, -0.020276527851819992, 0.021090291440486908, 0.01449891459196806, -0.1159014031291008, 0.09334685653448105, 0.15871623158454895, 0.02968001179397106, -0.013598632998764515, -0.0788983553647995, 0.04526514187455177, 0.017337564378976822, -0.025256182998418808, 0.03429320082068443, -0.09119430929422379, -0.1184779480099678, -0.029391657561063766, -0.0006195064052008092, -0.0962943509221077, -0.009910456836223602, -0.08314009010791779, -0.01496435422450304, -0.05008223280310631, 0.08473773300647736, 0.08929914236068726, -0.025053899735212326, -0.00008628082287032157, -0.1397981494665146, 0.08993677794933319, 0.013093662448227406, -0.07698347419500351, -0.10813505947589874 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on MNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on MNLI validation set: ```bash matched_accuracy = 75.13 mismatched_accuracy = 75.93 ``` Mean and standard deviation for 5 runs on MNLI validation set: | | Matched Accuracy | Mismatched Accuracy | |:-----:|:----------------:|:-------------------:| | Adam | 73.30 ± 0.20 | 74.85 ± 0.09 | | M-FAC | 74.59 ± 0.41 | 75.95 ± 0.14 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 8276 \ --model_name_or_path prajjwal1/bert-mini \ --task_name mnli \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-mnli
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on MNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on MNLI validation set: Mean and standard deviation for 5 runs on MNLI validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on MRPC dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 512 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on MRPC validation set: ```bash f1 = 86.51 accuracy = 81.12 ``` Mean and standard deviation for 5 runs on MRPC validation set: | | F1 | Accuracy | |:----:|:-----------:|:----------:| | Adam | 84.57 ± 0.36| 76.57 ± 0.80| | M-FAC | 85.06 ± 1.63 | 78.87 ± 2.33 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 1234 \ --model_name_or_path prajjwal1/bert-mini \ --task_name mrpc \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 512, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-mrpc
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on MRPC dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on MRPC validation set: Mean and standard deviation for 5 runs on MRPC validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on QNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on QNLI validation set: ```bash accuracy = 83.90 ``` Mean and standard deviation for 5 runs on QNLI validation set: | | Accuracy | |:----:|:-----------:| | Adam | 83.85 ± 0.10 | | M-FAC | 83.70 ± 0.13 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 8276 \ --model_name_or_path prajjwal1/bert-mini \ --task_name qnli \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-qnli
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on QNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on QNLI validation set: Mean and standard deviation for 5 runs on QNLI validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on QQP dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on QQP validation set: ```bash f1 = 82.98 accuracy = 87.03 ``` Mean and standard deviation for 5 runs on QQP validation set: | | F1 | Accuracy | |:----:|:-----------:|:----------:| | Adam | 82.43 ± 0.10 | 86.45 ± 0.12 | | M-FAC | 82.67 ± 0.23 | 86.75 ± 0.20 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 10723 \ --model_name_or_path prajjwal1/bert-mini \ --task_name qqp \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-qqp
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on QQP dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on QQP validation set: Mean and standard deviation for 5 runs on QQP validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on SQuAD version 2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/question-answering](https://github.com/huggingface/transformers/tree/master/examples/pytorch/question-answering) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on SQuAD version 2 validation set: ```bash exact_match = 58.38 f1 = 61.65 ``` Mean and standard deviation for 5 runs on SQuAD version 2 validation set: | | Exact Match | F1 | |:----:|:-----------:|:----:| | Adam | 54.80 ± 0.47 | 58.13 ± 0.31 | | M-FAC | 58.02 ± 0.39 | 61.35 ± 0.24 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/question-answering/run_qa.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/question-answering/run_qa.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_qa.py \ --seed 8276 \ --model_name_or_path prajjwal1/bert-mini \ --dataset_name squad_v2 \ --version_2_with_negative \ --do_train \ --do_eval \ --per_device_train_batch_size 12 \ --learning_rate 1e-4 \ --num_train_epochs 2 \ --max_seq_length 384 \ --doc_stride 128 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
question-answering
M-FAC/bert-mini-finetuned-squadv2
[ "transformers", "pytorch", "bert", "question-answering", "arxiv:2107.03356", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on SQuAD version 2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on SQuAD version 2 validation set: Mean and standard deviation for 5 runs on SQuAD version 2 validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us \n" ]
[ -0.0559283047914505, 0.03416372090578079, -0.009732845239341259, -0.0020252089016139507, 0.0879221260547638, 0.031922321766614914, 0.0383654348552227, 0.08972509205341339, 0.12559157609939575, 0.03386548534035683, 0.19297437369823456, 0.22218891978263855, -0.04545334354043007, -0.0705554336309433, -0.09992892295122147, -0.1587919294834137, 0.03657795861363411, 0.11212265491485596, -0.02695426158607006, 0.1262393742799759, 0.04123806953430176, -0.1257665902376175, 0.06910396367311478, -0.03285091742873192, -0.07873557507991791, 0.06257278472185135, 0.020690862089395523, -0.07014790922403336, 0.14278098940849304, 0.033140745013952255, 0.15292710065841675, 0.03481966629624367, -0.10467124730348587, -0.1640297770500183, 0.036196570843458176, -0.02737594023346901, -0.05816439166665077, 0.05762394890189171, 0.05001475661993027, -0.0597543902695179, -0.015292903408408165, 0.06764578074216843, -0.017543235793709755, 0.06552194803953171, -0.1908387839794159, -0.17936068773269653, -0.07250824570655823, 0.06352566927671432, 0.0510316826403141, 0.11033067107200623, -0.005518108606338501, 0.18492965400218964, -0.11161933094263077, 0.09147223830223083, 0.23191767930984497, -0.33451610803604126, -0.010160161182284355, 0.08094295859336853, 0.06209300085902214, 0.04964464530348778, -0.011959007941186428, 0.06199980899691582, 0.052624814212322235, 0.025582069531083107, -0.10104797035455704, -0.10249049216508865, -0.051766715943813324, 0.09604703634977341, -0.08493750542402267, -0.10012168437242508, 0.23163782060146332, 0.019728008657693863, 0.04470421001315117, 0.07303784787654877, -0.10672768205404282, -0.014499202370643616, 0.022315140813589096, -0.044978413730859756, -0.026004169136285782, 0.028460752218961716, 0.02236807346343994, -0.019221657887101173, -0.1254902333021164, 0.011881989426910877, -0.24064838886260986, 0.2336076945066452, 0.012480870820581913, 0.09999486804008484, -0.23087559640407562, 0.05269548296928406, -0.06533333659172058, -0.08330701291561127, 0.01392254140228033, -0.06558261066675186, 0.043716661632061005, 0.017114531248807907, -0.048757851123809814, 0.04405871406197548, 0.04531193524599075, 0.16940586268901825, -0.0064667630940675735, 0.04404072463512421, 0.01064648199826479, 0.08772140741348267, 0.02643825113773346, 0.10076087713241577, -0.03461353853344917, -0.008354623802006245, -0.015257570892572403, -0.10265717655420303, -0.011943189427256584, -0.04043097794055939, -0.11051366478204727, -0.09151983261108398, 0.013940487988293171, 0.11609521508216858, 0.08169800788164139, -0.008550714701414108, -0.06116556376218796, -0.0033524553291499615, 0.03482556715607643, -0.02116112969815731, -0.01729409210383892, -0.007121305447071791, 0.021017206832766533, 0.16397824883460999, -0.045140016824007034, 0.009059914387762547, -0.03745853155851364, 0.09112247079610825, -0.08731081336736679, -0.01919448748230934, -0.005287656094878912, -0.027112646028399467, 0.07886156439781189, -0.09534450620412827, 0.06510094553232193, -0.1397145688533783, -0.009174582548439503, 0.020918773487210274, 0.019178152084350586, -0.013094179332256317, 0.014596262015402317, 0.014667944051325321, -0.031025083735585213, -0.01616712659597397, -0.05483603477478027, -0.03206024691462517, -0.047169510275125504, 0.11105688661336899, 0.04774998500943184, 0.04415271058678627, -0.07910653203725815, 0.04551943764090538, -0.06386426836252213, 0.04699463024735451, -0.07879757136106491, -0.07367035746574402, -0.022900154814124107, 0.12200405448675156, -0.03805121034383774, -0.08663498610258102, -0.0937020480632782, 0.007960454560816288, 0.0033033236395567656, 0.19053710997104645, -0.0013823185581713915, -0.0688571110367775, 0.16297340393066406, -0.05806438624858856, -0.22369106113910675, 0.058146290481090546, 0.02521255612373352, -0.04245174303650856, 0.06209256127476692, 0.17006371915340424, -0.038535695523023605, -0.10324307531118393, 0.005588095169514418, 0.11333927512168884, -0.11947300285100937, -0.11925427615642548, 0.052716776728630066, -0.05538088455796242, -0.10515177249908447, 0.024832656607031822, 0.02073746919631958, 0.043288782238960266, -0.09878122806549072, -0.027257073670625687, -0.021810349076986313, -0.012637455016374588, 0.06773360818624496, 0.05938895046710968, 0.05500936508178711, -0.0690554529428482, 0.015092629007995129, -0.04193658009171486, -0.010226245038211346, 0.071476049721241, 0.040591444820165634, -0.079291433095932, 0.1272226870059967, -0.14551663398742676, 0.0014376931358128786, -0.19632145762443542, -0.07441038638353348, -0.0343383364379406, 0.11016222089529037, -0.018106117844581604, 0.18577495217323303, 0.10550952702760696, -0.1384422928094864, -0.028619226068258286, -0.04280993342399597, 0.0928511843085289, 0.014436895959079266, -0.04381871223449707, -0.062357205897569656, 0.02552093006670475, -0.05811464414000511, -0.09271515905857086, -0.048585712909698486, -0.028965093195438385, 0.08626937121152878, 0.10336942225694656, -0.020120080560445786, 0.046949923038482666, -0.017921946942806244, 0.031162360683083534, 0.004827975295484066, 0.03249284625053406, 0.10567937046289444, -0.033422622829675674, -0.07257154583930969, 0.12043692171573639, -0.07757720351219177, 0.3403246998786926, 0.16739249229431152, -0.3075758218765259, 0.01600508950650692, -0.02422998659312725, -0.0302039235830307, 0.014794849790632725, 0.09589419513940811, 0.0076914275996387005, 0.10532986372709274, 0.041485514491796494, 0.09100746363401413, -0.040829528123140335, -0.05053500458598137, 0.007452663034200668, -0.06737543642520905, -0.04316571727395058, 0.13136883080005646, 0.05285842344164848, -0.1993851363658905, 0.15203799307346344, 0.3016033172607422, 0.06151820346713066, 0.030563723295927048, -0.03793589025735855, -0.04842445254325867, -0.018562406301498413, 0.02201417088508606, -0.039420001208782196, 0.06645987927913666, -0.22340553998947144, -0.005037859547883272, 0.08545831590890884, 0.007352173328399658, 0.07303261756896973, -0.13978958129882812, -0.07725895196199417, 0.0235018040984869, 0.027728039771318436, -0.10730347782373428, 0.11377285420894623, 0.03892456740140915, 0.1151914969086647, 0.04129806533455849, -0.01064713392406702, 0.09244965016841888, 0.005531232338398695, -0.07667362689971924, 0.1552906334400177, -0.10223834216594696, -0.2359551042318344, -0.08548309653997421, -0.11327898502349854, 0.016497619450092316, 0.006541161797940731, 0.06641174852848053, -0.1114915981888771, -0.02164468728005886, 0.09816204756498337, 0.008077865466475487, -0.18802224099636078, 0.001306699588894844, -0.0009897787822410464, 0.018378738313913345, -0.060162801295518875, -0.06825093179941177, -0.07121503353118896, -0.07623472809791565, -0.055076029151678085, 0.11586696654558182, -0.09188494086265564, 0.09602198004722595, 0.10347741097211838, 0.04298098012804985, 0.06501410901546478, 0.004189659375697374, 0.23590369522571564, -0.0879603698849678, -0.04055597633123398, 0.18691514432430267, -0.03590299189090729, 0.1028328537940979, 0.1175544410943985, 0.028942296281456947, -0.08146321773529053, -0.017540743574500084, -0.023349585011601448, -0.06055954471230507, -0.2782106101512909, -0.051573496311903, -0.11044037342071533, 0.05224183574318886, 0.014081105589866638, 0.03581952303647995, 0.09192807227373123, 0.07249573618173599, 0.03209809586405754, -0.11100280284881592, -0.0741809532046318, 0.062048692256212234, 0.2978520691394806, -0.05981411412358284, 0.0868636965751648, -0.060517631471157074, -0.06988123804330826, 0.05889800563454628, 0.06765872985124588, 0.1315091848373413, 0.1278281807899475, -0.014946455135941505, 0.062177903950214386, 0.1650981307029724, 0.13036364316940308, 0.09516197443008423, -0.00871922355145216, -0.08069678395986557, -0.017730532214045525, 0.00527510279789567, -0.07624465972185135, 0.025985153391957283, 0.1199839785695076, -0.10227690637111664, -0.03183295577764511, -0.19835351407527924, 0.04730409383773804, 0.03418049216270447, 0.07954341918230057, -0.11063986271619797, 0.001980105647817254, 0.050755757838487625, -0.010232723318040371, -0.06808458268642426, 0.07757586985826492, 0.00876978412270546, -0.12268128991127014, 0.019401824101805687, -0.0386323556303978, 0.12141597270965576, 0.008364994078874588, 0.07331550866365433, -0.08910758048295975, -0.15151052176952362, 0.04158541560173035, 0.09822681546211243, -0.28727468848228455, 0.3172987699508667, 0.013855267316102982, -0.10556428879499435, -0.03886725753545761, -0.05839242413640022, -0.04368560388684273, 0.1463778018951416, 0.15708279609680176, 0.04078265279531479, -0.003065852914005518, -0.11561058461666107, 0.05595499649643898, 0.048957765102386475, 0.12368092685937881, 0.0026331341359764338, -0.02777743712067604, -0.008494893088936806, 0.017273005098104477, -0.03228477016091347, 0.09685200452804565, 0.06916848570108414, -0.09851773083209991, 0.0666775032877922, -0.005330939777195454, 0.03715655952692032, -0.006083178799599409, -0.009954672306776047, -0.05401984229683876, 0.09843684732913971, -0.06569293141365051, -0.0476747564971447, -0.0798073261976242, -0.12298816442489624, 0.14766667783260345, -0.11011501401662827, 0.03248024731874466, -0.07757844030857086, -0.08812113851308823, -0.06233283877372742, -0.1120319589972496, 0.13634233176708221, -0.09925206005573273, -0.005378211382776499, -0.03292681649327278, 0.20227378606796265, -0.05142014101147652, 0.0232310239225626, -0.02081884630024433, 0.04336104542016983, -0.14131653308868408, -0.08600595593452454, 0.06222688406705856, -0.07231242209672928, 0.08326486498117447, 0.011443641036748886, 0.017992381006479263, 0.11154595017433167, -0.025548987090587616, 0.027987703680992126, 0.2116231918334961, 0.25381791591644287, -0.03989892825484276, 0.06848391890525818, 0.18813000619411469, 0.0027833872009068727, -0.23224122822284698, -0.0636444240808487, -0.14323174953460693, -0.0677252784371376, -0.03054635040462017, -0.0952848270535469, 0.10637721419334412, 0.034675393253564835, -0.04290527477860451, 0.11840938776731491, -0.2277371883392334, -0.03815982863306999, 0.15522445738315582, -0.000836420338600874, 0.5247559547424316, -0.11620616912841797, -0.09053033590316772, 0.03809721767902374, -0.3191915452480316, 0.06945427507162094, 0.09770572185516357, 0.04537516087293625, -0.05122990906238556, 0.12376430630683899, 0.037678152322769165, -0.08465487509965897, 0.15146327018737793, 0.009093799628317356, 0.011870436370372772, -0.08159580826759338, -0.18133191764354706, 0.0276014506816864, -0.0018815441289916635, -0.025199517607688904, 0.0516025684773922, 0.0485505610704422, -0.18301095068454742, -0.008506233803927898, -0.1403193473815918, 0.047389257699251175, 0.024368891492486, -0.04071890562772751, -0.02656714804470539, -0.044406402856111526, -0.020187005400657654, -0.006087725982069969, 0.273295521736145, -0.06589705497026443, 0.18047678470611572, 0.017141452059149742, 0.11779666692018509, -0.217109814286232, -0.10910623520612717, -0.04859909042716026, -0.05953025072813034, 0.09319070726633072, -0.06708763539791107, 0.05260694772005081, 0.1962900608778, 0.003339231014251709, 0.016046836972236633, 0.09218890219926834, 0.016776449978351593, -0.03834070265293121, 0.08561284095048904, -0.21483063697814941, -0.10031958669424057, -0.013626116327941418, 0.023004066199064255, 0.052065227180719376, 0.09317009896039963, 0.08299937844276428, 0.09184443205595016, -0.029897890985012054, 0.015553166158497334, -0.04748998582363129, -0.062322940677404404, 0.03330119326710701, 0.08885984867811203, 0.039575833827257156, -0.10588718950748444, 0.060136329382658005, -0.033634498715400696, -0.246807262301445, -0.027298996224999428, 0.08192599564790726, -0.10633534938097, -0.09651028364896774, -0.11953215301036835, 0.03136840835213661, -0.18276667594909668, -0.031741902232170105, -0.029099680483341217, -0.08274532109498978, 0.07501186430454254, 0.2354886531829834, 0.07384824007749557, 0.05759386345744133, -0.008219186216592789, -0.041490692645311356, 0.02707919292151928, -0.04710500314831734, -0.0411410890519619, 0.0013290621573105454, -0.07504136860370636, -0.0740903913974762, -0.01276478823274374, 0.17822611331939697, -0.06452479958534241, -0.06454910337924957, -0.1594747006893158, 0.08278069645166397, -0.15059347450733185, -0.08908839523792267, -0.10902751237154007, -0.0701851025223732, -0.0049271960742771626, -0.1401086002588272, -0.05275280401110649, -0.025024082511663437, -0.12793657183647156, 0.07123786956071854, 0.06696321070194244, 0.014488967135548592, -0.07987331598997116, -0.051093898713588715, 0.15301580727100372, -0.0108917485922575, 0.0946940928697586, 0.17851689457893372, -0.08389171212911606, 0.08873248845338821, -0.09735890477895737, -0.1473073661327362, 0.06456159800291061, 0.01873619668185711, 0.06140461936593056, 0.0184780303388834, -0.008387376554310322, 0.06260032951831818, 0.02720401994884014, 0.06573618948459625, -0.005082007497549057, -0.09572359174489975, 0.012728172354400158, 0.0222983006387949, -0.1834321767091751, -0.03449947386980057, -0.10479400306940079, 0.12038619071245193, 0.016473548486828804, 0.06978096812963486, 0.019086843356490135, 0.10187271237373352, -0.05879705771803856, 0.027913540601730347, -0.0016265944577753544, -0.1483083814382553, 0.01846230961382389, -0.06944625824689865, 0.02095722407102585, -0.02319088578224182, 0.20843572914600372, -0.14782722294330597, 0.037954237312078476, 0.05084753781557083, 0.07179179787635803, -0.024368025362491608, -0.03214782476425171, 0.19392095506191254, 0.08232925832271576, -0.06742420792579651, -0.06867744028568268, 0.10625404119491577, -0.0667165219783783, -0.024755971506237984, 0.14143647253513336, 0.1343657523393631, 0.08631344884634018, 0.05528534948825836, -0.003452352015301585, 0.018413837999105453, -0.0538596585392952, -0.21881985664367676, -0.01845693774521351, 0.013289832510054111, 0.016898568719625473, 0.158567875623703, 0.16876663267612457, -0.006667053326964378, 0.04087504372000694, -0.06670542806386948, -0.0038983349222689867, -0.13310016691684723, -0.06374851614236832, -0.057407524436712265, -0.09875772893428802, 0.051331937313079834, -0.08058018982410431, 0.02353200688958168, 0.13817350566387177, 0.06750301271677017, -0.03616323322057724, 0.10194993764162064, 0.07581809908151627, -0.07089465856552124, 0.003414067206904292, 0.01710161380469799, 0.07615750283002853, -0.008067957125604153, 0.03179050609469414, -0.08890169113874435, -0.09842932969331741, -0.03685155138373375, 0.03157423436641693, -0.08305443823337555, -0.05352720990777016, -0.10139942169189453, -0.0994420051574707, -0.06939271092414856, 0.11988519877195358, -0.02488076686859131, 0.15549138188362122, -0.04565608873963356, 0.06221667677164078, 0.013537650927901268, 0.2248864471912384, -0.08014312386512756, -0.023897936567664146, -0.009845787659287453, 0.20274843275547028, 0.013034183531999588, 0.09620318561792374, -0.014360329136252403, 0.03793814405798912, -0.04559130221605301, 0.30802759528160095, 0.19079582393169403, -0.06430099904537201, 0.037545349448919296, 0.06447435170412064, 0.051809292286634445, 0.09149236977100372, 0.0010274728992953897, 0.10408493131399155, 0.27621787786483765, -0.10698382556438446, -0.03668263554573059, -0.04524974524974823, 0.03966931626200676, -0.004912933334708214, 0.06283459067344666, 0.046369388699531555, -0.06742709130048752, -0.06461990624666214, 0.08255114406347275, -0.11474703252315521, 0.08682408183813095, 0.05571768805384636, -0.2171790599822998, -0.053035933524370193, -0.02192807011306286, 0.15748465061187744, -0.0043814764358103275, 0.12456151843070984, -0.034683555364608765, -0.11835989356040955, 0.0555509477853775, 0.043328359723091125, -0.22565597295761108, -0.09549052268266678, 0.137676402926445, 0.012482707388699055, 0.004645138047635555, -0.005880656186491251, 0.05502373352646828, 0.09030630439519882, 0.04501914978027344, -0.06152934581041336, 0.013511494733393192, 0.08018794655799866, -0.12487524002790451, -0.12297818809747696, -0.04581589996814728, 0.06647314876317978, -0.05869496613740921, 0.07246042042970657, -0.18757478892803192, 0.040738172829151154, 0.02940785326063633, -0.011162296868860722, -0.03739456459879875, 0.0477583184838295, -0.05269913002848625, 0.0260939821600914, 0.059847716242074966, -0.00800741370767355, -0.05684446543455124, -0.03644451126456261, -0.018044309690594673, 0.06041918322443962, -0.0512237623333931, -0.12672007083892822, -0.019074290990829468, -0.03594363480806351, 0.0763264000415802, -0.03162692114710808, -0.08778014034032822, -0.039504241198301315, -0.019195394590497017, 0.04206323251128197, -0.0654364749789238, 0.002784429583698511, 0.016522984951734543, 0.046082038432359695, 0.02630269154906273, -0.08010213822126389, 0.0440823920071125, 0.09006372839212418, -0.11666065454483032, -0.05680637061595917 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on SST-2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on SST-2 validation set: ```bash accuracy = 84.74 ``` Mean and standard deviation for 5 runs on SST-2 validation set: | | Accuracy | |:----:|:-----------:| | Adam | 85.46 ± 0.58 | | M-FAC | 84.20 ± 0.58 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 1234 \ --model_name_or_path prajjwal1/bert-mini \ --task_name sst2 \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 3 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-sst2
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on SST-2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on SST-2 validation set: Mean and standard deviation for 5 runs on SST-2 validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-mini model finetuned with M-FAC This model is finetuned on STS-B dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 512 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on STS-B validation set: ```bash pearson = 85.03 spearman = 85.06 ``` Mean and standard deviation for 5 runs on STS-B validation set: | | Pearson | Spearman | |:----:|:-----------:|:----------:| | Adam | 82.09 ± 0.54 | 82.64 ± 0.71 | | M-FAC | 84.66 ± 0.30 | 84.65 ± 0.30 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 7 \ --model_name_or_path prajjwal1/bert-mini \ --task_name stsb \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 512, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-mini-finetuned-stsb
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-mini model finetuned with M-FAC ==================================== This model is finetuned on STS-B dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on STS-B validation set: Mean and standard deviation for 5 runs on STS-B validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on MNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on MNLI validation set: ```bash matched_accuracy = 69.55 mismatched_accuracy = 70.58 ``` Mean and standard deviation for 5 runs on MNLI validation set: | | Matched Accuracy | Mismatched Accuracy | |:----:|:-----------:|:----------:| | Adam | 65.36 ± 0.13 | 66.78 ± 0.15 | | M-FAC | 68.28 ± 3.29 | 68.98 ± 3.05 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 42 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name mnli \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-mnli
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on MNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on MNLI validation set: Mean and standard deviation for 5 runs on MNLI validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on MRPC dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 512 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on MRPC validation set: ```bash f1 = 83.12 accuracy = 73.52 ``` Mean and standard deviation for 5 runs on MRPC validation set: | | F1 | Accuracy | |:----:|:-----------:|:----------:| | Adam | 81.68 ± 0.33 | 69.90 ± 0.32 | | M-FAC | 82.77 ± 0.22 | 72.94 ± 0.37 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 42 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name mrpc \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 512, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-mrpc
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on MRPC dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on MRPC validation set: Mean and standard deviation for 5 runs on MRPC validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on QNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on QNLI validation set: ```bash accuracy = 81.54 ``` Mean and standard deviation for 5 runs on QNLI validation set: | | Accuracy | |:----:|:-----------:| | Adam | 77.85 ± 0.15 | | M-FAC | 81.17 ± 0.43 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 8276 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name qnli \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-qnli
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on QNLI dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on QNLI validation set: Mean and standard deviation for 5 runs on QNLI validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on QQP dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on QQP validation set: ```bash f1 = 79.84 accuracy = 84.40 ``` Mean and standard deviation for 5 runs on QQP validation set: | | F1 | Accuracy | |:----:|:-----------:|:----------:| | Adam | 77.58 ± 0.08 | 81.09 ± 0.15 | | M-FAC | 79.71 ± 0.13 | 84.29 ± 0.08 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 1234 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name qqp \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-qqp
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on QQP dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on QQP validation set: Mean and standard deviation for 5 runs on QQP validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on SQuAD version 2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/question-answering](https://github.com/huggingface/transformers/tree/master/examples/pytorch/question-answering) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on SQuAD version 2 validation set: ```bash exact_match = 50.29 f1 = 52.43 ``` Mean and standard deviation for 5 runs on SQuAD version 2 validation set: | | Exact Match | F1 | |:----:|:-----------:|:----:| | Adam | 48.41 ± 0.57 | 49.99 ± 0.54 | | M-FAC | 49.80 ± 0.43 | 52.18 ± 0.20 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/question-answering/run_qa.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/question-answering/run_qa.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_qa.py \ --seed 42 \ --model_name_or_path prajjwal1/bert-tiny \ --dataset_name squad_v2 \ --version_2_with_negative \ --do_train \ --do_eval \ --per_device_train_batch_size 12 \ --learning_rate 1e-4 \ --num_train_epochs 2 \ --max_seq_length 384 \ --doc_stride 128 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
question-answering
M-FAC/bert-tiny-finetuned-squadv2
[ "transformers", "pytorch", "bert", "question-answering", "arxiv:2107.03356", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on SQuAD version 2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on SQuAD version 2 validation set: Mean and standard deviation for 5 runs on SQuAD version 2 validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #arxiv-2107.03356 #endpoints_compatible #region-us \n" ]
[ -0.0559283047914505, 0.03416372090578079, -0.009732845239341259, -0.0020252089016139507, 0.0879221260547638, 0.031922321766614914, 0.0383654348552227, 0.08972509205341339, 0.12559157609939575, 0.03386548534035683, 0.19297437369823456, 0.22218891978263855, -0.04545334354043007, -0.0705554336309433, -0.09992892295122147, -0.1587919294834137, 0.03657795861363411, 0.11212265491485596, -0.02695426158607006, 0.1262393742799759, 0.04123806953430176, -0.1257665902376175, 0.06910396367311478, -0.03285091742873192, -0.07873557507991791, 0.06257278472185135, 0.020690862089395523, -0.07014790922403336, 0.14278098940849304, 0.033140745013952255, 0.15292710065841675, 0.03481966629624367, -0.10467124730348587, -0.1640297770500183, 0.036196570843458176, -0.02737594023346901, -0.05816439166665077, 0.05762394890189171, 0.05001475661993027, -0.0597543902695179, -0.015292903408408165, 0.06764578074216843, -0.017543235793709755, 0.06552194803953171, -0.1908387839794159, -0.17936068773269653, -0.07250824570655823, 0.06352566927671432, 0.0510316826403141, 0.11033067107200623, -0.005518108606338501, 0.18492965400218964, -0.11161933094263077, 0.09147223830223083, 0.23191767930984497, -0.33451610803604126, -0.010160161182284355, 0.08094295859336853, 0.06209300085902214, 0.04964464530348778, -0.011959007941186428, 0.06199980899691582, 0.052624814212322235, 0.025582069531083107, -0.10104797035455704, -0.10249049216508865, -0.051766715943813324, 0.09604703634977341, -0.08493750542402267, -0.10012168437242508, 0.23163782060146332, 0.019728008657693863, 0.04470421001315117, 0.07303784787654877, -0.10672768205404282, -0.014499202370643616, 0.022315140813589096, -0.044978413730859756, -0.026004169136285782, 0.028460752218961716, 0.02236807346343994, -0.019221657887101173, -0.1254902333021164, 0.011881989426910877, -0.24064838886260986, 0.2336076945066452, 0.012480870820581913, 0.09999486804008484, -0.23087559640407562, 0.05269548296928406, -0.06533333659172058, -0.08330701291561127, 0.01392254140228033, -0.06558261066675186, 0.043716661632061005, 0.017114531248807907, -0.048757851123809814, 0.04405871406197548, 0.04531193524599075, 0.16940586268901825, -0.0064667630940675735, 0.04404072463512421, 0.01064648199826479, 0.08772140741348267, 0.02643825113773346, 0.10076087713241577, -0.03461353853344917, -0.008354623802006245, -0.015257570892572403, -0.10265717655420303, -0.011943189427256584, -0.04043097794055939, -0.11051366478204727, -0.09151983261108398, 0.013940487988293171, 0.11609521508216858, 0.08169800788164139, -0.008550714701414108, -0.06116556376218796, -0.0033524553291499615, 0.03482556715607643, -0.02116112969815731, -0.01729409210383892, -0.007121305447071791, 0.021017206832766533, 0.16397824883460999, -0.045140016824007034, 0.009059914387762547, -0.03745853155851364, 0.09112247079610825, -0.08731081336736679, -0.01919448748230934, -0.005287656094878912, -0.027112646028399467, 0.07886156439781189, -0.09534450620412827, 0.06510094553232193, -0.1397145688533783, -0.009174582548439503, 0.020918773487210274, 0.019178152084350586, -0.013094179332256317, 0.014596262015402317, 0.014667944051325321, -0.031025083735585213, -0.01616712659597397, -0.05483603477478027, -0.03206024691462517, -0.047169510275125504, 0.11105688661336899, 0.04774998500943184, 0.04415271058678627, -0.07910653203725815, 0.04551943764090538, -0.06386426836252213, 0.04699463024735451, -0.07879757136106491, -0.07367035746574402, -0.022900154814124107, 0.12200405448675156, -0.03805121034383774, -0.08663498610258102, -0.0937020480632782, 0.007960454560816288, 0.0033033236395567656, 0.19053710997104645, -0.0013823185581713915, -0.0688571110367775, 0.16297340393066406, -0.05806438624858856, -0.22369106113910675, 0.058146290481090546, 0.02521255612373352, -0.04245174303650856, 0.06209256127476692, 0.17006371915340424, -0.038535695523023605, -0.10324307531118393, 0.005588095169514418, 0.11333927512168884, -0.11947300285100937, -0.11925427615642548, 0.052716776728630066, -0.05538088455796242, -0.10515177249908447, 0.024832656607031822, 0.02073746919631958, 0.043288782238960266, -0.09878122806549072, -0.027257073670625687, -0.021810349076986313, -0.012637455016374588, 0.06773360818624496, 0.05938895046710968, 0.05500936508178711, -0.0690554529428482, 0.015092629007995129, -0.04193658009171486, -0.010226245038211346, 0.071476049721241, 0.040591444820165634, -0.079291433095932, 0.1272226870059967, -0.14551663398742676, 0.0014376931358128786, -0.19632145762443542, -0.07441038638353348, -0.0343383364379406, 0.11016222089529037, -0.018106117844581604, 0.18577495217323303, 0.10550952702760696, -0.1384422928094864, -0.028619226068258286, -0.04280993342399597, 0.0928511843085289, 0.014436895959079266, -0.04381871223449707, -0.062357205897569656, 0.02552093006670475, -0.05811464414000511, -0.09271515905857086, -0.048585712909698486, -0.028965093195438385, 0.08626937121152878, 0.10336942225694656, -0.020120080560445786, 0.046949923038482666, -0.017921946942806244, 0.031162360683083534, 0.004827975295484066, 0.03249284625053406, 0.10567937046289444, -0.033422622829675674, -0.07257154583930969, 0.12043692171573639, -0.07757720351219177, 0.3403246998786926, 0.16739249229431152, -0.3075758218765259, 0.01600508950650692, -0.02422998659312725, -0.0302039235830307, 0.014794849790632725, 0.09589419513940811, 0.0076914275996387005, 0.10532986372709274, 0.041485514491796494, 0.09100746363401413, -0.040829528123140335, -0.05053500458598137, 0.007452663034200668, -0.06737543642520905, -0.04316571727395058, 0.13136883080005646, 0.05285842344164848, -0.1993851363658905, 0.15203799307346344, 0.3016033172607422, 0.06151820346713066, 0.030563723295927048, -0.03793589025735855, -0.04842445254325867, -0.018562406301498413, 0.02201417088508606, -0.039420001208782196, 0.06645987927913666, -0.22340553998947144, -0.005037859547883272, 0.08545831590890884, 0.007352173328399658, 0.07303261756896973, -0.13978958129882812, -0.07725895196199417, 0.0235018040984869, 0.027728039771318436, -0.10730347782373428, 0.11377285420894623, 0.03892456740140915, 0.1151914969086647, 0.04129806533455849, -0.01064713392406702, 0.09244965016841888, 0.005531232338398695, -0.07667362689971924, 0.1552906334400177, -0.10223834216594696, -0.2359551042318344, -0.08548309653997421, -0.11327898502349854, 0.016497619450092316, 0.006541161797940731, 0.06641174852848053, -0.1114915981888771, -0.02164468728005886, 0.09816204756498337, 0.008077865466475487, -0.18802224099636078, 0.001306699588894844, -0.0009897787822410464, 0.018378738313913345, -0.060162801295518875, -0.06825093179941177, -0.07121503353118896, -0.07623472809791565, -0.055076029151678085, 0.11586696654558182, -0.09188494086265564, 0.09602198004722595, 0.10347741097211838, 0.04298098012804985, 0.06501410901546478, 0.004189659375697374, 0.23590369522571564, -0.0879603698849678, -0.04055597633123398, 0.18691514432430267, -0.03590299189090729, 0.1028328537940979, 0.1175544410943985, 0.028942296281456947, -0.08146321773529053, -0.017540743574500084, -0.023349585011601448, -0.06055954471230507, -0.2782106101512909, -0.051573496311903, -0.11044037342071533, 0.05224183574318886, 0.014081105589866638, 0.03581952303647995, 0.09192807227373123, 0.07249573618173599, 0.03209809586405754, -0.11100280284881592, -0.0741809532046318, 0.062048692256212234, 0.2978520691394806, -0.05981411412358284, 0.0868636965751648, -0.060517631471157074, -0.06988123804330826, 0.05889800563454628, 0.06765872985124588, 0.1315091848373413, 0.1278281807899475, -0.014946455135941505, 0.062177903950214386, 0.1650981307029724, 0.13036364316940308, 0.09516197443008423, -0.00871922355145216, -0.08069678395986557, -0.017730532214045525, 0.00527510279789567, -0.07624465972185135, 0.025985153391957283, 0.1199839785695076, -0.10227690637111664, -0.03183295577764511, -0.19835351407527924, 0.04730409383773804, 0.03418049216270447, 0.07954341918230057, -0.11063986271619797, 0.001980105647817254, 0.050755757838487625, -0.010232723318040371, -0.06808458268642426, 0.07757586985826492, 0.00876978412270546, -0.12268128991127014, 0.019401824101805687, -0.0386323556303978, 0.12141597270965576, 0.008364994078874588, 0.07331550866365433, -0.08910758048295975, -0.15151052176952362, 0.04158541560173035, 0.09822681546211243, -0.28727468848228455, 0.3172987699508667, 0.013855267316102982, -0.10556428879499435, -0.03886725753545761, -0.05839242413640022, -0.04368560388684273, 0.1463778018951416, 0.15708279609680176, 0.04078265279531479, -0.003065852914005518, -0.11561058461666107, 0.05595499649643898, 0.048957765102386475, 0.12368092685937881, 0.0026331341359764338, -0.02777743712067604, -0.008494893088936806, 0.017273005098104477, -0.03228477016091347, 0.09685200452804565, 0.06916848570108414, -0.09851773083209991, 0.0666775032877922, -0.005330939777195454, 0.03715655952692032, -0.006083178799599409, -0.009954672306776047, -0.05401984229683876, 0.09843684732913971, -0.06569293141365051, -0.0476747564971447, -0.0798073261976242, -0.12298816442489624, 0.14766667783260345, -0.11011501401662827, 0.03248024731874466, -0.07757844030857086, -0.08812113851308823, -0.06233283877372742, -0.1120319589972496, 0.13634233176708221, -0.09925206005573273, -0.005378211382776499, -0.03292681649327278, 0.20227378606796265, -0.05142014101147652, 0.0232310239225626, -0.02081884630024433, 0.04336104542016983, -0.14131653308868408, -0.08600595593452454, 0.06222688406705856, -0.07231242209672928, 0.08326486498117447, 0.011443641036748886, 0.017992381006479263, 0.11154595017433167, -0.025548987090587616, 0.027987703680992126, 0.2116231918334961, 0.25381791591644287, -0.03989892825484276, 0.06848391890525818, 0.18813000619411469, 0.0027833872009068727, -0.23224122822284698, -0.0636444240808487, -0.14323174953460693, -0.0677252784371376, -0.03054635040462017, -0.0952848270535469, 0.10637721419334412, 0.034675393253564835, -0.04290527477860451, 0.11840938776731491, -0.2277371883392334, -0.03815982863306999, 0.15522445738315582, -0.000836420338600874, 0.5247559547424316, -0.11620616912841797, -0.09053033590316772, 0.03809721767902374, -0.3191915452480316, 0.06945427507162094, 0.09770572185516357, 0.04537516087293625, -0.05122990906238556, 0.12376430630683899, 0.037678152322769165, -0.08465487509965897, 0.15146327018737793, 0.009093799628317356, 0.011870436370372772, -0.08159580826759338, -0.18133191764354706, 0.0276014506816864, -0.0018815441289916635, -0.025199517607688904, 0.0516025684773922, 0.0485505610704422, -0.18301095068454742, -0.008506233803927898, -0.1403193473815918, 0.047389257699251175, 0.024368891492486, -0.04071890562772751, -0.02656714804470539, -0.044406402856111526, -0.020187005400657654, -0.006087725982069969, 0.273295521736145, -0.06589705497026443, 0.18047678470611572, 0.017141452059149742, 0.11779666692018509, -0.217109814286232, -0.10910623520612717, -0.04859909042716026, -0.05953025072813034, 0.09319070726633072, -0.06708763539791107, 0.05260694772005081, 0.1962900608778, 0.003339231014251709, 0.016046836972236633, 0.09218890219926834, 0.016776449978351593, -0.03834070265293121, 0.08561284095048904, -0.21483063697814941, -0.10031958669424057, -0.013626116327941418, 0.023004066199064255, 0.052065227180719376, 0.09317009896039963, 0.08299937844276428, 0.09184443205595016, -0.029897890985012054, 0.015553166158497334, -0.04748998582363129, -0.062322940677404404, 0.03330119326710701, 0.08885984867811203, 0.039575833827257156, -0.10588718950748444, 0.060136329382658005, -0.033634498715400696, -0.246807262301445, -0.027298996224999428, 0.08192599564790726, -0.10633534938097, -0.09651028364896774, -0.11953215301036835, 0.03136840835213661, -0.18276667594909668, -0.031741902232170105, -0.029099680483341217, -0.08274532109498978, 0.07501186430454254, 0.2354886531829834, 0.07384824007749557, 0.05759386345744133, -0.008219186216592789, -0.041490692645311356, 0.02707919292151928, -0.04710500314831734, -0.0411410890519619, 0.0013290621573105454, -0.07504136860370636, -0.0740903913974762, -0.01276478823274374, 0.17822611331939697, -0.06452479958534241, -0.06454910337924957, -0.1594747006893158, 0.08278069645166397, -0.15059347450733185, -0.08908839523792267, -0.10902751237154007, -0.0701851025223732, -0.0049271960742771626, -0.1401086002588272, -0.05275280401110649, -0.025024082511663437, -0.12793657183647156, 0.07123786956071854, 0.06696321070194244, 0.014488967135548592, -0.07987331598997116, -0.051093898713588715, 0.15301580727100372, -0.0108917485922575, 0.0946940928697586, 0.17851689457893372, -0.08389171212911606, 0.08873248845338821, -0.09735890477895737, -0.1473073661327362, 0.06456159800291061, 0.01873619668185711, 0.06140461936593056, 0.0184780303388834, -0.008387376554310322, 0.06260032951831818, 0.02720401994884014, 0.06573618948459625, -0.005082007497549057, -0.09572359174489975, 0.012728172354400158, 0.0222983006387949, -0.1834321767091751, -0.03449947386980057, -0.10479400306940079, 0.12038619071245193, 0.016473548486828804, 0.06978096812963486, 0.019086843356490135, 0.10187271237373352, -0.05879705771803856, 0.027913540601730347, -0.0016265944577753544, -0.1483083814382553, 0.01846230961382389, -0.06944625824689865, 0.02095722407102585, -0.02319088578224182, 0.20843572914600372, -0.14782722294330597, 0.037954237312078476, 0.05084753781557083, 0.07179179787635803, -0.024368025362491608, -0.03214782476425171, 0.19392095506191254, 0.08232925832271576, -0.06742420792579651, -0.06867744028568268, 0.10625404119491577, -0.0667165219783783, -0.024755971506237984, 0.14143647253513336, 0.1343657523393631, 0.08631344884634018, 0.05528534948825836, -0.003452352015301585, 0.018413837999105453, -0.0538596585392952, -0.21881985664367676, -0.01845693774521351, 0.013289832510054111, 0.016898568719625473, 0.158567875623703, 0.16876663267612457, -0.006667053326964378, 0.04087504372000694, -0.06670542806386948, -0.0038983349222689867, -0.13310016691684723, -0.06374851614236832, -0.057407524436712265, -0.09875772893428802, 0.051331937313079834, -0.08058018982410431, 0.02353200688958168, 0.13817350566387177, 0.06750301271677017, -0.03616323322057724, 0.10194993764162064, 0.07581809908151627, -0.07089465856552124, 0.003414067206904292, 0.01710161380469799, 0.07615750283002853, -0.008067957125604153, 0.03179050609469414, -0.08890169113874435, -0.09842932969331741, -0.03685155138373375, 0.03157423436641693, -0.08305443823337555, -0.05352720990777016, -0.10139942169189453, -0.0994420051574707, -0.06939271092414856, 0.11988519877195358, -0.02488076686859131, 0.15549138188362122, -0.04565608873963356, 0.06221667677164078, 0.013537650927901268, 0.2248864471912384, -0.08014312386512756, -0.023897936567664146, -0.009845787659287453, 0.20274843275547028, 0.013034183531999588, 0.09620318561792374, -0.014360329136252403, 0.03793814405798912, -0.04559130221605301, 0.30802759528160095, 0.19079582393169403, -0.06430099904537201, 0.037545349448919296, 0.06447435170412064, 0.051809292286634445, 0.09149236977100372, 0.0010274728992953897, 0.10408493131399155, 0.27621787786483765, -0.10698382556438446, -0.03668263554573059, -0.04524974524974823, 0.03966931626200676, -0.004912933334708214, 0.06283459067344666, 0.046369388699531555, -0.06742709130048752, -0.06461990624666214, 0.08255114406347275, -0.11474703252315521, 0.08682408183813095, 0.05571768805384636, -0.2171790599822998, -0.053035933524370193, -0.02192807011306286, 0.15748465061187744, -0.0043814764358103275, 0.12456151843070984, -0.034683555364608765, -0.11835989356040955, 0.0555509477853775, 0.043328359723091125, -0.22565597295761108, -0.09549052268266678, 0.137676402926445, 0.012482707388699055, 0.004645138047635555, -0.005880656186491251, 0.05502373352646828, 0.09030630439519882, 0.04501914978027344, -0.06152934581041336, 0.013511494733393192, 0.08018794655799866, -0.12487524002790451, -0.12297818809747696, -0.04581589996814728, 0.06647314876317978, -0.05869496613740921, 0.07246042042970657, -0.18757478892803192, 0.040738172829151154, 0.02940785326063633, -0.011162296868860722, -0.03739456459879875, 0.0477583184838295, -0.05269913002848625, 0.0260939821600914, 0.059847716242074966, -0.00800741370767355, -0.05684446543455124, -0.03644451126456261, -0.018044309690594673, 0.06041918322443962, -0.0512237623333931, -0.12672007083892822, -0.019074290990829468, -0.03594363480806351, 0.0763264000415802, -0.03162692114710808, -0.08778014034032822, -0.039504241198301315, -0.019195394590497017, 0.04206323251128197, -0.0654364749789238, 0.002784429583698511, 0.016522984951734543, 0.046082038432359695, 0.02630269154906273, -0.08010213822126389, 0.0440823920071125, 0.09006372839212418, -0.11666065454483032, -0.05680637061595917 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on SST-2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 1024 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on SST-2 validation set: ```bash accuracy = 83.02 ``` Mean and standard deviation for 5 runs on SST-2 validation set: | | Accuracy | |:----:|:-----------:| | Adam | 80.11 ± 0.65 | | M-FAC | 81.86 ± 0.76 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 42 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name sst2 \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 3 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 1024, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-sst2
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on SST-2 dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on SST-2 validation set: Mean and standard deviation for 5 runs on SST-2 validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# BERT-tiny model finetuned with M-FAC This model is finetuned on STS-B dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: [https://arxiv.org/pdf/2107.03356.pdf](https://arxiv.org/pdf/2107.03356.pdf). ## Finetuning setup For fair comparison against default Adam baseline, we finetune the model in the same framework as described here [https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification](https://github.com/huggingface/transformers/tree/master/examples/pytorch/text-classification) and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: ```bash learning rate = 1e-4 number of gradients = 512 dampening = 1e-6 ``` ## Results We share the best model out of 5 runs with the following score on STS-B validation set: ```bash pearson = 80.66 spearman = 81.13 ``` Mean and standard deviation for 5 runs on STS-B validation set: | | Pearson | Spearman | |:----:|:-----------:|:----------:| | Adam | 64.39 ± 5.02 | 66.52 ± 5.67 | | M-FAC | 80.15 ± 0.52 | 80.62 ± 0.43 | Results can be reproduced by adding M-FAC optimizer code in [https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) and running the following bash script: ```bash CUDA_VISIBLE_DEVICES=0 python run_glue.py \ --seed 7 \ --model_name_or_path prajjwal1/bert-tiny \ --task_name stsb \ --do_train \ --do_eval \ --max_seq_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 1e-4 \ --num_train_epochs 5 \ --output_dir out_dir/ \ --optim MFAC \ --optim_args '{"lr": 1e-4, "num_grads": 512, "damp": 1e-6}' ``` We believe these results could be improved with modest tuning of hyperparameters: `per_device_train_batch_size`, `learning_rate`, `num_train_epochs`, `num_grads` and `damp`. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models (`bert-tiny`, `bert-mini`) and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: [https://github.com/IST-DASLab/M-FAC](https://github.com/IST-DASLab/M-FAC). A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: [https://github.com/IST-DASLab/M-FAC/tree/master/tutorials](https://github.com/IST-DASLab/M-FAC/tree/master/tutorials). ## BibTeX entry and citation info ```bibtex @article{frantar2021m, title={M-FAC: Efficient Matrix-Free Approximations of Second-Order Information}, author={Frantar, Elias and Kurtic, Eldar and Alistarh, Dan}, journal={Advances in Neural Information Processing Systems}, volume={35}, year={2021} } ```
{}
text-classification
M-FAC/bert-tiny-finetuned-stsb
[ "transformers", "pytorch", "bert", "text-classification", "arxiv:2107.03356", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2107.03356" ]
[]
TAGS #transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us
BERT-tiny model finetuned with M-FAC ==================================== This model is finetuned on STS-B dataset with state-of-the-art second-order optimizer M-FAC. Check NeurIPS 2021 paper for more details on M-FAC: URL Finetuning setup ---------------- For fair comparison against default Adam baseline, we finetune the model in the same framework as described here URL and just swap Adam optimizer with M-FAC. Hyperparameters used by M-FAC optimizer: Results ------- We share the best model out of 5 runs with the following score on STS-B validation set: Mean and standard deviation for 5 runs on STS-B validation set: Results can be reproduced by adding M-FAC optimizer code in URL and running the following bash script: We believe these results could be improved with modest tuning of hyperparameters: 'per\_device\_train\_batch\_size', 'learning\_rate', 'num\_train\_epochs', 'num\_grads' and 'damp'. For the sake of fair comparison and a robust default setup we use the same hyperparameters across all models ('bert-tiny', 'bert-mini') and all datasets (SQuAD version 2 and GLUE). Our code for M-FAC can be found here: URL A step-by-step tutorial on how to integrate and use M-FAC with any repository can be found here: URL BibTeX entry and citation info ------------------------------
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #arxiv-2107.03356 #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04195733740925789, 0.06769918650388718, -0.0071055167354643345, 0.041182469576597214, 0.1863469034433365, 0.038423892110586166, 0.07924811542034149, 0.10578569769859314, 0.049419302493333817, -0.006749071180820465, 0.1517154723405838, 0.23504696786403656, -0.021093524992465973, 0.09577687829732895, -0.11938627809286118, -0.2728346288204193, 0.050771694630384445, 0.07857991009950638, 0.005167176481336355, 0.11472642421722412, 0.08985698223114014, -0.09260335564613342, 0.08565431833267212, -0.029697639867663383, -0.14578722417354584, 0.04891550540924072, 0.05983370542526245, -0.126938134431839, 0.11531522870063782, 0.06048747897148132, 0.16159909963607788, 0.022767608985304832, -0.03872606158256531, -0.13169901072978973, 0.025926029309630394, -0.006186360958963633, -0.08226298540830612, 0.06763895601034164, 0.08802244067192078, -0.09244652837514877, 0.023404395207762718, 0.0380450077354908, 0.010056329891085625, 0.04995201900601387, -0.14830008149147034, -0.08656954020261765, -0.030742088332772255, 0.07401347905397415, 0.05208389088511467, 0.07453397661447525, 0.017555411905050278, 0.15196408331394196, -0.09715971350669861, 0.12110629677772522, 0.12943394482135773, -0.319841593503952, -0.012582340277731419, 0.08971012383699417, 0.006437090691179037, 0.04097305238246918, -0.05090714618563652, 0.04470141604542732, 0.04862166568636894, 0.005942555610090494, -0.012923420406877995, -0.07032522559165955, -0.11078443378210068, 0.038085728883743286, -0.0839332565665245, -0.04390985891222954, 0.20016784965991974, -0.04063691198825836, 0.06442755460739136, -0.00016770139336585999, -0.09955362230539322, -0.08192996680736542, -0.005646290723234415, -0.0050397757440805435, -0.03404499217867851, 0.047380153089761734, 0.05432157218456268, 0.014451886527240276, -0.1244986280798912, 0.020132360979914665, -0.22788922488689423, 0.2117876559495926, -0.0014358361950144172, 0.06884158402681351, -0.171609565615654, 0.05367271602153778, -0.012638400308787823, -0.1006493866443634, 0.06272997707128525, -0.09378106147050858, 0.04861648380756378, -0.024591848254203796, -0.04831380769610405, -0.038385048508644104, 0.045779913663864136, 0.11876573413610458, 0.03045511059463024, 0.06119537353515625, -0.03026769496500492, 0.08576633781194687, 0.015363097190856934, 0.1326647400856018, 0.015471257269382477, -0.020816991105675697, 0.0366603322327137, -0.09506139159202576, 0.015618689358234406, -0.06463601440191269, -0.1748485118150711, -0.05614170432090759, 0.06991053372621536, 0.07630803436040878, 0.002811332466080785, 0.07038398087024689, -0.060144245624542236, -0.03102164901793003, 0.09705862402915955, -0.06703212857246399, 0.025486541911959648, 0.015029954724013805, 0.010843438096344471, 0.0911715105175972, -0.011970809660851955, -0.0016123926034197211, -0.07852397114038467, 0.13917477428913116, -0.07770688831806183, 0.017141850665211678, -0.03529663011431694, -0.08270939439535141, 0.03770124912261963, -0.11494124680757523, 0.026901038363575935, -0.17826630175113678, -0.06991230696439743, 0.011764883995056152, 0.009744501672685146, -0.010661125183105469, -0.02593015693128109, -0.014884722419083118, 0.008447223342955112, 0.06387580186128616, -0.05151902511715889, -0.0494181327521801, -0.0651388093829155, 0.08887019008398056, -0.016473477706313133, 0.06814463436603546, -0.11670275777578354, 0.06097199395298958, -0.0883205309510231, -0.018672730773687363, -0.12362837791442871, -0.0001691170036792755, -0.054352059960365295, 0.14857377111911774, -0.008607896976172924, -0.04864513874053955, -0.04430823400616646, 0.039032090455293655, -0.03153568133711815, 0.1731230765581131, -0.06457951664924622, -0.10205856710672379, 0.17673639953136444, -0.08831361681222916, -0.12877772748470306, 0.06963267177343369, -0.0005959253758192062, -0.01788737252354622, 0.08556228876113892, 0.19175434112548828, 0.05681368708610535, -0.022674886509776115, 0.0592530183494091, 0.11547411233186722, -0.0977775827050209, -0.12822866439819336, 0.005810221191495657, -0.013313334435224533, -0.14921490848064423, 0.048465829342603683, 0.07690659910440445, 0.06721276044845581, -0.052548229694366455, -0.032787490636110306, -0.016979532316327095, -0.00983420480042696, 0.11768240481615067, 0.051117539405822754, 0.12001416832208633, -0.08122396469116211, -0.0007776345009915531, -0.009539785794913769, -0.00037448169314302504, 0.04524759575724602, 0.023029454052448273, -0.056041616946458817, 0.098599873483181, -0.027542153373360634, 0.013442124240100384, -0.2091113179922104, -0.05903853103518486, -0.008466227911412716, 0.13093669712543488, -0.01436563115566969, 0.09616812318563461, 0.0614643394947052, -0.05959518253803253, -0.019093578681349754, -0.02711508236825466, 0.1685054749250412, 0.027326524257659912, -0.08168075233697891, -0.08181589096784592, 0.05538502708077431, -0.057860150933265686, -0.014757633209228516, -0.1104225143790245, 0.0070822276175022125, 0.06663692742586136, 0.11311554163694382, 0.004435947630554438, 0.07157155871391296, -0.030814865604043007, 0.060117870569229126, -0.06258091330528259, 0.024324586614966393, 0.11893192678689957, -0.006039880216121674, -0.06181107088923454, 0.16431663930416107, -0.14824384450912476, 0.32239487767219543, 0.1924445778131485, -0.28673914074897766, -0.015180638991296291, -0.04223187267780304, -0.0034199394285678864, 0.010761238634586334, 0.05559390410780907, 0.006376220379024744, 0.09136023372411728, -0.00007659755647182465, 0.20111115276813507, -0.033944811671972275, -0.030578555539250374, 0.0077452585101127625, -0.05840691924095154, -0.04680730774998665, 0.11456843465566635, 0.06506334245204926, -0.23344214260578156, 0.1931382566690445, 0.22235774993896484, 0.01572309248149395, 0.14380678534507751, 0.016513628885149956, 0.020848384127020836, 0.04791964963078499, -0.05896003916859627, -0.025724142789840698, -0.03944035992026329, -0.16535426676273346, -0.04499338939785957, 0.07931297272443771, 0.026670126244425774, 0.06771338731050491, -0.13229987025260925, -0.037400584667921066, 0.011976897716522217, 0.03878821060061455, -0.031475916504859924, 0.08663298934698105, 0.05736207589507103, 0.13270413875579834, 0.014673444442451, -0.07992324233055115, 0.11010447889566422, 0.01569935865700245, -0.0983421728014946, 0.18428605794906616, -0.14849522709846497, -0.3378274440765381, -0.1745270937681198, -0.19375772774219513, -0.0259665846824646, 0.04972226545214653, 0.08680504560470581, -0.12139127403497696, -0.045378148555755615, 0.04910321906208992, -0.022875478491187096, -0.10032632946968079, 0.025083616375923157, -0.041100215166807175, 0.0506565161049366, -0.04545916989445686, -0.07297816872596741, -0.07970999926328659, -0.04419322684407234, -0.0037039078306406736, 0.13258591294288635, -0.11110556870698929, 0.07460484653711319, 0.16757547855377197, -0.01195287425071001, 0.06123460829257965, -0.026319153606891632, 0.15837357938289642, -0.06909545511007309, -0.02994578517973423, 0.17554603517055511, -0.06918162107467651, 0.08337468653917313, 0.14903727173805237, 0.032117873430252075, -0.058586616069078445, 0.0069420188665390015, -0.03887141868472099, -0.07555634528398514, -0.24766595661640167, -0.1311315894126892, -0.1055462583899498, 0.057990897446870804, 0.07067399471998215, 0.06396590918302536, 0.13285978138446808, 0.06440812349319458, 0.03245056793093681, 0.020656222477555275, -0.03592333570122719, 0.0802680104970932, 0.2727561295032501, -0.006445322185754776, 0.14221811294555664, -0.061810631304979324, -0.10856308788061142, 0.08537489175796509, 0.011868596076965332, 0.10770859569311142, 0.11208686977624893, 0.011231213808059692, -0.008714213036000729, 0.0732400044798851, 0.16698752343654633, 0.11663645505905151, 0.029329054057598114, -0.0448283888399601, -0.013456267304718494, 0.0013368166983127594, -0.07821089774370193, 0.027400406077504158, 0.05380827561020851, -0.11484938114881516, -0.07929425686597824, -0.12961626052856445, 0.06501606106758118, 0.07080234587192535, 0.05627087131142616, -0.22502560913562775, -0.005626009311527014, 0.06573899835348129, -0.02250482141971588, -0.10589081048965454, 0.0740504190325737, -0.05001698061823845, -0.1346806436777115, 0.0840512216091156, -0.033896785229444504, 0.11599496752023697, -0.07373199611902237, 0.07973665744066238, -0.05758159980177879, -0.11355016380548477, 0.01644035242497921, 0.11323463171720505, -0.2773311138153076, 0.2601952850818634, 0.018920492380857468, -0.07718393206596375, -0.06689652800559998, -0.029187234118580818, 0.035092804580926895, 0.21084563434123993, 0.07348407804965973, 0.018433285877108574, -0.07603458315134048, -0.1886279582977295, -0.024401197209954262, -0.0028343989979475737, 0.1141720786690712, -0.005948113743215799, -0.023314811289310455, -0.0409884974360466, -0.023733777925372124, -0.021269166842103004, -0.017980797216296196, 0.03042079322040081, -0.1577930450439453, 0.07607708126306534, 0.04039749503135681, 0.044017065316438675, 0.01643657125532627, -0.05952897667884827, -0.1074206605553627, 0.19425301253795624, -0.09033072739839554, -0.06694116443395615, -0.11014851927757263, -0.06614456325769424, 0.03397798165678978, -0.09496637433767319, 0.05755942687392235, -0.08346736431121826, 0.002777407644316554, -0.055755436420440674, -0.18023903667926788, 0.14970619976520538, -0.0971834659576416, -0.037398483604192734, -0.062355171889066696, 0.15049855411052704, -0.0775386393070221, 0.022220289334654808, 0.008752455934882164, 0.031300414353609085, -0.09205558151006699, -0.07257062941789627, 0.03998313471674919, 0.005309759173542261, 0.0742119774222374, 0.021615082398056984, -0.08597619086503983, -0.06422027200460434, -0.034699391573667526, -0.0030741076916456223, 0.29163646697998047, 0.18743427097797394, -0.07584521174430847, 0.13425083458423615, 0.14759160578250885, -0.06574846059083939, -0.31328797340393066, -0.07125457376241684, -0.09656258672475815, -0.03632655739784241, -0.06444314867258072, -0.15302391350269318, 0.10646963864564896, 0.026177361607551575, -0.02987276203930378, 0.11032649129629135, -0.16308514773845673, -0.09546559303998947, 0.19541418552398682, -0.02949286252260208, 0.4088956415653229, -0.11141262203454971, -0.09858629107475281, -0.04873640462756157, -0.15676459670066833, 0.12168616056442261, 0.056146424263715744, 0.0831972286105156, -0.04204297438263893, 0.07197954505681992, 0.04544133320450783, -0.04769562557339668, 0.10464128851890564, -0.011866678483784199, 0.026166342198848724, -0.12017294764518738, -0.16572408378124237, 0.01122493389993906, -0.026750383898615837, -0.008371405303478241, -0.0005121355061419308, 0.02010662667453289, -0.17285151779651642, -0.027920136228203773, -0.08017019927501678, 0.05112743377685547, 0.03062334842979908, -0.03846462443470955, -0.000029629134587594308, -0.03283318504691124, -0.021631797775626183, -0.013086010701954365, 0.27502360939979553, -0.04563503339886665, 0.1703234314918518, 0.12128987163305283, 0.12810245156288147, -0.15846605598926544, 0.008153668604791164, -0.07031228393316269, -0.07458611577749252, 0.08312387019395828, -0.08992425352334976, 0.061523959040641785, 0.1548648476600647, -0.03821238502860069, 0.0662902295589447, 0.10364002734422684, 0.05396459996700287, -0.04375945031642914, 0.14557521045207977, -0.2313275933265686, 0.037652526050806046, -0.04661630466580391, 0.030632538720965385, 0.07033219933509827, 0.0660196840763092, 0.13726599514484406, 0.04072894901037216, -0.044477615505456924, 0.005239089485257864, -0.010681599378585815, -0.014896959066390991, 0.07162807881832123, 0.07470328360795975, 0.0386391319334507, -0.12113982439041138, 0.058184366673231125, 0.04479331150650978, -0.1800519973039627, -0.0007421461050398648, 0.13706231117248535, -0.1518862545490265, -0.11053846031427383, -0.02853384055197239, 0.1314340978860855, -0.14286859333515167, -0.06055636331439018, -0.058339137583971024, -0.11041897535324097, 0.07865506410598755, 0.2173851728439331, 0.10508877038955688, 0.0676470473408699, -0.05520245060324669, -0.0518709272146225, 0.0013055907329544425, -0.01110201794654131, -0.013430379331111908, 0.040242984890937805, -0.13110637664794922, 0.028095973655581474, -0.01632669009268284, 0.14506006240844727, -0.0828058049082756, -0.05331505462527275, -0.17886477708816528, 0.03550441935658455, -0.09456595033407211, -0.02384152077138424, -0.06364896148443222, -0.03017505444586277, 0.0002514688821975142, -0.06252631545066833, -0.05350576713681221, -0.044747527688741684, -0.1248706579208374, 0.04188185930252075, -0.0038799543399363756, 0.0421975813806057, -0.058046359568834305, -0.04762360081076622, 0.0912109985947609, -0.016437947750091553, 0.09388124942779541, 0.13102175295352936, -0.06153188273310661, 0.0894869863986969, -0.1200011745095253, -0.10017802566289902, 0.11717510223388672, 0.02276221103966236, 0.07513710111379623, 0.04076045751571655, 0.029195711016654968, 0.06917884200811386, 0.004426587838679552, 0.06275326758623123, 0.08903473615646362, -0.1170591488480568, 0.04858206585049629, -0.011563565582036972, -0.18734204769134521, -0.04414404556155205, -0.03545275703072548, 0.09655419737100601, -0.0027535955887287855, 0.1314704865217209, -0.052570734173059464, 0.07845291495323181, -0.0379098616540432, 0.021130306646227837, -0.023975223302841187, -0.19810980558395386, -0.05708717182278633, -0.07270439714193344, 0.022991882637143135, -0.006476028356701136, 0.22399045526981354, 0.03219775855541229, 0.01026735920459032, 0.05420379340648651, 0.07865696400403976, -0.03256231173872948, 0.011407223530113697, 0.15707279741764069, 0.08580305427312851, -0.058440204709768295, -0.05843223258852959, 0.0844312235713005, 0.010472356341779232, 0.0322907529771328, 0.13057078421115875, 0.0631423071026802, -0.010346669703722, 0.0710529088973999, -0.013289178721606731, 0.006192196160554886, -0.14023633301258087, -0.17648117244243622, -0.06262422353029251, 0.0724404975771904, 0.012053769081830978, 0.096311055123806, 0.11826205253601074, -0.012262451462447643, 0.03126002848148346, -0.07961419224739075, -0.04792504385113716, -0.18051272630691528, -0.08573737740516663, -0.09836507588624954, -0.10291870683431625, 0.008982441388070583, -0.05937826633453369, 0.021752765402197838, 0.08876410871744156, 0.05143090710043907, -0.04592312499880791, 0.058685749769210815, 0.017783088609576225, -0.06243853643536568, 0.06726254522800446, -0.02144210785627365, 0.03016447275876999, -0.0444154255092144, -0.01508969347923994, -0.12158071994781494, -0.046974312514066696, -0.0400518961250782, 0.02311071753501892, -0.037650216370821, -0.010553921572864056, -0.10367939621210098, -0.1104990616440773, -0.027699267491698265, 0.060618579387664795, -0.030503427609801292, 0.12916021049022675, -0.007615440990775824, 0.038082774728536606, 0.036467451602220535, 0.19585734605789185, -0.06779354810714722, -0.03339545056223869, -0.0279980655759573, 0.2669405937194824, 0.05553107336163521, 0.11888261884450912, -0.021103059872984886, 0.0003525757638271898, -0.0668518990278244, 0.2974437177181244, 0.2817328870296478, -0.05423353612422943, 0.04075245559215546, 0.0212912205606699, 0.03766123205423355, 0.1384488195180893, 0.12387853860855103, 0.09736140817403793, 0.23402832448482513, -0.07450134307146072, -0.03804754465818405, -0.042708296328783035, 0.0037948067765682936, -0.09629368036985397, 0.09471575170755386, 0.050068240612745285, -0.043767720460891724, -0.0719010978937149, 0.07705690711736679, -0.15018953382968903, 0.14103753864765167, 0.00958709791302681, -0.2284896820783615, -0.07937656342983246, -0.009230687282979488, 0.1433732956647873, -0.015177268534898758, 0.09192055463790894, -0.01123278122395277, -0.11603939533233643, 0.032291948795318604, 0.015612010844051838, -0.21924926340579987, -0.042055394500494, 0.06977489590644836, -0.05298100784420967, 0.03449073061347008, -0.023709604516625404, 0.05682152509689331, 0.09002721309661865, 0.0729803591966629, -0.035171736031770706, 0.03692871704697609, 0.006685038562864065, -0.055550336837768555, -0.004147183150053024, -0.00538729690015316, 0.015653273090720177, -0.07026319950819016, 0.057056814432144165, -0.16724227368831635, 0.046336930245161057, -0.052711158990859985, -0.05863502621650696, -0.007222750689834356, 0.04579295217990875, -0.04897356405854225, 0.05856001004576683, 0.10077444463968277, 0.0034785668831318617, -0.052384838461875916, -0.04754900559782982, -0.04662486910820007, 0.02676587551832199, -0.10207878798246384, -0.12888215482234955, -0.10214219242334366, -0.06044182553887367, 0.11109140515327454, 0.011140813119709492, -0.15663383901119232, -0.01466444879770279, -0.10383599251508713, 0.04765578731894493, -0.15050846338272095, 0.07169675827026367, 0.025379398837685585, 0.01783100701868534, -0.009139632806181908, -0.05742628499865532, 0.052598219364881516, 0.07825861871242523, -0.11286088079214096, -0.09712594002485275 ]
null
null
transformers
# Spanish News Classification Headlines SNCH: this model was develop by [M47Labs](https://www.m47labs.com/es/) the goal is text classification, the base model use was [BETO](https://huggingface.co/dccuchile/bert-base-spanish-wwm-cased), it was fine-tuned on 1000 example dataset. ## Dataset Sample Dataset size : 1000 Columns: idTask,task content 1,idTag,tag. |idTask|task content 1|idTag|tag| |------|------|------|------| |3637d9ac-119c-4a8f-899c-339cf5b42ae0|Alcalá de Guadaíra celebra la IV Semana de la Diversidad Sexual con acciones de sensibilización|81b36360-6cbf-4ffa-b558-9ef95c136714|sociedad| |d56bab52-0029-45dd-ad90-5c17d4ed4c88|El Archipiélago Chinijo Graciplus se impone en el Trofeo Centro Comercial Rubicón|ed198b6d-a5b9-4557-91ff-c0be51707dec|deportes| |dec70bc5-4932-4fa2-aeac-31a52377be02|Un total de 39 personas padecen ELA actualmente en la provincia|81b36360-6cbf-4ffa-b558-9ef95c136714|sociedad| |fb396ba9-fbf1-4495-84d9-5314eb731405|Eurocopa 2021 : Italia vence a Gales y pasa a octavos con su candidatura reforzada|ed198b6d-a5b9-4557-91ff-c0be51707dec|deportes| |bc5a36ca-4e0a-422e-9167-766b41008c01|Resolución de 10 de junio de 2021, del Ayuntamiento de Tarazona de La Mancha (Albacete), referente a la convocatoria para proveer una plaza.|81b36360-6cbf-4ffa-b558-9ef95c136714|sociedad| |a87f8703-ce34-47a5-9c1b-e992c7fe60f6|El primer ministro sueco pierde una moción de censura|209ae89e-55b4-41fd-aac0-5400feab479e|politica| |d80bdaad-0ad5-43a0-850e-c473fd612526|El dólar se dispara tras la reunión de la Fed|11925830-148e-4890-a2bc-da9dc059dc17|economia| ## Labels: * ciencia_tecnologia * clickbait * cultura * deportes * economia * educacion * medio_ambiente * opinion * politica * sociedad ## Example of Use ### Pipeline ```{python} import torch from transformers import AutoTokenizer, BertForSequenceClassification,TextClassificationPipeline review_text = 'los vehiculos que esten esperando pasajaeros deberan estar apagados para reducir emisiones' path = "M47Labs/spanish_news_classification_headlines" tokenizer = AutoTokenizer.from_pretrained(path) model = BertForSequenceClassification.from_pretrained(path) nlp = TextClassificationPipeline(task = "text-classification", model = model, tokenizer = tokenizer) print(nlp(review_text)) ``` ```[{'label': 'medio_ambiente', 'score': 0.5648820996284485}]``` ### Pytorch ```{python} import torch from transformers import AutoTokenizer, BertForSequenceClassification,TextClassificationPipeline from numpy import np model_name = 'M47Labs/spanish_news_classification_headlines' MAX_LEN = 32 tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForSequenceClassification.from_pretrained(model_name) texto = "las emisiones estan bajando, debido a las medidas ambientales tomadas por el gobierno" encoded_review = tokenizer.encode_plus( texto, max_length=MAX_LEN, add_special_tokens=True, #return_token_type_ids=False, pad_to_max_length=True, return_attention_mask=True, return_tensors='pt', ) input_ids = encoded_review['input_ids'] attention_mask = encoded_review['attention_mask'] output = model(input_ids, attention_mask) _, prediction = torch.max(output['logits'], dim=1) print(f'Review text: {texto}') print(f'Sentiment : {model.config.id2label[prediction.detach().cpu().numpy()[0]]}') ``` ```Review text: las emisiones estan bajando, debido a las medidas ambientales tomadas por el gobierno``` ```Sentiment : medio_ambiente``` A more in depth example on how to use the model can be found in this colab notebook: https://colab.research.google.com/drive/1XsKea6oMyEckye2FePW_XN7Rf8v41Cw_?usp=sharing ## Finetune Hyperparameters * MAX_LEN = 32 * TRAIN_BATCH_SIZE = 8 * VALID_BATCH_SIZE = 4 * EPOCHS = 5 * LEARNING_RATE = 1e-05 ## Train Results |n_example|epoch|loss|acc| |------|------|------|------| |100|0|2.286327266693115|12.5| |100|1|2.018876111507416|40.0| |100|2|1.8016730904579163|43.75| |100|3|1.6121837735176086|46.25| |100|4|1.41565443277359|68.75| |n_example|epoch|loss|acc| |------|------|------|------| |500|0|2.0770938420295715|24.5| |500|1|1.6953029704093934|50.25| |500|2|1.258900796175003|64.25| |500|3|0.8342628020048142|78.25| |500|4|0.5135736921429634|90.25| |n_example|epoch|loss|acc| |------|------|------|------| |1000|0|1.916002897115854|36.1997226074896| |1000|1|1.2941598492664295|62.2746185852982| |1000|2|0.8201534710415117|76.97642163661581| |1000|3|0.524806430051615|86.9625520110957| |1000|4|0.30662027455784463|92.64909847434119| ## Validation Results |n_examples|100| |------|------| |Accuracy Score|0.35| |Precision (Macro)|0.35| |Recall (Macro)|0.16| |n_examples|500| |------|------| |Accuracy Score|0.62| |Precision (Macro)|0.60| |Recall (Macro)|0.47| |n_examples|1000| |------|------| |Accuracy Score|0.68| |Precision(Macro)|0.68| |Recall (Macro)|0.64| ![alt text](https://media-exp1.licdn.com/dms/image/C4D0BAQHpfgjEyhtE1g/company-logo_200_200/0/1625210573748?e=1638403200&v=beta&t=toQNpiOlyim5Ja4f7Ejv8yKoCWifMsLWjkC7XnyXICI "Logo M47")
{"widget": [{"text": "El d\u00f3lar se dispara tras la reuni\u00f3n de la Fed"}]}
text-classification
M47Labs/spanish_news_classification_headlines
[ "transformers", "pytorch", "bert", "text-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us
Spanish News Classification Headlines ===================================== SNCH: this model was develop by M47Labs the goal is text classification, the base model use was BETO, it was fine-tuned on 1000 example dataset. Dataset Sample -------------- Dataset size : 1000 Columns: idTask,task content 1,idTag,tag. Labels: ------- * ciencia\_tecnologia * clickbait * cultura * deportes * economia * educacion * medio\_ambiente * opinion * politica * sociedad Example of Use -------------- ### Pipeline ### Pytorch A more in depth example on how to use the model can be found in this colab notebook: URL Finetune Hyperparameters ------------------------ * MAX\_LEN = 32 * TRAIN\_BATCH\_SIZE = 8 * VALID\_BATCH\_SIZE = 4 * EPOCHS = 5 * LEARNING\_RATE = 1e-05 Train Results ------------- Validation Results ------------------ !alt text
[ "### Pipeline", "### Pytorch\n\n\nA more in depth example on how to use the model can be found in this colab notebook: URL\n\n\nFinetune Hyperparameters\n------------------------\n\n\n* MAX\\_LEN = 32\n* TRAIN\\_BATCH\\_SIZE = 8\n* VALID\\_BATCH\\_SIZE = 4\n* EPOCHS = 5\n* LEARNING\\_RATE = 1e-05\n\n\nTrain Results\n-------------\n\n\n\n\n\nValidation Results\n------------------\n\n\n\n\n\n!alt text" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n", "### Pipeline", "### Pytorch\n\n\nA more in depth example on how to use the model can be found in this colab notebook: URL\n\n\nFinetune Hyperparameters\n------------------------\n\n\n* MAX\\_LEN = 32\n* TRAIN\\_BATCH\\_SIZE = 8\n* VALID\\_BATCH\\_SIZE = 4\n* EPOCHS = 5\n* LEARNING\\_RATE = 1e-05\n\n\nTrain Results\n-------------\n\n\n\n\n\nValidation Results\n------------------\n\n\n\n\n\n!alt text" ]
[ 36, 4, 100 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #autotrain_compatible #endpoints_compatible #region-us \n### Pipeline### Pytorch\n\n\nA more in depth example on how to use the model can be found in this colab notebook: URL\n\n\nFinetune Hyperparameters\n------------------------\n\n\n* MAX\\_LEN = 32\n* TRAIN\\_BATCH\\_SIZE = 8\n* VALID\\_BATCH\\_SIZE = 4\n* EPOCHS = 5\n* LEARNING\\_RATE = 1e-05\n\n\nTrain Results\n-------------\n\n\n\n\n\nValidation Results\n------------------\n\n\n\n\n\n!alt text" ]
[ -0.14489302039146423, 0.06998192518949509, -0.003353636246174574, 0.11592669039964676, 0.16150203347206116, 0.006512560416013002, 0.09690417349338531, 0.042559679597616196, -0.06809132546186447, 0.009042495861649513, 0.19511425495147705, 0.14106591045856476, -0.046168483793735504, 0.1771973967552185, -0.038678597658872604, -0.33089667558670044, -0.009354955516755581, 0.008158564567565918, 0.011092910543084145, 0.15910519659519196, 0.09989572316408157, -0.12612947821617126, 0.06599098443984985, 0.022971604019403458, -0.16511784493923187, 0.04395747557282448, -0.03235560655593872, -0.0904761329293251, 0.13361287117004395, 0.03222350776195526, 0.14930033683776855, 0.010426517575979233, 0.082447849214077, -0.12654010951519012, 0.030652422457933426, -0.02155919373035431, -0.002576067578047514, 0.11418657004833221, 0.02469290979206562, -0.07672093063592911, 0.13398921489715576, -0.027777161449193954, 0.03198967128992081, -0.018559562042355537, -0.10603266954421997, -0.09173761308193207, -0.014980749227106571, 0.10144667327404022, 0.09458053857088089, 0.07900610566139221, -0.024097532033920288, 0.19543348252773285, -0.18140099942684174, 0.08904409408569336, 0.27739015221595764, -0.3049222528934479, -0.05519193410873413, 0.06625046581029892, 0.0229744054377079, 0.011806937865912914, -0.03146599978208542, -0.0016745934262871742, 0.07824210822582245, 0.012351900339126587, 0.0550069659948349, -0.0493168979883194, -0.06765292584896088, 0.07332604378461838, -0.161044180393219, 0.007649256847798824, 0.16135863959789276, -0.0049005006439983845, -0.02698144130408764, -0.03839663788676262, -0.10170318186283112, -0.1375095397233963, -0.03340819478034973, -0.05795048549771309, 0.008828236721456051, -0.06498632580041885, -0.02733459323644638, 0.03021005541086197, -0.10245024412870407, -0.04063284769654274, -0.07181315124034882, 0.22837623953819275, 0.049753546714782715, 0.02102266624569893, -0.0343746654689312, 0.17514292895793915, -0.07591681182384491, -0.09197793155908585, 0.056391824036836624, -0.06818398833274841, 0.021516747772693634, -0.026959963142871857, -0.020530929788947105, 0.07099206745624542, -0.004733515437692404, 0.14436514675617218, 0.03865821659564972, 0.0020760030020028353, 0.18371626734733582, 0.0580407977104187, 0.02192622981965542, 0.11436650156974792, -0.1029387041926384, -0.006878410000354052, 0.021123353391885757, 0.05706264078617096, -0.011010508053004742, -0.03005906753242016, -0.12682324647903442, -0.000027175132345291786, 0.08496779203414917, 0.051234014332294464, -0.08418431878089905, 0.0014861921081319451, -0.06545131653547287, -0.01540573313832283, 0.040912531316280365, -0.10786892473697662, 0.060843974351882935, -0.011797858402132988, -0.09507119655609131, 0.07370110601186752, 0.013481710106134415, 0.019824635237455368, -0.07269630581140518, 0.18560093641281128, -0.11149751394987106, 0.03788062557578087, -0.11227226257324219, -0.08815007656812668, -0.02832868881523609, -0.053590960800647736, 0.022994786500930786, -0.13931691646575928, -0.14114335179328918, 0.005477975122630596, 0.060214947909116745, -0.04461750015616417, -0.08429723232984543, -0.03927626833319664, -0.052764564752578735, -0.0021220874041318893, -0.03248756751418114, 0.0630342960357666, -0.07152766734361649, 0.06658439338207245, 0.07050136476755142, 0.049573611468076706, -0.027331052348017693, 0.006399966310709715, -0.06546266376972198, 0.0019005958456546068, -0.163119837641716, 0.025138922035694122, -0.043193597346544266, 0.05355637148022652, -0.05473661050200462, -0.14387249946594238, 0.04853265732526779, 0.04743592068552971, 0.08445758372545242, 0.15109974145889282, -0.10896506160497665, -0.10117071866989136, 0.1524568498134613, -0.059190671890974045, -0.07479389011859894, 0.13945946097373962, -0.07694263011217117, 0.024522090330719948, 0.07624359428882599, 0.12020125985145569, 0.08076620101928711, -0.13441549241542816, 0.054665546864271164, 0.06614000350236893, 0.004041673615574837, -0.05548734590411186, 0.06176871061325073, 0.045537032186985016, -0.015063329599797726, 0.06214341148734093, 0.016855422407388687, 0.019825877621769905, -0.1361098736524582, -0.04349930211901665, 0.008871116675436497, -0.021751753985881805, 0.03846411406993866, 0.017251191660761833, 0.08899819850921631, -0.07813145220279694, -0.06972330808639526, 0.05738254263997078, 0.0843198224902153, -0.017710605636239052, 0.005583717953413725, -0.052807826548814774, 0.15197646617889404, -0.05237990990281105, -0.04343981668353081, -0.21666738390922546, 0.03794408589601517, -0.016650959849357605, 0.10904044657945633, 0.0561717227101326, 0.12312554568052292, 0.02842000499367714, 0.10459452867507935, 0.009868674911558628, -0.029464982450008392, 0.023621534928679466, -0.009414409287273884, -0.1445056051015854, -0.1520281434059143, -0.013258516788482666, -0.023504864424467087, 0.06747446209192276, -0.21837268769741058, 0.03553605079650879, -0.06093820184469223, 0.08182433247566223, -0.030731074512004852, 0.0486719086766243, -0.05519076809287071, 0.0787670761346817, -0.02798709087073803, 0.026723327115178108, 0.05046635866165161, -0.037960704416036606, -0.07802578061819077, -0.03586053103208542, -0.12656718492507935, 0.2646154463291168, 0.12978778779506683, -0.14524923264980316, -0.09909137338399887, -0.08475402742624283, -0.06978083401918411, 0.01628313958644867, -0.03576420620083809, 0.03080862946808338, 0.20241093635559082, -0.011000106111168861, 0.18068546056747437, -0.06721461564302444, -0.017742730677127838, -0.0039024464786052704, -0.10684054344892502, 0.02790161781013012, 0.18418896198272705, 0.08332625031471252, -0.11130384355783463, 0.07948233187198639, 0.09974687546491623, -0.08409479260444641, 0.09247908741235733, 0.019067002460360527, -0.0926491767168045, -0.059886299073696136, -0.06984791904687881, -0.037851862609386444, 0.12822197377681732, -0.06347773969173431, -0.047408003360033035, 0.04785705730319023, 0.02235223539173603, 0.05056588351726532, -0.20940329134464264, -0.06248408928513527, 0.06543593108654022, 0.02656252309679985, 0.010531465522944927, 0.026410533115267754, -0.002357438439503312, 0.1131560429930687, -0.04103108495473862, -0.16756318509578705, -0.019855398684740067, 0.013137775473296642, -0.0987778753042221, 0.26783302426338196, -0.06345202028751373, -0.19411353766918182, -0.10670986026525497, -0.10959413647651672, 0.03283456340432167, -0.024763289839029312, 0.062285277992486954, -0.06788074970245361, -0.05907556042075157, -0.04902712628245354, 0.013506975024938583, -0.027242781594395638, 0.0029350861441344023, -0.06616862863302231, -0.015852468088269234, -0.02897782437503338, -0.10775869339704514, -0.0257368553429842, -0.06913186609745026, 0.030287591740489006, 0.08084460347890854, 0.01203129068017006, 0.08368086814880371, 0.15369893610477448, -0.04197278618812561, 0.06934047490358353, -0.0015985785285010934, 0.24382910132408142, -0.0246642604470253, -0.047979433089494705, 0.11295714974403381, -0.006727069616317749, 0.06760048121213913, 0.08523868024349213, 0.08384615927934647, -0.024226084351539612, 0.019771264865994453, -0.011055165901780128, -0.047521766275167465, -0.19428274035453796, -0.07387731224298477, -0.03511659428477287, 0.040680039674043655, 0.05685089901089668, 0.026142718270421028, -0.02185232751071453, 0.07613153755664825, 0.07182092219591141, 0.01879820041358471, -0.06309614330530167, 0.06364501267671585, 0.09286495298147202, -0.03066578134894371, 0.13139250874519348, -0.030098315328359604, -0.15063928067684174, 0.049132853746414185, -0.069455586373806, 0.16908422112464905, 0.0017205059994012117, 0.044621340930461884, 0.05043688043951988, 0.13237473368644714, 0.07782603800296783, 0.12781861424446106, 0.015840141102671623, -0.05068396031856537, -0.02999303676187992, -0.056562550365924835, 0.0008725406951270998, 0.03234679251909256, 0.007226949092000723, 0.03263099491596222, -0.14435505867004395, 0.05753787234425545, 0.06164281442761421, 0.08055020868778229, 0.11343342810869217, -0.31759607791900635, -0.020201215520501137, -0.032619282603263855, -0.044921908527612686, -0.008933581411838531, 0.05450472980737686, 0.03388962894678116, -0.11748776584863663, -0.03872409462928772, -0.03567251190543175, 0.10467011481523514, -0.021886911243200302, 0.05972836911678314, 0.011563990265130997, 0.07408270239830017, -0.008940165862441063, 0.10402949154376984, -0.23735398054122925, 0.2979736924171448, -0.00137095688842237, -0.005869670771062374, -0.01845131255686283, -0.028940251097083092, 0.033828966319561005, 0.12575487792491913, 0.06293649971485138, -0.01207246258854866, 0.12163355946540833, -0.13786335289478302, -0.16614703834056854, 0.050788071006536484, 0.05207639932632446, -0.09941799938678741, 0.06320545077323914, 0.00628026993945241, -0.007360568270087242, 0.02048490010201931, 0.009085611440241337, -0.10988414287567139, -0.08771239966154099, 0.012371758930385113, -0.025405917316675186, -0.0984928160905838, -0.049300093203783035, -0.16215507686138153, -0.11638244241476059, 0.20386351644992828, 0.027533864602446556, -0.060823213309049606, -0.07824937999248505, 0.1303880661725998, 0.08536321669816971, -0.08785241842269897, 0.005140846595168114, -0.01511429063975811, 0.006380790378898382, 0.014870109967887402, -0.04835740476846695, 0.12497807294130325, -0.05575384199619293, -0.10489453375339508, -0.05299164727330208, 0.11747763305902481, 0.028574876487255096, 0.03810621425509453, -0.0159402284771204, 0.013539771549403667, -0.12243437767028809, -0.12140162289142609, -0.06328172981739044, -0.0010391792748123407, 0.10072266310453415, 0.13283149898052216, -0.0553773008286953, -0.0033400191459804773, -0.02962896041572094, 0.024267420172691345, 0.23317089676856995, 0.2619541883468628, -0.07588040828704834, 0.012402265332639217, 0.14853481948375702, -0.03135596215724945, -0.22019685804843903, -0.040563106536865234, 0.0014908553566783667, 0.06205932796001434, 0.011877648532390594, -0.10569559037685394, 0.138909250497818, 0.07935868203639984, 0.007945572957396507, 0.06880398094654083, -0.3188115954399109, -0.15337860584259033, 0.21950095891952515, 0.0887046679854393, 0.16475853323936462, -0.10792665928602219, -0.0047881025820970535, -0.03157792240381241, -0.13094329833984375, 0.07264931499958038, -0.1513664871454239, 0.0762004405260086, -0.03801589086651802, 0.11523409187793732, 0.01619323529303074, -0.06933721154928207, 0.1493939310312271, -0.008221215568482876, 0.06845436245203018, -0.05607449635863304, -0.10528770834207535, -0.010730932466685772, -0.03051707148551941, 0.07993856817483902, -0.06578852236270905, 0.04903301224112511, -0.14255385100841522, -0.05241505056619644, -0.0017388875130563974, 0.04566500708460808, -0.06097131967544556, -0.05521517992019653, -0.05682247132062912, -0.014719526283442974, -0.035931892693042755, -0.02610192820429802, 0.033128466457128525, 0.0018193371361121535, 0.08123722672462463, 0.061812419444322586, 0.08270743489265442, -0.1099499762058258, -0.12143087387084961, 0.0066443150863051414, 0.00708794267848134, 0.0706821009516716, -0.12652447819709778, -0.033944591879844666, 0.19692721962928772, 0.02347840555012226, 0.1326623558998108, 0.0806184858083725, -0.048835355788469315, -0.0446043498814106, 0.08529271185398102, -0.22107799351215363, 0.017698127776384354, -0.03924622759222984, 0.011662984266877174, -0.046007461845874786, 0.05269724875688553, 0.07552027702331543, -0.09286576509475708, -0.05109149590134621, 0.003799621481448412, -0.014907796867191792, -0.06352954357862473, 0.1722078025341034, 0.10410662740468979, 0.08698835968971252, -0.11996959149837494, -0.025778207927942276, 0.01706794835627079, -0.07126873731613159, -0.048161596059799194, 0.1141187995672226, -0.08223561942577362, -0.08780977874994278, 0.0645047202706337, 0.21461911499500275, -0.10119867324829102, -0.0523967407643795, -0.10599115490913391, -0.1062975749373436, 0.06501532346010208, 0.0621696412563324, 0.1484239101409912, -0.0028679987881332636, -0.07014114409685135, -0.019087208434939384, -0.05542803183197975, 0.10508285462856293, 0.12100593000650406, 0.03605550900101662, -0.15758851170539856, 0.14872708916664124, -0.015599612146615982, 0.09509535133838654, -0.04387732595205307, -0.018147962167859077, -0.11671557277441025, 0.04571422189474106, -0.10163692384958267, -0.0089174285531044, -0.06886474788188934, 0.0027745503466576338, 0.0009612037683837116, -0.009142991155385971, -0.020534120500087738, -0.021351540461182594, -0.09737616032361984, 0.028095735237002373, 0.03055005706846714, 0.020713089033961296, -0.09266100078821182, 0.003798834513872862, 0.03564966097474098, -0.03461792320013046, 0.10228957235813141, 0.0773606225848198, -0.04221763834357262, 0.04084113985300064, -0.11898143589496613, 0.04159444198012352, 0.07768024504184723, 0.03497480973601341, 0.12460266053676605, -0.05094632878899574, 0.05081600695848465, -0.012670240364968777, 0.09495200961828232, 0.028418151661753654, 0.04547606781125069, -0.1467699557542801, -0.0029178152326494455, -0.015553858131170273, -0.13934260606765747, -0.07521778345108032, 0.01348896510899067, 0.018582118675112724, 0.056745801120996475, 0.1319914609193802, -0.06597739458084106, 0.061153918504714966, -0.13865961134433746, 0.0047450256533920765, -0.010197728872299194, -0.06455578655004501, -0.09537948668003082, -0.10028912127017975, 0.05247657746076584, -0.06726869940757751, 0.20347344875335693, 0.09139798581600189, 0.03142993897199631, -0.0027779226657003164, -0.03673616051673889, 0.12107519805431366, 0.06518557667732239, 0.07551461458206177, 0.019595270976424217, 0.007375338580459356, -0.06880275160074234, 0.07902117818593979, 0.1107894629240036, -0.01570531539618969, 0.1741666942834854, 0.06697762757539749, 0.01606336049735546, 0.10330120474100113, -0.048277392983436584, -0.08094095438718796, -0.0851517990231514, -0.16325318813323975, -0.03607138991355896, 0.07053794711828232, -0.0061229499988257885, 0.09222082793712616, 0.10959674417972565, -0.04887957125902176, 0.02037055976688862, -0.04013964533805847, -0.12663224339485168, -0.1618313491344452, -0.024500170722603798, -0.05944805592298508, -0.07149334251880646, -0.03010672703385353, -0.11778561025857925, -0.04916879162192345, 0.03375368192791939, 0.055942900478839874, -0.04511566832661629, 0.13521264493465424, 0.04978054389357567, 0.010272786021232605, 0.05117667838931084, 0.023565446957945824, 0.019127873703837395, -0.06732353568077087, 0.03079877234995365, -0.09461057186126709, -0.04108157753944397, 0.007202038541436195, -0.03357052803039551, -0.04995519295334816, 0.021031415089964867, -0.03220074623823166, -0.05788322165608406, -0.02179003320634365, 0.007952605374157429, 0.08005943894386292, 0.07602623105049133, -0.008910182863473892, -0.031981199979782104, -0.0505920946598053, 0.22082988917827606, -0.0721438080072403, -0.08227243274450302, -0.10251139104366302, 0.32314595580101013, 0.0311309602111578, 0.05527453124523163, -0.014860864728689194, -0.0395963080227375, -0.034114569425582886, 0.22451984882354736, 0.3173693120479584, -0.1268739402294159, 0.007392873987555504, 0.011083661578595638, -0.005248930770903826, 0.023686395958065987, 0.07435639947652817, 0.14463886618614197, 0.22691895067691803, -0.11497551947832108, -0.022389546036720276, -0.11296574771404266, -0.03524499759078026, -0.09660256654024124, 0.01423307228833437, 0.11844106763601303, 0.0005699846078641713, -0.0712314024567604, 0.0970543920993805, -0.12819474935531616, -0.011173482984304428, 0.015273592434823513, -0.16856993734836578, -0.15092451870441437, -0.00912599265575409, 0.11087141931056976, 0.00989817176014185, 0.08976037055253983, -0.06812310963869095, -0.05475250259041786, 0.020883124321699142, -0.0027100390288978815, -0.12583856284618378, -0.01924511417746544, 0.10872875899076462, -0.058270007371902466, 0.09141948074102402, -0.004296332597732544, 0.16914203763008118, 0.14442887902259827, 0.03847074881196022, -0.03706614300608635, 0.040660977363586426, 0.05180482938885689, -0.0820310041308403, 0.02022835612297058, 0.019083073362708092, 0.03923923894762993, -0.12111940234899521, 0.01884441077709198, -0.16432835161685944, 0.0031556475441902876, -0.08624262362718582, -0.005151805933564901, -0.09222506731748581, 0.027312489226460457, -0.04498158395290375, 0.09220947325229645, 0.15749002993106842, -0.037926219403743744, 0.008569744415581226, -0.041153717786073685, 0.04105854406952858, -0.008468586951494217, -0.0394233837723732, 0.0019323150627315044, -0.1863168478012085, -0.0014523823047056794, 0.033513475209474564, -0.0014327485114336014, -0.2591639757156372, -0.037068989127874374, 0.006912936456501484, -0.036511924117803574, -0.06467576324939728, 0.08995013684034348, 0.08320645987987518, 0.08690866082906723, -0.023472651839256287, -0.04506263509392738, -0.06481150537729263, 0.10540588945150375, -0.14351947605609894, -0.11150071024894714 ]
null
null
transformers
# Rick Morty DialoGPT Model
{"tags": ["conversational"]}
text-generation
MAUtastic/DialoGPT-medium-RickandMortyBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Rick Morty DialoGPT Model
[ "# Rick Morty DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Rick Morty DialoGPT Model" ]
[ 51, 9 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Rick Morty DialoGPT Model" ]
[ -0.027416273951530457, 0.12086749076843262, -0.006109944544732571, 0.009889360517263412, 0.12381330132484436, 0.0038806977681815624, 0.14245158433914185, 0.1331283152103424, -0.0212846826761961, -0.045859768986701965, 0.14985723793506622, 0.21308201551437378, -0.019527088850736618, 0.051007822155952454, -0.06853066384792328, -0.3212457299232483, 0.04747724160552025, 0.05849539116024971, -0.031212788075208664, 0.11445578187704086, 0.09293332695960999, -0.04094693437218666, 0.0733533725142479, 0.011670893989503384, -0.1314198225736618, 0.010235695168375969, 0.014730604365468025, -0.09850499778985977, 0.1117473691701889, 0.07090220600366592, 0.01977115496993065, 0.04605070501565933, -0.042774006724357605, -0.12270724773406982, 0.04736309126019478, 0.0012515645939856768, -0.045511845499277115, 0.06668319553136826, 0.012820800766348839, -0.09431180357933044, 0.14217764139175415, 0.12549172341823578, -0.007773073390126228, 0.040497276932001114, -0.15369699895381927, -0.028457961976528168, -0.004497861489653587, 0.051908574998378754, 0.046925999224185944, 0.11125461012125015, -0.03784911334514618, 0.12445349991321564, -0.04202383756637573, 0.11295074224472046, 0.11681167036294937, -0.2876027524471283, -0.016340676695108414, 0.14467903971672058, 0.03499724715948105, 0.02552611380815506, -0.04558492824435234, 0.09456686675548553, 0.014267511665821075, -0.004964208230376244, -0.03697703033685684, -0.07767035067081451, -0.05041099339723587, 0.03769579529762268, -0.08099090307950974, -0.00252055493183434, 0.22437700629234314, -0.023694775998592377, 0.09231439232826233, -0.060666441917419434, -0.0907888412475586, -0.00829416885972023, -0.040286462754011154, -0.03791467100381851, -0.09851202368736267, 0.07553289085626602, -0.04743136838078499, -0.0896044448018074, -0.11248479783535004, -0.018256433308124542, -0.15938088297843933, 0.15307071805000305, 0.026864582672715187, 0.03729034215211868, -0.19902122020721436, 0.07844828069210052, -0.028603488579392433, -0.09441527724266052, 0.024891193956136703, -0.08897717297077179, 0.007059852592647076, 0.014940117485821247, -0.02692650444805622, -0.01080795843154192, 0.08948459476232529, 0.11486934125423431, 0.0012382101267576218, 0.022374704480171204, -0.021753402426838875, 0.046682097017765045, 0.052672360092401505, 0.03954516351222992, -0.04186785966157913, -0.022741666063666344, 0.02572580985724926, -0.08474642038345337, -0.008516058325767517, -0.06357598304748535, -0.19882962107658386, 0.0066541084088385105, 0.07609006762504578, 0.04447868838906288, 0.030165988951921463, 0.13503077626228333, 0.004542340524494648, -0.05563449114561081, 0.03441212326288223, -0.005266434978693724, -0.023943031206727028, 0.018793204799294472, 0.0034354126546531916, 0.15178295969963074, 0.024059079587459564, 0.053748175501823425, -0.10243912786245346, 0.016247184947133064, -0.05016466975212097, -0.014364240691065788, -0.030889246612787247, -0.05143284797668457, 0.002065480686724186, -0.01656651869416237, 0.018873749300837517, -0.1348172426223755, -0.15529313683509827, -0.00524118123576045, -0.004736831411719322, -0.045283541083335876, -0.11088961362838745, -0.10792574286460876, -0.027836862951517105, 0.040399227291345596, -0.05653241649270058, 0.024379350244998932, -0.05022101104259491, 0.09343878924846649, -0.03229687735438347, 0.07440964877605438, -0.09111195057630539, 0.08398482203483582, -0.06504840403795242, -0.04608788341283798, -0.06951715052127838, 0.11532726138830185, 0.00948856957256794, 0.0517040491104126, -0.03399192541837692, -0.018159443512558937, -0.10607455670833588, 0.06333806365728378, -0.04592961072921753, 0.23252448439598083, -0.0882263258099556, -0.10362039506435394, 0.23659279942512512, -0.041976332664489746, -0.12399233877658844, 0.11402548849582672, -0.027552654966711998, 0.09993235021829605, 0.12294723093509674, 0.1687079519033432, 0.028866015374660492, -0.0066484189592301846, 0.10477101802825928, 0.1148667186498642, -0.07858583331108093, -0.007384664379060268, 0.023825330659747124, -0.018311534076929092, -0.09742707014083862, 0.024217721074819565, 0.0863247737288475, 0.049028586596250534, -0.06375037133693695, -0.013463132083415985, 0.012806696817278862, -0.005671072751283646, 0.07319371402263641, -0.012223406694829464, 0.12824711203575134, -0.025656385347247124, -0.0770145058631897, -0.01428163331001997, 0.025753408670425415, -0.05255761742591858, 0.027070246636867523, -0.08988162875175476, 0.035605765879154205, -0.01898045837879181, 0.0671210065484047, -0.16663384437561035, -0.07745291292667389, -0.06126396730542183, 0.2262658029794693, 0.07519219070672989, 0.1284416913986206, 0.0619715116918087, -0.058878444135189056, -0.006196749862283468, 0.03376108035445213, 0.1913164108991623, -0.0039115422405302525, -0.08089020848274231, -0.11742129176855087, 0.09549184888601303, -0.0750381201505661, 0.06824305653572083, -0.053482670336961746, 0.010319244116544724, 0.009465949609875679, 0.1013946607708931, -0.038084983825683594, 0.038067691028118134, 0.019796738401055336, -0.03743954747915268, -0.06533488631248474, 0.0009406007011421025, 0.10463766008615494, 0.008402220904827118, -0.10139253735542297, 0.22547724843025208, -0.2005029320716858, 0.14411064982414246, 0.17982447147369385, -0.2346627563238144, 0.0021273153834044933, -0.11201058328151703, -0.021471746265888214, 0.007533633150160313, 0.0470501147210598, -0.04458373039960861, 0.22299137711524963, -0.011466647498309612, 0.17279048264026642, -0.039442989975214005, -0.04193522036075592, -0.04108773171901703, -0.04188798740506172, 0.006027073599398136, 0.12033126503229141, 0.10017445683479309, -0.1822369396686554, 0.17901694774627686, 0.06407493352890015, 0.04607775807380676, 0.16021881997585297, 0.029854416847229004, 0.01598851941525936, 0.05563560873270035, -0.01471908763051033, -0.037844810634851456, -0.07636579871177673, -0.23525193333625793, -0.007929623126983643, 0.07535190880298615, 0.035712987184524536, 0.10723735392093658, -0.09158799052238464, -0.038234591484069824, -0.006720248609781265, -0.017972785979509354, 0.029511768370866776, 0.13821794092655182, 0.012823565863072872, 0.12136346101760864, -0.02067670226097107, -0.06758338212966919, 0.07061983644962311, 0.01762859895825386, -0.08836925029754639, 0.18357424437999725, -0.11606878787279129, -0.3341638445854187, -0.09832020103931427, -0.18778936564922333, -0.044912174344062805, 0.048682037740945816, 0.10484113544225693, -0.1378994584083557, -0.020967360585927963, -0.0011182050220668316, 0.07453688979148865, -0.12740632891654968, 0.007425905205309391, -0.021490052342414856, -0.004774138797074556, -0.13142900168895721, -0.09953810274600983, -0.04875548928976059, -0.06333116441965103, -0.04007769003510475, 0.11915352195501328, -0.15440979599952698, 0.007438643369823694, 0.23077727854251862, 0.06644120812416077, 0.07287882268428802, -0.033953361213207245, 0.18404237926006317, -0.08294825255870819, 0.010298850014805794, 0.2278866469860077, -0.044359900057315826, 0.07007310539484024, 0.08790004998445511, -0.005820757243782282, -0.05185883864760399, 0.03261810541152954, 0.005810468923300505, -0.07390361279249191, -0.20164833962917328, -0.11046743392944336, -0.1097269132733345, 0.06003160402178764, 0.049688130617141724, 0.04269523173570633, 0.16941851377487183, 0.06732624769210815, -0.050071004778146744, -0.0010007480159401894, 0.06692192703485489, 0.07866300642490387, 0.24961450695991516, -0.07098972052335739, 0.14394886791706085, -0.018865063786506653, -0.16527363657951355, 0.07400073856115341, 0.0514012947678566, 0.07847563922405243, 0.07295927405357361, 0.10060954838991165, 0.010725021362304688, 0.011121176183223724, 0.12659968435764313, 0.06625896692276001, -0.0038331167306751013, -0.03917814791202545, -0.049783237278461456, -0.04524265229701996, -0.023619912564754486, 0.04664705693721771, 0.05461094528436661, -0.15899211168289185, -0.01097947172820568, 0.007825072854757309, 0.048257775604724884, 0.00985618308186531, 0.0866815447807312, -0.19567669928073883, -0.019957082346081734, 0.0636926218867302, -0.005147154442965984, -0.09536939859390259, 0.07866992056369781, -0.0072094290517270565, -0.10218027234077454, 0.03940068185329437, -0.030383454635739326, 0.1246940940618515, -0.0801611840724945, 0.07795576006174088, -0.12091593444347382, -0.041307736188173294, -0.005253799259662628, 0.11947031319141388, -0.29642704129219055, 0.18476703763008118, -0.008458035998046398, -0.05291203409433365, -0.10281132906675339, -0.02201247401535511, 0.03507980331778526, 0.10506751388311386, 0.1118205264210701, -0.02476685494184494, -0.01724824495613575, 0.049101583659648895, -0.06962887942790985, 0.029461484402418137, 0.08798205107450485, -0.050502385944128036, -0.011574916541576385, -0.04603515937924385, -0.0029110098257660866, 0.01779703050851822, -0.09948457777500153, 0.003308283630758524, -0.18711978197097778, 0.08715172111988068, 0.0664692223072052, 0.06770443916320801, 0.0410330630838871, -0.0376434326171875, -0.11037451028823853, 0.2640511095523834, 0.006874449551105499, -0.09938371181488037, -0.1063869297504425, 0.040492862462997437, 0.04723961278796196, -0.06468400359153748, -0.02421484887599945, -0.07383155077695847, 0.047784969210624695, -0.06310353428125381, -0.20025654137134552, 0.11153385043144226, -0.09598832577466965, -0.04565293341875076, -0.038614898920059204, 0.22017183899879456, -0.02087371051311493, 0.01834278367459774, 0.040803052484989166, -0.004591372795403004, -0.12742213904857635, -0.10001911222934723, 0.017327459529042244, -0.0009376577800139785, 0.021842550486326218, 0.003586926031857729, -0.04634168744087219, -0.006295070517808199, -0.05597352981567383, -0.0032472964376211166, 0.314273864030838, 0.11974360793828964, -0.0459052175283432, 0.15168564021587372, 0.11110243201255798, -0.06336724013090134, -0.2841157019138336, -0.10526396334171295, -0.07726700603961945, -0.06251303106546402, -0.07681839168071747, -0.19412246346473694, 0.09324176609516144, -0.04012000188231468, -0.006594877690076828, 0.06911571323871613, -0.2687768042087555, -0.09850376099348068, 0.19593903422355652, -0.029114339500665665, 0.44064584374427795, -0.10917924344539642, -0.07919815182685852, -0.059960875660181046, -0.1383652538061142, 0.19179140031337738, -0.02703654207289219, 0.10186978429555893, -0.0003646083641797304, 0.19195830821990967, 0.057588085532188416, -0.0009007352637127042, 0.06601071357727051, 0.01702183485031128, -0.04900797829031944, -0.08880552649497986, -0.09949428588151932, -0.0028341286815702915, 0.014665309339761734, 0.020054258406162262, -0.07335546612739563, 0.04037605598568916, -0.12153704464435577, -0.057532791048288345, -0.08231829106807709, 0.03708001598715782, 0.02363327331840992, -0.06965623795986176, 0.003611034480854869, -0.041214823722839355, -0.003743773326277733, 0.001163402572274208, 0.19916509091854095, -0.11463721841573715, 0.13475215435028076, 0.055799905210733414, 0.14584854245185852, -0.11059413850307465, -0.036196619272232056, -0.049671463668346405, -0.056701723486185074, 0.0657535120844841, -0.11300431936979294, 0.03300803527235985, 0.1006435751914978, -0.021579928696155548, 0.07627937942743301, 0.11079196631908417, -0.023353170603513718, 0.006963616237044334, 0.07969304174184799, -0.2467534989118576, -0.08276727795600891, -0.07502299547195435, 0.047773830592632294, 0.07212468981742859, 0.10943278670310974, 0.21149371564388275, 0.014789524488151073, -0.025001436471939087, 0.03222371265292168, 0.023720046505331993, -0.018071206286549568, 0.057205770164728165, 0.006658707745373249, 0.02543378621339798, -0.14630788564682007, 0.04069182276725769, -0.014969375915825367, -0.07975641638040543, 0.018297437578439713, 0.14578038454055786, -0.10994893312454224, -0.12492318451404572, -0.06442593038082123, 0.15935027599334717, -0.1318066418170929, 0.00008887145668268204, -0.04528146982192993, -0.11942756175994873, 0.08018366992473602, 0.1163475513458252, 0.0548318587243557, 0.04320308938622475, -0.09725219011306763, -0.03015247732400894, -0.0463523268699646, 0.009109904989600182, 0.025928247720003128, -0.025241773575544357, -0.042393237352371216, 0.04041439667344093, -0.037384483963251114, 0.1199554055929184, -0.09227344393730164, -0.10210355371236801, -0.16372735798358917, 0.04211808368563652, -0.04951796308159828, -0.08286435902118683, -0.1046765148639679, -0.043875209987163544, 0.00679828692227602, -0.03306660056114197, -0.02686910517513752, -0.028210319578647614, -0.10169406235218048, 0.0354401171207428, -0.039222512394189835, -0.0010834659915417433, -0.07553835958242416, 0.024027099832892418, 0.045587822794914246, -0.02624446526169777, 0.1485806107521057, 0.12215639650821686, -0.11098423600196838, 0.08989319205284119, -0.16241876780986786, -0.06881432235240936, 0.09718970209360123, 0.021595995873212814, 0.04444918408989906, 0.043577950447797775, 0.006596237421035767, 0.04742807894945145, 0.06705378741025925, 0.040454499423503876, 0.055872101336717606, -0.07414437085390091, 0.05340878292918205, -0.05155640468001366, -0.10819453746080399, -0.04804424196481705, -0.013407588936388493, 0.008997448720037937, 0.06238336116075516, 0.11464203894138336, -0.0483878068625927, 0.08908496052026749, -0.05675007402896881, 0.049880947917699814, 0.027069102972745895, -0.16960401833057404, 0.014258208684623241, -0.0808192640542984, 0.053306471556425095, 0.004392252769321203, 0.18324851989746094, 0.012561025097966194, -0.029430944472551346, 0.02732483670115471, 0.05722617357969284, 0.05216764658689499, -0.010767760686576366, 0.1901388317346573, 0.10632782429456711, -0.038889240473508835, -0.09260699898004532, 0.09756447374820709, 0.04513990134000778, 0.06597290933132172, 0.14979833364486694, -0.02466198429465294, -0.010925143957138062, 0.07297184318304062, 0.004247481003403664, 0.02110392414033413, -0.0873403549194336, -0.0998910591006279, -0.02316814288496971, 0.03743436560034752, -0.033713094890117645, 0.11821766197681427, 0.16003753244876862, 0.004898495972156525, 0.015858691185712814, -0.019366057589650154, -0.053652193397283554, -0.19227364659309387, -0.19133047759532928, -0.0922650396823883, -0.13585466146469116, 0.005800233688205481, -0.1313185691833496, 0.035255029797554016, 0.03759025037288666, 0.10348966717720032, -0.04712950438261032, 0.02449607104063034, 0.03599223494529724, -0.11023194342851639, 0.053648680448532104, -0.04251009225845337, 0.07534263283014297, -0.0288483127951622, 0.00955510139465332, -0.051057491451501846, 0.036296628415584564, 0.014495961368083954, 0.03052874095737934, -0.02045595459640026, 0.0203727874904871, -0.12031914293766022, -0.09146412461996078, -0.0652654618024826, 0.0565146766602993, 0.0026318831369280815, 0.16578586399555206, 0.01112611684948206, -0.02614348568022251, 0.026491381227970123, 0.2084609717130661, -0.06327962130308151, -0.09746730327606201, -0.07132168114185333, 0.203248530626297, -0.012181129306554794, 0.0951991155743599, -0.03945131227374077, 0.013144226744771004, -0.06770433485507965, 0.33865463733673096, 0.3012107312679291, -0.104325070977211, 0.010152887552976608, 0.002433057874441147, 0.04099532216787338, 0.12672795355319977, 0.08416569232940674, 0.10599584132432938, 0.2619067132472992, -0.069271981716156, -0.06182895973324776, -0.010734140872955322, -0.025832153856754303, -0.059502504765987396, 0.04846819490194321, 0.060089610517024994, -0.05902278795838356, -0.01576954498887062, 0.11261053383350372, -0.2549726963043213, 0.05737382918596268, -0.1458929032087326, -0.14792890846729279, -0.06993737071752548, -0.0008564922027289867, 0.09068048745393753, 0.010102925822138786, 0.08812552690505981, -0.011714844033122063, -0.06707380712032318, 0.044450268149375916, 0.019938640296459198, -0.21181021630764008, 0.008332989178597927, 0.07651379704475403, -0.031228363513946533, -0.05378149822354317, -0.02486795000731945, 0.08115644752979279, 0.08993051201105118, 0.031433310359716415, -0.016278380528092384, 0.04931800812482834, -0.00844922848045826, -0.07117252051830292, 0.03346596658229828, 0.012209481559693813, 0.01669057458639145, -0.05868103355169296, 0.0727684423327446, -0.16378995776176453, 0.030053474009037018, -0.030178112909197807, -0.06673619151115417, -0.00835607573390007, 0.03437380492687225, -0.06272272765636444, 0.08189035207033157, 0.08107085525989532, -0.017087949439883232, -0.029968449845910072, -0.025353075936436653, -0.009976672008633614, -0.033645838499069214, -0.0770852267742157, -0.10150755196809769, -0.16576941311359406, -0.11129410564899445, 0.07681435346603394, 0.002545040100812912, -0.2132008969783783, 0.01989331841468811, -0.13140831887722015, 0.04490850493311882, -0.10383498668670654, 0.09425871074199677, 0.07931430637836456, 0.020193548873066902, -0.0043848673813045025, 0.012049510143697262, 0.040718138217926025, 0.07634101808071136, -0.13649077713489532, -0.08752022683620453 ]
null
null
transformers
# Rick Sanchez DialoGPT Model
{"tags": ["conversational"]}
text-generation
MCUxDaredevil/DialoGPT-small-rick
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Rick Sanchez DialoGPT Model
[ "# Rick Sanchez DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Rick Sanchez DialoGPT Model" ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Rick Sanchez DialoGPT Model" ]
[ -0.05704520270228386, 0.1080707237124443, -0.005703833419829607, 0.024355918169021606, 0.1347416192293167, -0.009864812716841698, 0.13915762305259705, 0.13641619682312012, -0.014821183867752552, -0.025234131142497063, 0.13788719475269318, 0.23441068828105927, -0.0040086545050144196, 0.0579121895134449, -0.09891517460346222, -0.29657089710235596, 0.032161157578229904, 0.05994465947151184, -0.0033263780642300844, 0.11953802406787872, 0.0843273475766182, -0.043882302939891815, 0.08131924271583557, 0.0018995096907019615, -0.14373421669006348, 0.011346335522830486, 0.04636937007308006, -0.13702289760112762, 0.11601521074771881, 0.08168332278728485, 0.03479677438735962, 0.06183161959052086, -0.03211790323257446, -0.10245182365179062, 0.03838932886719704, -0.008999419398605824, -0.03427799046039581, 0.06022527068853378, 0.031745243817567825, -0.1152564138174057, 0.09468080848455429, 0.0923495814204216, -0.005728692281991243, 0.049891795963048935, -0.17913517355918884, -0.010704654268920422, -0.021677182987332344, 0.055929314345121384, 0.08334671705961227, 0.09012723714113235, -0.03841714933514595, 0.09080751240253448, -0.04324564337730408, 0.07660475373268127, 0.08530165255069733, -0.28937292098999023, -0.030906030908226967, 0.06582700461149216, 0.05632982775568962, 0.06222769245505333, -0.012348905205726624, 0.10370101034641266, 0.04712950810790062, -0.014536825940012932, -0.020318668335676193, -0.09295357018709183, -0.08654087781906128, 0.01945175603032112, -0.06887777894735336, -0.00602162629365921, 0.2560831606388092, -0.030627258121967316, 0.0731891319155693, -0.08859450370073318, -0.10249431431293488, 0.004030927084386349, -0.03497277945280075, -0.05301825329661369, -0.08995666354894638, 0.0700719803571701, -0.003147976705804467, -0.07389466464519501, -0.1290099322795868, -0.021585101261734962, -0.1774103045463562, 0.19141581654548645, 0.030293408781290054, 0.023750921711325645, -0.2208036631345749, 0.08902101963758469, 0.045917924493551254, -0.11613845080137253, 0.04777151718735695, -0.0842585563659668, 0.027763593941926956, 0.03184368088841438, -0.015087970532476902, -0.059821996837854385, 0.06819985806941986, 0.09782791137695312, 0.01923726685345173, 0.009750176221132278, -0.024553336203098297, 0.05652669072151184, 0.04215332120656967, 0.09357214719057083, -0.002894732868298888, -0.0361810103058815, 0.015707144513726234, -0.09473340213298798, 0.013285800814628601, -0.06974472850561142, -0.20285023748874664, -0.01343308761715889, 0.030690573155879974, 0.06404593586921692, 0.0605037696659565, 0.11637318879365921, -0.016192488372325897, -0.07014694064855576, 0.04394420608878136, -0.011219148524105549, -0.02391223981976509, 0.008600763976573944, 0.005595726426690817, 0.1813707947731018, 0.011592349968850613, 0.04672492668032646, -0.08541523665189743, 0.0021381767001003027, -0.04958593100309372, -0.03829700127243996, -0.02637419104576111, -0.043410710990428925, 0.004262345843017101, -0.01814153417944908, 0.01607448235154152, -0.16901227831840515, -0.1370115429162979, -0.022032571956515312, -0.023941930383443832, -0.05494401231408119, -0.10453005880117416, -0.1106305792927742, 0.010454395785927773, 0.0411594994366169, -0.07347700744867325, -0.006038041319698095, -0.05349244922399521, 0.10734197497367859, -0.0012300090165808797, 0.07703675329685211, -0.07842288166284561, 0.07365122437477112, -0.06573385000228882, -0.025447865948081017, -0.10093135386705399, 0.13386206328868866, 0.00915649812668562, 0.06603219360113144, -0.046941112726926804, -0.007621072698384523, -0.10842157155275345, 0.08102882653474808, -0.06603449583053589, 0.25178468227386475, -0.10469595342874527, -0.11071616411209106, 0.2805403769016266, -0.03361968696117401, -0.1264788806438446, 0.10199446976184845, -0.01158563606441021, 0.11561296135187149, 0.15402540564537048, 0.2052226960659027, 0.02928532473742962, -0.02268681675195694, 0.10423996299505234, 0.1035756841301918, -0.057625655084848404, -0.03801124170422554, 0.041060492396354675, -0.03943869471549988, -0.08562899380922318, 0.029806632548570633, 0.017141755670309067, 0.06328166276216507, -0.04716106131672859, -0.014570656232535839, 0.02421940304338932, 0.004092389717698097, 0.07496705651283264, -0.024279450997710228, 0.13514691591262817, -0.023218633607029915, -0.0656837597489357, -0.06177486851811409, 0.01964477449655533, -0.04003036767244339, 0.020440705120563507, -0.08908485621213913, 0.06243852525949478, -0.03572830185294151, 0.057841621339321136, -0.13513502478599548, -0.06440334767103195, -0.052385009825229645, 0.2330688089132309, 0.06854398548603058, 0.08484960347414017, 0.04045721888542175, -0.06823423504829407, -0.0003254515759181231, 0.0230836383998394, 0.19774475693702698, -0.012182417325675488, -0.07111652195453644, -0.1060645654797554, 0.09369703382253647, -0.06330309808254242, 0.08606080710887909, -0.059275124222040176, 0.007605451624840498, -0.026874825358390808, 0.06961184740066528, -0.0269512627273798, 0.040469661355018616, 0.0006163049256429076, -0.023647982627153397, -0.07465367019176483, -0.0149429552257061, 0.10460925847291946, 0.010055731050670147, -0.10779253393411636, 0.2434917390346527, -0.19769670069217682, 0.11526761204004288, 0.16096965968608856, -0.22217433154582977, -0.008169818669557571, -0.11098682880401611, -0.011975600384175777, 0.010464251041412354, 0.03273862600326538, -0.04017077758908272, 0.22867226600646973, -0.010608958080410957, 0.1853235810995102, -0.052233923226594925, -0.01996525749564171, -0.027332648634910583, -0.06422537565231323, 0.019287196919322014, 0.10971896350383759, 0.12856750190258026, -0.161560520529747, 0.1724557876586914, 0.06672785431146622, 0.08213970810174942, 0.16275310516357422, 0.023765239864587784, 0.018852105364203453, 0.055699001997709274, 0.014213238842785358, -0.01790653169155121, -0.06882723420858383, -0.18352845311164856, -0.02486453764140606, 0.06696174293756485, 0.03141540661454201, 0.11100433766841888, -0.11560750752687454, -0.04409283027052879, 0.01155218854546547, -0.007257997989654541, 0.04618756100535393, 0.12712539732456207, -0.003129301592707634, 0.12465701252222061, -0.008397440426051617, -0.08989791572093964, 0.06356243789196014, 0.025369787588715553, -0.09814108163118362, 0.182835653424263, -0.1034003496170044, -0.32152217626571655, -0.1001197025179863, -0.18328212201595306, -0.03920574113726616, 0.07533707469701767, 0.11137884855270386, -0.13466644287109375, 0.003127885051071644, 0.03510995954275131, 0.09001503139734268, -0.10122435539960861, -0.0034966380335390568, -0.012268266640603542, -0.018193284049630165, -0.13420377671718597, -0.08291704952716827, -0.06102906912565231, -0.04295424371957779, -0.03346853703260422, 0.10250663757324219, -0.17059698700904846, 0.0539877749979496, 0.26917001605033875, 0.09507580101490021, 0.05430034175515175, -0.04344318434596062, 0.1592034101486206, -0.10573985427618027, 0.012773060239851475, 0.22541004419326782, -0.028745699673891068, 0.05365750566124916, 0.0892547219991684, -0.01033081579953432, -0.0708671286702156, 0.020250815898180008, -0.02718094177544117, -0.0714477151632309, -0.2280162125825882, -0.13114430010318756, -0.10388115793466568, 0.05737285315990448, 0.06432957202196121, 0.0326518714427948, 0.1693384051322937, 0.10345755517482758, -0.042771194130182266, 0.014231901615858078, 0.04525286331772804, 0.08099555969238281, 0.24561424553394318, -0.07478486001491547, 0.13777120411396027, -0.020003067329525948, -0.17604942619800568, 0.06821287423372269, 0.08701446652412415, 0.07066261768341064, 0.0939561203122139, 0.13011965155601501, 0.02880261279642582, 0.03623313829302788, 0.09038466960191727, 0.045518048107624054, 0.022583454847335815, -0.03737230971455574, -0.06662941724061966, -0.044609375298023224, -0.041899174451828, 0.021367410197854042, 0.03182210028171539, -0.14257657527923584, -0.05327456444501877, 0.004599247593432665, 0.04934147000312805, 0.04460717737674713, 0.04937165975570679, -0.1958761215209961, -0.01135042030364275, 0.08069007098674774, 0.0008143498562276363, -0.08933985978364944, 0.0729956179857254, -0.010731075890362263, -0.11471421271562576, 0.046170588582754135, -0.02729932591319084, 0.12909768521785736, -0.07558268308639526, 0.08029930293560028, -0.14030702412128448, -0.06785701215267181, 0.011536509729921818, 0.11896203458309174, -0.2636930048465729, 0.20840856432914734, -0.008380764164030552, -0.049465201795101166, -0.1043824851512909, -0.009141412563621998, 0.0023304640781134367, 0.0944279134273529, 0.1368221640586853, -0.028159884735941887, -0.02392721176147461, 0.024199169129133224, -0.06698837131261826, 0.03141431510448456, 0.08238276839256287, -0.08262956887483597, 0.0013082197401672602, -0.04166802391409874, 0.0039241621270775795, 0.009456396102905273, -0.06101514399051666, 0.01121380366384983, -0.195927694439888, 0.0798632875084877, 0.05245203897356987, 0.06079527735710144, 0.04320540651679039, -0.030458878725767136, -0.12451554834842682, 0.21634705364704132, -0.01915883459150791, -0.09401129186153412, -0.09610380977392197, -0.02037319913506508, 0.01868581213057041, -0.08247993141412735, -0.029365237802267075, -0.05376124754548073, 0.03249189257621765, -0.0736650601029396, -0.1903923898935318, 0.12846902012825012, -0.11052907258272171, -0.028645969927310944, -0.05812210589647293, 0.2216455489397049, -0.030725445598363876, 0.015262283384799957, 0.059073857963085175, -0.026270287111401558, -0.09585471451282501, -0.09591566771268845, -0.007837353274226189, 0.022675657644867897, 0.027353649958968163, -0.013003773055970669, -0.04600683972239494, -0.03253196179866791, -0.07994730770587921, -0.018432755023241043, 0.3114815652370453, 0.10657966881990433, -0.053566571325063705, 0.1609998643398285, 0.08925200253725052, -0.07996044307947159, -0.24130167067050934, -0.11830049753189087, -0.06823843717575073, -0.04297657683491707, -0.04875720292329788, -0.17909106612205505, 0.07042492181062698, -0.01572689227759838, -0.0246592964977026, 0.0796264261007309, -0.34351006150245667, -0.09367087483406067, 0.17016243934631348, -0.044724494218826294, 0.4543110132217407, -0.1197502538561821, -0.10162397474050522, -0.06263615190982819, -0.1313125193119049, 0.18072150647640228, -0.0014751619892194867, 0.10033301264047623, 0.004829281009733677, 0.16866052150726318, 0.05691388249397278, 0.007217222824692726, 0.091414675116539, 0.01798011176288128, -0.0663527175784111, -0.07840543240308762, -0.10491379350423813, -0.03505389019846916, 0.005603624042123556, -0.0021735846530646086, -0.070311039686203, 0.020419610664248466, -0.15853211283683777, -0.06377539038658142, -0.08453743904829025, 0.02356107160449028, 0.030920391902327538, -0.05867331475019455, 0.013508422300219536, -0.06677638739347458, 0.018330350518226624, -0.001379468129016459, 0.19494818150997162, -0.11257137358188629, 0.17101415991783142, 0.04597465693950653, 0.1332368403673172, -0.08957637846469879, -0.0664193332195282, -0.09592875093221664, -0.04850716516375542, 0.07897713780403137, -0.12196645140647888, 0.028588851913809776, 0.10687820613384247, -0.026256760582327843, 0.08356694877147675, 0.0898364707827568, -0.007075367029756308, 0.034319691359996796, 0.09755269438028336, -0.21034450829029083, -0.08239499479532242, -0.0750756561756134, 0.03635190799832344, 0.08414819836616516, 0.09669569879770279, 0.19893206655979156, 0.012653730809688568, -0.042145922780036926, 0.017787763848900795, 0.012123693712055683, -0.02111114002764225, 0.07857295125722885, 0.018965713679790497, 0.005439399741590023, -0.1433452069759369, 0.052979227155447006, 0.010302988812327385, -0.08479844033718109, 0.010003048926591873, 0.1269667148590088, -0.0933220237493515, -0.11143316328525543, -0.03672108054161072, 0.14701539278030396, -0.17777521908283234, -0.0062329513020813465, -0.0675484910607338, -0.13784073293209076, 0.0540735125541687, 0.08879818022251129, 0.04015353322029114, 0.03582773730158806, -0.09314056485891342, -0.023970693349838257, -0.027464643120765686, -0.025517743080854416, 0.06011157110333443, -0.016900639981031418, -0.06295756995677948, 0.07077009975910187, -0.024854036048054695, 0.11451400071382523, -0.08354704827070236, -0.08851433545351028, -0.16065533459186554, 0.05232835188508034, -0.0971856415271759, -0.051306720823049545, -0.09556061774492264, -0.050184283405542374, -0.01728140190243721, -0.018070710822939873, -0.02822391875088215, -0.04367216303944588, -0.10629069805145264, 0.04816720634698868, -0.03879733756184578, 0.02260771207511425, -0.06238244101405144, 0.02379411831498146, 0.03523104265332222, -0.015178869478404522, 0.1198926493525505, 0.12207183241844177, -0.09698602557182312, 0.09035449475049973, -0.16394847631454468, -0.06776027381420135, 0.11319122463464737, 0.01993078552186489, 0.060301147401332855, 0.06648512184619904, 0.011058407835662365, 0.06193515285849571, 0.047181855887174606, 0.04019154608249664, 0.0011482342379167676, -0.0998595729470253, 0.05959494039416313, -0.025470629334449768, -0.11498484015464783, -0.05095286667346954, 0.004914015997201204, 0.01974906586110592, 0.04762796312570572, 0.09024947136640549, -0.07045641541481018, 0.10133861005306244, -0.0719725638628006, 0.042781490832567215, 0.013207492418587208, -0.1567831039428711, -0.009022838436067104, -0.07855422794818878, 0.051177605986595154, 0.018598362803459167, 0.16054493188858032, 0.01182752288877964, 0.026072200387716293, 0.010315481573343277, 0.07682152092456818, 0.04349011927843094, -0.014741134829819202, 0.21185405552387238, 0.10036209225654602, -0.025498010218143463, -0.09448950737714767, 0.10583885759115219, 0.05347297713160515, 0.04882397875189781, 0.13073812425136566, 0.00329616479575634, -0.014263730496168137, 0.08692904561758041, 0.002064551692456007, 0.02444906160235405, -0.11166326701641083, -0.12022344022989273, -0.034913238137960434, 0.03916458785533905, -0.018694007769227028, 0.07413183152675629, 0.13662488758563995, -0.011044695042073727, 0.01868942379951477, -0.006493001710623503, -0.044404536485672, -0.19629815220832825, -0.21793615818023682, -0.07676366716623306, -0.13648608326911926, -0.0023855564650148153, -0.11510718613862991, 0.041815925389528275, 0.008664922788739204, 0.07993809133768082, -0.08146228641271591, 0.05119030550122261, 0.06000566482543945, -0.1558382213115692, 0.07134677469730377, -0.023100191727280617, 0.1049720048904419, -0.07798602432012558, 0.0240509994328022, -0.06541567295789719, 0.07175038009881973, 0.01739879511296749, 0.029955588281154633, -0.01989707536995411, 0.008211890235543251, -0.12742145359516144, -0.08334774523973465, -0.06036959961056709, 0.06557390093803406, 0.020560268312692642, 0.1673227995634079, 0.009943484328687191, -0.023078134283423424, 0.028660951182246208, 0.24841417372226715, -0.0622759610414505, -0.06388328224420547, -0.06632015854120255, 0.20368391275405884, -0.019206369295716286, 0.09927452355623245, -0.04167409613728523, 0.010532806627452374, -0.07129248231649399, 0.3616236448287964, 0.2931338846683502, -0.10953228175640106, 0.007534074131399393, -0.023572852835059166, 0.042554765939712524, 0.11510708183050156, 0.1042989119887352, 0.07050987333059311, 0.29585832357406616, -0.05323539301753044, -0.035456158220767975, -0.00002445635254844092, 0.0010794458212330937, -0.06095365062355995, 0.08202893286943436, 0.03708086162805557, -0.050908174365758896, -0.00022808888752479106, 0.14211015403270721, -0.2293669879436493, 0.05093219503760338, -0.1549203097820282, -0.17726412415504456, -0.08134126663208008, -0.008463856764137745, 0.11377648264169693, 0.03384561836719513, 0.10970432311296463, -0.004765030462294817, -0.0765727236866951, 0.0467694029211998, 0.03101363778114319, -0.19725514948368073, 0.009119519963860512, 0.06916453689336777, -0.02850601077079773, -0.030441200360655785, -0.02334762178361416, 0.06269988417625427, 0.07391422241926193, 0.05389029160141945, -0.01931828074157238, 0.03749391436576843, -0.00035577634116634727, -0.041961804032325745, 0.07208401709794998, -0.0301519688218832, 0.008827175945043564, -0.0679439827799797, 0.08395512402057648, -0.18772968649864197, 0.04201417416334152, 0.018391063436865807, -0.04758477583527565, -0.04135806858539581, 0.04440581426024437, -0.07019207626581192, 0.08052141219377518, 0.07222563028335571, -0.01630892977118492, -0.02569187991321087, -0.013696021400392056, -0.005180103238672018, 0.000036183802876621485, -0.011484390124678612, -0.10217433422803879, -0.1737447828054428, -0.13257969915866852, 0.06753268837928772, 0.018290087580680847, -0.20535635948181152, 0.03693879395723343, -0.12776882946491241, 0.02865419164299965, -0.10825670510530472, 0.07439035177230835, 0.07718028128147125, 0.02790611796081066, -0.0036239037290215492, -0.022755812853574753, 0.03530992195010185, 0.0841168612241745, -0.12845547497272491, -0.06076517328619957 ]
null
null
transformers
# Model Trained Using AutoNLP - Problem type: Binary Classification - Model ID: 7121569 ## Validation Metrics - Loss: 0.2151782214641571 - Accuracy: 0.9271 - Precision: 0.9469285415796072 - Recall: 0.9051328140603155 - AUC: 0.9804569416956057 - F1: 0.925559072807107 ## Usage You can use cURL to access this model: ``` $ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoNLP"}' https://api-inference.huggingface.co/models/MICADEE/autonlp-imdb-sentiment-analysis2-7121569 ``` Or Python API: ``` from transformers import AutoModelForSequenceClassification, AutoTokenizer model = AutoModelForSequenceClassification.from_pretrained("MICADEE/autonlp-imdb-sentiment-analysis2-7121569", use_auth_token=True) tokenizer = AutoTokenizer.from_pretrained("MICADEE/autonlp-imdb-sentiment-analysis2-7121569", use_auth_token=True) inputs = tokenizer("I love AutoNLP", return_tensors="pt") outputs = model(**inputs) ```
{"language": "en", "tags": "autonlp", "datasets": ["MICADEE/autonlp-data-imdb-sentiment-analysis2"], "widget": [{"text": "I love AutoNLP \ud83e\udd17"}]}
text-classification
MICADEE/autonlp-imdb-sentiment-analysis2-7121569
[ "transformers", "pytorch", "distilbert", "text-classification", "autonlp", "en", "dataset:MICADEE/autonlp-data-imdb-sentiment-analysis2", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #distilbert #text-classification #autonlp #en #dataset-MICADEE/autonlp-data-imdb-sentiment-analysis2 #autotrain_compatible #endpoints_compatible #region-us
# Model Trained Using AutoNLP - Problem type: Binary Classification - Model ID: 7121569 ## Validation Metrics - Loss: 0.2151782214641571 - Accuracy: 0.9271 - Precision: 0.9469285415796072 - Recall: 0.9051328140603155 - AUC: 0.9804569416956057 - F1: 0.925559072807107 ## Usage You can use cURL to access this model: Or Python API:
[ "# Model Trained Using AutoNLP\n\n- Problem type: Binary Classification\n- Model ID: 7121569", "## Validation Metrics\n\n- Loss: 0.2151782214641571\n- Accuracy: 0.9271\n- Precision: 0.9469285415796072\n- Recall: 0.9051328140603155\n- AUC: 0.9804569416956057\n- F1: 0.925559072807107", "## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ "TAGS\n#transformers #pytorch #distilbert #text-classification #autonlp #en #dataset-MICADEE/autonlp-data-imdb-sentiment-analysis2 #autotrain_compatible #endpoints_compatible #region-us \n", "# Model Trained Using AutoNLP\n\n- Problem type: Binary Classification\n- Model ID: 7121569", "## Validation Metrics\n\n- Loss: 0.2151782214641571\n- Accuracy: 0.9271\n- Precision: 0.9469285415796072\n- Recall: 0.9051328140603155\n- AUC: 0.9804569416956057\n- F1: 0.925559072807107", "## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ 67, 24, 74, 17 ]
[ "passage: TAGS\n#transformers #pytorch #distilbert #text-classification #autonlp #en #dataset-MICADEE/autonlp-data-imdb-sentiment-analysis2 #autotrain_compatible #endpoints_compatible #region-us \n# Model Trained Using AutoNLP\n\n- Problem type: Binary Classification\n- Model ID: 7121569## Validation Metrics\n\n- Loss: 0.2151782214641571\n- Accuracy: 0.9271\n- Precision: 0.9469285415796072\n- Recall: 0.9051328140603155\n- AUC: 0.9804569416956057\n- F1: 0.925559072807107## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ -0.1399354189634323, 0.18111129105091095, -0.0005833293544128537, 0.08627580106258392, 0.11990317702293396, 0.03000388666987419, 0.057129088789224625, 0.11226974427700043, 0.059415582567453384, 0.060780636966228485, 0.12998786568641663, 0.21629074215888977, 0.04792791232466698, 0.10845459997653961, -0.15319955348968506, -0.1836395263671875, 0.049681778997182846, 0.06382569670677185, 0.1727377027273178, 0.12976735830307007, 0.07326047122478485, -0.08019480854272842, 0.11797186732292175, 0.038585077971220016, -0.1468191295862198, -0.021663183346390724, 0.07713959366083145, -0.10030864179134369, 0.09793870151042938, 0.06282633543014526, 0.11064048856496811, 0.004533922299742699, 0.10290222615003586, -0.11806728690862656, -0.01462475024163723, -0.021477824077010155, 0.003363203490152955, 0.07889977097511292, 0.08174287527799606, -0.06962879002094269, 0.041391510516405106, -0.006817283574491739, 0.07229016721248627, 0.04588894546031952, -0.10356230288743973, -0.08646523952484131, -0.05788002535700798, 0.07422292232513428, 0.1258091777563095, 0.12093541026115417, -0.038868822157382965, 0.2282070368528366, -0.06840191781520844, 0.12559008598327637, 0.006948497146368027, -0.21435198187828064, -0.011526543647050858, 0.10566563159227371, -0.05527951195836067, -0.10046704113483429, -0.009752615354955196, 0.012325214222073555, 0.0847247987985611, 0.02801888808608055, 0.0058320811949670315, -0.03719690442085266, -0.08085372298955917, -0.006328337825834751, -0.10658331960439682, -0.07510025799274445, 0.24748657643795013, 0.030454836785793304, -0.09452451765537262, -0.026211543008685112, -0.05835530534386635, -0.09008673578500748, -0.05317777395248413, -0.046082753688097, -0.034960296005010605, -0.02872636914253235, -0.05791057273745537, 0.1138143315911293, -0.08128993958234787, -0.05214373767375946, -0.1919746845960617, 0.11313379555940628, -0.009221313521265984, 0.06542862951755524, -0.04176350682973862, 0.07090095430612564, -0.09946847707033157, -0.07970734685659409, -0.027184905484318733, -0.026617998257279396, -0.05858268216252327, -0.09541856497526169, -0.053877875208854675, 0.015659011900424957, -0.02371007576584816, 0.17564505338668823, 0.06307733058929443, 0.07445163279771805, -0.008536421693861485, -0.022632066160440445, 0.044048406183719635, 0.18915711343288422, -0.11340837180614471, 0.008242391981184483, 0.02902403473854065, -0.03436439484357834, 0.011805268935859203, -0.017964789643883705, -0.07754915207624435, -0.08553192764520645, 0.15332789719104767, 0.030428510159254074, -0.002986065810546279, 0.09822551161050797, -0.10359777510166168, -0.061913471668958664, -0.008347521536052227, -0.0654006227850914, 0.01997097209095955, 0.010279091075062752, -0.13555599749088287, 0.11036862432956696, 0.08148816227912903, 0.03377055376768112, -0.08564899116754532, 0.04112497344613075, -0.08048690855503082, 0.03727562353014946, -0.03165777772665024, -0.12134799361228943, 0.04713618382811546, 0.02460690215229988, 0.03357231989502907, -0.17863784730434418, -0.24769580364227295, -0.02977336198091507, 0.020034784451127052, -0.08857402205467224, -0.026580331847071648, -0.05342251807451248, -0.0009477706043981016, 0.04738936200737953, -0.02175106853246689, -0.03406824916601181, -0.037304192781448364, 0.04108937457203865, 0.06459318101406097, 0.09570638090372086, -0.08846302330493927, 0.04511291906237602, -0.10950612276792526, -0.001243998878635466, -0.07329769432544708, 0.08024115115404129, -0.0332966111600399, 0.08217866718769073, -0.15197783708572388, -0.05651119351387024, 0.08648912608623505, -0.014148536138236523, 0.05162357911467552, 0.17034515738487244, -0.13618157804012299, -0.01912459172308445, 0.03986280411481857, -0.04938049986958504, -0.1009380891919136, 0.12780240178108215, -0.048400770872831345, 0.05364232882857323, 0.09069015830755234, 0.059792276471853256, 0.059279441833496094, -0.05985632911324501, -0.06797648966312408, 0.01840347796678543, -0.06358904391527176, -0.08103691786527634, 0.0476071871817112, 0.05929052084684372, -0.19648344814777374, 0.05199823155999184, 0.06297357380390167, 0.03498298302292824, -0.051277387887239456, -0.09062785655260086, -0.03379921615123749, -0.0461360402405262, 0.048300039023160934, 0.03554486110806465, 0.07183361798524857, -0.024082543328404427, -0.036255352199077606, -0.018230848014354706, 0.13796904683113098, 0.006779966875910759, -0.054385602474212646, -0.15026791393756866, 0.10019595921039581, -0.13446693122386932, -0.04195893555879593, -0.2232723981142044, 0.03568301722407341, -0.024125520139932632, 0.04004461690783501, -0.004004784859716892, -0.05132419615983963, 0.06548769772052765, 0.0002041072293650359, 0.020129457116127014, -0.005910287611186504, 0.15380384027957916, 0.010346346534788609, -0.08860690891742706, -0.06738898158073425, -0.0017337697790935636, -0.029137974604964256, 0.24745990335941315, -0.1297890841960907, -0.027842605486512184, -0.0077853696420788765, 0.07757117599248886, -0.02322230115532875, 0.0047723520547151566, 0.001773562515154481, 0.02943030372262001, -0.04404227435588837, 0.0027516300324350595, 0.05417177453637123, -0.03151090443134308, -0.09120390564203262, 0.015274626202881336, -0.18930405378341675, 0.11634304374456406, 0.1604357659816742, -0.08054506033658981, -0.0815797746181488, -0.0053144642151892185, 0.03250657021999359, 0.007920083589851856, -0.006692905444651842, 0.037986934185028076, 0.12129020690917969, 0.016369806602597237, 0.13015159964561462, -0.04496850445866585, -0.009874122217297554, 0.029697392135858536, -0.09594637155532837, -0.06310347467660904, 0.14617060124874115, 0.03811996057629585, -0.22670409083366394, 0.09174077212810516, 0.023157872259616852, -0.1203736886382103, 0.04886091873049736, 0.02274440973997116, -0.02917003072798252, -0.05796273797750473, -0.04504851996898651, 0.015029236674308777, 0.039002206176519394, -0.05160915106534958, 0.021845117211341858, 0.09090065211057663, -0.024659551680088043, -0.007942655123770237, -0.09324110299348831, 0.002240244299173355, 0.04279040917754173, 0.02047048509120941, -0.0957752913236618, -0.0001234202936757356, 0.04898081347346306, 0.13304775953292847, 0.025037556886672974, -0.100138358771801, 0.053915418684482574, 0.01925400272011757, -0.1374654620885849, 0.2185286283493042, -0.09833984076976776, -0.23005615174770355, -0.1360742449760437, -0.1704276204109192, -0.07774220407009125, -0.004613758996129036, -0.015730727463960648, -0.09219043701887131, -0.09157539904117584, -0.043264515697956085, -0.05298638716340065, -0.029106490314006805, -0.019898077473044395, 0.006441693287342787, -0.027217095717787743, 0.059062302112579346, -0.06374746561050415, -0.059686046093702316, -0.04416409507393837, -0.01425112783908844, 0.12918877601623535, -0.08411750197410583, 0.09392888844013214, 0.18700633943080902, -0.01790335401892662, 0.04724228009581566, 0.011228740215301514, 0.22260290384292603, -0.02051987126469612, -0.04457375779747963, 0.1653919816017151, -0.01228401716798544, 0.017492331564426422, 0.16371026635169983, 0.008631194941699505, -0.09039642661809921, 0.0035488507710397243, -0.0006121593760326505, -0.024775434285402298, -0.1584656685590744, -0.18425649404525757, 0.003756205551326275, 0.06281695514917374, 0.140011727809906, -0.0026237384881824255, 0.13020984828472137, 0.1426311582326889, 0.04255780205130577, 0.06454013288021088, -0.06811446696519852, 0.09191414713859558, 0.1823083758354187, -0.00648333178833127, 0.1490483433008194, -0.034672413021326065, -0.0750892236828804, 0.07584000378847122, -0.03948546573519707, 0.06490837037563324, 0.03732210025191307, -0.018468448892235756, -0.04647790268063545, 0.1367180198431015, 0.050626490265131, 0.14432169497013092, 0.05060652643442154, -0.047665074467659, -0.004346861038357019, -0.024127207696437836, -0.1524210423231125, 0.046483613550662994, 0.04929463937878609, 0.0452219620347023, -0.1192457526922226, -0.023164790123701096, -0.005005914252251387, 0.060312286019325256, 0.1769542247056961, -0.5005104541778564, -0.09636325389146805, 0.020560134202241898, -0.02800801396369934, -0.12245912104845047, -0.013544774614274502, -0.12919609248638153, -0.11855771392583847, 0.05561229959130287, -0.05163588002324104, 0.11222197115421295, -0.11415714025497437, 0.015233295038342476, -0.10456003248691559, 0.01088667567819357, -0.027777185663580894, 0.08965354412794113, -0.24663688242435455, 0.23035907745361328, 0.04500044137239456, 0.04225364327430725, -0.11546558141708374, -0.014861640520393848, 0.06740707904100418, 0.07533503323793411, 0.13089190423488617, -0.010519108735024929, -0.022349203005433083, -0.28514647483825684, -0.08961842954158783, 0.027029849588871002, -0.038554996252059937, 0.04978679120540619, 0.08539911359548569, -0.0076543428003787994, 0.007947508245706558, 0.006135443225502968, -0.0018275741022080183, -0.10554732382297516, -0.039924412965774536, 0.03210436925292015, 0.10771695524454117, 0.017809558659791946, 0.03330795094370842, -0.0677240788936615, -0.017744027078151703, 0.10830826312303543, 0.033343516290187836, -0.04803333804011345, -0.14798827469348907, 0.07776833325624466, 0.08864285051822662, -0.10670936852693558, 0.016486478969454765, -0.047029759734869, 0.06137951463460922, 0.01665770262479782, -0.15404340624809265, 0.08737356960773468, -0.08975991606712341, -0.0013785343617200851, -0.0012607729295268655, 0.030792580917477608, 0.014827067963778973, 0.03712695091962814, 0.07411971688270569, 0.03522762656211853, -0.06535344570875168, -0.07815027236938477, 0.039116594940423965, 0.06642987579107285, 0.07364224642515182, 0.13103516399860382, 0.022613834589719772, -0.155502051115036, -0.10440052300691605, 0.07248353213071823, 0.18325132131576538, 0.14067479968070984, -0.061914194375276566, -0.024989893659949303, 0.09358599781990051, -0.013862472027540207, -0.23904795944690704, -0.023717213422060013, -0.0009962237672880292, 0.051885854452848434, -0.05206248164176941, -0.05420464277267456, 0.10040826350450516, 0.06333737820386887, -0.03496416285634041, -0.08777490258216858, -0.14687436819076538, -0.09264072775840759, 0.3055867850780487, 0.06819427013397217, 0.19505786895751953, -0.06870035827159882, -0.035201966762542725, -0.12116536498069763, -0.1650204360485077, 0.15373775362968445, 0.001151199685409665, 0.0756315067410469, -0.040072765201330185, 0.20326097309589386, 0.07237095385789871, -0.0536002553999424, 0.14304356276988983, 0.028103500604629517, 0.05045780912041664, -0.08744334429502487, -0.06745842099189758, -0.10453244298696518, -0.054226141422986984, 0.18277506530284882, 0.04261143505573273, 0.07057370990514755, -0.20855364203453064, -0.047057878226041794, -0.05315891653299332, 0.07449841499328613, 0.005523961968719959, -0.037517186254262924, -0.02309529110789299, 0.016956789419054985, -0.007596994750201702, -0.06571102887392044, -0.04887127876281738, -0.010420077480375767, 0.01944574899971485, 0.2030995488166809, 0.1507343202829361, -0.014486953616142273, 0.011375434696674347, 0.03219766542315483, -0.06901359558105469, 0.07841337472200394, -0.1341789960861206, 0.07041768729686737, 0.12828151881694794, -0.00443709222599864, 0.15556347370147705, 0.05597744509577751, -0.04939708858728409, -0.012945914641022682, 0.044251516461372375, -0.13295531272888184, 0.021627172827720642, -0.02132577635347843, -0.0043284352868795395, -0.04425552487373352, -0.010338478721678257, 0.1288178414106369, -0.060976866632699966, -0.013646419160068035, 0.004941719584167004, 0.008803915232419968, -0.016850627958774567, 0.19187887012958527, 0.014484520070254803, 0.0335230752825737, -0.14136885106563568, 0.05533044785261154, 0.033650197088718414, -0.08813414722681046, 0.07551870495080948, -0.0311867818236351, -0.10811996459960938, -0.10708621144294739, -0.02933966927230358, 0.17879395186901093, -0.22181430459022522, -0.06425879150629044, -0.05765184387564659, -0.11544803529977798, 0.06517143547534943, 0.14247514307498932, 0.10946749895811081, 0.025510072708129883, -0.07651595771312714, -0.10791058093309402, -0.1395440250635147, 0.0606931671500206, 0.17002122104167938, 0.0012131342664361, -0.15018172562122345, 0.1275286227464676, -0.048914793878793716, 0.042326588183641434, -0.051192931830883026, -0.03494618460536003, -0.15554559230804443, 0.01788109354674816, -0.20802700519561768, 0.020541289821267128, -0.09932739287614822, 0.03470372036099434, 0.03160443529486656, -0.00382199976593256, -0.03443145379424095, -0.017655309289693832, -0.08719928562641144, 0.005158004816621542, 0.03513788804411888, 0.037079472094774246, -0.06423529982566833, -0.0648772343993187, 0.054770465940237045, -0.000970354420132935, 0.05969860777258873, 0.16163888573646545, -0.001474351971410215, 0.05231643095612526, -0.09653700888156891, -0.04093506559729576, 0.10714859515428543, 0.02838432975113392, 0.09092052280902863, -0.14920692145824432, 0.03430834785103798, 0.05721845477819443, 0.011933673173189163, 0.06420983374118805, 0.12140891700983047, -0.06612078100442886, -0.0367792546749115, -0.040437035262584686, -0.06858929991722107, -0.12963494658470154, 0.054991524666547775, 0.10157602280378342, 0.06116275489330292, 0.1294979602098465, -0.0769004374742508, 0.05595792457461357, -0.13404226303100586, 0.00890323892235756, -0.05950796231627464, -0.07690024375915527, -0.09489357471466064, -0.06398721039295197, 0.07183743268251419, -0.0030206493102014065, 0.0688195526599884, 0.010297414846718311, 0.021410059183835983, -0.008879299275577068, 0.11137936264276505, 0.04998214170336723, -0.03931047022342682, 0.15101522207260132, 0.0948394238948822, -0.030559681355953217, 0.029203690588474274, 0.11466432362794876, 0.07123859971761703, 0.05535130202770233, 0.004901856649667025, 0.04155617579817772, -0.02977919764816761, 0.1205311045050621, 0.02350909449160099, -0.04506318271160126, -0.0018205917440354824, -0.061681412160396576, -0.15540552139282227, 0.07046438753604889, 0.0220451932400465, 0.0533200278878212, 0.08138833940029144, -0.047732628881931305, 0.010385268367826939, -0.07779745012521744, -0.09329824894666672, -0.18336676061153412, -0.14801599085330963, -0.13466820120811462, -0.07825172692537308, -0.0058822776190936565, -0.10798181593418121, -0.01971869356930256, 0.09328771382570267, 0.049495287239551544, -0.044619739055633545, 0.04714595153927803, -0.142381489276886, -0.036407411098480225, 0.056978560984134674, -0.030681736767292023, -0.04828721284866333, -0.03396251052618027, 0.023808898404240608, 0.0020720274187624454, 0.026288453489542007, 0.06915063410997391, -0.005347304046154022, -0.004614395555108786, 0.07766693085432053, -0.03079482913017273, -0.11057982593774796, -0.03559218719601631, 0.041350193321704865, 0.051085215061903, 0.10235006362199783, 0.016672322526574135, 0.028175488114356995, -0.020071402192115784, 0.20191232860088348, -0.09473514556884766, 0.03483028709888458, -0.1685335487127304, 0.3575102984905243, -0.04135562852025032, 0.05236176401376724, 0.0213602427393198, -0.039230622351169586, 0.023662922903895378, 0.20642925798892975, 0.09896865487098694, -0.045279212296009064, -0.027669429779052734, -0.04327671602368355, -0.001158374361693859, -0.030905677005648613, 0.04092809557914734, 0.06000746414065361, 0.13683296740055084, -0.09505679458379745, 0.057438965886831284, -0.01335922721773386, -0.05365074798464775, 0.003452558070421219, 0.02446783520281315, 0.03988637030124664, -0.02739148773252964, -0.07152930647134781, 0.1295471340417862, -0.12219773977994919, 0.1370859593153, 0.03735349699854851, -0.07329461723566055, -0.13346946239471436, 0.009287060238420963, -0.051217369735240936, 0.051748935133218765, 0.10919183492660522, -0.0850229561328888, 0.004480474628508091, 0.06275814771652222, -0.005180674605071545, -0.18818248808383942, -0.055268544703722, 0.06382188200950623, 0.18020930886268616, 0.13920119404792786, 0.027410779148340225, 0.14073742926120758, 0.1419932097196579, 0.009578024968504906, -0.11963243037462234, 0.07729565352201462, -0.003944846335798502, -0.05261629819869995, 0.12407877296209335, 0.09372977167367935, 0.007766151800751686, 0.04803068935871124, 0.046526532620191574, -0.23012912273406982, -0.005327166523784399, -0.06652817130088806, 0.01039185468107462, -0.08782123029232025, 0.0360744372010231, -0.059086378663778305, 0.1131167933344841, 0.16987869143486023, -0.05107976868748665, 0.0006881054141558707, -0.04861686751246452, 0.04819516837596893, 0.0051363673992455006, -0.09572875499725342, -0.02075023390352726, -0.10199575871229172, 0.02700156159698963, -0.07282673567533493, -0.010172883048653603, -0.25938230752944946, -0.028361845761537552, -0.05578019842505455, -0.08841701596975327, -0.017624834552407265, 0.07979423552751541, 0.05603605508804321, 0.03895072638988495, -0.04531902074813843, -0.029817355796694756, 0.02157203108072281, 0.12511257827281952, -0.05936868116259575, -0.1262103021144867 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # distilbert-base-uncased-finetuned-cola This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the glue dataset. It achieves the following results on the evaluation set: - Loss: 0.8540 - Matthews Correlation: 0.5495 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 5 ### Training results | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation | |:-------------:|:-----:|:----:|:---------------:|:--------------------:| | 0.5219 | 1.0 | 535 | 0.5314 | 0.4095 | | 0.346 | 2.0 | 1070 | 0.5141 | 0.5054 | | 0.2294 | 3.0 | 1605 | 0.6351 | 0.5200 | | 0.1646 | 4.0 | 2140 | 0.7575 | 0.5459 | | 0.1235 | 5.0 | 2675 | 0.8540 | 0.5495 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.9.0+cu111 - Datasets 1.14.0 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["glue"], "metrics": ["matthews_correlation"], "model-index": [{"name": "distilbert-base-uncased-finetuned-cola", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "glue", "type": "glue", "args": "cola"}, "metrics": [{"type": "matthews_correlation", "value": 0.5494735380761103, "name": "Matthews Correlation"}]}]}]}
text-classification
MINYOUNG/distilbert-base-uncased-finetuned-cola
[ "transformers", "pytorch", "tensorboard", "distilbert", "text-classification", "generated_from_trainer", "dataset:glue", "license:apache-2.0", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us
distilbert-base-uncased-finetuned-cola ====================================== This model is a fine-tuned version of distilbert-base-uncased on the glue dataset. It achieves the following results on the evaluation set: * Loss: 0.8540 * Matthews Correlation: 0.5495 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 5 ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.9.0+cu111 * Datasets 1.14.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ 67, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.9.0+cu111\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ -0.10383464395999908, 0.10120540857315063, -0.0022520474158227444, 0.12276788055896759, 0.1666901409626007, 0.03386859595775604, 0.12563511729240417, 0.12651139497756958, -0.0849364846944809, 0.02301187440752983, 0.12144501507282257, 0.15821129083633423, 0.02150956355035305, 0.1176779568195343, -0.0500313974916935, -0.26335206627845764, -0.01199560146778822, 0.047591447830200195, -0.052915725857019424, 0.13415201008319855, 0.0914519876241684, -0.1218477264046669, 0.09053158015012741, 0.011740590445697308, -0.19487455487251282, -0.0030731521546840668, -0.0018347986042499542, -0.05301673710346222, 0.14652033150196075, 0.025461170822381973, 0.12319207191467285, 0.0002757393231149763, 0.08609022945165634, -0.19391244649887085, 0.010576637461781502, 0.046777643263339996, 0.004549761302769184, 0.09336379170417786, 0.04553539305925369, 0.004809728357940912, 0.11498267203569412, -0.08228803426027298, 0.05460359901189804, 0.022279221564531326, -0.11481517553329468, -0.20749254524707794, -0.08067397028207779, 0.037087466567754745, 0.07932272553443909, 0.10563372820615768, -0.0061493744142353535, 0.11785659193992615, -0.07940715551376343, 0.0925544947385788, 0.21885614097118378, -0.28837862610816956, -0.06684252619743347, 0.04550871625542641, 0.014547529630362988, 0.04462137818336487, -0.10061807185411453, -0.03611601144075394, 0.04725038632750511, 0.052576031535863876, 0.12716594338417053, -0.028269920498132706, -0.12018435448408127, 0.003766693640500307, -0.14113639295101166, -0.032865699380636215, 0.16969040036201477, 0.04058093950152397, -0.028601227328181267, -0.05618457868695259, -0.05986873805522919, -0.14789673686027527, -0.036896493285894394, -0.011091555468738079, 0.047054409980773926, -0.023050963878631592, -0.04104197770357132, -0.010017036460340023, -0.10836482793092728, -0.06269247829914093, -0.07704642415046692, 0.10798846185207367, 0.0363718718290329, 0.007675514556467533, -0.02780025266110897, 0.11206065863370895, -0.005865945480763912, -0.1226966381072998, 0.02355601079761982, 0.02097540907561779, 0.012689893133938313, -0.04021593555808067, -0.053721170872449875, -0.060798708349466324, 0.012131081894040108, 0.1301577240228653, -0.047122616320848465, 0.04111204668879509, 0.050219759345054626, 0.048597291111946106, -0.09160886704921722, 0.19202455878257751, -0.03580522909760475, -0.03084646537899971, 0.010216610506176949, 0.047627296298742294, 0.01875482127070427, -0.011267484165728092, -0.12374192476272583, 0.004814791027456522, 0.08891398459672928, 0.008239168673753738, -0.061873115599155426, 0.07499396800994873, -0.05582471191883087, -0.02490629069507122, 0.004633262753486633, -0.09194502234458923, 0.022087836638092995, -0.00043343057041056454, -0.07030903548002243, -0.020085500553250313, 0.035151250660419464, 0.015435033477842808, -0.020707372575998306, 0.10835091024637222, -0.08790647983551025, 0.026752416044473648, -0.09399555623531342, -0.10904170572757721, 0.018905211240053177, -0.1054951474070549, 0.022351134568452835, -0.09458732604980469, -0.18699942529201508, -0.01751835271716118, 0.06014962121844292, -0.02431575581431389, -0.06193213537335396, -0.05482735112309456, -0.06901878118515015, 0.012110859155654907, -0.00983006227761507, 0.11879443377256393, -0.06429483741521835, 0.09071192145347595, 0.021251793950796127, 0.060370951890945435, -0.043897293508052826, 0.059785354882478714, -0.10187559574842453, 0.01549298595637083, -0.1526920348405838, 0.0408407486975193, -0.05135400965809822, 0.07098919153213501, -0.08210058510303497, -0.10425343364477158, 0.010064732283353806, -0.004529314115643501, 0.062102872878313065, 0.09292205423116684, -0.18618054687976837, -0.07498625665903091, 0.15663810074329376, -0.07117488980293274, -0.12234161049127579, 0.12099763751029968, -0.05984745919704437, 0.05509231239557266, 0.05852442607283592, 0.1775212585926056, 0.08262517303228378, -0.07750746607780457, 0.0012844196753576398, 0.02524842508137226, 0.052299730479717255, -0.06836514174938202, 0.06896835565567017, 0.005808686837553978, 0.018939658999443054, 0.03648047521710396, -0.02968413196504116, 0.0635809674859047, -0.08595447987318039, -0.09853983670473099, -0.04041954129934311, -0.08297623693943024, 0.041030269116163254, 0.07508224993944168, 0.06832760572433472, -0.09199556708335876, -0.07680521160364151, 0.04883570224046707, 0.0831286609172821, -0.05810406804084778, 0.02351146563887596, -0.05041094496846199, 0.07698944211006165, -0.027233602479100227, -0.022448653355240822, -0.1808081865310669, -0.038663145154714584, 0.007631292100995779, 0.0018355275969952345, 0.01636991649866104, 0.028570203110575676, 0.06043994426727295, 0.060524117201566696, -0.047912828624248505, -0.017734834924340248, -0.03082859516143799, 0.0006979885511100292, -0.12819665670394897, -0.19176749885082245, -0.030620023608207703, -0.024150285869836807, 0.15774306654930115, -0.20662398636341095, 0.04879447817802429, -0.01645759679377079, 0.0705208107829094, 0.011696664616465569, -0.005864947568625212, -0.03661194443702698, 0.07415825128555298, -0.044359076768159866, -0.05301404371857643, 0.08113250136375427, 0.01833578385412693, -0.08794702589511871, -0.04984605312347412, -0.09590908139944077, 0.1567656546831131, 0.1280987411737442, -0.10459812730550766, -0.07575517147779465, -0.020878275856375694, -0.06691842526197433, -0.03409746289253235, -0.047989316284656525, 0.025730803608894348, 0.18737000226974487, -0.004891610238701105, 0.1502373367547989, -0.06775445491075516, -0.043505072593688965, 0.017105212435126305, -0.0354619100689888, 0.017654012888669968, 0.127474844455719, 0.13544870913028717, -0.05933381989598274, 0.15501481294631958, 0.14625869691371918, -0.09007735550403595, 0.145008385181427, -0.04167001321911812, -0.06466987729072571, -0.014875674620270729, -0.03127446398139, -0.011656396090984344, 0.10141626745462418, -0.15232256054878235, 0.00046135549200698733, 0.03373405337333679, 0.016051579266786575, 0.025546474382281303, -0.22458040714263916, -0.03958557918667793, 0.03429880738258362, -0.041943419724702835, -0.005592979025095701, -0.006588132120668888, 0.005876943934708834, 0.10101965814828873, 0.0009335147333331406, -0.08730443567037582, 0.03876351937651634, 0.0026612894143909216, -0.08317001909017563, 0.21557371318340302, -0.08268748223781586, -0.17337356507778168, -0.13115668296813965, -0.0732383280992508, -0.04811685532331467, -0.0008401619852520525, 0.06681433320045471, -0.08871054649353027, -0.031200826168060303, -0.0722622498869896, 0.02185654826462269, 0.011155236512422562, 0.024382706731557846, 0.005853694397956133, 0.0042718700133264065, 0.06375089287757874, -0.11019960045814514, -0.014874882064759731, -0.05734575167298317, -0.04420655965805054, 0.044547777622938156, 0.031888268887996674, 0.11349225789308548, 0.15286670625209808, -0.013132772408425808, 0.011214667931199074, -0.030240574851632118, 0.24049602448940277, -0.059938911348581314, -0.017851121723651886, 0.1448054313659668, -0.011044110171496868, 0.05103641003370285, 0.11945586651563644, 0.0726076140999794, -0.07772540301084518, 0.004312608391046524, 0.03502294048666954, -0.035924188792705536, -0.23050586879253387, -0.05830783024430275, -0.0580093115568161, 0.009028274565935135, 0.09132799506187439, 0.024537084624171257, 0.02863651141524315, 0.07243366539478302, 0.04168015345931053, 0.07879020273685455, -0.03953266516327858, 0.05483550578355789, 0.13301809132099152, 0.032634686678647995, 0.1260862797498703, -0.045483481138944626, -0.06399229913949966, 0.04336586594581604, -0.008293651044368744, 0.2258092761039734, 0.004300337750464678, 0.1276758313179016, 0.06198640540242195, 0.16354146599769592, -0.0054830461740493774, 0.07840268313884735, -0.010732418857514858, -0.035221271216869354, -0.018141191452741623, -0.037992700934410095, -0.03924349322915077, 0.024502256885170937, -0.066899374127388, 0.06215522065758705, -0.11995606124401093, 0.015325220301747322, 0.059730853885412216, 0.2496272623538971, 0.03515489399433136, -0.32345208525657654, -0.09898092597723007, 0.0024053663946688175, -0.03313731774687767, -0.021863920614123344, 0.0273530725389719, 0.09445612877607346, -0.10076729208230972, 0.02960696630179882, -0.0755845382809639, 0.09671586006879807, -0.052783574908971786, 0.04845432937145233, 0.08535827696323395, 0.0919003114104271, 0.012496222741901875, 0.09286853671073914, -0.2853424847126007, 0.2713872790336609, -0.0006739680538885295, 0.05729370191693306, -0.07760540395975113, 0.009966375306248665, 0.04410833492875099, 0.06337082386016846, 0.08130016177892685, -0.012899746187031269, -0.024346675723791122, -0.18258428573608398, -0.07169398665428162, 0.02936336025595665, 0.06109060347080231, -0.037930890917778015, 0.08424566686153412, -0.032300740480422974, 0.006599531043320894, 0.07140441238880157, 0.0006967696244828403, -0.05066028609871864, -0.10880037397146225, -0.005909185390919447, 0.02397346869111061, -0.059398870915174484, -0.060056257992982864, -0.12077134102582932, -0.12826916575431824, 0.15705078840255737, -0.032003022730350494, -0.04085267707705498, -0.10877475887537003, 0.08466852456331253, 0.06152741611003876, -0.08914316445589066, 0.045669879764318466, 0.0005959231639280915, 0.07997871935367584, 0.023172641173005104, -0.07432542741298676, 0.10017267614603043, -0.0770445391535759, -0.1564350724220276, -0.06561274826526642, 0.10553765296936035, 0.03183136135339737, 0.06541163474321365, -0.011658147908747196, 0.007049757055938244, -0.04838663712143898, -0.09031575173139572, 0.015589798800647259, 0.008393027819693089, 0.08043350279331207, 0.018246319144964218, -0.07738076895475388, 0.006795120891183615, -0.05987853184342384, -0.032692547887563705, 0.20929457247257233, 0.21413227915763855, -0.10129690170288086, 0.02511221170425415, 0.02223113179206848, -0.07324153184890747, -0.2009669840335846, 0.03277604281902313, 0.05662359669804573, 0.010021238587796688, 0.039619337767362595, -0.18115434050559998, 0.13914503157138824, 0.10754189640283585, -0.013608374632894993, 0.10514360666275024, -0.31820085644721985, -0.12163776159286499, 0.13657836616039276, 0.13423913717269897, 0.10293001681566238, -0.13001638650894165, -0.02109033241868019, -0.017615579068660736, -0.13718068599700928, 0.11693181097507477, -0.09116905927658081, 0.11928858608007431, -0.035122472792863846, 0.08117944002151489, 0.001484388718381524, -0.058530353009700775, 0.11903737485408783, 0.028600307181477547, 0.09206292778253555, -0.05895908921957016, -0.03317354619503021, 0.031762782484292984, -0.044518113136291504, 0.035449836403131485, -0.09415918588638306, 0.03010070137679577, -0.1054188460111618, -0.02599860541522503, -0.06674744933843613, 0.04529062658548355, -0.04255272075533867, -0.06765837222337723, -0.03653636947274208, 0.0265487227588892, 0.049170009791851044, -0.00828699953854084, 0.1216089129447937, 0.028320735320448875, 0.1416580229997635, 0.09587123990058899, 0.0723763257265091, -0.06913235038518906, -0.07920902222394943, -0.026813743636012077, -0.012333118356764317, 0.04966241866350174, -0.13442431390285492, 0.020594606176018715, 0.15339164435863495, 0.018398359417915344, 0.15040840208530426, 0.0824565514922142, -0.01817503198981285, 0.00042826015851460397, 0.057545337826013565, -0.16661566495895386, -0.08804254233837128, -0.014039109461009502, -0.06740307062864304, -0.12129536271095276, 0.043095141649246216, 0.09405700117349625, -0.06721849739551544, -0.008372144773602486, -0.004349705297499895, 0.01469674613326788, -0.04716181382536888, 0.18609417974948883, 0.06154899299144745, 0.04665590450167656, -0.09985218197107315, 0.07054084539413452, 0.04595160111784935, -0.07237152010202408, 0.004001410212367773, 0.07434456795454025, -0.08947034925222397, -0.05526033788919449, 0.06606078147888184, 0.18938665091991425, -0.04767127335071564, -0.046722978353500366, -0.14104586839675903, -0.12372433394193649, 0.07955270260572433, 0.138994500041008, 0.12064179033041, 0.009997307322919369, -0.06806571036577225, 0.0008344626985490322, -0.10814674198627472, 0.10490357875823975, 0.0500030592083931, 0.06362494826316833, -0.14433597028255463, 0.13988278806209564, 0.01719871535897255, 0.04968564584851265, -0.020083755254745483, 0.02561938390135765, -0.09876364469528198, 0.005827938672155142, -0.09868337959051132, -0.013722161762416363, -0.034054242074489594, 0.012985744513571262, -0.006318570114672184, -0.04628748074173927, -0.05590714141726494, 0.011486109346151352, -0.1063002273440361, -0.023162195459008217, 0.026437468826770782, 0.07011197507381439, -0.10760872066020966, -0.037009451538324356, 0.02772824652493, -0.06170268356800079, 0.07782692462205887, 0.04435008391737938, 0.016347121447324753, 0.04947372525930405, -0.1355273425579071, 0.015554004348814487, 0.07456210255622864, 0.031121879816055298, 0.06483486294746399, -0.09732333570718765, -0.006183636840432882, -0.0053562866523861885, 0.03837743028998375, 0.020266860723495483, 0.07684716582298279, -0.1402582824230194, 0.001986164366826415, -0.02268778160214424, -0.07965659350156784, -0.06818123906850815, 0.026137690991163254, 0.09063076227903366, 0.021467387676239014, 0.20138542354106903, -0.07626044750213623, 0.0504453144967556, -0.21508574485778809, 0.006239953450858593, -0.009531225077807903, -0.10962431132793427, -0.10492591559886932, -0.0708090215921402, 0.05526723712682724, -0.057914890348911285, 0.15390664339065552, 0.04661954566836357, 0.021831315010786057, 0.024545500054955482, -0.006454572547227144, 0.014578753150999546, 0.012197021394968033, 0.18873350322246552, 0.03011610172688961, -0.03411165624856949, 0.058970674872398376, 0.04362010210752487, 0.1044016182422638, 0.11286903917789459, 0.20154213905334473, 0.1411353200674057, -0.0035453320015221834, 0.09319974482059479, 0.04145777225494385, -0.05831583961844444, -0.1595756560564041, 0.04808640480041504, -0.03739310801029205, 0.11085674911737442, -0.020981188863515854, 0.21646925806999207, 0.05933288857340813, -0.17026998102664948, 0.04735904932022095, -0.053758326917886734, -0.08698701858520508, -0.11291085183620453, -0.05158152058720589, -0.07855936139822006, -0.12850584089756012, -0.0048876600340008736, -0.11775918304920197, -0.004291563760489225, 0.12715089321136475, 0.00402813870459795, -0.027962086722254753, 0.15618298947811127, 0.008514098823070526, 0.023025378584861755, 0.058054350316524506, 0.011157182045280933, -0.035986416041851044, -0.1311996579170227, -0.058934230357408524, -0.017828846350312233, -0.007932404056191444, 0.03251632675528526, -0.06198100745677948, -0.03958696126937866, 0.032886818051338196, -0.022165410220623016, -0.09309859573841095, 0.00464885076507926, 0.013179652392864227, 0.0537240244448185, 0.0472228042781353, 0.010846700519323349, 0.01863093301653862, -0.0025611836463212967, 0.1995515376329422, -0.07102957367897034, -0.06607849895954132, -0.10830643028020859, 0.22878491878509521, 0.03340505436062813, -0.022732146084308624, 0.035306405276060104, -0.06456553936004639, 0.003613264998421073, 0.24900740385055542, 0.2179601937532425, -0.08370130509138107, -0.008082468062639236, 0.016643453389406204, -0.00917835719883442, -0.023115193471312523, 0.10133684426546097, 0.14451496303081512, 0.054607093334198, -0.09270896017551422, -0.047325845807790756, -0.058867841958999634, -0.018412597477436066, -0.03700585663318634, 0.06911364942789078, 0.04735378548502922, 0.007375677581876516, -0.03428792208433151, 0.05537526309490204, -0.07130070775747299, -0.09046456962823868, 0.05387882888317108, -0.2163361757993698, -0.1704862415790558, -0.013822370208799839, 0.0987531989812851, 0.0034812605008482933, 0.06009683758020401, -0.03093436360359192, -0.002978322794660926, 0.09441496431827545, -0.02123800292611122, -0.095933698117733, -0.06828540563583374, 0.08796283602714539, -0.10804197937250137, 0.22152897715568542, -0.046514566987752914, 0.05472701042890549, 0.12552043795585632, 0.0690474659204483, -0.07079540193080902, 0.06335695087909698, 0.042938705533742905, -0.04169972985982895, 0.028012003749608994, 0.06953982263803482, -0.03557710722088814, 0.062061816453933716, 0.04843403026461601, -0.1381770670413971, 0.019411461427807808, -0.04943867027759552, -0.06664104014635086, -0.045684222131967545, -0.02263425663113594, -0.062341805547475815, 0.13239061832427979, 0.2164263278245926, -0.02681135945022106, -0.010401031002402306, -0.06996437907218933, 0.010908642783761024, 0.053030818700790405, 0.02387501858174801, -0.05681249126791954, -0.21032701432704926, 0.016414105892181396, 0.039088454097509384, -0.018967248499393463, -0.24550600349903107, -0.10100843757390976, 0.0007038508774712682, -0.07268606871366501, -0.09750784933567047, 0.0743163600564003, 0.08655436336994171, 0.050482649356126785, -0.05656850337982178, -0.039083562791347504, -0.07675884664058685, 0.14508365094661713, -0.14432379603385925, -0.09256170690059662 ]
null
null
transformers
# multilingual-cpv-sector-classifier This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on [the Tenders Economic Daily Public Procurement Data](https://simap.ted.europa.eu/en). It achieves the following results on the evaluation set: - F1 Score: 0.686 ## Model description The model takes procurement descriptions written in any of [104 languages](https://github.com/google-research/bert/blob/master/multilingual.md#list-of-languages) and classifies them into 45 sector classes represented by [CPV(Common Procurement Vocabulary)](https://simap.ted.europa.eu/en_GB/web/simap/cpv) code descriptions as listed below. | Common Procurement Vocabulary | |:-----------------------------| | Administration, defence and social security services. 👮‍♀️ | | Agricultural machinery. 🚜 | | Agricultural, farming, fishing, forestry and related products. 🌾 | | Agricultural, forestry, horticultural, aquacultural and apicultural services. 👨🏿‍🌾 | | Architectural, construction, engineering and inspection services. 👷‍♂️ | | Business services: law, marketing, consulting, recruitment, printing and security. 👩‍💼 | | Chemical products. 🧪 | | Clothing, footwear, luggage articles and accessories. 👖 | | Collected and purified water. 🌊 | | Construction structures and materials; auxiliary products to construction (excepts electric apparatus). 🧱 | | Construction work. 🏗️ | | Education and training services. 👩🏿‍🏫 | | Electrical machinery, apparatus, equipment and consumables; Lighting. ⚡ | | Financial and insurance services. 👨‍💼 | | Food, beverages, tobacco and related products. 🍽️ | | Furniture (incl. office furniture), furnishings, domestic appliances (excl. lighting) and cleaning products. 🗄️ | | Health and social work services. 👨🏽‍⚕️ | | Hotel, restaurant and retail trade services. 🏨 | | IT services: consulting, software development, Internet and support. 🖥️ | | Industrial machinery. 🏭 | | Installation services (except software). 🛠️ | | Laboratory, optical and precision equipments (excl. glasses). 🔬 | | Leather and textile fabrics, plastic and rubber materials. 🧵 | | Machinery for mining, quarrying, construction equipment. ⛏️ | | Medical equipments, pharmaceuticals and personal care products. 💉 | | Mining, basic metals and related products. ⚙️ | | Musical instruments, sport goods, games, toys, handicraft, art materials and accessories. 🎸 | | Office and computing machinery, equipment and supplies except furniture and software packages. 🖨️ | | Other community, social and personal services. 🧑🏽‍🤝‍🧑🏽 | | Petroleum products, fuel, electricity and other sources of energy. 🔋 | | Postal and telecommunications services. 📶 | | Printed matter and related products. 📰 | | Public utilities. ⛲ | | Radio, television, communication, telecommunication and related equipment. 📡 | | Real estate services. 🏠 | | Recreational, cultural and sporting services. 🚴 | | Repair and maintenance services. 🔧 | | Research and development services and related consultancy services. 👩‍🔬 | | Security, fire-fighting, police and defence equipment. 🧯 | | Services related to the oil and gas industry. ⛽ | | Sewage-, refuse-, cleaning-, and environmental services. 🧹 | | Software package and information systems. 🔣 | | Supporting and auxiliary transport services; travel agencies services. 🚃 | | Transport equipment and auxiliary products to transportation. 🚌 | | Transport services (excl. Waste transport). 💺 ## Intended uses & limitations - Input description should be written in any of [the 104 languages](https://github.com/google-research/bert/blob/master/multilingual.md#list-of-languages) that MBERT supports. - The model is just evaluated in 22 languages. Thus there is no information about the performances in other languages. - The domain is also restricted by the awarded procurement notice descriptions in European Union. Evaluating on whole document texts might change the performance. ## Training and evaluation data - The whole data consists of 744,360 rows. Shuffled and split into train and validation sets by using 80%/20% manner. - Each description represents a unique contract notice description awarded between 2011 and 2018. - Both training and validation data have contract notice descriptions written in 22 European Languages. (Malta and Irish are extracted due to scarcity compared to whole data) ## Training procedure The training procedure has been completed on Google Cloud V3-8 TPUs. Thanks [Google](https://sites.research.google/trc/about/) for giving the access to Cloud TPUs ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - num_epochs: 3 - gradient_accumulation_steps: 8 - batch_size_per_device: 4 - total_train_batch_size: 32 ### Training results | Epoch | Step | F1 Score| |:-----:|:------:|:------:| | 1 | 18,609 | 0.630 | | 2 | 37,218 | 0.674 | | 3 | 55,827 | 0.686 | | Language| F1 Score| Test Size| |:-----:|:-----:|:-----:| | PL| 0.759| 13950| | RO| 0.736| 3522| | SK| 0.719| 1122| | LT| 0.687| 2424| | HU| 0.681| 1879| | BG| 0.675| 2459| | CS| 0.668| 2694| | LV| 0.664| 836| | DE| 0.645| 35354| | FI| 0.644| 1898| | ES| 0.643| 7483| | PT| 0.631| 874| | EN| 0.631| 16615| | HR| 0.626| 865| | IT| 0.626| 8035| | NL| 0.624| 5640| | EL| 0.623| 1724| | SL| 0.615| 482| | SV| 0.607| 3326| | DA| 0.603| 1925| | FR| 0.601| 33113| | ET| 0.572| 458||
{"license": "apache-2.0", "tags": ["eu", "public procurement", "cpv", "sector", "multilingual", "transformers", "text-classification"], "widget": [{"text": "Oppeg\u00e5rd municipality, hereafter called the contracting authority, intends to enter into a framework agreement with one supplier for the procurement of fresh bread and bakery products for Oppeg\u00e5rd municipality. The contract is estimated to NOK 1 400 000 per annum excluding VAT The total for the entire period including options is NOK 5 600 000 excluding VAT"}]}
text-classification
MKaan/multilingual-cpv-sector-classifier
[ "transformers", "pytorch", "bert", "text-classification", "eu", "public procurement", "cpv", "sector", "multilingual", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #text-classification #eu #public procurement #cpv #sector #multilingual #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
multilingual-cpv-sector-classifier ================================== This model is a fine-tuned version of bert-base-multilingual-cased on the Tenders Economic Daily Public Procurement Data. It achieves the following results on the evaluation set: * F1 Score: 0.686 Model description ----------------- The model takes procurement descriptions written in any of 104 languages and classifies them into 45 sector classes represented by CPV(Common Procurement Vocabulary) code descriptions as listed below. Intended uses & limitations --------------------------- * Input description should be written in any of the 104 languages that MBERT supports. * The model is just evaluated in 22 languages. Thus there is no information about the performances in other languages. * The domain is also restricted by the awarded procurement notice descriptions in European Union. Evaluating on whole document texts might change the performance. Training and evaluation data ---------------------------- * The whole data consists of 744,360 rows. Shuffled and split into train and validation sets by using 80%/20% manner. * Each description represents a unique contract notice description awarded between 2011 and 2018. * Both training and validation data have contract notice descriptions written in 22 European Languages. (Malta and Irish are extracted due to scarcity compared to whole data) Training procedure ------------------ The training procedure has been completed on Google Cloud V3-8 TPUs. Thanks Google for giving the access to Cloud TPUs ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * num\_epochs: 3 * gradient\_accumulation\_steps: 8 * batch\_size\_per\_device: 4 * total\_train\_batch\_size: 32 ### Training results
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* num\\_epochs: 3\n* gradient\\_accumulation\\_steps: 8\n* batch\\_size\\_per\\_device: 4\n* total\\_train\\_batch\\_size: 32", "### Training results" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #eu #public procurement #cpv #sector #multilingual #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* num\\_epochs: 3\n* gradient\\_accumulation\\_steps: 8\n* batch\\_size\\_per\\_device: 4\n* total\\_train\\_batch\\_size: 32", "### Training results" ]
[ 64, 79, 4 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #eu #public procurement #cpv #sector #multilingual #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* num\\_epochs: 3\n* gradient\\_accumulation\\_steps: 8\n* batch\\_size\\_per\\_device: 4\n* total\\_train\\_batch\\_size: 32### Training results" ]
[ -0.0569072924554348, 0.021189337596297264, -0.0019850018434226513, 0.08468656986951828, 0.15972748398780823, 0.004049516748636961, 0.11229896545410156, 0.08694230765104294, -0.13786806166172028, 0.038030412048101425, 0.102250836789608, 0.1444285362958908, -0.0033621867187321186, 0.12492688745260239, -0.035246916115283966, -0.27733665704727173, 0.043245043605566025, -0.008288096636533737, -0.14336007833480835, 0.13172951340675354, 0.11679757386445999, -0.1252114623785019, 0.0599423348903656, -0.029041465371847153, -0.15889587998390198, 0.019658690318465233, -0.03338949754834175, -0.07007381319999695, 0.15622340142726898, 0.040052663534879684, 0.1338145136833191, 0.011161226779222488, 0.0667552500963211, -0.19898082315921783, 0.0065823751501739025, 0.03100402280688286, -0.04285915195941925, 0.06506328284740448, 0.0245522353798151, 0.008030795492231846, 0.1890438348054886, -0.1106538400053978, 0.044102009385824203, 0.01395257469266653, -0.0965641438961029, -0.1888146698474884, -0.08491531759500504, 0.03853714466094971, 0.0868179202079773, 0.11419184505939484, -0.023521190509200096, 0.13932634890079498, -0.21864303946495056, 0.04890167713165283, 0.12983448803424835, -0.345095694065094, -0.05920104309916496, 0.061006512492895126, 0.028882551938295364, 0.10967452824115753, -0.09090179204940796, 0.012912732549011707, 0.07711049914360046, 0.04800041764974594, 0.0411997027695179, -0.018983706831932068, -0.13443322479724884, 0.05254318192601204, -0.15869171917438507, 0.005278914701193571, 0.20138393342494965, 0.04977242648601532, 0.007150798570364714, -0.057430170476436615, -0.0029977583326399326, -0.14145907759666443, -0.016581106930971146, -0.01317275408655405, 0.07885739952325821, -0.023228835314512253, -0.043635811656713486, 0.06184316799044609, -0.1043868362903595, -0.021122455596923828, -0.11482294648885727, 0.09371889382600784, 0.0251808762550354, -0.015184483490884304, 0.013922504149377346, 0.08227527141571045, -0.022017868235707283, -0.08713879436254501, 0.027439577504992485, 0.03516967594623566, -0.01194704044610262, -0.0648767501115799, -0.03350885584950447, 0.04377906769514084, 0.05569671466946602, 0.08092178404331207, -0.043917711824178696, -0.0026757593732327223, 0.01403612270951271, 0.08893080055713654, -0.05072303116321564, 0.16609330475330353, -0.10676790773868561, -0.10131844133138657, -0.06204460933804512, 0.011885610409080982, 0.011536093428730965, 0.019308382645249367, -0.14237792789936066, 0.0015702623641118407, 0.041294489055871964, 0.04006600007414818, -0.07103653997182846, 0.07578869163990021, -0.06462027132511139, 0.0404651053249836, 0.018723491579294205, -0.07526898384094238, 0.03904147446155548, -0.0234172735363245, -0.07546811550855637, 0.03391246870160103, -0.010946548543870449, 0.051952142268419266, -0.034617673605680466, 0.21845392882823944, -0.06466002017259598, 0.03753580525517464, -0.0769597589969635, -0.10545732825994492, 0.050979133695364, -0.005896976217627525, 0.011714320629835129, -0.0744105875492096, -0.07532394677400589, -0.023932138457894325, 0.0635828897356987, -0.060690805315971375, -0.04752102494239807, -0.07823535799980164, -0.07255247235298157, -0.010477466508746147, -0.052440740168094635, 0.19369888305664062, -0.09860184043645859, 0.07800694555044174, -0.04528728500008583, 0.04216834902763367, -0.054515063762664795, 0.03480334207415581, -0.12412138283252716, -0.05589762330055237, -0.2090042680501938, 0.016203347593545914, -0.06526061147451401, 0.10602361708879471, -0.0892661064863205, -0.12583188712596893, 0.004002813715487719, 0.03697000443935394, 0.0156474057585001, 0.12111026793718338, -0.1619548201560974, -0.09815949946641922, 0.1601724773645401, -0.07992984354496002, -0.07934565842151642, 0.12012152373790741, -0.04567018523812294, 0.07069770991802216, 0.08989237993955612, 0.13457904756069183, 0.000053559542720904574, -0.12451934814453125, -0.011321237310767174, 0.037058863788843155, -0.02191000059247017, -0.05158814415335655, 0.09682819992303848, -0.025861870497465134, 0.015568723902106285, 0.027474114671349525, -0.016625821590423584, 0.0524270199239254, -0.08660876005887985, -0.06917205452919006, 0.017919989302754402, -0.05407117307186127, 0.039276123046875, 0.06341489404439926, 0.10333222895860672, -0.13519160449504852, -0.10348349064588547, 0.06698796153068542, 0.03831451013684273, -0.012480775825679302, 0.018306564539670944, -0.04012955352663994, 0.07229048758745193, 0.0014413571916520596, -0.024002473801374435, -0.14839708805084229, 0.0402156263589859, -0.017972251400351524, 0.04422943294048309, 0.06817809492349625, 0.14800776541233063, 0.04710709676146507, 0.01613035798072815, -0.08713642507791519, 0.038872260600328445, 0.01869221217930317, -0.007511216215789318, -0.10752643644809723, -0.25832128524780273, 0.050919245928525925, -0.017385778948664665, 0.10184651613235474, -0.1704527884721756, 0.025343647226691246, 0.043341800570487976, 0.07334990799427032, -0.016714444383978844, 0.060858845710754395, -0.08685249090194702, 0.08787716180086136, -0.03818541392683983, 0.005589542910456657, 0.06910833716392517, -0.012599465437233448, -0.06087009608745575, 0.016334399580955505, -0.05963805690407753, 0.22178728878498077, 0.191130593419075, -0.18012790381908417, -0.08866976201534271, -0.07995516061782837, -0.0675087720155716, -0.004497811198234558, -0.052275169640779495, 0.045043330639600754, 0.1910894811153412, -0.019362445920705795, 0.14680027961730957, -0.07767365127801895, -0.060145702213048935, 0.02501300722360611, -0.015085387043654919, 0.014026612974703312, 0.14964552223682404, 0.14782576262950897, -0.09824831783771515, 0.16173431277275085, 0.21316495537757874, -0.04157916456460953, 0.11595042049884796, -0.012287394143640995, -0.03663863241672516, 0.004219451453536749, 0.016701027750968933, -0.03839836269617081, 0.13186326622962952, -0.16656768321990967, -0.0027517552953213453, 0.020713042467832565, 0.06718124449253082, 0.03860068693757057, -0.21944203972816467, -0.046232253313064575, -0.001051081926561892, -0.052458930760622025, -0.03542744740843773, -0.016715094447135925, -0.005764837842434645, 0.15499891340732574, 0.02853981964290142, -0.12079345434904099, 0.03240253031253815, -0.01319443341344595, -0.07378894090652466, 0.19507233798503876, -0.10087919980287552, -0.12290551513433456, -0.09790124744176865, -0.04605146497488022, -0.005070993211120367, -0.0033583338372409344, 0.059310030192136765, -0.15557752549648285, -0.0370454341173172, -0.030415020883083344, 0.06629505753517151, -0.02666172944009304, -0.00024315754126291722, -0.06898867338895798, 0.08390729129314423, 0.001719141029752791, -0.10371416062116623, -0.021141787990927696, -0.0806959792971611, -0.030248628929257393, 0.03782128170132637, 0.01788395270705223, 0.06698385626077652, 0.15134982764720917, -0.026922941207885742, -0.0009361400152556598, -0.06359165161848068, 0.15108169615268707, -0.09428907930850983, -0.04818045347929001, 0.04886523261666298, 0.0454922579228878, 0.019892675802111626, 0.21871405839920044, 0.07416259497404099, -0.1027662605047226, -0.0028573977760970592, 0.023536311462521553, -0.02150510810315609, -0.23252353072166443, -0.13054701685905457, -0.0889933854341507, -0.004369131289422512, 0.05551007762551308, 0.04623076692223549, -0.026076745241880417, 0.0227048359811306, 0.03952400013804436, 0.04990385100245476, -0.0011095450026914477, 0.02693065255880356, 0.14400357007980347, 0.00162324623670429, 0.13342435657978058, -0.07418569177389145, -0.08625822514295578, 0.08212428539991379, -0.05062979832291603, 0.20993396639823914, 0.029673410579562187, -0.024688389152288437, 0.07426343858242035, 0.1337537318468094, 0.01180381327867508, 0.09443040192127228, 0.03672248497605324, -0.06003771349787712, -0.043320104479789734, -0.051655810326337814, 0.019270965829491615, 0.030927855521440506, -0.002586498623713851, -0.002211862476542592, -0.13525554537773132, -0.11954068392515182, 0.11777296662330627, 0.21398694813251495, 0.07225945591926575, -0.22735674679279327, -0.03033016435801983, 0.005597752518951893, -0.061726298183202744, 0.016798289492726326, 0.045869145542383194, 0.07257188111543655, -0.11036516726016998, 0.061121102422475815, -0.012346235103905201, 0.10039500147104263, -0.010763436555862427, 0.06935613602399826, 0.0768989846110344, -0.008859138935804367, -0.006983560509979725, 0.11416249722242355, -0.31272459030151367, 0.37971052527427673, 0.0017440301598981023, 0.04609118029475212, -0.08125270903110504, -0.011857080273330212, 0.007929806597530842, 0.11384980380535126, 0.0930509865283966, -0.00219716876745224, -0.05791865661740303, -0.1342237889766693, -0.03742529824376106, 0.056692466139793396, 0.10650506615638733, -0.02059350349009037, 0.04034016281366348, -0.003951427526772022, 0.008073067292571068, 0.06297115236520767, -0.03811579570174217, -0.03567061573266983, -0.12120039761066437, -0.021162088960409164, -0.009237946011126041, -0.03271185979247093, -0.023514525964856148, -0.13253715634346008, -0.1869935542345047, 0.23109140992164612, -0.07054983824491501, 0.0007819217862561345, -0.06500072032213211, 0.11294452846050262, 0.05648132786154747, -0.05204569548368454, 0.025347720831632614, -0.005428887903690338, -0.022851375862956047, 0.009580138139426708, -0.015544635243713856, 0.13647237420082092, -0.05601076781749725, -0.12896977365016937, -0.062165748327970505, 0.1007729172706604, 0.0013824229827150702, 0.08186693489551544, -0.03673158213496208, 0.02514011599123478, -0.019888220354914665, -0.10802651941776276, -0.01609060913324356, -0.06185270473361015, 0.15149293839931488, 0.0713510736823082, -0.1012842059135437, -0.04522629827260971, -0.04119923710823059, -0.0637359544634819, 0.20606881380081177, 0.31188881397247314, -0.11323045194149017, 0.026815684512257576, 0.08817797154188156, -0.036638714373111725, -0.2331816554069519, 0.05365635082125664, -0.008222443051636219, 0.018669571727514267, -0.0012284013209864497, -0.11275138705968857, 0.12141546607017517, 0.13170653581619263, -0.04235631600022316, 0.009301689453423023, -0.30405765771865845, -0.14336682856082916, 0.0847078263759613, 0.05083979293704033, 0.1287907361984253, -0.11561226099729538, 0.011371425352990627, -0.0359206348657608, -0.051195260137319565, 0.09615909308195114, -0.11309603601694107, 0.09565956145524979, 0.0284767784178257, 0.053776416927576065, -0.009089970961213112, -0.06509966403245926, 0.14884373545646667, 0.002927327062934637, 0.06512466818094254, -0.06909701228141785, -0.040334347635507584, -0.0042663454078137875, 0.004381618928164244, -0.015865331515669823, -0.09684726595878601, -0.026928626000881195, -0.09410969913005829, -0.011176441796123981, -0.062469057738780975, 0.05722179263830185, -0.042289942502975464, -0.06282365322113037, -0.10210666060447693, 0.06594929099082947, 0.03093588910996914, -0.016454048454761505, 0.11968999356031418, -0.03816860169172287, 0.13751071691513062, 0.020949307829141617, 0.1223812997341156, -0.09209361672401428, 0.006909047719091177, 0.023103822022676468, -0.03210008889436722, 0.054452985525131226, -0.1714031994342804, 0.004074237309396267, 0.15431800484657288, -0.017458243295550346, 0.14063087105751038, 0.08739163726568222, 0.0060363938100636005, -0.01395386178046465, 0.1235869750380516, -0.1178203746676445, -0.08907973021268845, 0.04593425616621971, -0.06337200105190277, -0.06293397396802902, 0.035892777144908905, 0.04304514825344086, -0.063560850918293, 0.015069225803017616, 0.021449605002999306, -0.011894701980054379, -0.13420167565345764, 0.1813029795885086, 0.027346080169081688, 0.032839223742485046, -0.12096194922924042, 0.0848044902086258, 0.09296485036611557, -0.1821182519197464, -0.0006525657372549176, 0.0642099529504776, -0.08236345648765564, -0.06850071996450424, 0.12187441438436508, 0.15932148694992065, -0.023588288575410843, -0.057296186685562134, -0.11196906119585037, -0.1589014083147049, 0.09800808876752853, 0.11181120574474335, 0.14587213099002838, -0.0018736092606559396, -0.02394886128604412, -0.017546849325299263, -0.08053335547447205, 0.0522928349673748, 0.024968305602669716, 0.01226010825484991, -0.0905546247959137, 0.14836545288562775, 0.03019481711089611, 0.04109714925289154, -0.04172060266137123, 0.044231511652469635, -0.13695168495178223, 0.018519073724746704, -0.03972571715712547, -0.04987184330821037, -0.02776220068335533, 0.0008339189225807786, 0.0007709454512223601, -0.06553591042757034, -0.09474901109933853, -0.0429532565176487, -0.1400114744901657, 0.021686574444174767, 0.022959476336836815, 0.09823597967624664, -0.0832575187087059, -0.01686502806842327, 0.05052819475531578, -0.03003256395459175, 0.08185657113790512, 0.0034575199242681265, 0.0014124383451417089, 0.09201060980558395, -0.1900644749403, 0.0027978362049907446, 0.08317971974611282, 0.024039598181843758, 0.09835692495107651, -0.015491667203605175, 0.018699221312999725, 0.037314049899578094, 0.1306791454553604, 0.07002982497215271, 0.017054373398423195, -0.1275206059217453, 0.05493622645735741, -0.04568098485469818, -0.13495929539203644, -0.03201013058423996, 0.024463562294840813, 0.0539574958384037, -0.023250270634889603, 0.188704252243042, -0.09608958661556244, 0.014877166599035263, -0.1448146253824234, 0.011972581967711449, -0.030582357197999954, -0.10456226021051407, -0.10645246505737305, -0.066571906208992, 0.05211816355586052, -0.0550420843064785, 0.25773248076438904, 0.08570831269025803, 0.05846012756228447, 0.08724524825811386, -0.01651782914996147, -0.010886413045227528, 0.045924436300992966, 0.15335121750831604, 0.05151727795600891, -0.006482295226305723, -0.01648290455341339, 0.05678218975663185, 0.054999854415655136, 0.026948586106300354, 0.19558633863925934, 0.22975219786167145, 0.015685494989156723, 0.08061663806438446, -0.004709501750767231, -0.10631801187992096, -0.11449934542179108, 0.07748576253652573, -0.030288776382803917, 0.08325088769197464, -0.07189688831567764, 0.19285741448402405, 0.07938047498464584, -0.18317417800426483, 0.03436421602964401, -0.0751432478427887, -0.054803382605314255, -0.12796010076999664, 0.006851894780993462, -0.07384193688631058, -0.17110086977481842, 0.009125894866883755, -0.07311970740556717, 0.013222643174231052, 0.13346418738365173, 0.06195114925503731, -0.0077860173769295216, 0.04361787065863609, -0.09514869749546051, 0.014686527661979198, 0.05598360672593117, -0.0049941944889724255, 0.030223626643419266, -0.17652787268161774, -0.03720444068312645, -0.05224968492984772, -0.01858876459300518, 0.014783287420868874, -0.015852006152272224, -0.10679599642753601, 0.0033180974423885345, -0.05217595025897026, -0.0459403395652771, 0.0029732859693467617, 0.037076402455568314, 0.07362083345651627, 0.1198519766330719, 0.0011104767909273505, 0.004496890120208263, -0.006659876089543104, 0.23114873468875885, -0.0789787694811821, -0.15107083320617676, -0.13173794746398926, 0.2705375552177429, 0.02911752462387085, 0.04206633195281029, -0.02400902472436428, -0.03442397713661194, -0.047084178775548935, 0.28482919931411743, 0.3120782673358917, -0.1045624315738678, -0.005833455361425877, 0.037398263812065125, 0.014874235726892948, 0.010045048780739307, 0.07994916290044785, 0.1360369771718979, 0.12694063782691956, -0.1354077011346817, -0.0266488678753376, -0.0770840272307396, 0.02171979658305645, -0.047260940074920654, 0.023595960810780525, 0.052542220801115036, -0.04344969615340233, -0.03959893807768822, 0.1128760278224945, -0.03094974160194397, -0.06866996735334396, 0.05141586437821388, -0.22424596548080444, -0.18355132639408112, 0.019943848252296448, 0.10483457893133163, 0.016747144982218742, 0.06016024947166443, -0.02750554494559765, -0.05668283998966217, 0.01678202860057354, -0.022583620622754097, -0.11749762296676636, -0.1263909637928009, 0.07712947577238083, -0.042986270040273666, 0.1917976438999176, -0.040804024785757065, 0.07638713717460632, 0.12927067279815674, 0.056099556386470795, -0.028552494943141937, 0.047335222363471985, 0.04899389669299126, -0.08097562193870544, 0.02878066711127758, -0.01492317020893097, -0.037710122764110565, 0.041605133563280106, 0.08202650398015976, -0.11801030486822128, 0.1072017028927803, -0.15213094651699066, -0.07204857468605042, -0.07381948828697205, 0.04947284236550331, -0.06671854853630066, 0.0979912281036377, 0.23682180047035217, -0.010541962459683418, 0.02531552128493786, -0.06146322190761566, 0.008522892370820045, 0.013791012577712536, 0.04161452502012253, -0.06170309707522392, -0.2298937439918518, 0.02214941754937172, 0.03225920349359512, -0.020215705037117004, -0.20593351125717163, -0.0376342311501503, -0.0227053165435791, -0.005194095894694328, -0.11988864839076996, 0.10093966126441956, 0.06587009876966476, 0.019736452028155327, -0.03784886375069618, -0.21737785637378693, -0.041740622371435165, 0.13119660317897797, -0.1155872493982315, -0.06819818168878555 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # mt5-small-finetuned-pnsum2 This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: nan - Rouge1: 4.3733 - Rouge2: 1.0221 - Rougel: 4.1265 - Rougelsum: 4.1372 - Gen Len: 6.2843 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0001 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 1 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len | |:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|:---------:|:-------:| | 0.0 | 1.0 | 2500 | nan | 4.3733 | 1.0221 | 4.1265 | 4.1372 | 6.2843 | ### Framework versions - Transformers 4.16.1 - Pytorch 1.10.0+cu111 - Datasets 1.18.2 - Tokenizers 0.11.0
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["rouge"], "model-index": [{"name": "mt5-small-finetuned-pnsum2", "results": []}]}
text2text-generation
MM98/mt5-small-finetuned-pnsum2
[ "transformers", "pytorch", "tensorboard", "mt5", "text2text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #mt5 #text2text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
mt5-small-finetuned-pnsum2 ========================== This model is a fine-tuned version of google/mt5-small on an unknown dataset. It achieves the following results on the evaluation set: * Loss: nan * Rouge1: 4.3733 * Rouge2: 1.0221 * Rougel: 4.1265 * Rougelsum: 4.1372 * Gen Len: 6.2843 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 0.0001 * train\_batch\_size: 4 * eval\_batch\_size: 4 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 1 * mixed\_precision\_training: Native AMP ### Training results ### Framework versions * Transformers 4.16.1 * Pytorch 1.10.0+cu111 * Datasets 1.18.2 * Tokenizers 0.11.0
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.1\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.2\n* Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #tensorboard #mt5 #text2text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.1\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.2\n* Tokenizers 0.11.0" ]
[ 68, 112, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #mt5 #text2text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.16.1\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.2\n* Tokenizers 0.11.0" ]
[ -0.08685190230607986, 0.0632481649518013, -0.0033657222520560026, 0.09886475652456284, 0.14237600564956665, 0.015417388640344143, 0.13527120649814606, 0.1409326046705246, -0.09089437872171402, 0.04398776963353157, 0.11967164278030396, 0.14044424891471863, 0.032835181802511215, 0.10927567631006241, -0.048424430191516876, -0.2732382118701935, 0.005528404377400875, 0.03631473705172539, -0.04087067395448685, 0.13390754163265228, 0.0856713056564331, -0.11613266915082932, 0.08176897466182709, 0.011958494782447815, -0.15383973717689514, 0.00870339572429657, -0.003236041171476245, -0.05498264357447624, 0.14258098602294922, 0.0360255166888237, 0.10706664621829987, 0.018099986016750336, 0.06968866288661957, -0.204966738820076, 0.00913172960281372, 0.06344840675592422, 0.008105757646262646, 0.09418342262506485, 0.07960627228021622, -0.003453001147136092, 0.1392628401517868, -0.06481411308050156, 0.05169431120157242, 0.032178495079278946, -0.11176237463951111, -0.20970982313156128, -0.0880320593714714, 0.03596465662121773, 0.0805414542555809, 0.1079864650964737, -0.010642485693097115, 0.10709857195615768, -0.06977187842130661, 0.10115617513656616, 0.24363121390342712, -0.28229016065597534, -0.05579066649079323, 0.00865987315773964, 0.034432701766490936, 0.08192470669746399, -0.08861392736434937, -0.0246575977653265, 0.03022392839193344, 0.0513218492269516, 0.13123394548892975, -0.01726292073726654, -0.07775168865919113, 0.0046231672167778015, -0.1523616909980774, -0.05090600624680519, 0.1392229050397873, 0.03479991480708122, -0.02645428664982319, -0.06246758997440338, -0.07485681772232056, -0.18356230854988098, -0.034110091626644135, -0.0007023912039585412, 0.03664397820830345, -0.02076280489563942, -0.060715287923812866, -0.02879108488559723, -0.10153630375862122, -0.06285212934017181, -0.06395979970693588, 0.10539329051971436, 0.04682738333940506, 0.003439898369833827, -0.029964836314320564, 0.11111634969711304, -0.022822145372629166, -0.132245734333992, 0.014084137976169586, 0.02777956798672676, 0.0068961805664002895, -0.025184668600559235, -0.054372578859329224, -0.0819479376077652, 0.006490909960120916, 0.1283392608165741, -0.05864092707633972, 0.0596097968518734, 0.0006941733881831169, 0.05232851579785347, -0.10028668493032455, 0.1663186103105545, -0.04249188303947449, -0.020119396969676018, 0.00559270940721035, 0.06420767307281494, 0.033827681094408035, -0.022221297025680542, -0.11574549973011017, 0.007639212533831596, 0.09936602413654327, 0.028858523815870285, -0.045921411365270615, 0.06714138388633728, -0.040810007601976395, -0.024540696293115616, 0.004794300068169832, -0.09880494326353073, 0.02754814922809601, 0.005329519510269165, -0.07508248090744019, 0.0064619737677276134, 0.046425431966781616, 0.006559312809258699, -0.043523143976926804, 0.11033440381288528, -0.07794797420501709, 0.028057068586349487, -0.09846673905849457, -0.12664400041103363, 0.03028915263712406, -0.06617788970470428, 0.00036551282391883433, -0.09788865596055984, -0.17666298151016235, -0.015955818817019463, 0.0483756884932518, -0.036451682448387146, -0.05151815712451935, -0.0535343736410141, -0.0783333033323288, 0.03381025046110153, -0.025595901533961296, 0.1393858790397644, -0.0633905827999115, 0.09619387984275818, 0.0237845778465271, 0.05548473075032234, -0.02945760264992714, 0.06536933779716492, -0.08286966383457184, 0.026598507538437843, -0.17032712697982788, 0.05146148055791855, -0.05226839333772659, 0.053299445658922195, -0.10344967246055603, -0.09840847551822662, -0.006265863310545683, -0.006238594651222229, 0.09060756117105484, 0.09767062216997147, -0.15559470653533936, -0.08125001192092896, 0.16077373921871185, -0.0742839053273201, -0.10835549980401993, 0.1332836151123047, -0.04886073246598244, 0.022401263937354088, 0.04872051998972893, 0.16711220145225525, 0.07629279792308807, -0.08859401196241379, 0.0057706767693161964, -0.007468297146260738, 0.05997420474886894, -0.04897364601492882, 0.07346263527870178, -0.010433769784867764, 0.020110826939344406, 0.02064596116542816, -0.010386285372078419, 0.06129850447177887, -0.09126350283622742, -0.08402049541473389, -0.0489136204123497, -0.06935269385576248, 0.027096576988697052, 0.05464301258325577, 0.06757105886936188, -0.10243827104568481, -0.10400890558958054, 0.05373295396566391, 0.08552763611078262, -0.08016323298215866, 0.043911464512348175, -0.057581186294555664, 0.07661367207765579, -0.05109483003616333, -0.006186492275446653, -0.18169519305229187, -0.0249194148927927, 0.01976092904806137, -0.029172688722610474, 0.03212197497487068, 0.0014844904653728008, 0.06808263808488846, 0.07029125094413757, -0.05204188451170921, -0.03183859959244728, -0.04381220415234566, -0.008566060103476048, -0.12449212372303009, -0.20176604390144348, -0.039936844259500504, -0.014469699002802372, 0.11460189521312714, -0.19358621537685394, 0.041195206344127655, 0.0000755339497118257, 0.08351744711399078, 0.010914861224591732, -0.007426908705383539, -0.03332070633769035, 0.0817921981215477, -0.05185682326555252, -0.04440021887421608, 0.07779904454946518, 0.009338191710412502, -0.0961807370185852, -0.0013096033362671733, -0.14820770919322968, 0.12485267221927643, 0.1332719922065735, -0.10966844111680984, -0.06169412285089493, -0.017143111675977707, -0.06083892285823822, -0.046639569103717804, -0.04283379763364792, 0.0012123924680054188, 0.1833488792181015, 0.008212462067604065, 0.15721933543682098, -0.07572992891073227, -0.04976249858736992, 0.025335082784295082, -0.02457132749259472, 0.012684076093137264, 0.1347731649875641, 0.123390331864357, -0.06435609608888626, 0.14316050708293915, 0.1494751125574112, -0.08554284274578094, 0.14320077002048492, -0.03962608054280281, -0.09238900989294052, -0.017161304131150246, -0.005943749099969864, 0.0032041743397712708, 0.0720072090625763, -0.1618020087480545, -0.0012902397429570556, 0.029870398342609406, 0.03427106887102127, 0.03773084655404091, -0.218343585729599, -0.013140607625246048, 0.038195230066776276, -0.06067417934536934, -0.009691455401480198, -0.006796061061322689, 0.017871351912617683, 0.10918519645929337, 0.000841514382045716, -0.0698426142334938, 0.02947082929313183, -0.006314869970083237, -0.08411718159914017, 0.19732066988945007, -0.09254970401525497, -0.172396719455719, -0.14449389278888702, -0.080721914768219, -0.058643314987421036, -0.000835911079775542, 0.06720557808876038, -0.07597802579402924, -0.03524857014417648, -0.0881231352686882, 0.050466082990169525, -0.020871615037322044, 0.022651642560958862, -0.0008073460194282234, 0.0007153694168664515, 0.06764654815196991, -0.11228607594966888, -0.012606644071638584, -0.03490511327981949, -0.0572974756360054, 0.04511236026883125, 0.0365326814353466, 0.10446923226118088, 0.1612938642501831, -0.009350553154945374, 0.01637698896229267, -0.0312101598829031, 0.20284943282604218, -0.06041920930147171, -0.018250640481710434, 0.15568852424621582, -0.007337251678109169, 0.06798023730516434, 0.11972873657941818, 0.06253748387098312, -0.07341139018535614, 0.012830772437155247, 0.04224981740117073, -0.03583890199661255, -0.23928770422935486, -0.04363033547997475, -0.06021930277347565, 0.022562634199857712, 0.09669766575098038, 0.030715225264430046, 0.04485074058175087, 0.0550062395632267, 0.014498124830424786, 0.05688168853521347, -0.0177770908921957, 0.07620847225189209, 0.14851014316082, 0.031152136623859406, 0.13776132464408875, -0.043055761605501175, -0.04807472601532936, 0.046380456537008286, 0.002557087689638138, 0.2295415997505188, 0.002004802692681551, 0.1704009622335434, 0.06198844313621521, 0.15861086547374725, 0.007370535749942064, 0.0684969574213028, -0.00578372972086072, -0.022521691396832466, -0.012821320444345474, -0.05046793073415756, -0.029415151104331017, 0.02748039737343788, -0.052813638001680374, 0.05214855074882507, -0.12422669678926468, -0.0026467228308320045, 0.04198721423745155, 0.2721664607524872, 0.03763655200600624, -0.31795164942741394, -0.09058257937431335, 0.011272099800407887, -0.06188478693366051, -0.02154763601720333, 0.030310308560729027, 0.10389207303524017, -0.08514565974473953, 0.03749096393585205, -0.07864087074995041, 0.10963357239961624, -0.04922162741422653, 0.03988413140177727, 0.06530724465847015, 0.10162951052188873, 0.006443486548960209, 0.0825573056936264, -0.3064732551574707, 0.27267295122146606, 0.007857531309127808, 0.057575397193431854, -0.07645734399557114, 0.017190957441926003, 0.03780713677406311, 0.03872508183121681, 0.06037108972668648, -0.021445157006382942, -0.05716913938522339, -0.17371690273284912, -0.08374260365962982, 0.011451629921793938, 0.09443391114473343, -0.028755290433764458, 0.1098499447107315, -0.03759380802512169, 0.0013043893268331885, 0.06606761366128922, 0.009408700279891491, -0.06773586571216583, -0.10362695157527924, 0.0149762574583292, 0.03990013524889946, -0.03344462811946869, -0.0697111114859581, -0.11114052683115005, -0.10364741832017899, 0.15451468527317047, -0.03127507120370865, -0.04106638580560684, -0.11274866759777069, 0.07529963552951813, 0.08823633193969727, -0.0917951837182045, 0.03650086000561714, 0.001372604863718152, 0.09107223153114319, 0.016866028308868408, -0.07931668311357498, 0.10997505486011505, -0.07225040346384048, -0.18103229999542236, -0.05511496216058731, 0.1335754692554474, 0.01845342107117176, 0.06613035500049591, -0.029616357758641243, 0.017163442447781563, -0.041611842811107635, -0.08698911219835281, 0.016608763486146927, 0.01127904187887907, 0.06272995471954346, 0.02389228716492653, -0.06484515219926834, 0.02299906685948372, -0.061619143933057785, -0.05163784697651863, 0.19431883096694946, 0.23412062227725983, -0.08806490153074265, 0.03629183769226074, 0.043852798640728, -0.07551988214254379, -0.19239301979541779, 0.014459818601608276, 0.061414312571287155, 0.004146276507526636, 0.02833147533237934, -0.18823160231113434, 0.07776094973087311, 0.10396906733512878, -0.013269033282995224, 0.11103267222642899, -0.35885149240493774, -0.13454672694206238, 0.11070184409618378, 0.13474832475185394, 0.08731459081172943, -0.15832044184207916, -0.0363042838871479, -0.020356200635433197, -0.10851854085922241, 0.1179448589682579, -0.08658997714519501, 0.13414989411830902, -0.02789294719696045, 0.10818551480770111, 0.008105766028165817, -0.0595819465816021, 0.11656636744737625, -0.0025481730699539185, 0.07549676299095154, -0.0617172047495842, 0.016713259741663933, 0.0369960181415081, -0.04968709126114845, 0.031493041664361954, -0.09706748276948929, 0.020357990637421608, -0.10346769541501999, -0.026236770674586296, -0.07340075075626373, 0.03152832016348839, -0.03931821137666702, -0.056334152817726135, -0.0352485328912735, 0.00904535036534071, 0.055782683193683624, -0.009528559632599354, 0.14686653017997742, -0.005414590239524841, 0.14637665450572968, 0.1401730626821518, 0.08216476440429688, -0.05904967337846756, -0.07733804732561111, -0.013282661326229572, -0.02135293185710907, 0.050725117325782776, -0.14404189586639404, 0.028612222522497177, 0.14670568704605103, 0.010999687947332859, 0.15077649056911469, 0.07813237607479095, -0.04774250462651253, 0.012455674819648266, 0.055310897529125214, -0.15534542500972748, -0.10606521368026733, -0.018199581652879715, -0.006783183664083481, -0.1049145981669426, 0.03483869880437851, 0.11943177878856659, -0.07427822053432465, -0.003104039002209902, 0.0034637039061635733, 0.021398823708295822, -0.04325857385993004, 0.1929844170808792, 0.03548923507332802, 0.0501975454390049, -0.0964542031288147, 0.0925762727856636, 0.05325709655880928, -0.11373067647218704, 0.016323046758770943, 0.1189795732498169, -0.07094170898199081, -0.047918736934661865, 0.04476196691393852, 0.16275645792484283, -0.05458251014351845, -0.05378955230116844, -0.14247950911521912, -0.12956184148788452, 0.09972046315670013, 0.15396873652935028, 0.07798157632350922, 0.012243304401636124, -0.05939038470387459, 0.011709247715771198, -0.1171267107129097, 0.10466095805168152, 0.04710710793733597, 0.06144067272543907, -0.12844474613666534, 0.15578129887580872, 0.010444271378219128, 0.039212364703416824, -0.016858471557497978, 0.01956598088145256, -0.08985812216997147, 0.009117262437939644, -0.13857224583625793, -0.016941474750638008, -0.0316561721265316, -0.006741288583725691, -0.006696496158838272, -0.043547119945287704, -0.06492562592029572, 0.016168829053640366, -0.1124030351638794, -0.035343583673238754, 0.008003301918506622, 0.05884082615375519, -0.10615786164999008, -0.03125442564487457, 0.023763325065374374, -0.0739535242319107, 0.07851067930459976, 0.04829573258757591, 0.012961889617145061, 0.04358739033341408, -0.11347727477550507, 0.021101567894220352, 0.05608835443854332, 0.024034736678004265, 0.04410209879279137, -0.10248085111379623, -0.007917840965092182, -0.008556223474442959, 0.037387117743492126, 0.011536047793924809, 0.06503233313560486, -0.14021970331668854, -0.00535316439345479, -0.021869948133826256, -0.07418884336948395, -0.0687553882598877, 0.03680146858096123, 0.06206909567117691, 0.02719130553305149, 0.17775510251522064, -0.08859168738126755, 0.05635710433125496, -0.22102223336696625, 0.013649094849824905, 0.00014303557691164315, -0.10945448279380798, -0.08319200575351715, -0.06494477391242981, 0.06663481146097183, -0.06240978091955185, 0.12773334980010986, 0.009044652804732323, 0.03321303427219391, 0.03613561764359474, -0.027319377288222313, 0.004512507002800703, 0.0162530355155468, 0.19911888241767883, 0.034571051597595215, -0.03280550241470337, 0.046939950436353683, 0.03306622430682182, 0.1007702499628067, 0.12204581499099731, 0.2032710611820221, 0.1488604098558426, 0.022579127922654152, 0.102175273001194, 0.048366762697696686, -0.06755901873111725, -0.16264145076274872, 0.05685414746403694, -0.027016958221793175, 0.1329413801431656, -0.03172621130943298, 0.22900089621543884, 0.09282831847667694, -0.15888716280460358, 0.05633959546685219, -0.04021473601460457, -0.07783181965351105, -0.12049145996570587, -0.07367460429668427, -0.08049026131629944, -0.15078650414943695, -0.00653443718329072, -0.11653651297092438, 0.04494909569621086, 0.0911906287074089, 0.02685275860130787, -0.02023981884121895, 0.1370171159505844, 0.01935192570090294, -0.0004347236827015877, 0.06455463916063309, 0.004484597593545914, -0.008417622186243534, -0.10231975466012955, -0.07883314788341522, 0.010261609219014645, -0.012969990260899067, 0.039581239223480225, -0.03142750635743141, -0.04430755227804184, 0.03848746046423912, -0.022013459354639053, -0.1029680073261261, 0.010253369808197021, 0.013780523091554642, 0.07115362584590912, 0.08519738167524338, 0.003762246808037162, 0.002439751522615552, -0.014735975302755833, 0.2173953801393509, -0.08621542155742645, -0.0649077519774437, -0.09195650368928909, 0.24204225838184357, 0.024140305817127228, -0.020885257050395012, 0.025663413107395172, -0.05920998379588127, -0.016570866107940674, 0.24054746329784393, 0.1915924847126007, -0.0662163719534874, -0.0149033572524786, 0.016079507768154144, -0.008229582570493221, -0.015332016162574291, 0.1031549721956253, 0.13720209896564484, 0.06819728016853333, -0.08784925192594528, -0.030352016910910606, -0.04733569175004959, -0.005304513964802027, -0.047982290387153625, 0.08846443891525269, 0.028077075257897377, -0.0010772282257676125, -0.027913205325603485, 0.05195640027523041, -0.0658072978258133, -0.07546994090080261, 0.01593771204352379, -0.2105121910572052, -0.1592271327972412, -0.012994056567549706, 0.11444363743066788, 0.0007180511602200568, 0.053842052817344666, -0.022861843928694725, 0.004159457981586456, 0.09007132798433304, -0.022457929328083992, -0.08736775815486908, -0.07427658885717392, 0.08289985358715057, -0.10153795033693314, 0.19250273704528809, -0.036364369094371796, 0.03577541559934616, 0.13121941685676575, 0.059915073215961456, -0.08397109061479568, 0.07290448993444443, 0.05083882436156273, -0.07476010918617249, 0.030916431918740273, 0.11817492544651031, -0.030572373420000076, 0.07609487324953079, 0.04116126894950867, -0.1363615244626999, 0.01477854698896408, -0.0688246637582779, -0.0642402321100235, -0.024694466963410378, -0.04040387272834778, -0.05637757480144501, 0.13107457756996155, 0.21147623658180237, -0.03714517503976822, -0.007646340876817703, -0.07335365563631058, -0.0020389819983392954, 0.04570426419377327, 0.047435276210308075, -0.04126831889152527, -0.2324167639017105, 0.009592895396053791, 0.05016122758388519, -0.0027945172041654587, -0.27399942278862, -0.09904646873474121, 0.015489614568650723, -0.06346431374549866, -0.12212540954351425, 0.0848446860909462, 0.08493751287460327, 0.04568258300423622, -0.05038871243596077, -0.07876859605312347, -0.06535724550485611, 0.15928137302398682, -0.15019755065441132, -0.07781404256820679 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-spa-squad2-es-finetuned-sqac-v2 This model is a fine-tuned version of [mrm8488/bert-base-spanish-wwm-cased-finetuned-spa-squad2-es](https://huggingface.co/mrm8488/bert-base-spanish-wwm-cased-finetuned-spa-squad2-es) on the sqac dataset. It achieves the following results on the evaluation set: - {'exact_match': 65.02145922746782, 'f1': 81.6651482773275} ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 0.9417 | 1.0 | 1277 | 0.7903 | | 0.5002 | 2.0 | 2554 | 0.8459 | | 0.2895 | 3.0 | 3831 | 0.9482 | ### Framework versions - Transformers 4.12.5 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["sqac"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-spa-squad2-es-finetuned-sqac-v2", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-spa-squad2-es-finetuned-sqac
[ "transformers", "pytorch", "tensorboard", "safetensors", "bert", "question-answering", "generated_from_trainer", "es", "dataset:sqac", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #safetensors #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us
bert-base-spanish-wwm-cased-finetuned-spa-squad2-es-finetuned-sqac-v2 ===================================================================== This model is a fine-tuned version of mrm8488/bert-base-spanish-wwm-cased-finetuned-spa-squad2-es on the sqac dataset. It achieves the following results on the evaluation set: * {'exact\_match': 65.02145922746782, 'f1': 81.6651482773275} Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3 ### Training results ### Framework versions * Transformers 4.12.5 * Pytorch 1.10.0+cu111 * Datasets 1.16.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ 54, 98, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #safetensors #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3### Training results### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ -0.12581868469715118, 0.06284944713115692, -0.002186939585953951, 0.11097496747970581, 0.17227748036384583, 0.025181513279676437, 0.09988266229629517, 0.10415807366371155, -0.07444508373737335, 0.04746748507022858, 0.14408738911151886, 0.16428141295909882, -0.005429163109511137, 0.0645979717373848, -0.05906418710947037, -0.21220801770687103, -0.01792071759700775, 0.039585232734680176, -0.09305386990308762, 0.14268077909946442, 0.0705808699131012, -0.16811011731624603, 0.07682622224092484, -0.01583315059542656, -0.19338694214820862, 0.022508816793560982, 0.011489439755678177, -0.04043282940983772, 0.15056364238262177, 0.00013729633064940572, 0.15762929618358612, 0.017537934705615044, 0.07192463427782059, -0.18501673638820648, 0.02361667901277542, 0.04521449655294418, 0.006293267942965031, 0.07835832238197327, 0.06054423004388809, -0.026737937703728676, 0.08081436902284622, -0.1103706955909729, 0.041614677757024765, 0.011777933686971664, -0.14075824618339539, -0.223850816488266, -0.07736624777317047, -0.010275102220475674, 0.06563777476549149, 0.11454670876264572, -0.018285106867551804, 0.16490159928798676, -0.11655019223690033, 0.0982421338558197, 0.2642730176448822, -0.2806355357170105, -0.08080869168043137, 0.0254970695823431, 0.014799317345023155, 0.1017274484038353, -0.11626321822404861, -0.014493726193904877, 0.056577105075120926, 0.04237087070941925, 0.10384175181388855, -0.04717479273676872, -0.10208442807197571, 0.04690874367952347, -0.1505575180053711, -0.030920647084712982, 0.1048392653465271, 0.040746815502643585, -0.026517149060964584, -0.01928972266614437, -0.06968796253204346, -0.12650494277477264, -0.017909741029143333, -0.028433702886104584, 0.0364658385515213, -0.06540576368570328, -0.10605007410049438, -0.005960038863122463, -0.1208980605006218, -0.09158889204263687, -0.053134553134441376, 0.16650116443634033, 0.0420546792447567, 0.019528549164533615, -0.05047057196497917, 0.1126546636223793, 0.023448344320058823, -0.13955742120742798, 0.021313026547431946, 0.03396463021636009, -0.022769635543227196, -0.037268295884132385, -0.05139942467212677, -0.07593720406293869, 0.0272072646766901, 0.08276952058076859, -0.08752159774303436, 0.04105587303638458, 0.06246902421116829, 0.03395744785666466, -0.0970132127404213, 0.17268335819244385, -0.06509164720773697, -0.00900251418352127, -0.016740066930651665, 0.06871476024389267, -0.006205405108630657, 0.00035366578958928585, -0.08263503760099411, -0.004901429172605276, 0.09872137010097504, 0.03404712304472923, -0.056030791252851486, 0.04705846682190895, -0.04992630332708359, -0.010449837893247604, -0.022403564304113388, -0.08962772786617279, 0.021754296496510506, 0.01012908574193716, -0.07428459823131561, -0.03732442483305931, -0.007713343948125839, 0.014762991108000278, -0.002952262293547392, 0.11985337734222412, -0.09627477824687958, 0.03728104755282402, -0.08880733698606491, -0.10653086006641388, -0.0003698215296026319, -0.08052805066108704, 0.03127407655119896, -0.09108174592256546, -0.14634573459625244, -0.02241695299744606, 0.032110948115587234, -0.020575566217303276, -0.00992689747363329, -0.05105843022465706, -0.08672751486301422, -0.013124235905706882, -0.009431385435163975, 0.1585284322500229, -0.06363751739263535, 0.1262570023536682, 0.05716433376073837, 0.06298016011714935, -0.015537668950855732, 0.037688225507736206, -0.09952061623334885, 0.020883677527308464, -0.1652320772409439, 0.039408423006534576, -0.052212461829185486, 0.058194600045681, -0.083846814930439, -0.11349783092737198, 0.0041022589430212975, -0.002536344574764371, 0.09197043627500534, 0.12466365098953247, -0.16887184977531433, -0.06836307048797607, 0.1815270036458969, -0.05756787583231926, -0.13703574240207672, 0.13352228701114655, -0.0645371675491333, 0.029488423839211464, 0.06591860949993134, 0.17242607474327087, 0.04763861745595932, -0.09241389483213425, 0.01005365327000618, -0.00848420336842537, 0.050042737275362015, -0.0441700704395771, 0.06773011386394501, -0.005910892970860004, 0.0018622587667778134, 0.012862125411629677, -0.05417104810476303, 0.04581112042069435, -0.12471681088209152, -0.09332754462957382, -0.036844559013843536, -0.11367665976285934, 0.06299657374620438, 0.08618901669979095, 0.07231587171554565, -0.10957464575767517, -0.06536766141653061, 0.03826908394694328, 0.06575068086385727, -0.061539389193058014, 0.015014820732176304, -0.05778590962290764, 0.0749567523598671, -0.09065604209899902, -0.04282461106777191, -0.18575015664100647, -0.051798265427351, -0.004634182900190353, 0.029344309121370316, -0.013152486644685268, 0.03554171323776245, 0.09582636505365372, 0.06551678478717804, -0.06303885579109192, -0.041746847331523895, -0.044541534036397934, -0.009354782290756702, -0.13985632359981537, -0.19074314832687378, -0.021783221513032913, -0.026757318526506424, 0.09588444232940674, -0.21175001561641693, 0.02197929285466671, -0.012849112041294575, 0.06670078635215759, 0.015799181535840034, -0.02276797592639923, -0.024214470759034157, 0.08246585726737976, -0.016087200492620468, -0.04292688146233559, 0.06043168157339096, -0.02144671231508255, -0.09990205615758896, -0.06338118761777878, -0.10236936062574387, 0.18589939177036285, 0.12020515650510788, -0.12465017288923264, -0.07642315328121185, -0.0026268709916621447, -0.0692467987537384, -0.023854143917560577, -0.056878793984651566, 0.03721398487687111, 0.1847734898328781, -0.0011252554832026362, 0.12335781008005142, -0.08377403765916824, -0.044263094663619995, 0.010015271604061127, -0.03998442739248276, 0.037170328199863434, 0.15281811356544495, 0.08680305629968643, -0.08735591918230057, 0.13481420278549194, 0.15597720444202423, -0.08335253596305847, 0.12827512621879578, -0.04635624960064888, -0.0959586426615715, -0.02656734362244606, 0.026118291541934013, 0.0030199126340448856, 0.14351040124893188, -0.14886459708213806, 0.002767927711829543, 0.013463613577187061, 0.013330685906112194, 0.020253634080290794, -0.23848290741443634, -0.07507659494876862, 0.03093159757554531, -0.03593141958117485, -0.0286345686763525, -0.013852841220796108, 0.02371453493833542, 0.11028113216161728, -0.010383550077676773, -0.04848835617303848, 0.021139489486813545, -0.00647044787183404, -0.07256314158439636, 0.24034440517425537, -0.05567436292767525, -0.10815578699111938, -0.08182082325220108, -0.026612062007188797, -0.030902011319994926, 0.005405442789196968, 0.05908425897359848, -0.11746776849031448, -0.005851524882018566, -0.054393213242292404, 0.02830216847360134, -0.003985920920968056, 0.03419865295290947, -0.010012838058173656, -0.015465912409126759, 0.0680682435631752, -0.10967789590358734, 0.007153419777750969, -0.07512523978948593, -0.08907671272754669, 0.06515605002641678, 0.05260079726576805, 0.14502137899398804, 0.13098004460334778, -0.01694820262491703, 0.0024614559952169657, -0.021793685853481293, 0.2553294599056244, -0.079205721616745, -0.05599367246031761, 0.10912011563777924, -0.010326960124075413, 0.05310888960957527, 0.09632400423288345, 0.07599863409996033, -0.09978743642568588, 0.009612642228603363, 0.045878734439611435, -0.03978551924228668, -0.23640090227127075, -0.015448393300175667, -0.043167922645807266, -0.03620166704058647, 0.05870747193694115, 0.02123096212744713, 0.00502946600317955, 0.08605159819126129, 0.031643759459257126, 0.014371714554727077, -0.07043545693159103, 0.03297015279531479, 0.03507085144519806, 0.03601403906941414, 0.1113310381770134, -0.04020867869257927, -0.08231522887945175, 0.02146080508828163, -0.013362471014261246, 0.24100618064403534, -0.017824383452534676, 0.12693654000759125, 0.0740729346871376, 0.21859954297542572, -0.010470847599208355, 0.0863291472196579, -0.010750300250947475, -0.0701787918806076, 0.0032801630441099405, -0.04079914465546608, -0.03209226205945015, 0.010343312285840511, -0.043705832213163376, 0.09033847600221634, -0.11820769309997559, 0.006615822669118643, 0.06977114826440811, 0.2336462140083313, 0.035580720752477646, -0.2954733967781067, -0.0796702578663826, 0.0028599067591130733, -0.01229123305529356, -0.011648581363260746, 0.017742406576871872, 0.1742311418056488, -0.08499329537153244, -0.010679002851247787, -0.0721195787191391, 0.08211196959018707, -0.022290242835879326, 0.04354535788297653, 0.03906635940074921, 0.08005206286907196, -0.017054717987775803, 0.0779607817530632, -0.3037797510623932, 0.30630218982696533, 0.014970889315009117, 0.08436352759599686, -0.06702092289924622, -0.03409084677696228, 0.02213413454592228, 0.02655130624771118, 0.10512784123420715, -0.007951979525387287, 0.022218115627765656, -0.20787441730499268, -0.0461580827832222, 0.05297382175922394, 0.12096058577299118, -0.04023366793990135, 0.10993331670761108, 0.004622176289558411, 0.010990864597260952, 0.0688367486000061, 0.00460608908906579, -0.05069476366043091, -0.06930146366357803, -0.028959911316633224, 0.010686137713491917, -0.06364086270332336, -0.0769786536693573, -0.1050315871834755, -0.11724330484867096, 0.11076729744672775, -0.02313816174864769, -0.03429168462753296, -0.11169711500406265, 0.08305227756500244, 0.0904446616768837, -0.0909024178981781, 0.020345140248537064, 0.025564642623066902, 0.0365549772977829, 0.042993467301130295, -0.03693185746669769, 0.10914305597543716, -0.06722700595855713, -0.16919462382793427, -0.056779894977808, 0.11833308637142181, 0.059865470975637436, 0.06079133599996567, -0.014045282267034054, 0.010879267007112503, -0.04620016738772392, -0.09795563668012619, 0.044385671615600586, -0.05331376940011978, 0.08769875019788742, 0.04571729525923729, -0.03310580179095268, 0.04456315189599991, -0.06676426529884338, -0.014541694894433022, 0.19484089314937592, 0.2541138231754303, -0.0872982069849968, -0.01707557402551174, 0.04304797947406769, -0.04695545881986618, -0.18840156495571136, 0.07724323123693466, 0.060064755380153656, 0.004478917922824621, 0.06706109642982483, -0.14728426933288574, 0.13559859991073608, 0.10705625265836716, -0.0015083912294358015, 0.10442999750375748, -0.34337684512138367, -0.11689101159572601, 0.10449738800525665, 0.1988431066274643, 0.1397576481103897, -0.16880246996879578, -0.024874014779925346, 0.015679167583584785, -0.1208062469959259, 0.07412941753864288, -0.12441613525152206, 0.10943024605512619, -0.028415951877832413, 0.10147363692522049, 0.01617235131561756, -0.07952236384153366, 0.13617944717407227, 0.012402255088090897, 0.11584407836198807, -0.04251054674386978, -0.055931370705366135, 0.0592162050306797, -0.02500148117542267, -0.011047356761991978, -0.057306382805109024, 0.04293748736381531, -0.09401005506515503, -0.021813981235027313, -0.10609426349401474, 0.032201286405324936, -0.043182048946619034, -0.06585193425416946, -0.02006593532860279, 0.018695415928959846, 0.04635515809059143, -0.008957226760685444, 0.12249726802110672, 0.004868791904300451, 0.17465335130691528, 0.05958601459860802, 0.0869678258895874, -0.05017316713929176, -0.0795707181096077, -0.003561744000762701, -0.0026469805743545294, 0.05093048885464668, -0.1186259388923645, 0.029801517724990845, 0.1497197449207306, 0.050019118934869766, 0.11632933467626572, 0.08169487118721008, -0.028456594794988632, 0.023520346730947495, 0.05006851255893707, -0.17381948232650757, -0.1413498967885971, -0.0029093658085912466, -0.08254852145910263, -0.12538160383701324, 0.06912665069103241, 0.06719616055488586, -0.04072919487953186, -0.011106987483799458, -0.03045767918229103, -0.013182103633880615, -0.05093209445476532, 0.2207752913236618, 0.0868099257349968, 0.058094967156648636, -0.10335073620080948, 0.06209450960159302, 0.029961030930280685, -0.08872967958450317, -0.009213658981025219, 0.05524428188800812, -0.06943630427122116, -0.040767621248960495, 0.09018503874540329, 0.19672070443630219, -0.03660503774881363, -0.028910811990499496, -0.1452571153640747, -0.10220261663198471, 0.052513618022203445, 0.1814526915550232, 0.10511889308691025, -0.0007392268744297326, -0.025214171037077904, 0.02085571549832821, -0.12984205782413483, 0.0974089726805687, 0.04127443954348564, 0.0690324530005455, -0.1332254260778427, 0.16209183633327484, -0.006035714875906706, 0.05315980687737465, -0.02170981653034687, 0.03473396971821785, -0.10836181789636612, 0.033861443400382996, -0.14558842778205872, -0.02369874157011509, -0.021115195006132126, -0.014815276488661766, -0.008253589272499084, -0.09166567027568817, -0.061025526374578476, 0.01273973286151886, -0.120518758893013, -0.007549871224910021, 0.05840747058391571, 0.03318660706281662, -0.13776814937591553, -0.05074447765946388, 0.03273747116327286, -0.05474284291267395, 0.06574707478284836, 0.07044784724712372, 0.014197887852787971, 0.06863607466220856, -0.18054954707622528, 0.0011173079255968332, 0.0565226748585701, 0.002679604571312666, 0.07504500448703766, -0.061133209615945816, -0.015185811556875706, -0.011521827429533005, 0.07421579957008362, 0.019698290154337883, 0.05945218726992607, -0.13278310000896454, 0.013995114713907242, -0.02011183090507984, -0.07715199887752533, -0.06895311176776886, 0.014277246780693531, 0.07219787687063217, 0.010073179379105568, 0.17434656620025635, -0.07621360570192337, 0.05862370505928993, -0.22048258781433105, -0.013080432079732418, -0.003010241547599435, -0.09506261348724365, -0.11606182157993317, -0.04391344636678696, 0.0828583836555481, -0.06766041368246078, 0.11410067975521088, -0.01973753236234188, 0.07321783155202866, 0.01960815116763115, -0.03556585684418678, 0.06447555124759674, 0.01928662694990635, 0.2182449996471405, 0.022514397278428078, -0.04702696204185486, 0.059767499566078186, 0.05900849774479866, 0.08604855835437775, 0.11984247714281082, 0.2147151082754135, 0.18092799186706543, -0.0032176082022488117, 0.07576007395982742, 0.013932434841990471, -0.04745257645845413, -0.12779586017131805, -0.010633963160216808, -0.04406274855136871, 0.05023077502846718, -0.005836615338921547, 0.21804861724376678, 0.08843979984521866, -0.16896967589855194, 0.04182187095284462, -0.059799548238515854, -0.0970190092921257, -0.10030053555965424, -0.008570452220737934, -0.07480618357658386, -0.11567894369363785, 0.014117824845016003, -0.12711037695407867, 0.007539376616477966, 0.1343497484922409, 0.014231071807444096, -0.014235788956284523, 0.23880290985107422, 0.0826849639415741, 0.04272894933819771, 0.04872303083539009, 0.014085616916418076, 0.000158365088282153, -0.07163339108228683, -0.055131006985902786, 0.003136412939056754, -0.047304391860961914, 0.029024381190538406, -0.06987221539020538, -0.09563779830932617, 0.030658181756734848, -0.023544972762465477, -0.10767197608947754, 0.007981307804584503, 0.03108477219939232, 0.06609019637107849, 0.036023128777742386, 0.018627706915140152, 0.02433205209672451, -0.02777242846786976, 0.24304039776325226, -0.07263391464948654, -0.04992590472102165, -0.07806050777435303, 0.24199096858501434, 0.03537868708372116, 0.005110781639814377, 0.03666754439473152, -0.0848599448800087, 0.036929503083229065, 0.2396692931652069, 0.17356093227863312, -0.1154521256685257, 0.006770535837858915, -0.0014491804176941514, -0.002363764913752675, -0.03543607145547867, 0.07854893803596497, 0.12548679113388062, 0.06501839309930801, -0.1150435283780098, -0.04341326281428337, -0.05491940677165985, -0.004211809951812029, -0.036628950387239456, 0.055412810295820236, 0.06600547581911087, 0.01810912974178791, -0.06776869297027588, 0.06713306903839111, -0.05838552117347717, -0.12856660783290863, 0.08694373071193695, -0.20802000164985657, -0.15330663323402405, -0.0313962921500206, 0.11405601352453232, 0.004418383818119764, 0.07423638552427292, -0.03043988347053528, -0.0038023542147129774, 0.03504851087927818, -0.00551722664386034, -0.08348893374204636, -0.0813923329114914, 0.09819841384887695, -0.11499423533678055, 0.20280969142913818, -0.039276864379644394, 0.062148015946149826, 0.12804241478443146, 0.04113834351301193, -0.07031585276126862, 0.07629437744617462, 0.07119984924793243, -0.11633212119340897, 0.011280763894319534, 0.10272358357906342, -0.018941305577754974, 0.051583435386419296, 0.04827854409813881, -0.1282459944486618, 0.03177272155880928, -0.03940499573945999, -0.035038527101278305, -0.05386168882250786, -0.03247703239321709, -0.050664398819208145, 0.1184801310300827, 0.2052249014377594, -0.0266021229326725, 0.040836889296770096, -0.06610439717769623, 0.020389296114444733, 0.0666879266500473, 0.05519469454884529, -0.06609223783016205, -0.23186726868152618, 0.02623436413705349, 0.07226467877626419, -0.03243933990597725, -0.24939130246639252, -0.08645078539848328, 0.020705120638012886, -0.0699329525232315, -0.06544015556573868, 0.0569676011800766, 0.08793631941080093, 0.07109373062849045, -0.0435539148747921, -0.0758587121963501, -0.08016163855791092, 0.17409928143024445, -0.1415453851222992, -0.09332657605409622 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad This model is a fine-tuned version of [MMG/bert-base-spanish-wwm-cased-finetuned-sqac](https://huggingface.co/MMG/bert-base-spanish-wwm-cased-finetuned-sqac) on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.5325 - {'exact_match': 60.30274361400189, 'f1': 77.01962587890856} ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results ### Framework versions - Transformers 4.13.0 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["squad_es"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad
[ "transformers", "pytorch", "tensorboard", "bert", "question-answering", "generated_from_trainer", "es", "dataset:squad_es", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us
# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad This model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.5325 - {'exact_match': 60.30274361400189, 'f1': 77.01962587890856} ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results ### Framework versions - Transformers 4.13.0 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
[ "# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.5325\n- {'exact_match': 60.30274361400189, 'f1': 77.01962587890856}", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3", "### Training results", "### Framework versions\n\n- Transformers 4.13.0\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n", "# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.5325\n- {'exact_match': 60.30274361400189, 'f1': 77.01962587890856}", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3", "### Training results", "### Framework versions\n\n- Transformers 4.13.0\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ 50, 119, 6, 12, 8, 3, 90, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.5325\n- {'exact_match': 60.30274361400189, 'f1': 77.01962587890856}## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3### Training results### Framework versions\n\n- Transformers 4.13.0\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ -0.09446422755718231, 0.11219519376754761, -0.0038182432763278484, 0.0813310444355011, 0.12225735187530518, 0.02742825634777546, 0.08383046090602875, 0.1397179663181305, -0.08169767260551453, 0.07242929935455322, 0.062131475657224655, 0.058142222464084625, 0.055885493755340576, 0.07926540076732635, -0.04678269848227501, -0.19582584500312805, 0.010628705844283104, -0.00700757559388876, -0.13165809214115143, 0.09972390532493591, 0.10623541474342346, -0.09405320137739182, 0.059315480291843414, 0.013844922184944153, -0.11924106627702713, 0.05042207986116409, -0.020868321880698204, -0.029858920723199844, 0.09554298967123032, 0.07483184337615967, 0.12654846906661987, 0.009181536734104156, 0.1050407737493515, -0.26464948058128357, -0.002251686993986368, 0.06973156332969666, 0.012005575001239777, 0.0534183569252491, 0.051454585045576096, 0.01685306616127491, 0.04429037868976593, -0.10032819956541061, 0.08198479562997818, 0.020005840808153152, -0.10646140575408936, -0.13316652178764343, -0.07736990600824356, 0.050108615309000015, 0.08647362887859344, 0.10474046319723129, -0.02201016992330551, 0.13462184369564056, -0.11294430494308472, 0.0773456022143364, 0.19320791959762573, -0.28097623586654663, -0.053586289286613464, 0.056227777153253555, 0.049400415271520615, 0.015691159293055534, -0.11367626488208771, -0.015587696805596352, 0.051288314163684845, 0.02122468873858452, 0.02844768948853016, -0.008243488147854805, -0.05813011899590492, 0.03925495222210884, -0.10582481324672699, -0.07477112114429474, 0.17415814101696014, 0.06100903078913689, -0.029013000428676605, -0.12421867251396179, -0.034016989171504974, -0.12644898891448975, 0.0054618301801383495, -0.05046940967440605, 0.021475249901413918, -0.03335404396057129, -0.07413050532341003, 0.007859479635953903, -0.08752762526273727, -0.06626756489276886, 0.018356984481215477, 0.08423903584480286, 0.039919834583997726, 0.007641024421900511, -0.050298649817705154, 0.11756831407546997, -0.023988287895917892, -0.13164198398590088, -0.02845270186662674, 0.006707315798848867, -0.12645205855369568, -0.04963487386703491, -0.06891416758298874, -0.0008209465304389596, -0.004220517352223396, 0.1478816419839859, -0.03743788227438927, 0.07482051849365234, 0.05947841703891754, 0.0007639104733243585, -0.020703526213765144, 0.13870787620544434, -0.055835627019405365, -0.04974539205431938, -0.05242886394262314, 0.12720806896686554, -0.055469952523708344, -0.004776299931108952, -0.04133962094783783, 0.0019935176242142916, 0.061309754848480225, 0.03761507570743561, -0.032912157475948334, 0.056470222771167755, -0.05634896829724312, -0.02470952272415161, -0.0038332506082952023, -0.1401437669992447, 0.026551561430096626, 0.022424332797527313, -0.10981366783380508, -0.07237974554300308, 0.033867061138153076, -0.006611207965761423, -0.028990095481276512, 0.08421172201633453, -0.06701178103685379, -0.025634733960032463, -0.08626969903707504, -0.08811204880475998, 0.005836413707584143, -0.04459475725889206, 0.002009421354159713, -0.0580863319337368, -0.17299379408359528, -0.07188967615365982, 0.03993012383580208, -0.0356321781873703, -0.03217687830328941, -0.06350148469209671, -0.07634003460407257, 0.027272328734397888, -0.008420318365097046, 0.10093270242214203, -0.026410946622490883, 0.07923579216003418, 0.011165687814354897, 0.028383495286107063, 0.07401394844055176, 0.038776855915784836, -0.07021284103393555, 0.03650316596031189, -0.06359288841485977, 0.11224289238452911, -0.08388310670852661, -0.007096361368894577, -0.11399762332439423, -0.07979520410299301, -0.010529528371989727, 0.02207944355905056, 0.08561054617166519, 0.1238170936703682, -0.18476787209510803, -0.042361609637737274, 0.15480564534664154, -0.05017495155334473, -0.06069090962409973, 0.08568175137042999, -0.06702537089586258, 0.04029623419046402, 0.046475108712911606, 0.14611788094043732, 0.1480916440486908, -0.10903415083885193, -0.04340825602412224, -0.009496757760643959, 0.07084871083498001, 0.09722812473773956, 0.03824642300605774, -0.018783733248710632, 0.046427737921476364, 0.007455140817910433, -0.09505829215049744, -0.015600857324898243, -0.07971914857625961, -0.09594596177339554, -0.022527096793055534, -0.06878647208213806, 0.05587214231491089, 0.041093796491622925, 0.04355641454458237, -0.05859882012009621, -0.10655729472637177, 0.11951824277639389, 0.12179611623287201, -0.06495800614356995, -0.0007992270984686911, -0.10734287649393082, 0.029848521575331688, -0.0114938635379076, -0.01114034466445446, -0.20006628334522247, -0.11254844814538956, 0.02524247020483017, -0.060238420963287354, 0.01280564721673727, 0.09379754215478897, 0.08638180792331696, 0.04104233533143997, -0.045831721276044846, -0.03741711005568504, -0.1046772226691246, -0.018112152814865112, -0.08922132104635239, -0.18040332198143005, -0.06270831823348999, -0.03220555931329727, 0.1695621758699417, -0.2709554135799408, 0.025660330429673195, 0.015487037599086761, 0.11442779749631882, 0.016409562900662422, -0.06276730448007584, -0.025060264393687248, 0.035295192152261734, 0.0018304423429071903, -0.059998929500579834, 0.028433261439204216, 0.006295683328062296, -0.09129693359136581, -0.038605451583862305, -0.16398045420646667, 0.04686005413532257, 0.07704608142375946, 0.02483603172004223, -0.11317839473485947, -0.022544173523783684, -0.05131026357412338, -0.04241874814033508, -0.07793203741312027, -0.04673050343990326, 0.219779372215271, 0.0029250402003526688, 0.1309927999973297, -0.06826509535312653, -0.07812049984931946, -0.00870192889124155, -0.003444111440330744, 0.0033954670652747154, 0.12881657481193542, 0.02636650763452053, -0.11864829808473587, 0.08952181041240692, 0.07003112882375717, -0.015252728946506977, 0.17904168367385864, -0.057150986045598984, -0.07903233170509338, -0.03961675614118576, 0.05113903805613518, -0.0009437372209504247, 0.11369886994361877, -0.06533819437026978, 0.012670377269387245, 0.026529448106884956, 0.04023737460374832, 0.02762839011847973, -0.18353210389614105, -0.013613322749733925, 0.07107563316822052, -0.0496971420943737, -0.044799305498600006, -0.025267120450735092, 0.02429487556219101, 0.08960219472646713, 0.008556915447115898, -0.019887376576662064, -0.0007131514721550047, -0.041347961872816086, -0.10527227073907852, 0.20168614387512207, -0.09903033822774887, -0.12318003177642822, -0.1362583339214325, 0.05492835119366646, -0.024350186809897423, -0.01271820068359375, 0.018746085464954376, -0.11330950260162354, -0.04164188355207443, -0.07336319983005524, 0.010851665399968624, -0.012699203565716743, -0.034423235803842545, 0.061290543526411057, 0.0117139657959342, 0.09455049782991409, -0.13833707571029663, 0.01811479590833187, -0.025317128747701645, -0.0878215804696083, 0.0007002122583799064, 0.02396017499268055, 0.10110659897327423, 0.10992207378149033, -0.014685767702758312, 0.01956360414624214, -0.025126988068223, 0.24532447755336761, -0.0943700298666954, -0.02817254513502121, 0.08106519281864166, -0.021511409431695938, 0.039026807993650436, 0.11216278374195099, 0.03474282845854759, -0.09867915511131287, 0.024619627743959427, 0.09349334239959717, -0.005121583119034767, -0.2507188618183136, -0.015584186650812626, -0.031133709475398064, -0.061126332730054855, 0.09976851940155029, 0.030344173312187195, 0.0016620035748928785, 0.040579903870821, -0.013319136574864388, 0.03152308240532875, 0.012290905229747295, 0.0525677427649498, 0.07691552489995956, 0.03523474559187889, 0.10432589799165726, -0.03664504364132881, -0.03358824923634529, 0.04064410924911499, 0.021197548136115074, 0.25414028763771057, -0.009795334190130234, 0.13447970151901245, 0.06006550043821335, 0.11922985315322876, -0.014510340988636017, 0.03927333280444145, 0.01090774405747652, -0.027170667424798012, 0.008803775534033775, -0.052473511546850204, -0.04134431481361389, 0.03522740676999092, 0.025526126846671104, 0.03417737036943436, -0.09684576839208603, 0.04065139964222908, 0.040005579590797424, 0.2475632131099701, 0.05595771223306656, -0.25590017437934875, -0.07193439453840256, 0.014369146898388863, -0.04583561420440674, -0.04721705988049507, -0.0038036166224628687, 0.15286566317081451, -0.1345471888780594, 0.027322057634592056, -0.04441772401332855, 0.08982948958873749, -0.04872792959213257, 0.0074974363669753075, 0.06300182640552521, 0.04317880794405937, 0.001077870256267488, 0.07965010404586792, -0.20694439113140106, 0.2460782825946808, 0.017565520480275154, 0.08783336728811264, -0.05133312568068504, 0.04116230830550194, 0.009748795069754124, 0.009683790616691113, 0.1135442778468132, 0.0026679462753236294, -0.07281835377216339, -0.1989511251449585, -0.040175095200538635, 0.03533148393034935, 0.11933039128780365, -0.06446262449026108, 0.11710754036903381, -0.04013579338788986, 0.016287490725517273, 0.03835653141140938, -0.005645600613206625, -0.1044234037399292, -0.14607875049114227, 0.01369351428002119, -0.027158422395586967, -0.023943427950143814, -0.07536863535642624, -0.07823248952627182, -0.08902371674776077, 0.17287717759609222, -0.04794041067361832, -0.03194551542401314, -0.12776194512844086, 0.09874463826417923, 0.10709452629089355, -0.06809878349304199, 0.002079049590975046, 0.053721532225608826, 0.08886400610208511, 0.020338455215096474, -0.04686317592859268, 0.06139512360095978, -0.06872210651636124, -0.16414712369441986, -0.05419107899069786, 0.12279795110225677, 0.07498142123222351, 0.0640227273106575, 0.008080258965492249, 0.007013069000095129, 0.03307640925049782, -0.08253640681505203, 0.019842827692627907, 0.06176697835326195, 0.0507233589887619, 0.055563390254974365, -0.07324591279029846, 0.04138047620654106, -0.05776689574122429, -0.005740233696997166, 0.11600598692893982, 0.2285471111536026, -0.08765474706888199, 0.03156854212284088, 0.03980317711830139, -0.10284992307424545, -0.17342659831047058, 0.05372130125761032, 0.12911191582679749, 0.04918467625975609, 0.048342637717723846, -0.16640855371952057, 0.06545031815767288, 0.0909334346652031, -0.008130557835102081, 0.025646599009633064, -0.31690263748168945, -0.1380990743637085, 0.0676036924123764, 0.07744164019823074, -0.0019101409707218409, -0.13246658444404602, -0.04223888739943504, -0.009081238880753517, -0.17682740092277527, 0.0742284506559372, -0.02938830293715, 0.09715118259191513, 0.015605206601321697, 0.05846976116299629, 0.03941532224416733, -0.03577042371034622, 0.15840290486812592, 0.051726747304201126, 0.09200870990753174, -0.04053666442632675, 0.010124384425580502, 0.05932863801717758, -0.05409397929906845, 0.03463345021009445, -0.022093744948506355, 0.05157112330198288, -0.21625246107578278, -0.02300041727721691, -0.08855234831571579, 0.016373470425605774, -0.07647669315338135, -0.037427160888910294, -0.04574029520153999, 0.0528491735458374, 0.08329372853040695, -0.016191266477108, 0.010413297452032566, -0.033524639904499054, 0.09375316649675369, 0.09188053756952286, 0.10739003121852875, 0.08540231734514236, -0.15226604044437408, 0.010784448124468327, 0.015187503769993782, 0.07150434702634811, -0.13272367417812347, 0.0423956960439682, 0.14025536179542542, 0.04144541546702385, 0.16472193598747253, 0.042949169874191284, -0.061710160225629807, -0.0030953846871852875, 0.04048169031739235, -0.08913999795913696, -0.13456492125988007, -0.012580838054418564, -0.042577698826789856, -0.12894706428050995, -0.0353093184530735, 0.1083715632557869, -0.025386955589056015, -0.009283063001930714, -0.021653320640325546, 0.011512941680848598, -0.03533770889043808, 0.2269110232591629, 0.015921786427497864, 0.0908244252204895, -0.0752473995089531, 0.10199122875928879, 0.0404057651758194, -0.09410741180181503, 0.06078213080763817, 0.011534127406775951, -0.06694280356168747, -0.012602339498698711, 0.03245994448661804, 0.1516113579273224, -0.02578474022448063, -0.05071444809436798, -0.106821708381176, -0.08965703099966049, 0.06010667234659195, 0.10503556579351425, 0.052331555634737015, -0.007538361940532923, -0.023084132000803947, 0.011246617883443832, -0.11528567969799042, 0.07870064675807953, 0.08358951658010483, 0.047184668481349945, -0.10169883817434311, 0.118282251060009, 0.0006225091055966914, 0.017917059361934662, 0.004315651953220367, 0.017704658210277557, -0.11239458620548248, 0.003810902824625373, -0.07342053949832916, -0.0023800597991794348, -0.0037857387214899063, 0.00013094725727569312, -0.003329874947667122, -0.020354492589831352, -0.03330914303660393, 0.0354456752538681, -0.09528248757123947, -0.04788389056921005, 0.02420022524893284, 0.057904958724975586, -0.12848186492919922, -0.011189563199877739, 0.04880968853831291, -0.10907942056655884, 0.062171243131160736, 0.05038457363843918, 0.019742626696825027, 0.04338614270091057, -0.06783948838710785, -0.0149260638281703, 0.010567579418420792, 0.033830612897872925, 0.0376540906727314, -0.10892167687416077, 0.019258741289377213, -0.04891553893685341, 0.03535151109099388, 0.013751810416579247, 0.02768159843981266, -0.11523555219173431, -0.008577477186918259, -0.029198724776506424, -0.04185184836387634, -0.06978360563516617, 0.04084361344575882, 0.07476367056369781, 0.036642611026763916, 0.16621607542037964, -0.07134446501731873, 0.04789130017161369, -0.22660484910011292, -0.03545142710208893, 0.028525246307253838, -0.025313623249530792, -0.013983557000756264, -0.04978996142745018, 0.0867207869887352, -0.069344662129879, 0.09043274819850922, -0.03493082895874977, 0.06555221229791641, 0.033544525504112244, -0.07274449616670609, 0.007967788726091385, 0.01335132960230112, 0.15511280298233032, 0.04789015278220177, -0.012072284705936909, 0.051681507378816605, -0.007141200825572014, 0.0359271839261055, 0.06784368306398392, 0.15345536172389984, 0.18104028701782227, -0.026345478370785713, 0.06794805824756622, 0.06291157752275467, -0.12460048496723175, -0.10726968199014664, 0.08492296934127808, -0.08209281414747238, 0.10007967799901962, -0.05370659753680229, 0.09963848441839218, 0.10863570123910904, -0.20496618747711182, 0.08947692811489105, -0.08705303817987442, -0.10668418556451797, -0.1162523701786995, -0.05720369145274162, -0.0800544023513794, -0.09727075695991516, 0.0532170906662941, -0.1366032361984253, 0.05314120650291443, 0.12088217586278915, 0.021083517000079155, 0.019554471597075462, 0.159628227353096, -0.07558439671993256, 0.005179939325898886, 0.0475805327296257, -0.0045064217410981655, 0.023685336112976074, -0.07990441471338272, -0.03085005283355713, 0.06931065768003464, -0.014140263199806213, 0.06719911098480225, -0.043293945491313934, 0.012745770625770092, 0.0223142858594656, 0.0013260546838864684, -0.05345875024795532, 0.006013637408614159, 0.006881380919367075, 0.03584769740700722, 0.04790487140417099, 0.053510162979364395, 0.013090583495795727, -0.04961887747049332, 0.23778136074543, -0.07335858792066574, -0.08550230413675308, -0.19025102257728577, 0.1383340060710907, 0.052249886095523834, 0.031671442091464996, 0.06349404901266098, -0.10612288862466812, 0.019134841859340668, 0.1792537420988083, 0.14760345220565796, -0.06418530642986298, -0.00016750711074564606, 0.01091026235371828, -0.0013562192907556891, -0.030913425609469414, 0.07748845964670181, 0.08063217997550964, 0.059198517352342606, -0.06266546249389648, -0.036517638713121414, -0.014670141041278839, -0.04131055250763893, 0.0018765379209071398, 0.1256410777568817, 0.0350445993244648, 0.0042204163037240505, -0.03888532891869545, 0.04423605278134346, 0.028224891051650047, -0.18022297322750092, 0.07998054474592209, -0.1818598359823227, -0.14867712557315826, -0.03723789379000664, 0.0661364421248436, -0.0009592981077730656, 0.07144208252429962, -0.013968083076179028, -0.03265282139182091, 0.12354745715856552, -0.0063910395838320255, -0.05808432772755623, -0.11368892341852188, 0.07151960581541061, -0.06398431956768036, 0.18496444821357727, 0.000791593745816499, 0.08174379169940948, 0.107791967689991, 0.019191259518265724, -0.07469367980957031, 0.04799039661884308, 0.08371778577566147, -0.07772466540336609, -0.0022691849153488874, 0.15861302614212036, -0.03147602826356888, 0.14284811913967133, 0.047276824712753296, -0.15255111455917358, 0.034429337829351425, -0.03811940550804138, -0.01458036806434393, -0.08924192935228348, 0.014828875660896301, -0.05394836887717247, 0.15292024612426758, 0.24980470538139343, -0.016319308429956436, 0.027258386835455894, -0.058803215622901917, 0.0412798672914505, 0.037783313542604446, 0.08842736482620239, -0.0365610346198082, -0.195504292845726, 0.03233366459608078, -0.004203517455607653, 0.021804949268698692, -0.22457104921340942, -0.11194603890180588, 0.09340249001979828, -0.07322084158658981, -0.0215372946113348, 0.1189335435628891, 0.09206856787204742, 0.058644723147153854, -0.04171137884259224, -0.12351807206869125, -0.02957182750105858, 0.15060825645923615, -0.11705554276704788, -0.06978271156549454 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es This model is a fine-tuned version of [MMG/bert-base-spanish-wwm-cased-finetuned-sqac](https://huggingface.co/MMG/bert-base-spanish-wwm-cased-finetuned-sqac) on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.2584 - {'exact': 63.358070500927646, 'f1': 70.22498384623977} ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["squad_es"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es
[ "transformers", "pytorch", "tensorboard", "bert", "question-answering", "generated_from_trainer", "es", "dataset:squad_es", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us
# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es This model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.2584 - {'exact': 63.358070500927646, 'f1': 70.22498384623977} ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
[ "# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2584\n- {'exact': 63.358070500927646, 'f1': 70.22498384623977}", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n", "# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2584\n- {'exact': 63.358070500927646, 'f1': 70.22498384623977}", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ 50, 121, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n# bert-base-spanish-wwm-cased-finetuned-sqac-finetuned-squad2-es\n\nThis model is a fine-tuned version of MMG/bert-base-spanish-wwm-cased-finetuned-sqac on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2584\n- {'exact': 63.358070500927646, 'f1': 70.22498384623977}### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ -0.21461531519889832, 0.03689654543995857, -0.003295170608907938, 0.10319581627845764, 0.10504983365535736, 0.0419212244451046, 0.026177017018198967, 0.09456291794776917, -0.034345269203186035, 0.06843622773885727, 0.08990349620580673, 0.12441868335008621, 0.040048714727163315, 0.022991560399532318, -0.0729888528585434, -0.12951309978961945, 0.06770046800374985, 0.09937333315610886, -0.08577850461006165, 0.11925803124904633, 0.07393302768468857, -0.07988981157541275, 0.059588175266981125, 0.05137035995721817, -0.13610433042049408, 0.02547648176550865, 0.07455021888017654, -0.05090056359767914, 0.10528302937746048, 0.05112866312265396, 0.16872364282608032, 0.0488661490380764, 0.014650831930339336, -0.08305320888757706, 0.006810534279793501, 0.026413224637508392, -0.013267586939036846, 0.08272489160299301, 0.07213947176933289, 0.036323219537734985, -0.025431497022509575, -0.044632311910390854, -0.03093673847615719, 0.04814036935567856, -0.10478337854146957, -0.155483216047287, -0.09572891891002655, 0.03722243010997772, 0.05807872489094734, 0.08672324568033218, -0.01634940505027771, 0.20152221620082855, -0.06410650163888931, 0.05639449506998062, 0.22365081310272217, -0.39286038279533386, -0.014627795666456223, 0.04690347984433174, -0.0030015252996236086, -0.07966317981481552, -0.04297494515776634, 0.009782802313566208, 0.052738770842552185, 0.017430147156119347, -0.0368957482278347, -0.05899826064705849, -0.11239218711853027, 0.026568209752440453, -0.10077125579118729, -0.05696195363998413, 0.22363878786563873, 0.025980424135923386, -0.07615736126899719, -0.020045766606926918, -0.06930753588676453, -0.07230741530656815, -0.0072442046366631985, -0.024335388094186783, -0.0262607354670763, -0.04541332274675369, -0.07941550761461258, 0.05506023019552231, -0.10440356284379959, -0.09067995846271515, -0.12609505653381348, 0.16286249458789825, 0.002849794225767255, 0.0852198377251625, -0.0867157056927681, 0.11876342445611954, -0.1058853343129158, -0.1012374758720398, -0.015996767207980156, -0.0315185971558094, -0.08769478648900986, 0.009595129638910294, -0.09477623552083969, -0.0448603555560112, 0.011612633243203163, 0.05265603959560394, -0.11625144630670547, 0.014119638130068779, 0.07610351592302322, 0.033099278807640076, 0.0077272700145840645, 0.08066239953041077, -0.12909471988677979, 0.006127623375505209, 0.019124237820506096, 0.042443834245204926, 0.009926356375217438, -0.024527734145522118, -0.027728214859962463, -0.10659504681825638, 0.10466942191123962, 0.009004451334476471, 0.029887745156884193, 0.06553385406732559, -0.06813815236091614, -0.07068116962909698, 0.09269867092370987, -0.10242940485477448, -0.0007564988918602467, 0.005243661347776651, -0.10160168260335922, 0.05686435103416443, 0.056561179459095, -0.05063053220510483, -0.07190987467765808, 0.023823434486985207, -0.12759245932102203, -0.029234321787953377, -0.05158541724085808, -0.13278168439865112, 0.0568760447204113, -0.12130586802959442, -0.02159803733229637, -0.0989585742354393, -0.15958335995674133, 0.024552736431360245, -0.018328292295336723, -0.024661840870976448, 0.004539395682513714, -0.019686512649059296, -0.07072029262781143, 0.0325503870844841, -0.02626981772482395, -0.019865257665514946, 0.0009035800467245281, 0.09376144409179688, 0.08945834636688232, 0.04628882557153702, -0.11615117639303207, 0.027678176760673523, -0.07755331695079803, 0.04517730697989464, -0.11887557059526443, 0.10174039751291275, -0.07731572538614273, -0.0527510903775692, -0.08489283174276352, -0.07753229141235352, 0.01148180104792118, 0.004184427205473185, 0.1409226655960083, 0.17556722462177277, -0.16667993366718292, -0.058920178562402725, 0.10779839009046555, -0.11198649555444717, -0.08948095887899399, 0.09411752969026566, -0.03526195511221886, -0.03357066586613655, 0.03189680352807045, 0.11749637871980667, 0.09258376806974411, -0.04499991610646248, -0.13966630399227142, 0.003707217751070857, 0.007770126219838858, -0.12389876693487167, 0.04916471615433693, -0.009471162222325802, -0.06320340931415558, 0.04490591585636139, -0.13195379078388214, -0.003870912827551365, -0.11360443383455276, -0.06632829457521439, -0.062287479639053345, -0.04746434837579727, 0.17205172777175903, 0.043130356818437576, 0.0915214866399765, -0.03695642575621605, -0.0664217546582222, 0.1402081996202469, 0.10567164421081543, -0.04239979758858681, 0.006622005719691515, -0.13089165091514587, 0.16274531185626984, -0.2088817059993744, -0.0074509913101792336, -0.21694278717041016, -0.12047503143548965, 0.00007721637666691095, 0.013390309177339077, -0.021800115704536438, 0.06380819529294968, 0.07819133251905441, 0.022028472274541855, -0.042132481932640076, -0.008535083383321762, -0.05798415467143059, -0.0014542231801897287, -0.09655778855085373, -0.1493459939956665, -0.1308753490447998, -0.019995959475636482, 0.06576753407716751, -0.15816938877105713, 0.011135639622807503, 0.08361367881298065, 0.08911969512701035, -0.03453771397471428, -0.020472709089517593, -0.009631352499127388, 0.06343261897563934, -0.017105145379900932, -0.00448957784101367, 0.05753052234649658, 0.013129189610481262, -0.10073628276586533, -0.022243976593017578, -0.12480689585208893, 0.09642413258552551, 0.12343429774045944, -0.06999080628156662, -0.031105458736419678, -0.0024060881696641445, -0.03175971284508705, -0.025633808225393295, -0.03521542623639107, -0.05793043598532677, 0.06295914947986603, 0.01616603322327137, 0.1254802793264389, -0.09958726167678833, -0.006305339280515909, 0.053716693073511124, -0.03477359563112259, -0.0295699555426836, 0.09488502889871597, -0.010402938351035118, -0.10217124223709106, 0.0950644388794899, 0.08963589370250702, -0.05947442352771759, 0.1175750344991684, -0.0458170585334301, -0.08008120954036713, -0.05038094520568848, 0.010410076007246971, 0.027154570445418358, 0.1741635948419571, -0.09791405498981476, 0.020332301035523415, 0.07479283213615417, 0.037010207772254944, 0.04365112632513046, -0.15190760791301727, -0.016347117722034454, 0.01220994908362627, -0.02723332680761814, -0.13126492500305176, 0.03933672979474068, 0.03558429703116417, 0.11227262020111084, -0.02152465656399727, -0.0315210334956646, 0.0644037202000618, -0.010368566028773785, -0.08691025525331497, 0.20250730216503143, -0.1076597198843956, -0.15413524210453033, -0.19014935195446014, 0.032152239233255386, -0.11909697949886322, -0.013890032656490803, 0.019198376685380936, -0.08681585639715195, -0.020613674074411392, -0.004462628159672022, 0.07343501597642899, -0.009000267833471298, 0.023175252601504326, 0.05582701787352562, -0.05395016074180603, 0.07775967568159103, -0.12737828493118286, 0.005194710101932287, -0.051060598343610764, -0.07603485137224197, 0.037421151995658875, -0.020318880677223206, 0.09983110427856445, 0.1153823733329773, -0.045941874384880066, 0.024484647437930107, -0.015376659110188484, 0.21677902340888977, -0.009248948656022549, -0.008479594253003597, 0.1415521800518036, -0.0011441040551289916, 0.024691306054592133, 0.0519530363380909, 0.05505761131644249, -0.044811099767684937, -0.04441562294960022, 0.018438691273331642, -0.035882603377103806, -0.2300010770559311, -0.061683692038059235, -0.05413809046149254, 0.000252310506766662, 0.014728180132806301, 0.004679407458752394, 0.04509609937667847, 0.1229725331068039, 0.005143021233379841, 0.03408578783273697, -0.09671039879322052, 0.047303516417741776, 0.17144370079040527, 0.0398264117538929, 0.12587890028953552, -0.07755017280578613, 0.019246172159910202, 0.07157378643751144, 0.07319524884223938, 0.16096597909927368, -0.057316854596138, 0.1440540999174118, 0.0617075189948082, 0.2174641489982605, 0.03351406008005142, 0.15408627688884735, -0.027817154303193092, -0.015211501158773899, 0.032217372208833694, -0.055800165981054306, -0.10286246985197067, -0.05839760974049568, -0.03617040440440178, 0.08730347454547882, -0.16768881678581238, 0.011315505020320415, 0.04244184121489525, 0.17417439818382263, 0.12990668416023254, -0.3034948408603668, -0.1361330896615982, -0.006839065346866846, 0.03379443660378456, -0.049086254090070724, -0.031399376690387726, 0.11838781833648682, -0.06537487357854843, 0.02456234022974968, -0.07064506411552429, 0.09222041070461273, -0.034185148775577545, 0.015076803043484688, -0.005445684771984816, 0.05752025544643402, 0.012810849584639072, 0.07258909940719604, -0.12838105857372284, 0.24525532126426697, 0.062082286924123764, 0.04715884476900101, -0.03861943259835243, 0.001781481085345149, -0.0044807191006839275, 0.06406120955944061, 0.1109255701303482, 0.019985655322670937, 0.049929313361644745, -0.1380024403333664, -0.06812749058008194, 0.02576884627342224, 0.016010602936148643, 0.048498399555683136, 0.11614301055669785, 0.01121742743998766, 0.01082175225019455, 0.03430597856640816, 0.09225869178771973, -0.06966562569141388, -0.07803332805633545, 0.061861954629421234, 0.07244537770748138, -0.07464449107646942, -0.04673483222723007, -0.10720816254615784, -0.07838009297847748, 0.17886964976787567, -0.1155446395277977, -0.0728759765625, -0.11956164240837097, 0.08854734152555466, 0.17197395861148834, -0.08598066121339798, 0.01807301491498947, -0.007489904761314392, 0.027652312070131302, -0.0037598321214318275, -0.13043054938316345, 0.09466907382011414, -0.09822412580251694, -0.08897991478443146, -0.01000090129673481, 0.11714795231819153, 0.03675543889403343, 0.01575120911002159, 0.018638595938682556, -0.01954476535320282, 0.019067035987973213, -0.11544523388147354, -0.011381469666957855, -0.011849910020828247, 0.029187709093093872, 0.041952818632125854, -0.0014268560335040092, -0.009757140651345253, -0.024719249457120895, 0.09060930460691452, 0.12725330889225006, 0.16607990860939026, -0.10898298025131226, 0.0002982566657010466, 0.13717831671237946, -0.027454959228634834, -0.19145217537879944, 0.016724735498428345, 0.049815211445093155, 0.040205638855695724, -0.030226364731788635, -0.0767822116613388, 0.11197470128536224, 0.10425601154565811, -0.00823023822158575, 0.038482896983623505, -0.26749110221862793, -0.08148130774497986, 0.12469273060560226, 0.10396493226289749, 0.2438146024942398, -0.12310904264450073, -0.0714256539940834, 0.009976218454539776, -0.2895808517932892, 0.1542350798845291, -0.06579279154539108, 0.09646601974964142, -0.04438386112451553, 0.08573992550373077, 0.02797609567642212, -0.054785870015621185, 0.17128115892410278, 0.07206254452466965, 0.042873531579971313, 0.004633716307580471, 0.003308511571958661, 0.17727865278720856, -0.03605424240231514, 0.08616269379854202, 0.06456484645605087, 0.05317585542798042, -0.19724561274051666, -0.011914835311472416, -0.1122039332985878, 0.051617346704006195, -0.061847954988479614, -0.012604723684489727, 0.02352004311978817, 0.0017097750678658485, -0.017089124768972397, -0.02727518603205681, 0.050012703984975815, 0.008160327561199665, 0.07908380776643753, 0.16488409042358398, 0.1286417841911316, -0.0036264595109969378, -0.11743807047605515, 0.05048225820064545, -0.027730921283364296, 0.12221754342317581, -0.05132957175374031, 0.050433799624443054, 0.13496239483356476, 0.039349574595689774, 0.048505593091249466, 0.08313429355621338, -0.0593649297952652, 0.004101957660168409, 0.04842261224985123, -0.13403935730457306, -0.08602544665336609, -0.005779447965323925, -0.0018973855767399073, -0.0969357118010521, 0.1298174113035202, 0.13763849437236786, -0.009006506763398647, -0.023185407742857933, -0.0051719872280955315, -0.04170616716146469, -0.05989396572113037, 0.23911774158477783, 0.03912852331995964, 0.07333114743232727, -0.1187855526804924, 0.1051463633775711, -0.017556313425302505, -0.11602535098791122, 0.014114848338067532, -0.006230875849723816, -0.1101873368024826, -0.04108571261167526, -0.07779153436422348, 0.060908008366823196, -0.19431859254837036, -0.08321261405944824, -0.10589023679494858, -0.11609544605016708, 0.046590324491262436, 0.18675073981285095, 0.08267281949520111, 0.06746027618646622, -0.034697022289037704, -0.04776566103100777, -0.10028145462274551, 0.01081704068928957, 0.12481039017438889, 0.06125130504369736, -0.1265294849872589, 0.07577953487634659, -0.03861735016107559, 0.11022335290908813, -0.023874470964074135, -0.005227728746831417, -0.11546111851930618, -0.0003785761073231697, -0.1320827454328537, -0.004619515500962734, -0.09833300113677979, -0.04236830025911331, -0.011337601579725742, -0.033163972198963165, -0.04524952918291092, 0.0590796172618866, -0.06137215346097946, 0.0019739503040909767, 0.051883503794670105, -0.020200498402118683, -0.11364330351352692, 0.007494593039155006, 0.019850481301546097, -0.055576127022504807, 0.07905756682157516, 0.12342888116836548, 0.008458225056529045, 0.07548236846923828, -0.04684581980109215, -0.05252153053879738, 0.00013863817730452865, 0.005547377280890942, 0.08934550732374191, -0.046475447714328766, 0.04288677126169205, 0.018826276063919067, 0.030852990224957466, -0.0023265082854777575, 0.1236354410648346, -0.08532775938510895, -0.03877944126725197, 0.001427536946721375, 0.019094662740826607, -0.10637177526950836, 0.03326623514294624, 0.17100557684898376, 0.053617898374795914, 0.10499865561723709, -0.04416976124048233, 0.012438442558050156, -0.16771602630615234, -0.011457704938948154, -0.020460238680243492, -0.08033986389636993, -0.0091981440782547, -0.015462676994502544, 0.07608352601528168, -0.03846161440014839, 0.06700164079666138, -0.131627157330513, 0.06652208417654037, -0.010178622789680958, -0.001445216592401266, 0.04336263984441757, -0.008181086741387844, 0.20025932788848877, 0.027995174750685692, -0.01931694895029068, -0.013447800651192665, 0.08929362148046494, 0.015199285931885242, 0.14814800024032593, 0.1831759810447693, 0.09209802746772766, -0.0500047467648983, 0.14176690578460693, 0.04125277325510979, -0.03759090229868889, -0.05458998680114746, -0.05451058968901634, -0.0815381333231926, 0.05272691696882248, 0.0044744061306118965, 0.04694059491157532, 0.12472588568925858, -0.09639552235603333, 0.09383327513933182, -0.02789098583161831, -0.09766130149364471, -0.09598653763532639, -0.1247701421380043, -0.03314701095223427, -0.11104374378919601, 0.008563636802136898, -0.1301814764738083, -0.026234522461891174, 0.10738038271665573, 0.03947658836841583, -0.007535582408308983, 0.1880377233028412, -0.04611904174089432, 0.006033699493855238, 0.0377015694975853, 0.005356257781386375, 0.0388450063765049, 0.06361237168312073, 0.006589038297533989, 0.056267429143190384, 0.018945245072245598, 0.03703343868255615, -0.004275342915207148, 0.03582439944148064, 0.05806518346071243, 0.025205353274941444, -0.08206532150506973, -0.041871681809425354, 0.032189540565013885, 0.0555107481777668, 0.10196932405233383, 0.015361132100224495, 0.02085314318537712, -0.06180345267057419, 0.1397228240966797, -0.06490009278059006, -0.034568458795547485, -0.14453500509262085, 0.1418331414461136, 0.006229565478861332, 0.01426373329013586, 0.040651462972164154, -0.09891639649868011, 0.03369120508432388, 0.18777677416801453, 0.16725336015224457, -0.03212307393550873, -0.012913644313812256, 0.0022809298243373632, 0.0018622998613864183, 0.005488281138241291, 0.06560457497835159, 0.023334184661507607, 0.2151780128479004, -0.08631211519241333, -0.08095916360616684, -0.08211240917444229, 0.0200634878128767, 0.014814327470958233, 0.08940458297729492, 0.02668175660073757, -0.044696222990751266, -0.06682614982128143, 0.019940942525863647, -0.010443695820868015, -0.038040075451135635, 0.09804652631282806, -0.11482179909944534, -0.10760203003883362, -0.055117521435022354, 0.012543562799692154, -0.011530623771250248, 0.08340415358543396, -0.06342024356126785, 0.02168276719748974, 0.1342209428548813, 0.01871594786643982, -0.13929717242717743, -0.0798492357134819, 0.07182930409908295, -0.010151410475373268, 0.0876636952161789, 0.0024164074566215277, 0.12869293987751007, 0.10740337520837784, 0.0552666112780571, -0.10476876050233841, 0.02220245636999607, 0.021621759980916977, -0.06237650290131569, 0.009277462027966976, 0.09401942789554596, 0.0418926365673542, 0.04758239537477493, -0.03051690012216568, -0.20311106741428375, -0.0192351546138525, 0.030703390017151833, 0.002367928624153137, -0.06660269945859909, 0.010901014320552349, -0.04657137766480446, 0.1292029619216919, 0.14844784140586853, -0.04430650547146797, -0.0012127107474952936, -0.07808026671409607, 0.03546255826950073, 0.04320210963487625, 0.01318676583468914, -0.01472962275147438, -0.17474989593029022, 0.04940015450119972, 0.005609714891761541, -0.010257369838654995, -0.18832820653915405, -0.0600045770406723, 0.032128240913152695, -0.0904889702796936, -0.028113294392824173, 0.03769679740071297, 0.08887691795825958, 0.09538900852203369, -0.02221599593758583, 0.07303602248430252, -0.048445701599121094, 0.11989594250917435, -0.08864563703536987, -0.12075965851545334 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-sqac This model is a fine-tuned version of [dccuchile/bert-base-spanish-wwm-cased](https://huggingface.co/dccuchile/bert-base-spanish-wwm-cased) on the sqac dataset. It achieves the following results on the evaluation set: {'exact_match': 62.017167, 'f1': 79.452767} ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 1.1335 | 1.0 | 1230 | 0.9346 | | 0.6794 | 2.0 | 2460 | 0.8634 | | 0.3992 | 3.0 | 3690 | 0.9662 | ### Framework versions - Transformers 4.12.5 - Pytorch 1.10.0+cu111 - Datasets 1.16.1 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["sqac"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-sqac", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-sqac
[ "transformers", "pytorch", "tensorboard", "bert", "question-answering", "generated_from_trainer", "es", "dataset:sqac", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us
bert-base-spanish-wwm-cased-finetuned-sqac ========================================== This model is a fine-tuned version of dccuchile/bert-base-spanish-wwm-cased on the sqac dataset. It achieves the following results on the evaluation set: {'exact\_match': 62.017167, 'f1': 79.452767} Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3 ### Training results ### Framework versions * Transformers 4.12.5 * Pytorch 1.10.0+cu111 * Datasets 1.16.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ 49, 98, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3### Training results### Framework versions\n\n\n* Transformers 4.12.5\n* Pytorch 1.10.0+cu111\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ -0.10410391539335251, 0.05909297615289688, -0.0017241159221157432, 0.11137128621339798, 0.19016729295253754, 0.03664368391036987, 0.10256820917129517, 0.10778485238552094, -0.0897376760840416, 0.04418395832180977, 0.13412606716156006, 0.1507870852947235, -0.0029202376026660204, 0.06095942482352257, -0.05196503549814224, -0.23770250380039215, -0.03446890413761139, 0.04739252105355263, -0.12224168330430984, 0.13406185805797577, 0.06796438992023468, -0.16827282309532166, 0.07646852731704712, -0.014387778006494045, -0.24030740559101105, 0.024083798751235008, 0.011946814134716988, -0.043506037443876266, 0.1445455402135849, 0.007687385194003582, 0.16575664281845093, 0.0021258490160107613, 0.09545601159334183, -0.17223091423511505, 0.0170605406165123, 0.050622694194316864, 0.014370087534189224, 0.08411331474781036, 0.05169527605175972, -0.00578664243221283, 0.0780314952135086, -0.10076861083507538, 0.05297255143523216, 0.004852738697081804, -0.13711892068386078, -0.20906215906143188, -0.07427150756120682, -0.008840460330247879, 0.05247950181365013, 0.11248116195201874, -0.015515205450356007, 0.16096355020999908, -0.11957365274429321, 0.09539879113435745, 0.2511965334415436, -0.26569318771362305, -0.09054840356111526, 0.03973492234945297, 0.006962419953197241, 0.09415658563375473, -0.12206394225358963, -0.021760091185569763, 0.06402258574962616, 0.05181903764605522, 0.09794367849826813, -0.03877667710185051, -0.10499320179224014, 0.05073805898427963, -0.14945274591445923, -0.020614387467503548, 0.08132327347993851, 0.03698384761810303, -0.014966057613492012, 0.0005442769033834338, -0.07016146928071976, -0.14407654106616974, -0.023139115422964096, -0.029744476079940796, 0.043627794831991196, -0.07042916864156723, -0.13075344264507294, 0.004788087215274572, -0.10940515995025635, -0.08209242671728134, -0.06467800587415695, 0.15994387865066528, 0.04052538797259331, 0.02516356110572815, -0.05756886303424835, 0.10798416286706924, 0.005134230479598045, -0.14167015254497528, 0.040187470614910126, 0.033521510660648346, -0.0459558367729187, -0.051293835043907166, -0.060342609882354736, -0.08471906930208206, 0.011672517284750938, 0.08505745232105255, -0.07163155823945999, 0.04640719294548035, 0.05605660751461983, 0.03245186805725098, -0.08350013941526413, 0.18496686220169067, -0.06571356952190399, -0.019740069285035133, -0.028843069449067116, 0.056487105786800385, -0.03480547294020653, -0.001704502385109663, -0.09061942249536514, -0.0040591987781226635, 0.09469427913427353, 0.01151658408343792, -0.057421084493398666, 0.05036396533250809, -0.03131137415766716, -0.013920286670327187, -0.05660955235362053, -0.08378167450428009, 0.03968295082449913, 0.0010561248054727912, -0.09578917175531387, 0.007485697511583567, -0.005367608275264502, 0.0063734594732522964, -0.000036701800127048045, 0.1447320580482483, -0.10811874270439148, 0.041839662939310074, -0.10710880160331726, -0.11209490150213242, 0.00964572373777628, -0.0668809562921524, 0.027796030044555664, -0.08502355217933655, -0.12329384684562683, -0.021771159023046494, 0.05098104849457741, -0.041138794273138046, -0.013177872635424137, -0.04874567687511444, -0.09306275099515915, -0.004284991882741451, -0.013261976651847363, 0.1734040379524231, -0.05151494964957237, 0.12969759106636047, 0.057239748537540436, 0.0762595534324646, -0.02381013333797455, 0.045580826699733734, -0.08710043132305145, 0.012831349857151508, -0.19290587306022644, 0.040814414620399475, -0.057480502873659134, 0.06018752604722977, -0.0860997885465622, -0.12866777181625366, 0.0097037423402071, -0.00705132307484746, 0.10173756629228592, 0.10648582875728607, -0.17070145905017853, -0.07683522999286652, 0.15898263454437256, -0.04010526463389397, -0.11265268921852112, 0.12808848917484283, -0.07018230855464935, 0.029575267806649208, 0.0666477382183075, 0.16608814895153046, 0.030479170382022858, -0.09883003681898117, 0.0009545900393277407, -0.022945446893572807, 0.06147133558988571, -0.03777613490819931, 0.05089820921421051, 0.015673281624913216, 0.021854262799024582, 0.017383478581905365, -0.054868388921022415, 0.0626126080751419, -0.1365150362253189, -0.08721131086349487, -0.0342223234474659, -0.11338016390800476, 0.06257029622793198, 0.08803185075521469, 0.09006375819444656, -0.09797341376543045, -0.06962503492832184, 0.08649807423353195, 0.05528134107589722, -0.06493173539638519, 0.016606615856289864, -0.062351472675800323, 0.06378921121358871, -0.092803455889225, -0.038432374596595764, -0.19543954730033875, -0.0504891574382782, -0.007110543083399534, 0.04630553722381592, 0.019919641315937042, 0.047772545367479324, 0.09696603566408157, 0.04911757633090019, -0.06723476201295853, -0.017374353483319283, -0.054680392146110535, -0.011436093598604202, -0.1477745771408081, -0.19640134274959564, -0.03152448683977127, -0.0172968041151762, 0.07780758291482925, -0.2056766152381897, 0.016775254160165787, -0.023052558302879333, 0.08656584471464157, 0.009390772320330143, -0.018628612160682678, -0.05021029710769653, 0.08960505574941635, -0.011072254739701748, -0.041034579277038574, 0.054509226232767105, -0.024475526064634323, -0.08067616075277328, -0.08966657519340515, -0.08472983539104462, 0.1753239631652832, 0.13067853450775146, -0.1505434662103653, -0.09280428290367126, 0.012277068570256233, -0.0682002454996109, -0.024676593020558357, -0.05749303102493286, 0.03679809346795082, 0.1957697570323944, -0.0019509904086589813, 0.125573068857193, -0.07032995671033859, -0.04553435370326042, 0.011618114076554775, -0.033339377492666245, 0.04606904089450836, 0.13493070006370544, 0.13012900948524475, -0.07811087369918823, 0.1327672004699707, 0.13775581121444702, -0.11224499344825745, 0.12441849708557129, -0.040899161249399185, -0.10237301886081696, -0.033330414444208145, -0.005101262126117945, -0.00133254483807832, 0.14012743532657623, -0.1361446976661682, -0.0069475253112614155, 0.006125910207629204, 0.01910453848540783, 0.02785535715520382, -0.23218899965286255, -0.06887397170066833, 0.025674907490611076, -0.01906125620007515, -0.03224365413188934, -0.017782311886548996, 0.02884576842188835, 0.11548086255788803, -0.00315847247838974, -0.05259275063872337, 0.013151808641850948, -0.0054857744835317135, -0.06512165814638138, 0.22762951254844666, -0.0555291548371315, -0.0804157480597496, -0.07614906132221222, -0.045684054493904114, -0.026007123291492462, -0.0019392268732190132, 0.04264442250132561, -0.13182689249515533, -0.004285816103219986, -0.020505957305431366, 0.05199902504682541, -0.0074415807612240314, 0.04831033572554588, 0.01042507030069828, -0.011192201636731625, 0.0631977841258049, -0.10993003100156784, 0.011980360373854637, -0.07205574959516525, -0.07835107296705246, 0.055501025170087814, 0.053233396261930466, 0.14194026589393616, 0.15007711946964264, -0.031453028321266174, 0.006124846171587706, -0.019434379413723946, 0.27650317549705505, -0.08687111735343933, -0.05467263609170914, 0.08907444030046463, -0.01888592541217804, 0.04610864073038101, 0.09136436879634857, 0.08550278842449188, -0.10362027585506439, 0.009158768691122532, 0.04906117916107178, -0.040984902530908585, -0.22540880739688873, -0.017103537917137146, -0.048426344990730286, -0.035820603370666504, 0.06884028017520905, 0.012898405082523823, 0.0028336544055491686, 0.07395672798156738, 0.05528141185641289, 0.060860760509967804, -0.08192455768585205, 0.03386520966887474, 0.061673615127801895, 0.040015511214733124, 0.1102176308631897, -0.03698171302676201, -0.0906241312623024, 0.0153419878333807, -0.009874659590423107, 0.24166090786457062, -0.015159955248236656, 0.10839666426181793, 0.05998293682932854, 0.1990327537059784, -0.01025681383907795, 0.08477824926376343, -0.009712633676826954, -0.06952465325593948, 0.0002121042925864458, -0.029311470687389374, -0.027935121208429337, 0.008380724117159843, -0.016441717743873596, 0.07157047837972641, -0.11539297550916672, -0.00937905628234148, 0.06517496705055237, 0.227426216006279, 0.027101101353764534, -0.2987036108970642, -0.08101513236761093, -0.005591853987425566, -0.0320693776011467, 0.0010798255680128932, 0.011084913276135921, 0.164907306432724, -0.08669827878475189, -0.013340653851628304, -0.07537263631820679, 0.0905580073595047, -0.019743233919143677, 0.04418530687689781, 0.0660323053598404, 0.09214123338460922, -0.010439041070640087, 0.07163085788488388, -0.3085983991622925, 0.3008536994457245, 0.012657543644309044, 0.0833410695195198, -0.07059416174888611, -0.03096889704465866, 0.013404839672148228, 0.008179622702300549, 0.0713036060333252, -0.014395195990800858, 0.008427704684436321, -0.2111915946006775, -0.027011405676603317, 0.04976426437497139, 0.13214333355426788, -0.02227071486413479, 0.11713641881942749, 0.004090981557965279, 0.007982200011610985, 0.07855570316314697, 0.00242122495546937, -0.045072950422763824, -0.06763564050197601, -0.02617787756025791, -0.007451263722032309, -0.07257694005966187, -0.05397777259349823, -0.11449944972991943, -0.12854203581809998, 0.10359897464513779, 0.0009244222310371697, -0.01790611632168293, -0.11334817856550217, 0.12381047755479813, 0.10610964149236679, -0.08193603903055191, 0.017639778554439545, 0.039363350719213486, 0.03611772134900093, 0.041908323764801025, -0.04583447799086571, 0.10938311368227005, -0.058774664998054504, -0.16070321202278137, -0.05826275795698166, 0.09477078169584274, 0.06949876248836517, 0.07925132662057877, -0.01908138021826744, 0.012143370695412159, -0.03357189521193504, -0.09639676660299301, 0.04622245952486992, -0.05335449427366257, 0.07535208016633987, 0.03111932799220085, -0.028780298307538033, 0.053408313542604446, -0.06132654845714569, -0.001228615758009255, 0.18966752290725708, 0.23504887521266937, -0.09050669521093369, -0.02932789735496044, 0.03330716863274574, -0.05553819239139557, -0.17699050903320312, 0.10688841342926025, 0.0883440226316452, 0.008329780772328377, 0.05427950248122215, -0.1598694771528244, 0.1476311832666397, 0.09965198487043381, 0.0066892169415950775, 0.09589925408363342, -0.3540853261947632, -0.1149248480796814, 0.07969855517148972, 0.17840659618377686, 0.11975737661123276, -0.16224481165409088, -0.01138613186776638, 0.005476806778460741, -0.14073915779590607, 0.10132661461830139, -0.08894115686416626, 0.11452189087867737, -0.01698787324130535, 0.1346014142036438, 0.014814556576311588, -0.07927165180444717, 0.1186612993478775, 0.021031882613897324, 0.10679332911968231, -0.04400341585278511, -0.07276958227157593, 0.058955397456884384, -0.015734480693936348, -0.018049445003271103, -0.023321449756622314, 0.02383260242640972, -0.0878489688038826, -0.017306974157691002, -0.1130162701010704, 0.023609543219208717, -0.041787829250097275, -0.06644131243228912, -0.028543293476104736, 0.026927584782242775, 0.05108421668410301, -0.014122680760920048, 0.10504749417304993, 0.013204405084252357, 0.17198999226093292, 0.05501623451709747, 0.08174868673086166, -0.04281928017735481, -0.08844620734453201, 0.012938523665070534, 0.0028097720351070166, 0.05598640441894531, -0.13960731029510498, 0.02185446210205555, 0.17133021354675293, 0.04947979375720024, 0.11814476549625397, 0.09329354763031006, -0.032813165336847305, 0.023468131199479103, 0.05223483964800835, -0.1637449711561203, -0.11660372465848923, 0.006982829421758652, -0.08710011094808578, -0.12053243815898895, 0.050695184618234634, 0.06997323036193848, -0.05818869546055794, -0.008725790306925774, -0.010709449648857117, -0.02231673337519169, -0.06770732998847961, 0.23560115694999695, 0.08720344305038452, 0.05264267697930336, -0.10316778719425201, 0.05772121995687485, 0.03865930438041687, -0.11273997277021408, -0.003982475958764553, 0.06867774575948715, -0.060964860022068024, -0.0196547694504261, 0.09383174031972885, 0.19422580301761627, -0.06505567580461502, -0.00487658753991127, -0.15126901865005493, -0.09576593339443207, 0.062557652592659, 0.1882101148366928, 0.10244978964328766, -0.013185136020183563, -0.044274620711803436, 0.04303479567170143, -0.14400941133499146, 0.08204715698957443, 0.047043327242136, 0.07020393759012222, -0.12742115557193756, 0.18663449585437775, -0.012674964033067226, 0.05419815331697464, -0.028047246858477592, 0.042540233582258224, -0.12886273860931396, 0.04034051671624184, -0.13559994101524353, -0.04599030315876007, -0.0066563719883561134, -0.022026048973202705, -0.007825237698853016, -0.09472247958183289, -0.06669502705335617, 0.0034196507185697556, -0.13599367439746857, -0.009991844184696674, 0.06071385368704796, 0.021744297817349434, -0.13073895871639252, -0.03939059376716614, 0.03495599702000618, -0.050323087722063065, 0.05568220466375351, 0.06675756722688675, 0.013889734633266926, 0.07782146334648132, -0.1638866811990738, -0.02292456664144993, 0.04914337024092674, 0.0014117818791419268, 0.0990496426820755, -0.053830064833164215, -0.013460887596011162, -0.020182110369205475, 0.10370516031980515, 0.02656540647149086, 0.053234536200761795, -0.12505461275577545, 0.005949579179286957, -0.03009389527142048, -0.08359924703836441, -0.07062134891748428, 0.0145918233320117, 0.07605418562889099, 0.02482130378484726, 0.16508230566978455, -0.07293293625116348, 0.07057604938745499, -0.22335800528526306, -0.014908812008798122, -0.0025039094034582376, -0.08847746253013611, -0.08610226213932037, -0.048159968107938766, 0.08734544366598129, -0.07144807279109955, 0.10635214298963547, -0.0017285295762121677, 0.07965870201587677, 0.03073560819029808, -0.037843745201826096, 0.01772284135222435, 0.027603188529610634, 0.21516907215118408, 0.031888630241155624, -0.040046870708465576, 0.05786201357841492, 0.07721469551324844, 0.08816082030534744, 0.13516415655612946, 0.22977551817893982, 0.16469040513038635, -0.0020119808614253998, 0.07633604109287262, 0.03269414231181145, -0.05640021711587906, -0.13971322774887085, 0.013660785742104053, -0.05264929309487343, 0.06908317655324936, -0.022303232923150063, 0.21590228378772736, 0.06315984576940536, -0.16732384264469147, 0.045751120895147324, -0.07851338386535645, -0.1065259575843811, -0.08920126408338547, 0.012388150207698345, -0.06812345236539841, -0.14086641371250153, 0.025655610486865044, -0.12738311290740967, 0.017645331099629402, 0.13750070333480835, 0.02315734326839447, -0.012901554815471172, 0.22145329415798187, 0.06121022254228592, 0.043834540992975235, 0.05118020251393318, 0.014703205786645412, -0.0027746022678911686, -0.08627927303314209, -0.04295828193426132, -0.01687990128993988, -0.030759183689951897, 0.03516225516796112, -0.06780745834112167, -0.10292216390371323, 0.025593245401978493, -0.014022067189216614, -0.10335014015436172, 0.009729860350489616, 0.029531724750995636, 0.07791896909475327, 0.03108195587992668, 0.0003225540858693421, 0.028052188456058502, -0.04157959669828415, 0.23688676953315735, -0.09213728457689285, -0.0539812333881855, -0.104300856590271, 0.23389409482479095, 0.026020266115665436, 0.0059905387461185455, 0.028510963544249535, -0.07916167378425598, 0.008137683384120464, 0.2449207752943039, 0.17799577116966248, -0.13077662885189056, -0.00517545361071825, 0.013122456148266792, -0.0033602884504944086, -0.044542137533426285, 0.09594982117414474, 0.12838125228881836, 0.07027777284383774, -0.12497196346521378, -0.05088978260755539, -0.061519868671894073, -0.012608320452272892, -0.013452996499836445, 0.04774655029177666, 0.07122473418712616, 0.02053968422114849, -0.0682084709405899, 0.0743517279624939, -0.07956064492464066, -0.15585345029830933, 0.07732240110635757, -0.22851084172725677, -0.16225652396678925, -0.023939386010169983, 0.11274037510156631, -0.0029005908872932196, 0.07948599755764008, -0.033915139734745026, -0.005211380310356617, 0.0510786697268486, -0.015234925784170628, -0.07631731033325195, -0.09283207356929779, 0.1115739643573761, -0.11360634863376617, 0.17760466039180756, -0.044090352952480316, 0.08224320411682129, 0.12680597603321075, 0.051531217992305756, -0.05684896185994148, 0.03901784494519234, 0.0746152251958847, -0.12928812205791473, -0.003771861782297492, 0.1264953464269638, -0.023939909413456917, 0.06671837717294693, 0.044654153287410736, -0.14641103148460388, 0.02977072075009346, -0.05348437651991844, -0.022188527509570122, -0.06058623641729355, -0.045682549476623535, -0.05532155558466911, 0.12213097512722015, 0.2368496060371399, -0.020780635997653008, 0.03696383163332939, -0.07031132280826569, 0.017534077167510986, 0.06030266731977463, 0.06536846607923508, -0.09213746339082718, -0.25035274028778076, 0.01214530412107706, 0.06278915703296661, -0.038838617503643036, -0.21347717940807343, -0.08862582594156265, 0.03414830192923546, -0.07412935048341751, -0.06401470303535461, 0.07128798216581345, 0.08802168071269989, 0.07078777998685837, -0.04812638834118843, -0.1009606197476387, -0.08119730651378632, 0.16681666672229767, -0.15339632332324982, -0.08889669924974442 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac This model is a fine-tuned version of [ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es](https://huggingface.co/ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es) on the sqac dataset. It achieves the following results on the evaluation set: - Loss: 0.9263 - {'exact_match': 65.55793991416309, 'f1': 82.72322701572416} ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["sqac"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac
[ "transformers", "pytorch", "tensorboard", "bert", "question-answering", "generated_from_trainer", "es", "dataset:sqac", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us
# bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac This model is a fine-tuned version of ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es on the sqac dataset. It achieves the following results on the evaluation set: - Loss: 0.9263 - {'exact_match': 65.55793991416309, 'f1': 82.72322701572416} ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
[ "# bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac\n\nThis model is a fine-tuned version of ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es on the sqac dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.9263\n- {'exact_match': 65.55793991416309, 'f1': 82.72322701572416}", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n", "# bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac\n\nThis model is a fine-tuned version of ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es on the sqac dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.9263\n- {'exact_match': 65.55793991416309, 'f1': 82.72322701572416}", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ 49, 125, 90, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-sqac #endpoints_compatible #region-us \n# bert-base-spanish-wwm-cased-finetuned-squad2-es-finetuned-sqac\n\nThis model is a fine-tuned version of ockapuh/bert-base-spanish-wwm-cased-finetuned-squad2-es on the sqac dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.9263\n- {'exact_match': 65.55793991416309, 'f1': 82.72322701572416}### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 3### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ -0.16762076318264008, 0.10761763900518417, -0.0030805591959506273, 0.09443136304616928, 0.12416908144950867, 0.022905560210347176, 0.05080581083893776, 0.13476070761680603, -0.05055610090494156, 0.1137240007519722, 0.09592586755752563, 0.10839536041021347, 0.05343422666192055, 0.1390312910079956, -0.09542050212621689, -0.15321138501167297, 0.05284097045660019, 0.03647363558411598, -0.11762044578790665, 0.0894087702035904, 0.078241728246212, -0.08518385142087936, 0.07503538578748703, 0.06724292039871216, -0.17641814053058624, -0.00016326010518241674, 0.023616774007678032, -0.044996365904808044, 0.07977433502674103, 0.04517802596092224, 0.10401836037635803, -0.0034520362969487906, 0.012952596880495548, -0.12522156536579132, -0.005051115062087774, 0.03655299171805382, 0.012820526026189327, 0.09791851043701172, 0.0908498764038086, 0.04868843033909798, 0.009727752767503262, -0.11207929998636246, -0.009643226861953735, 0.04241490364074707, -0.10982298851013184, -0.1355726420879364, -0.10136456042528152, 0.037749215960502625, 0.07773391157388687, 0.07506245374679565, -0.012521829456090927, 0.19114331901073456, -0.019965488463640213, 0.08500999212265015, 0.22093205153942108, -0.3443628251552582, -0.05486423894762993, 0.017109349370002747, 0.042641717940568924, -0.017077097669243813, -0.07726170867681503, -0.030164163559675217, 0.03645189478993416, 0.016827600076794624, 0.040281571447849274, -0.05717266723513603, -0.0339420884847641, -0.021174682304263115, -0.11575041711330414, -0.0676310583949089, 0.17103064060211182, 0.06893841177225113, -0.07321685552597046, -0.038497984409332275, -0.09520471096038818, -0.13297414779663086, -0.014905202202498913, -0.010407039895653725, 0.026036737486720085, -0.026491092517971992, -0.06287544965744019, 0.004878750536590815, -0.06136948615312576, -0.03655272722244263, -0.0511305071413517, 0.19754086434841156, 0.04083796590566635, 0.03626192361116409, -0.02521972544491291, 0.08969154953956604, -0.07240121066570282, -0.14116021990776062, -0.057519134134054184, 0.007323285099118948, -0.07491091638803482, -0.03087025322020054, -0.07586080580949783, -0.008534813299775124, 0.028163990005850792, 0.13942252099514008, -0.06965671479701996, 0.05754592642188072, 0.06379713863134384, 0.007262894883751869, -0.054297059774398804, 0.1817711740732193, -0.055948447436094284, 0.0034057432785630226, 0.050006069242954254, 0.0831543356180191, -0.0047082845121622086, 0.013416050933301449, -0.029130661860108376, -0.06617274135351181, 0.12228218466043472, 0.023136815056204796, -0.007814886048436165, 0.04337279498577118, -0.08457468450069427, -0.04716009274125099, 0.0635358989238739, -0.11227110773324966, 0.018642712384462357, -0.014495034702122211, -0.10328313708305359, -0.01656671054661274, 0.026648106053471565, -0.02320408821105957, -0.07651430368423462, 0.020943457260727882, -0.11322187632322311, 0.002795132575556636, -0.04361116513609886, -0.07623493671417236, -0.005459880456328392, -0.08544596284627914, -0.0032336756121367216, -0.10019625723361969, -0.12919005751609802, -0.029024947434663773, -0.0028805257752537727, -0.032338697463274, -0.05578292906284332, -0.023599719628691673, -0.09247666597366333, 0.0229740422219038, -0.004785260185599327, 0.025065384805202484, -0.01966729760169983, 0.071914441883564, 0.08551693707704544, 0.026332005858421326, -0.02305869199335575, 0.0240362249314785, -0.08783090114593506, 0.07105940580368042, -0.11339450627565384, 0.10885985195636749, -0.050535522401332855, 0.014443167485296726, -0.11949785053730011, -0.07125778496265411, 0.0180851761251688, -0.023176146671175957, 0.13690400123596191, 0.13510242104530334, -0.11775089800357819, -0.0313958115875721, 0.12585586309432983, -0.039668940007686615, -0.10489331930875778, 0.08877988159656525, -0.02087365835905075, -0.034547507762908936, 0.02543109469115734, 0.1529655009508133, 0.08319380134344101, -0.052283596247434616, -0.09483154863119125, -0.0032888203859329224, 0.036745812743902206, -0.04969935119152069, 0.058628298342227936, -0.01816391758620739, -0.008509405888617039, 0.02426203340291977, -0.08204638212919235, -0.0013402057811617851, -0.09030374139547348, -0.06900378316640854, -0.10467890650033951, -0.05955329164862633, 0.04118543118238449, -0.0018176111625507474, 0.08573953062295914, -0.05898408591747284, -0.06280213594436646, 0.07303795218467712, 0.1300584077835083, -0.06734870374202728, 0.022337252274155617, -0.09870336204767227, 0.11522357910871506, -0.15479940176010132, -0.005889531224966049, -0.22253216803073883, -0.08089113980531693, 0.05059647932648659, -0.10359242558479309, -0.01234064344316721, 0.018019095063209534, 0.05362929776310921, 0.03372166305780411, -0.0021088882349431515, -0.05056346207857132, -0.047225818037986755, -0.035119540989398956, -0.12419937551021576, -0.10042852908372879, -0.05369920656085014, -0.007572957314550877, 0.08474273234605789, -0.1680690348148346, -0.0025649992749094963, 0.03695535287261009, 0.12899699807167053, -0.008133327588438988, -0.041376661509275436, 0.009830668568611145, 0.051586102694272995, -0.019061638042330742, -0.09037653356790543, 0.030129317194223404, 0.029897958040237427, -0.12034794688224792, -0.03764849528670311, -0.13586381077766418, 0.11035028845071793, 0.09010224044322968, 0.011611669324338436, -0.044379301369190216, 0.00015146107762120664, -0.0437786765396595, -0.044961169362068176, -0.020324259996414185, -0.005944640841335058, 0.16782386600971222, -0.0002752370201051235, 0.14829640090465546, -0.08919616043567657, -0.030107613652944565, 0.022314205765724182, -0.026455549523234367, -0.008733940310776234, 0.09910975396633148, -0.034890785813331604, -0.16851863265037537, 0.07849856466054916, 0.08213083446025848, -0.04826364666223526, 0.09801449626684189, -0.08226769417524338, -0.06917448341846466, -0.06574665009975433, 0.04766872152686119, 0.030178440734744072, 0.08833946287631989, -0.04010002687573433, 0.03468576818704605, 0.04948050156235695, 0.04750589281320572, 0.01562754437327385, -0.16259796917438507, 0.01962706260383129, 0.015175622887909412, -0.03920351713895798, -0.011560257524251938, 0.029863066971302032, 0.02255929820239544, 0.0901302918791771, 0.008528891950845718, -0.020198103040456772, 0.039873506873846054, -0.010676945559680462, -0.06184006854891777, 0.21125873923301697, -0.11374230682849884, -0.11421512067317963, -0.16234034299850464, 0.05765867605805397, -0.11534972488880157, -0.009863785468041897, 0.021968115121126175, -0.03662581741809845, -0.06784272938966751, -0.04405367746949196, -0.023040195927023888, -0.01247168704867363, 0.03364840894937515, 0.081070676445961, -0.04906370863318443, 0.14146152138710022, -0.12164304405450821, -0.010796538554131985, -0.011730169877409935, -0.05414905399084091, 0.01528132613748312, 0.016799451783299446, 0.1066317930817604, 0.05026092380285263, -0.022280624136328697, 0.009140814654529095, 0.005350552499294281, 0.2966379225254059, -0.03961847350001335, -0.03716900944709778, 0.10696101188659668, 0.0008554502273909748, 0.07886750251054764, 0.07253403216600418, 0.025531958788633347, -0.08000979572534561, -0.018943458795547485, 0.011766524985432625, 0.007384755648672581, -0.23227745294570923, -0.02351047471165657, -0.0566200315952301, -0.07411418110132217, 0.07943406701087952, 0.03544129803776741, 0.007652267348021269, 0.0891028344631195, -0.008046148344874382, 0.0855427160859108, -0.08700338006019592, 0.08969707041978836, 0.1545265167951584, 0.09764629602432251, 0.10411052405834198, -0.04038501903414726, -0.005589735694229603, 0.06697443872690201, 0.021053506061434746, 0.22892962396144867, -0.03457774594426155, 0.22823984920978546, 0.009458585642278194, 0.17818070948123932, 0.007068475242704153, 0.06642716377973557, -0.00046464792103506625, 0.0026722943875938654, 0.023754185065627098, -0.03072701394557953, -0.05373876169323921, -0.008348082192242146, -0.011296767741441727, 0.09259229153394699, -0.11139388382434845, 0.05194639787077904, 0.04543314501643181, 0.2680256962776184, 0.04875444993376732, -0.31408488750457764, -0.08215302228927612, 0.00026032753521576524, -0.021558329463005066, -0.08695058524608612, -0.029654042795300484, 0.11972127854824066, -0.10183433443307877, 0.03383193910121918, -0.07874913513660431, 0.0967726856470108, -0.05781707167625427, 0.007863607257604599, 0.031350698322057724, 0.10741990804672241, 0.005389353260397911, 0.047731366008520126, -0.20861712098121643, 0.21132826805114746, 0.045546699315309525, 0.08267346024513245, -0.014478428289294243, 0.0300667192786932, 0.021320799365639687, 0.024695884436368942, 0.08150326460599899, 0.018398895859718323, -0.04891897737979889, -0.17752067744731903, -0.09744954109191895, 0.03525684028863907, 0.06645701825618744, -0.00804815161973238, 0.10894785821437836, -0.04034881293773651, -0.007459406275302172, 0.00939810648560524, -0.001113556674681604, -0.05525069683790207, -0.06047486141324043, 0.044945526868104935, 0.0722975805401802, -0.01206480897963047, -0.05760464072227478, -0.07080601900815964, -0.053715094923973083, 0.1584606021642685, -0.060618478804826736, -0.0527595579624176, -0.13794082403182983, 0.06208609789609909, 0.15398956835269928, -0.09754151105880737, 0.053135763853788376, -0.010044189170002937, 0.07601349800825119, 0.03728385642170906, -0.09351861476898193, 0.0889560729265213, -0.0520336776971817, -0.15885721147060394, -0.01705029048025608, 0.10767810791730881, -0.010043601505458355, 0.022648191079497337, 0.004197344649583101, 0.01588154397904873, -0.022582674399018288, -0.09152166545391083, -0.020132504403591156, 0.01689155399799347, 0.08471740782260895, 0.0518844872713089, -0.013404715806245804, 0.04334750398993492, -0.041125040501356125, 0.03066628985106945, 0.09556210786104202, 0.3008267879486084, -0.0677557960152626, -0.0466889813542366, 0.01823652721941471, -0.055663883686065674, -0.1125822514295578, 0.02809845469892025, 0.11224279552698135, 0.04737984016537666, 0.012778290547430515, -0.07372501492500305, 0.06777120381593704, 0.11272279918193817, -0.0172539334744215, 0.052495140582323074, -0.27725741267204285, -0.12370028346776962, 0.07731650024652481, 0.12003324925899506, 0.17979276180267334, -0.14622001349925995, -0.05438520759344101, -0.01063213124871254, -0.16274569928646088, 0.06255792081356049, 0.028148723766207695, 0.1338692605495453, -0.05651599168777466, 0.060991689562797546, 0.03292699158191681, -0.03021121956408024, 0.18134666979312897, 0.05883633345365524, 0.06784455478191376, -0.015875382348895073, 0.057405516505241394, 0.06144363433122635, -0.08460938930511475, 0.03640555962920189, -0.011012840084731579, 0.09001577645540237, -0.19939306378364563, 0.00093680719146505, -0.0598982609808445, 0.049791596829891205, -0.030161771923303604, 0.004030656535178423, -0.012394372373819351, -0.007724621798843145, 0.04390949755907059, -0.005079148802906275, 0.07686581462621689, 0.04386533051729202, 0.01542076375335455, 0.12498828768730164, 0.05426105856895447, 0.026382029056549072, -0.15153135359287262, 0.02752082794904709, 0.011227605864405632, 0.06790145486593246, -0.0863230749964714, 0.04263865202665329, 0.13999876379966736, 0.015539527870714664, 0.08910772204399109, 0.044330742210149765, -0.025281693786382675, 0.0018557080766186118, 0.016952404752373695, -0.11948738992214203, -0.08701879531145096, -0.020368847995996475, -0.05408738553524017, -0.11505129188299179, 0.037078358232975006, 0.1258200705051422, -0.022248392924666405, -0.02649366669356823, -0.0077286954037845135, -0.025867735967040062, -0.02693944238126278, 0.20739184319972992, 0.03494904190301895, 0.06820303946733475, -0.09504808485507965, 0.10484106093645096, 0.01924934610724449, -0.05258723720908165, 0.035077054053545, 0.022135762497782707, -0.09400081634521484, -0.006228446960449219, 0.03604843467473984, 0.13671301305294037, -0.09268824011087418, -0.04603191837668419, -0.1084962785243988, -0.07604918628931046, 0.055517230182886124, 0.125468447804451, 0.08438059687614441, 0.028267554938793182, -0.016603149473667145, -0.045719489455223083, -0.11252868175506592, 0.04875319451093674, 0.10028104484081268, 0.09759965538978577, -0.14527222514152527, 0.07136259973049164, -0.04705532267689705, 0.06485150009393692, 0.00243685906752944, 0.01536503154784441, -0.13436049222946167, -0.04651549458503723, -0.10115005075931549, 0.040572769939899445, -0.049698345363140106, -0.015545245260000229, -0.01620914228260517, -0.05693637952208519, -0.051209818571805954, 0.05870558321475983, -0.07019224017858505, -0.059907034039497375, 0.034412045031785965, 0.018170898780226707, -0.09051685035228729, -0.015777364373207092, 0.014369389042258263, -0.09492579102516174, 0.08402169495820999, 0.09608545154333115, 0.011919922195374966, 0.0062414659187197685, -0.0006153838476166129, -0.011518057435750961, 0.03967829793691635, 0.009950905106961727, 0.06327228993177414, -0.08122488856315613, 0.03183005005121231, -0.0015195655869320035, 0.04597960039973259, -0.020869944244623184, 0.09196080267429352, -0.12287423014640808, -0.07143670320510864, -0.05126241222023964, 0.015624666586518288, -0.08466831594705582, 0.006203348282724619, 0.1383506804704666, 0.040436405688524246, 0.14566141366958618, -0.04422006011009216, 0.01146861631423235, -0.19450227916240692, -0.024867013096809387, 0.0028220191597938538, -0.1159805878996849, -0.030115028843283653, -0.052769433706998825, 0.08041168749332428, -0.05853647738695145, 0.05206167325377464, -0.08073591440916061, 0.08122723549604416, 0.022129502147436142, -0.025920242071151733, -0.0065163723193109035, 0.006566905416548252, 0.18416039645671844, 0.054524410516023636, -0.012715298682451248, 0.07874087244272232, 0.027823397889733315, 0.0677453801035881, 0.12674172222614288, 0.11312907189130783, 0.12374396622180939, -0.07034441828727722, 0.1387607455253601, 0.013229872100055218, -0.06632811576128006, -0.126543328166008, 0.031764883548021317, -0.08903367817401886, 0.11965829879045486, 0.006040466018021107, 0.08115658164024353, 0.06467165052890778, -0.16203784942626953, 0.040586452931165695, -0.028494440019130707, -0.10118040442466736, -0.08921843022108078, -0.06217465177178383, -0.08959108591079712, -0.10644455999135971, 0.019864525645971298, -0.12004300951957703, 0.0397614911198616, 0.1140834242105484, -0.0016524241073057055, -0.01660986617207527, 0.1766853779554367, -0.030738400295376778, -0.004052134696394205, 0.06060408800840378, -0.00927767064422369, 0.012127798981964588, 0.03197872266173363, -0.06978574395179749, 0.03661755472421646, 0.0028495255392044783, 0.08782146871089935, -0.01695258542895317, 0.027610039338469505, 0.05575260519981384, -0.024589741602540016, -0.08866889029741287, -0.0041836765594780445, 0.043904270976781845, 0.020728878676891327, 0.018262797966599464, 0.039835039526224136, 0.00796573143452406, -0.04433520883321762, 0.2013404816389084, -0.05474591255187988, -0.017611941322684288, -0.1337747573852539, 0.0992264449596405, 0.05079244077205658, -0.03706587478518486, 0.06496865302324295, -0.0897178053855896, 0.017017746344208717, 0.1477975994348526, 0.04952492564916611, -0.057203102856874466, -0.028497211635112762, -0.01937473565340042, -0.023855553939938545, -0.013838302344083786, 0.09422929584980011, 0.06808256357908249, 0.033506713807582855, -0.057639073580503464, -0.04206639528274536, -0.03473355248570442, -0.004923894535750151, -0.050237491726875305, 0.07938097417354584, 0.007773682475090027, -0.012524825520813465, -0.03321287781000137, -0.004218371585011482, 0.0037223135586827993, -0.055767714977264404, 0.08243411034345627, -0.1380176842212677, -0.15841251611709595, -0.030779730528593063, 0.01689174957573414, -0.012792027555406094, 0.06794349104166031, -0.03991740196943283, -0.011770687997341156, 0.12942969799041748, -0.03339526057243347, -0.06451183557510376, -0.09457064419984818, 0.04800660163164139, -0.09366263449192047, 0.1190623790025711, 0.022435227409005165, 0.10041465610265732, 0.10940103977918625, 0.0417865626513958, -0.14102435111999512, 0.020408889278769493, 0.041989102959632874, -0.0926482155919075, 0.04596152901649475, 0.12866641581058502, -0.005966475699096918, 0.04276346415281296, 0.015453947708010674, -0.12048672884702682, -0.04549429938197136, -0.02742835320532322, 0.05256669595837593, -0.07048973441123962, -0.05199572816491127, -0.0741598829627037, 0.15966112911701202, 0.19488166272640228, -0.03574133664369583, 0.00561883021146059, -0.049240533262491226, 0.049972470849752426, 0.04332787171006203, 0.06985373795032501, -0.024680308997631073, -0.21599683165550232, 0.04311374947428703, 0.055607620626688004, -0.004166848491877317, -0.1599038988351822, -0.10608658194541931, -0.003960505593568087, -0.08875414729118347, -0.05259852483868599, 0.09136548638343811, 0.02902180515229702, 0.04756570979952812, -0.04121614992618561, 0.0005556651740334928, -0.0717143788933754, 0.1291290521621704, -0.1035512238740921, -0.10497033596038818 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-spanish-wwm-cased-finetuned-squad2-es This model is a fine-tuned version of [dccuchile/bert-base-spanish-wwm-cased](https://huggingface.co/dccuchile/bert-base-spanish-wwm-cased) on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.2841 {'exact': 62.53162421993591, 'f1': 69.33421368741254} ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
{"language": ["es"], "tags": ["generated_from_trainer"], "datasets": ["squad_es"], "model-index": [{"name": "bert-base-spanish-wwm-cased-finetuned-squad2-es", "results": []}]}
question-answering
MMG/bert-base-spanish-wwm-cased-finetuned-squad2-es
[ "transformers", "pytorch", "tensorboard", "bert", "question-answering", "generated_from_trainer", "es", "dataset:squad_es", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us
# bert-base-spanish-wwm-cased-finetuned-squad2-es This model is a fine-tuned version of dccuchile/bert-base-spanish-wwm-cased on the squad_es dataset. It achieves the following results on the evaluation set: - Loss: 1.2841 {'exact': 62.53162421993591, 'f1': 69.33421368741254} ### Framework versions - Transformers 4.14.1 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
[ "# bert-base-spanish-wwm-cased-finetuned-squad2-es\n\nThis model is a fine-tuned version of dccuchile/bert-base-spanish-wwm-cased on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2841\n{'exact': 62.53162421993591, 'f1': 69.33421368741254}", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n", "# bert-base-spanish-wwm-cased-finetuned-squad2-es\n\nThis model is a fine-tuned version of dccuchile/bert-base-spanish-wwm-cased on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2841\n{'exact': 62.53162421993591, 'f1': 69.33421368741254}", "### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ 50, 106, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #question-answering #generated_from_trainer #es #dataset-squad_es #endpoints_compatible #region-us \n# bert-base-spanish-wwm-cased-finetuned-squad2-es\n\nThis model is a fine-tuned version of dccuchile/bert-base-spanish-wwm-cased on the squad_es dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 1.2841\n{'exact': 62.53162421993591, 'f1': 69.33421368741254}### Framework versions\n\n- Transformers 4.14.1\n- Pytorch 1.10.0+cu111\n- Datasets 1.17.0\n- Tokenizers 0.10.3" ]
[ -0.20559345185756683, 0.058125078678131104, -0.0030372943729162216, 0.0949147567152977, 0.10247308015823364, 0.03352537378668785, 0.02943299151957035, 0.09834877401590347, -0.017559656873345375, 0.0565064437687397, 0.10599116235971451, 0.12414488196372986, 0.020363306626677513, -0.021237924695014954, -0.06818722188472748, -0.14818312227725983, 0.05885053798556328, 0.13228245079517365, -0.11822417378425598, 0.11311548203229904, 0.0768638476729393, -0.10037828236818314, 0.07190132886171341, 0.0433923602104187, -0.15072526037693024, 0.048450201749801636, 0.050341587513685226, -0.08051473647356033, 0.10191204398870468, 0.04921422898769379, 0.17800365388393402, 0.054452672600746155, 0.021249733865261078, -0.0571686215698719, 0.006123725324869156, 0.013331997208297253, -0.01894107088446617, 0.09231365472078323, 0.06621060520410538, 0.0026586640160530806, 0.012814057059586048, -0.025660166516900063, -0.002964826999232173, 0.02871226705610752, -0.10778653621673584, -0.15625709295272827, -0.09686576575040817, 0.02851075865328312, 0.06809256225824356, 0.07517845928668976, 0.00821869820356369, 0.1926872879266739, -0.08616504073143005, 0.06045310199260712, 0.21804995834827423, -0.37139666080474854, -0.03490834683179855, 0.030446305871009827, 0.02245505154132843, -0.0539015531539917, -0.020609408617019653, 0.005926145706325769, 0.06938832998275757, 0.029995465651154518, -0.027734285220503807, -0.07258164882659912, -0.06995847076177597, 0.03633290156722069, -0.09597545862197876, -0.06395372003316879, 0.23562975227832794, 0.00790101382881403, -0.07755447179079056, 0.027320725843310356, -0.07725793868303299, -0.05374721810221672, -0.007677129004150629, -0.046218644827604294, -0.02045389823615551, -0.06374958902597427, -0.05471565201878548, 0.03158162161707878, -0.10621989518404007, -0.1089683398604393, -0.15275610983371735, 0.22033895552158356, -0.002483934164047241, 0.07243668287992477, -0.09973419457674026, 0.1216857060790062, -0.046208158135414124, -0.11371145397424698, -0.012294945307075977, -0.02732282131910324, -0.04141606390476227, -0.004562248941510916, -0.10018107295036316, -0.06882450729608536, 0.008429930545389652, 0.0774678885936737, -0.10553068667650223, 0.0019917001482099295, 0.05226704105734825, 0.02435947395861149, 0.00855250284075737, 0.11938896775245667, -0.11242000013589859, 0.020527485758066177, 0.009639561176300049, -0.0027148639783263206, -0.002836327301338315, -0.003112115664407611, -0.08720452338457108, -0.12620830535888672, 0.08034635335206985, 0.0026274649426341057, 0.005575310438871384, 0.06078668311238289, -0.05397525429725647, -0.06652561575174332, 0.12555038928985596, -0.0866655632853508, 0.01240585744380951, 0.012244918383657932, -0.09572619944810867, 0.06736684590578079, 0.04947163164615631, -0.05076614394783974, -0.05347532406449318, 0.02663244493305683, -0.12277095764875412, -0.04508295655250549, -0.06057322025299072, -0.13479864597320557, 0.05914666876196861, -0.163962259888649, 0.011457569897174835, -0.10726535320281982, -0.141466423869133, 0.019786955788731575, 0.0041808029636740685, -0.030663004145026207, 0.0047532315365970135, -0.03776421397924423, -0.05235621705651283, 0.028987055644392967, -0.01460876315832138, 0.007822129875421524, -0.009010767564177513, 0.08753065019845963, 0.0793258473277092, 0.07167688757181168, -0.14712274074554443, 0.03883901610970497, -0.08905366063117981, 0.0421970896422863, -0.16877175867557526, 0.06466440111398697, -0.07432261109352112, -0.03184056654572487, -0.07487424463033676, -0.08829355984926224, 0.00730731338262558, 0.016590014100074768, 0.1302615851163864, 0.1748911589384079, -0.14598359167575836, -0.0536988191306591, 0.12015082687139511, -0.11301884800195694, -0.1273447424173355, 0.07735388725996017, -0.025545313954353333, -0.020484020933508873, 0.04153867065906525, 0.09216684848070145, 0.09900335222482681, -0.07715878635644913, -0.08756262063980103, 0.028023255988955498, 0.01947721652686596, -0.1378510594367981, 0.06336628645658493, -0.018195124343037605, -0.07565254718065262, 0.04541473463177681, -0.12839056551456451, 0.0012745697749778628, -0.10651914030313492, -0.0475822277367115, -0.05779477581381798, -0.06377723813056946, 0.1390967220067978, 0.038081515580415726, 0.10143483430147171, -0.050534218549728394, -0.05828821659088135, 0.13440053164958954, 0.07829061895608902, -0.04891900718212128, 0.011848228983581066, -0.11892139166593552, 0.1753668338060379, -0.20751501619815826, -0.022167859598994255, -0.20728152990341187, -0.09348541498184204, 0.009262277744710445, 0.061663899570703506, -0.014320184476673603, 0.046778369694948196, 0.078140489757061, 0.02334667555987835, -0.027293488383293152, -0.012671315111219883, -0.04886658862233162, -0.0024053705856204033, -0.09219805151224136, -0.13752904534339905, -0.1193271279335022, -0.03735539689660072, 0.026665225625038147, -0.1383356899023056, -0.0012513204710558057, 0.08772137016057968, 0.12098807841539383, -0.033671703189611435, 0.0275400523096323, -0.01622607558965683, 0.08472999930381775, -0.034294866025447845, -0.0017234034603461623, 0.06952812522649765, 0.008762274868786335, -0.08214690536260605, 0.003321866737678647, -0.056761790066957474, 0.1253797858953476, 0.11980872601270676, -0.06452018767595291, -0.028926024213433266, -0.004060892853885889, -0.028325242921710014, -0.007640049327164888, -0.015809107571840286, -0.03962797299027443, 0.124435655772686, -0.0015929735964164138, 0.13431350886821747, -0.11559566855430603, -0.0054426309652626514, 0.06552254408597946, -0.036035772413015366, -0.04091205075383186, 0.10255081206560135, 0.03929431736469269, -0.08662614226341248, 0.10614845156669617, 0.09080708771944046, -0.06920859962701797, 0.12794417142868042, -0.04849344491958618, -0.09824278950691223, -0.04222451522946358, -0.008668210357427597, 0.015084789134562016, 0.16651274263858795, -0.14865170419216156, -0.013665657490491867, 0.06722985953092575, 0.01340253371745348, 0.05965915694832802, -0.15520931780338287, -0.012491983361542225, 0.024606943130493164, -0.014064162969589233, -0.10915350914001465, 0.048656728118658066, 0.028283486142754555, 0.12163742631673813, -0.008463740348815918, -0.06216518580913544, 0.06135925278067589, 0.012164908461272717, -0.0801478698849678, 0.2068980187177658, -0.10278833657503128, -0.14157617092132568, -0.185447558760643, 0.02593597024679184, -0.10465865582227707, 0.025436175987124443, 0.023289689794182777, -0.081399105489254, -0.009778168983757496, 0.0099097965285182, 0.05852849408984184, -0.01930328458547592, 0.041419219225645065, 0.03240207955241203, -0.04067360982298851, 0.03572223708033562, -0.12777206301689148, -0.0038903169333934784, -0.04460807144641876, -0.07428666204214096, 0.043140213936567307, -0.06004472076892853, 0.12002989649772644, 0.10036876797676086, -0.05773553252220154, 0.03590838238596916, -0.019689997658133507, 0.18035376071929932, -0.02776085026562214, -0.011640738695859909, 0.10698243975639343, -0.012009236961603165, 0.011808816343545914, 0.05027309060096741, 0.051422301679849625, -0.05897105112671852, -0.03781789168715477, -0.023847796022892, -0.04209677502512932, -0.24238990247249603, -0.0681527778506279, -0.04525921121239662, 0.015646299347281456, 0.0505535714328289, 0.0009798543760553002, 0.03143136575818062, 0.140473872423172, 0.02692534774541855, 0.04846664145588875, -0.1350177377462387, 0.04015694931149483, 0.15159548819065094, 0.03606937825679779, 0.10334283858537674, -0.07733946293592453, -0.017453795298933983, 0.0633196011185646, 0.06501036882400513, 0.14619572460651398, -0.03887952119112015, 0.12336044758558273, 0.03773955628275871, 0.20631355047225952, 0.04895159229636192, 0.19699199497699738, -0.038225699216127396, -0.0253739133477211, 0.021053114905953407, -0.05940146744251251, -0.09018129855394363, -0.03644503280520439, -0.036870039999485016, 0.06677920371294022, -0.1621280163526535, -0.0399417020380497, 0.013238522224128246, 0.1811363250017166, 0.09899604320526123, -0.3115525543689728, -0.13590499758720398, -0.021749669685959816, 0.046433452516794205, -0.05986647680401802, -0.0062801409512758255, 0.09879804402589798, -0.05449927970767021, 0.03344321995973587, -0.04512137547135353, 0.09325925260782242, -0.014113862067461014, 0.0014634380349889398, 0.0025726519525051117, 0.033517155796289444, 0.005857270210981369, 0.07554277777671814, -0.15504291653633118, 0.2682334780693054, 0.04895859956741333, 0.038409363478422165, -0.05831308290362358, -0.004104230552911758, -0.03819796070456505, 0.09410461783409119, 0.12241362780332565, 0.005599027033895254, 0.07700406014919281, -0.11518151313066483, -0.06336265057325363, 0.043605491518974304, 0.026572586968541145, 0.0064973183907568455, 0.12348247319459915, 0.03921443969011307, -0.003106001764535904, 0.03245723247528076, 0.07006591558456421, -0.03672828525304794, -0.06945205479860306, 0.029799066483974457, 0.0166355911642313, -0.05484873056411743, -0.04854416847229004, -0.10333026200532913, -0.07754690200090408, 0.13654009997844696, -0.07188121229410172, -0.06483368575572968, -0.11171332746744156, 0.04352356120944023, 0.15518450736999512, -0.08250310271978378, 0.03149302303791046, -0.016714954748749733, 0.027352018281817436, 0.002464128425344825, -0.12758181989192963, 0.09811651706695557, -0.09984727948904037, -0.06544201821088791, -0.028832783922553062, 0.13851070404052734, 0.0502580888569355, 0.015346061438322067, 0.031231699511408806, -0.007885473780333996, 0.013246625661849976, -0.09142795205116272, -0.009537721984088421, -0.02694215625524521, 0.060840148478746414, 0.02741975151002407, -0.02255970425903797, 0.004597695544362068, -0.012055215425789356, 0.07531008124351501, 0.13774167001247406, 0.11066654324531555, -0.11577746272087097, 0.013818795792758465, 0.13911770284175873, -0.04520478472113609, -0.1992623656988144, 0.022770216688513756, 0.07665091753005981, 0.057989805936813354, -0.07067330926656723, -0.13069066405296326, 0.1383044719696045, 0.0957389697432518, 0.0044799973256886005, 0.0791492611169815, -0.2396577149629593, -0.07759172469377518, 0.13986483216285706, 0.1010391116142273, 0.24626781046390533, -0.10884379595518112, -0.07326057553291321, 0.009713212959468365, -0.2812843322753906, 0.18736757338047028, -0.049175530672073364, 0.06961701065301895, -0.06009145453572273, 0.08934718370437622, 0.036696527153253555, -0.0522131472826004, 0.15288692712783813, 0.05511056259274483, 0.03639042750000954, -0.018786773085594177, -0.036785468459129333, 0.16964006423950195, -0.01464788243174553, 0.09178408235311508, 0.06874421238899231, 0.053286705166101456, -0.18625976145267487, -0.022766636684536934, -0.11004746705293655, 0.06374060362577438, -0.05621134862303734, -0.0124129056930542, 0.017383715137839317, -0.03189731389284134, -0.021806752309203148, -0.033552125096321106, 0.10138010233640671, 0.02665002830326557, 0.10219237953424454, 0.16658654808998108, 0.15600015223026276, -0.0586099773645401, -0.09531230479478836, 0.05885611101984978, -0.03911843150854111, 0.12412827461957932, -0.054319608956575394, 0.034975506365299225, 0.15433938801288605, 0.05229761078953743, 0.032315727323293686, 0.08074691891670227, -0.05038050189614296, -0.00925508514046669, 0.05758019909262657, -0.16925619542598724, -0.0461372435092926, -0.020474471151828766, -0.035814616829156876, -0.06957543641328812, 0.1354476809501648, 0.133317232131958, -0.01861194707453251, -0.03532404080033302, -0.010858121328055859, -0.0820363312959671, -0.06558333337306976, 0.2076360583305359, 0.06469760835170746, 0.054634351283311844, -0.10804804414510727, 0.09809090942144394, -0.012067750096321106, -0.1628885120153427, 0.007365746423602104, -0.002597601618617773, -0.11320146173238754, -0.0557757169008255, -0.06894398480653763, 0.11446404457092285, -0.21470151841640472, -0.08890046924352646, -0.11689867824316025, -0.1056666150689125, 0.06927403807640076, 0.22739095985889435, 0.09636040776968002, 0.05961905047297478, -0.052200671285390854, -0.021168313920497894, -0.08875391632318497, 0.014081090688705444, 0.07414641976356506, 0.07024683803319931, -0.11298805475234985, 0.0826571136713028, -0.0348760224878788, 0.09600714594125748, -0.027980530634522438, -0.002728750929236412, -0.11419805884361267, 0.012683638371527195, -0.17831836640834808, -0.0010352575918659568, -0.08156483620405197, -0.03518179431557655, -0.012573772110044956, -0.0549323745071888, -0.05721241235733032, 0.03527779504656792, -0.07998353987932205, 0.03206479176878929, 0.04708698391914368, -0.014250124804675579, -0.08978211879730225, 0.007089199963957071, 0.007382912561297417, -0.05685270205140114, 0.05751718953251839, 0.14579743146896362, 0.007110554724931717, 0.06708770245313644, -0.052604660391807556, -0.026539966464042664, 0.00865569245070219, 0.013683800585567951, 0.11265464872121811, -0.0428193025290966, 0.04051738604903221, 0.055227410048246384, 0.027173714712262154, -0.0004148287698626518, 0.09620904177427292, -0.08528369665145874, -0.023510657250881195, 0.04505043104290962, -0.0020738791208714247, -0.10041496902704239, 0.03503669798374176, 0.18366234004497528, 0.06568077951669693, 0.0997147187590599, -0.04118607938289642, 0.017389120534062386, -0.13536213338375092, -0.011496053077280521, -0.034365180879831314, -0.07334289699792862, -0.029472222551703453, -0.017710205167531967, 0.0548088513314724, -0.023178881034255028, 0.09192246943712234, -0.09944865107536316, 0.09800723195075989, -0.02401338517665863, 0.005713827908039093, 0.05287787690758705, 0.009729565121233463, 0.2467692345380783, 0.03791584074497223, -0.02177409641444683, -0.029269106686115265, 0.11070307344198227, 0.01705663651227951, 0.15503491461277008, 0.14390601217746735, 0.047781940549612045, -0.015740003436803818, 0.1337435245513916, 0.06940307468175888, -0.00755353132262826, -0.05579555407166481, -0.10141303390264511, -0.04654819890856743, 0.044309213757514954, 0.014661048538982868, 0.12758909165859222, 0.1030859649181366, -0.09432850033044815, 0.06996309757232666, -0.01670832931995392, -0.08201318234205246, -0.0801844522356987, -0.1242072582244873, -0.051190540194511414, -0.1391100287437439, 0.008356343023478985, -0.1373157501220703, -0.027434885501861572, 0.05606889724731445, 0.037478432059288025, -0.012019130401313305, 0.1864796280860901, -0.018462978303432465, -0.02860388718545437, 0.06306011974811554, 0.013985786586999893, 0.03445776179432869, 0.035625483840703964, 0.021418562158942223, 0.020922541618347168, 0.009220711886882782, 0.006851527374237776, -0.001377410371787846, 0.02498832531273365, 0.02694830484688282, 0.029287485405802727, -0.0613727867603302, -0.0442984439432621, 0.0406809039413929, 0.04627435281872749, 0.08119744807481766, 0.007664007600396872, 0.018410125747323036, -0.04676803573966026, 0.13341422379016876, -0.07123484462499619, -0.029390811920166016, -0.11751142889261246, 0.18018221855163574, 0.024171099066734314, 0.043027158826589584, 0.06011110171675682, -0.07602837681770325, 0.014281519688665867, 0.19170592725276947, 0.16818177700042725, 0.0036838434170931578, -0.009855595417320728, 0.012549769133329391, 0.005306730512529612, -0.0007754028774797916, 0.05866340175271034, 0.050825756043195724, 0.2132178097963333, -0.0858892872929573, -0.10935342311859131, -0.09737175703048706, 0.04024061933159828, 0.019863734021782875, 0.07096682488918304, 0.02391793392598629, -0.06263405084609985, -0.056861262768507004, 0.03247060254216194, -0.029521310701966286, -0.08669817447662354, 0.09070059657096863, -0.15010462701320648, -0.10411600023508072, -0.04626067355275154, 0.01032579317688942, 0.004023824352771044, 0.09549298137426376, -0.05936327576637268, -0.0015022078296169639, 0.13210073113441467, 0.016904890537261963, -0.1610075682401657, -0.08650216460227966, 0.08563720434904099, -0.06350382417440414, 0.08918529003858566, -0.0006099208258092403, 0.13512402772903442, 0.10203701257705688, 0.07584985345602036, -0.09848328679800034, 0.0008445470011793077, 0.03333686292171478, -0.055306002497673035, 0.025021331384778023, 0.04930238798260689, 0.0287040825933218, 0.01955980248749256, -0.038407400250434875, -0.19418682157993317, 0.002319895662367344, 0.04571547731757164, -0.011760435998439789, -0.08076467365026474, 0.010049670934677124, -0.06449595093727112, 0.13176488876342773, 0.1523105651140213, -0.03820786252617836, -0.017581526190042496, -0.07106256484985352, 0.048522233963012695, 0.06274058669805527, -0.004696910735219717, -0.03059866465628147, -0.18508444726467133, 0.02623639814555645, 0.05021966993808746, -0.024090224876999855, -0.1779327541589737, -0.036779630929231644, 0.030275309458374977, -0.0725918561220169, -0.018327787518501282, 0.0063937013037502766, 0.049337610602378845, 0.09979621320962906, -0.024240767583251, 0.07634549587965012, -0.05216865614056587, 0.11384721845388412, -0.11304402351379395, -0.12389463931322098 ]
null
null
transformers
# mlm-spanish-roberta-base This model has a RoBERTa base architecture and was trained from scratch with 3.6 GB of raw text over 10 epochs. 4 Tesla V-100 GPUs were used for the training. To test the quality of the resulting model we evaluate it over the [GLUES](https://github.com/dccuchile/GLUES) benchmark for Spanish NLU. The results are the following: | Task | Score (metric) | |:-----------------------:|:---------------------:| | XNLI | 71.99 (accuracy) | | Paraphrasing | 74.85 (accuracy) | | NER | 85.34 (F1) | | POS | 97.49 (accuracy) | | Dependency Parsing | 85.14/81.08 (UAS/LAS) | | Document Classification | 93.00 (accuracy) |
{"language": ["es"], "widget": [{"text": "MMG se dedica a la <mask> artificial."}]}
fill-mask
MMG/mlm-spanish-roberta-base
[ "transformers", "pytorch", "safetensors", "roberta", "fill-mask", "es", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #safetensors #roberta #fill-mask #es #autotrain_compatible #endpoints_compatible #region-us
mlm-spanish-roberta-base ======================== This model has a RoBERTa base architecture and was trained from scratch with 3.6 GB of raw text over 10 epochs. 4 Tesla V-100 GPUs were used for the training. To test the quality of the resulting model we evaluate it over the GLUES benchmark for Spanish NLU. The results are the following:
[]
[ "TAGS\n#transformers #pytorch #safetensors #roberta #fill-mask #es #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #roberta #fill-mask #es #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.06408291310071945, -0.008660976774990559, -0.008906485512852669, 0.01734461635351181, 0.11033693701028824, 0.01747003383934498, 0.12465578317642212, 0.05993552505970001, 0.06927931308746338, -0.006266181822866201, 0.16581453382968903, 0.20976471900939941, -0.04272386431694031, 0.20933371782302856, -0.06663591414690018, -0.22260750830173492, 0.08357720822095871, 0.025746414437890053, -0.047508928924798965, 0.12944655120372772, 0.08444692939519882, -0.08349574357271194, 0.05669853091239929, -0.02251572161912918, -0.07789050787687302, 0.0406208299100399, 0.08587270230054855, -0.12970633804798126, 0.1387721747159958, 0.009984050877392292, 0.2365589141845703, 0.031719136983156204, -0.03992833197116852, -0.09061256796121597, 0.05368270352482796, 0.004840055014938116, -0.07104912400245667, 0.04236142709851265, 0.0046625444665551186, -0.0963321328163147, -0.042997997254133224, 0.030689820647239685, 0.050556257367134094, 0.04290977492928505, -0.13689912855625153, -0.1507781594991684, -0.011849178932607174, 0.023379778489470482, 0.06391342729330063, 0.07294072955846786, 0.012253664433956146, 0.23251621425151825, -0.11546072363853455, 0.10302390903234482, 0.14350169897079468, -0.28239819407463074, -0.003975597210228443, 0.04106677696108818, 0.08200187981128693, -0.045559268444776535, -0.032643601298332214, 0.054097872227430344, 0.037865106016397476, 0.014717116951942444, 0.06233717128634453, -0.059884607791900635, -0.058479636907577515, -0.011500497348606586, -0.06975289434194565, -0.0437651090323925, 0.14094789326190948, -0.04744482412934303, 0.02509312331676483, -0.015206322073936462, -0.13464558124542236, -0.0015643847873434424, -0.00644166162237525, -0.03264360502362251, -0.03625963628292084, 0.025320803746581078, -0.027102455496788025, 0.010289662517607212, -0.12676307559013367, 0.019788730889558792, -0.21157102286815643, 0.29714056849479675, 0.023797854781150818, 0.06473883241415024, -0.16098536550998688, 0.04330093786120415, 0.0056479331105947495, -0.13113145530223846, 0.05853768065571785, -0.10085362941026688, 0.04316681995987892, 0.002273856895044446, -0.02227308787405491, -0.039329733699560165, 0.10221347957849503, 0.20681607723236084, 0.01533986534923315, 0.02062287926673889, 0.04407704994082451, 0.09130081534385681, 0.007814161479473114, 0.06541676074266434, 0.035542842000722885, -0.03558434918522835, 0.06891737133264542, -0.08031976968050003, 0.058996524661779404, -0.04320928454399109, -0.09276779741048813, -0.029613539576530457, 0.034268710762262344, 0.09936591237783432, 0.03760867938399315, 0.04737431928515434, -0.09831887483596802, 0.03831852972507477, 0.10080226510763168, -0.0774550810456276, -0.007094237487763166, -0.02783292531967163, 0.07217002660036087, 0.07381521910429001, 0.01781470701098442, -0.007409469690173864, -0.003626848803833127, 0.1368498057126999, -0.08333002775907516, -0.0521276593208313, -0.04737509414553642, -0.056139688938856125, 0.026670554652810097, -0.10898154228925705, 0.05305981636047363, -0.21370647847652435, -0.1569221019744873, 0.05116378143429756, 0.04050486162304878, 0.021085811778903008, -0.029483439400792122, 0.030281180515885353, -0.007370459381490946, 0.0040509351529181, -0.047328438609838486, -0.0721282958984375, -0.052574723958969116, 0.10534548759460449, 0.011025480926036835, 0.09816718846559525, -0.08016561716794968, 0.009553875774145126, -0.11184269189834595, 0.013218190521001816, -0.1621885895729065, -0.06552721560001373, -0.03237125277519226, 0.16531778872013092, 0.015226133167743683, -0.031043926253914833, -0.11427869647741318, 0.044217925518751144, -0.01270335540175438, 0.1880830079317093, -0.04269826412200928, -0.11022216081619263, 0.24285347759723663, -0.15127764642238617, -0.12995582818984985, 0.08760055899620056, 0.008403646759688854, 0.010576861910521984, 0.06977548450231552, 0.08108678460121155, 0.014932903461158276, -0.14603930711746216, 0.05881929397583008, 0.09583700448274612, -0.15724104642868042, -0.106728695333004, 0.018904000520706177, -0.006047338247299194, -0.12240626662969589, 0.04005303606390953, 0.08925022929906845, 0.11059743911027908, -0.07900936901569366, -0.05782562866806984, -0.028499998152256012, -0.054025422781705856, 0.13624273240566254, 0.022817008197307587, 0.07123672217130661, -0.10638588666915894, -0.04939572140574455, -0.08201197534799576, 0.008145199157297611, 0.06750539690256119, 0.01119676511734724, -0.11114096641540527, 0.11759748309850693, -0.028032340109348297, -0.005821339786052704, -0.14653299748897552, -0.14089080691337585, -0.01893547736108303, 0.03657427430152893, -0.053242143243551254, 0.06502192467451096, 0.11484827846288681, -0.012498118914663792, -0.017070209607481956, -0.049026813358068466, 0.09270769357681274, 0.03569547459483147, -0.00336885335855186, -0.12082431465387344, 0.05309275910258293, -0.09179509431123734, 0.026777485385537148, 0.005942897405475378, 0.008469168096780777, -0.00018190468836110085, 0.14795878529548645, 0.004075016360729933, 0.04310983046889305, -0.06347671896219254, 0.021767551079392433, -0.036271724849939346, 0.0039413669146597385, 0.06829414516687393, 0.0017315804725512862, -0.0540342777967453, 0.13639463484287262, -0.14686687290668488, 0.3885466754436493, 0.18057863414287567, -0.23488099873065948, -0.047328829765319824, 0.057562608271837234, -0.02046295627951622, 0.003969800658524036, 0.01948087103664875, -0.012223022989928722, 0.0006545558571815491, -0.0037107740063220263, 0.13682562112808228, -0.022583097219467163, -0.02742367796599865, 0.04488755762577057, -0.08466099947690964, -0.04136208817362785, 0.022139951586723328, 0.06360021978616714, -0.11588966101408005, 0.17643004655838013, 0.2567145824432373, -0.0026397705078125, 0.14050249755382538, 0.0033812150359153748, 0.006826272699981928, 0.00478973425924778, -0.02787507139146328, -0.01791437342762947, 0.07726042717695236, -0.1314999759197235, -0.011942519806325436, 0.06010528281331062, -0.039097923785448074, 0.039801571518182755, -0.11821126937866211, -0.055747050791978836, 0.012483335100114346, 0.05718650296330452, -0.037818845361471176, 0.12182746082544327, 0.015147748403251171, 0.09300165623426437, -0.026615655049681664, -0.11856772750616074, 0.095668725669384, 0.004603093955665827, -0.036513134837150574, 0.17056040465831757, -0.11191302537918091, -0.3471458852291107, -0.12868069112300873, -0.11270684748888016, 0.041228536516427994, 0.04504738375544548, 0.06798876076936722, -0.09535538405179977, -0.07942765951156616, 0.07345738261938095, 0.007111929357051849, 0.021892955526709557, 0.07318287342786789, -0.027595164254307747, 0.028693892061710358, -0.008071678690612316, -0.06560191512107849, -0.07251963019371033, -0.030354827642440796, -0.04115186631679535, 0.1518578976392746, -0.052016690373420715, 0.07615987211465836, 0.11200472712516785, -0.002470563165843487, 0.023716749623417854, -0.013451311737298965, 0.1618259847164154, -0.07987598329782486, 0.004135144408792257, 0.18877963721752167, -0.05719786509871483, 0.09700531512498856, 0.17344166338443756, 0.021062687039375305, -0.046083685010671616, 0.018570804968476295, -0.05683209374547005, -0.11650880426168442, -0.17985858023166656, -0.10848847031593323, -0.08231597393751144, -0.0019179867813363671, 0.022174879908561707, 0.05209540203213692, 0.14388969540596008, 0.11544928699731827, 0.026145413517951965, -0.06610578298568726, -0.04869159683585167, 0.04618547484278679, 0.12941323220729828, -0.028994068503379822, 0.13805244863033295, -0.044204968959093094, -0.17592094838619232, 0.059246975928545, -0.005891223903745413, 0.08543292433023453, 0.10017386078834534, -0.04902883991599083, 0.046258121728897095, 0.15791763365268707, 0.14889086782932281, 0.17503780126571655, 0.041609618812799454, -0.07526852935552597, 0.004750109743326902, -0.007850504480302334, -0.04935344681143761, 0.020428799092769623, 0.060610365122556686, -0.056517601013183594, -0.03178149089217186, -0.09121175855398178, 0.07808927446603775, 0.09925123304128647, 0.04526238515973091, -0.23788243532180786, 0.008694388903677464, 0.06735888123512268, 0.005799572449177504, -0.06414172798395157, 0.05229978635907173, -0.009718552231788635, -0.11124797910451889, 0.070698581635952, -0.04866012558341026, 0.05873258784413338, 0.06046965345740318, 0.07386227697134018, -0.0656547099351883, -0.0373445563018322, 0.015818487852811813, 0.05205787345767021, -0.22013099491596222, 0.27575957775115967, -0.010813808999955654, -0.004553329199552536, -0.06339360028505325, -0.00675067538395524, 0.04765404760837555, 0.1149798259139061, 0.15552327036857605, 0.020134618505835533, -0.06326854228973389, -0.11951424926519394, -0.03295237943530083, 0.041559893637895584, 0.08738332986831665, -0.009812045842409134, 0.004174591973423958, -0.03790749981999397, -0.03373881056904793, 0.0071408711373806, 0.028667675331234932, -0.03614453226327896, -0.10948071628808975, 0.05197566747665405, 0.053678885102272034, 0.015181627124547958, -0.04618589207530022, -0.0632055476307869, -0.10930588096380234, 0.16467519104480743, -0.05421818792819977, -0.059363529086112976, -0.10556232929229736, -0.1205558180809021, 0.07939767092466354, -0.0974559411406517, 0.11840546876192093, -0.07749442756175995, 0.022310607135295868, -0.0986066460609436, -0.1448894441127777, 0.14137740433216095, -0.15208439528942108, -0.045891355723142624, -0.07986937463283539, 0.14761455357074738, -0.05162687227129936, 0.013693153858184814, 0.011155483312904835, 0.03136143088340759, -0.0873166099190712, -0.04843376204371452, 0.028676390647888184, -0.07030120491981506, 0.04015091434121132, 0.056110456585884094, -0.05467518791556358, -0.11435350775718689, 0.009941020049154758, 0.004694592673331499, 0.18876968324184418, 0.2755119502544403, -0.05293033644556999, 0.10737976431846619, 0.20840440690517426, -0.005376784596592188, -0.338949054479599, -0.12733550369739532, -0.14505469799041748, -0.006896672770380974, 0.03682699427008629, -0.0711764469742775, 0.1006893739104271, 0.00929991900920868, -0.07425836473703384, 0.10664121061563492, -0.13988731801509857, -0.09210733324289322, 0.24924872815608978, 0.022414959967136383, 0.4712274968624115, -0.11534588783979416, -0.04770172759890556, -0.04006436839699745, -0.08168558031320572, 0.033673595637083054, -0.020554205402731895, 0.06331531703472137, -0.00592751195654273, 0.04686595872044563, 0.03135485574603081, -0.08941342681646347, 0.1091172993183136, -0.07794928550720215, 0.03283732756972313, -0.10785117745399475, -0.06805343180894852, 0.09634879231452942, -0.00020796805620193481, -0.0070949457585811615, -0.0032955557107925415, 0.022407785058021545, 0.021920254454016685, -0.03224021941423416, -0.08090078085660934, 0.1282469630241394, 0.02335105836391449, -0.08114216476678848, 0.03703843057155609, -0.01934717781841755, -0.025777896866202354, -0.026403851807117462, 0.19743163883686066, 0.008163495920598507, 0.21681801974773407, 0.08836149424314499, 0.045891355723142624, -0.12793602049350739, -0.03637690469622612, -0.02786620520055294, -0.09820502251386642, 0.07484143227338791, 0.017408492043614388, 0.054067473858594894, 0.08801055699586868, -0.013591445051133633, 0.04427202418446541, 0.10160133242607117, 0.0033605117350816727, -0.028627531602978706, 0.18380820751190186, -0.23685181140899658, 0.012378040701150894, -0.007318159565329552, 0.00976907555013895, 0.060468245297670364, 0.08289944380521774, 0.10465344786643982, 0.030529236420989037, -0.0379183329641819, -0.024412168189883232, 0.011015716008841991, -0.056907813996076584, 0.07454579323530197, 0.06647825986146927, 0.05493980646133423, -0.10765734314918518, 0.00876668468117714, -0.0331851989030838, -0.18368203938007355, -0.02440064586699009, 0.06253379583358765, -0.12211132049560547, -0.10285492986440659, 0.009280974976718426, 0.0919581949710846, -0.08482861518859863, -0.05660790205001831, -0.10460415482521057, -0.1355770379304886, 0.03371671214699745, 0.23764599859714508, 0.10912185162305832, 0.0833737775683403, 0.027722090482711792, -0.0026357488241046667, -0.02478477917611599, 0.010326559655368328, 0.028440630063414574, 0.03020157851278782, -0.11811298131942749, 0.006551191210746765, 0.0027183995116502047, 0.1199573278427124, -0.11441463977098465, -0.02658168226480484, -0.16022206842899323, 0.037232041358947754, -0.04583331570029259, -0.07266628742218018, -0.08274596929550171, -0.07319638878107071, 0.021550873294472694, -0.07866352051496506, -0.0446067750453949, -0.03056294284760952, -0.09400089830160141, 0.04328089579939842, 0.05257539451122284, -0.017291175201535225, -0.0815696120262146, -0.04908289387822151, 0.12516508996486664, -0.049292534589767456, 0.08257349580526352, 0.12890850007534027, -0.06495040655136108, 0.08743160963058472, -0.17207913100719452, -0.09138401597738266, 0.112467922270298, 0.0020489536691457033, 0.059480249881744385, 0.05375240743160248, 0.023357205092906952, 0.06003384292125702, 0.027338631451129913, 0.046651970595121384, 0.053234558552503586, -0.11480867862701416, 0.11309549957513809, 0.040181901305913925, -0.1821054220199585, -0.0238676518201828, -0.1265185922384262, 0.07924387603998184, -0.04636703431606293, 0.1538851410150528, -0.05708184838294983, 0.08439412713050842, -0.04937495291233063, 0.030279165133833885, -0.02523275651037693, -0.1543545126914978, -0.03255647420883179, -0.018383240327239037, 0.0004062457010149956, -0.012216937728226185, 0.23200678825378418, -0.01475078146904707, 0.013872588984668255, 0.05673474445939064, 0.05303609371185303, 0.015205159783363342, 0.015550927259027958, 0.12160855531692505, 0.06441805511713028, -0.0466473288834095, -0.10581514984369278, 0.05724122002720833, 0.02365931123495102, -0.13584907352924347, 0.10400062054395676, 0.07083716243505478, 0.04063843935728073, 0.0887083187699318, 0.009778302162885666, 0.041247252374887466, -0.09788603335618973, -0.23225939273834229, -0.05861184373497963, -0.002658466575667262, 0.051119327545166016, -0.0038376532029360533, 0.19187067449092865, 0.011036711744964123, 0.03292323648929596, -0.04356945678591728, -0.004858659580349922, -0.20007367432117462, -0.10000459104776382, -0.09141573309898376, -0.054389242082834244, 0.03611231595277786, -0.025599971413612366, -0.04125552251935005, 0.09941340237855911, 0.033723026514053345, -0.025505149737000465, 0.16379095613956451, 0.011286012828350067, 0.004011221695691347, 0.014952041208744049, 0.0144957872107625, 0.01632498949766159, 0.014096987433731556, -0.0360398106276989, -0.17266732454299927, 0.013135316781699657, -0.06125554442405701, -0.0074485111981630325, -0.10084346681833267, 0.02446717955172062, -0.08701232820749283, -0.10849057883024216, -0.06391643732786179, 0.03136477991938591, -0.04985116049647331, 0.05331241711974144, -0.013555427081882954, 0.049008920788764954, 0.024293826892971992, 0.1452135145664215, -0.05298105254769325, -0.140276238322258, -0.0512268953025341, 0.15616224706172943, 0.027816353365778923, 0.10820987075567245, -0.006149476859718561, 0.01873999647796154, -0.08359796553850174, 0.28135553002357483, 0.30275219678878784, -0.025755397975444794, 0.0902160033583641, 0.009039944969117641, 0.03260044381022453, 0.033765826374292374, 0.0880398228764534, 0.0924503430724144, 0.3060358464717865, -0.08090159296989441, -0.022293919697403908, -0.05131669342517853, -0.01862494833767414, -0.11781054735183716, -0.0013719884445890784, 0.011923372745513916, -0.0009656113688834012, -0.07000910490751266, 0.08093904703855515, -0.1368197351694107, 0.10105504840612411, 0.05987890437245369, -0.19158338010311127, -0.04548321291804314, -0.01174010057002306, 0.1907079666852951, 0.016020135954022408, 0.1010097786784172, -0.03597751259803772, -0.09559130668640137, 0.0075151571072638035, 0.02201954461634159, -0.17870338261127472, -0.06274198740720749, 0.0731901004910469, -0.004221469163894653, 0.13473135232925415, -0.02091090939939022, 0.033308155834674835, 0.08692855387926102, 0.02759830467402935, -0.02995234727859497, 0.06723330169916153, 0.030649840831756592, -0.10945639759302139, -0.03893839195370674, -0.008522442542016506, 0.0009481248562224209, -0.09431418031454086, 0.021558864042162895, -0.15608768165111542, 0.042336512356996536, -0.06881756335496902, -0.049413908272981644, -0.003373072249814868, 0.08551274985074997, -0.03807852789759636, 0.047265201807022095, 0.034996435046195984, 0.014387098141014576, -0.018716566264629364, -0.04262404516339302, 0.02116387151181698, 0.06951034814119339, -0.10125809162855148, -0.12370450049638748, -0.12038961797952652, -0.037827860563993454, 0.059084612876176834, -0.007625799626111984, -0.15463227033615112, -0.04838007315993309, -0.12979191541671753, 0.01669619046151638, -0.1741095632314682, 0.01630879007279873, 0.0692562609910965, 0.05821233615279198, 0.02249147556722164, -0.028509534895420074, 0.02992424927651882, 0.053914546966552734, -0.1441749483346939, -0.10385934263467789 ]
null
null
transformers
# xlm-roberta-large-ner-spanish This model is a XLM-Roberta-large model fine-tuned for Named Entity Recognition (NER) over the Spanish portion of the CoNLL-2002 dataset. Evaluating it over the test subset of this dataset, we get a F1-score of 89.17, being one of the best NER for Spanish available at the moment.
{"language": ["es"], "datasets": ["CoNLL-2002"], "widget": [{"text": "Las oficinas de MMG est\u00e1n en Las Rozas."}]}
token-classification
MMG/xlm-roberta-large-ner-spanish
[ "transformers", "pytorch", "safetensors", "xlm-roberta", "token-classification", "es", "dataset:CoNLL-2002", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #transformers #pytorch #safetensors #xlm-roberta #token-classification #es #dataset-CoNLL-2002 #autotrain_compatible #endpoints_compatible #has_space #region-us
# xlm-roberta-large-ner-spanish This model is a XLM-Roberta-large model fine-tuned for Named Entity Recognition (NER) over the Spanish portion of the CoNLL-2002 dataset. Evaluating it over the test subset of this dataset, we get a F1-score of 89.17, being one of the best NER for Spanish available at the moment.
[ "# xlm-roberta-large-ner-spanish\n\nThis model is a XLM-Roberta-large model fine-tuned for Named Entity Recognition (NER) over the Spanish portion of the CoNLL-2002 dataset. Evaluating it over the test subset of this dataset, we get a F1-score of 89.17, being one of the best NER for Spanish available at the moment." ]
[ "TAGS\n#transformers #pytorch #safetensors #xlm-roberta #token-classification #es #dataset-CoNLL-2002 #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "# xlm-roberta-large-ner-spanish\n\nThis model is a XLM-Roberta-large model fine-tuned for Named Entity Recognition (NER) over the Spanish portion of the CoNLL-2002 dataset. Evaluating it over the test subset of this dataset, we get a F1-score of 89.17, being one of the best NER for Spanish available at the moment." ]
[ 61, 95 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #xlm-roberta #token-classification #es #dataset-CoNLL-2002 #autotrain_compatible #endpoints_compatible #has_space #region-us \n# xlm-roberta-large-ner-spanish\n\nThis model is a XLM-Roberta-large model fine-tuned for Named Entity Recognition (NER) over the Spanish portion of the CoNLL-2002 dataset. Evaluating it over the test subset of this dataset, we get a F1-score of 89.17, being one of the best NER for Spanish available at the moment." ]
[ -0.14638803899288177, 0.04773588478565216, -0.00460782228037715, 0.06910640746355057, 0.06508244574069977, -0.018244506791234016, -0.06427694857120514, 0.052728019654750824, -0.043091852217912674, 0.06111735850572586, 0.07805273681879044, 0.17519140243530273, -0.07334659993648529, 0.05934012681245804, -0.10476817935705185, -0.12920096516609192, 0.03945456072688103, -0.0005467571900226176, -0.02293195202946663, 0.10322271287441254, 0.05373852699995041, -0.06722241640090942, 0.06030077859759331, 0.023698996752500534, -0.11338841915130615, 0.07221975922584534, 0.059444867074489594, -0.11666349321603775, 0.09216932952404022, 0.026724260300397873, 0.1979278028011322, 0.08242736756801605, 0.017867114394903183, -0.036539118736982346, 0.014514672569930553, -0.052955616265535355, -0.036783505231142044, 0.07809267938137054, 0.06302635371685028, -0.11651734262704849, 0.14479884505271912, -0.08380299806594849, -0.03224431350827217, -0.0037424862384796143, -0.1263013780117035, -0.15310487151145935, -0.04456742852926254, 0.03550829738378525, 0.01860833168029785, 0.04639467969536781, 0.008044355548918247, 0.1915108859539032, -0.14759546518325806, 0.026893889531493187, 0.1426377147436142, -0.24805660545825958, -0.06555285304784775, 0.0648958683013916, 0.04999161139130592, 0.004891582764685154, 0.043529074639081955, 0.07193927466869354, 0.10297195613384247, -0.038281477987766266, 0.0704171434044838, -0.08952058851718903, -0.2135448157787323, 0.0486057884991169, -0.14261919260025024, -0.00764555623754859, 0.09843919426202774, -0.019174152985215187, -0.0018104888731613755, 0.0196570735424757, -0.06980251520872116, -0.008278768509626389, -0.02047084830701351, -0.08470231294631958, 0.0008988140034489334, -0.10177242755889893, 0.03611447662115097, 0.01730125956237316, -0.07462260872125626, -0.05336461216211319, -0.21738652884960175, 0.26816225051879883, 0.0006905331974849105, 0.04013412445783615, -0.03514092043042183, 0.03576266020536423, -0.06964093446731567, -0.0622202567756176, -0.0023365155793726444, -0.03558076173067093, -0.07717478275299072, -0.0056009539403021336, -0.06721611320972443, 0.039544351398944855, 0.10533741861581802, 0.06100662425160408, -0.10317740589380264, -0.03884299844503403, 0.0895264595746994, 0.021917197853326797, 0.018648803234100342, 0.09731905907392502, -0.039982687681913376, -0.07299554347991943, 0.05675193667411804, -0.05904393643140793, 0.034633297473192215, 0.021479522809386253, -0.12175965309143066, -0.10407868772745132, 0.052819423377513885, 0.05851070210337639, 0.019338997080922127, 0.04102770611643791, 0.0007283386075869203, -0.02157585695385933, 0.09351078420877457, -0.0734260231256485, 0.06908795982599258, 0.027634937316179276, -0.032651808112859726, 0.06003255769610405, -0.03630145639181137, -0.041572827845811844, 0.032163988798856735, -0.08127771317958832, -0.061461180448532104, -0.0645299032330513, -0.05927717685699463, -0.14074400067329407, 0.06732924282550812, -0.12220066785812378, 0.020394593477249146, -0.2329196184873581, -0.10951075702905655, -0.02772236429154873, 0.011478682048618793, -0.075632244348526, 0.005057044327259064, -0.06521937996149063, 0.01246621273458004, 0.014480596408247948, -0.04495580121874809, -0.027103031054139137, -0.03587383031845093, 0.03473219275474548, 0.13719958066940308, 0.09997929632663727, -0.11425457149744034, -0.017278004437685013, -0.11635911464691162, 0.02639039419591427, -0.030851364135742188, 0.04036018252372742, -0.04967176914215088, 0.020519664511084557, -0.075454942882061, -0.057233236730098724, -0.10833267867565155, 0.060658544301986694, 0.012407822534441948, 0.11548157781362534, -0.09518885612487793, -0.0822754055261612, 0.10197378695011139, -0.10801912844181061, -0.0732240155339241, 0.052001189440488815, -0.0062805586494505405, 0.031066525727510452, 0.07962267100811005, 0.11432625353336334, 0.1550682783126831, -0.058274853974580765, -0.0566708967089653, 0.027660170570015907, -0.08425784111022949, -0.21072420477867126, 0.07653956115245819, 0.12437927722930908, -0.1352521926164627, 0.04990725964307785, -0.15839256346225739, 0.059292178601026535, -0.03797101974487305, -0.06174778938293457, -0.02597201243042946, -0.02036230079829693, 0.05774414539337158, 0.028829425573349, 0.08410656452178955, -0.05368349701166153, -0.025476578623056412, 0.11314256489276886, 0.027187595143914223, 0.007625835947692394, 0.002017368795350194, -0.10254646837711334, 0.22337305545806885, -0.19632191956043243, -0.032478153705596924, -0.15990296006202698, -0.09097039699554443, -0.05384180694818497, 0.012523749843239784, -0.0035985696595162153, 0.09629350900650024, 0.03447766229510307, -0.026940930634737015, 0.009246158413589, 0.0463595874607563, 0.05685108155012131, 0.02761678770184517, 0.021395590156316757, -0.10022841393947601, 0.020219001919031143, -0.052884768694639206, 0.08127844333648682, -0.1897265911102295, -0.02875794842839241, -0.05618707463145256, 0.020060133188962936, -0.04388939589262009, 0.09230245649814606, -0.027218058705329895, 0.0970396026968956, -0.07408761233091354, 0.03003602661192417, 0.09824289381504059, 0.003616382135078311, -0.04861195757985115, 0.06828750669956207, -0.06477854400873184, 0.17295107245445251, 0.08872146904468536, -0.07697190344333649, -0.05340610817074776, -0.045749615877866745, -0.031967248767614365, 0.06075244024395943, -0.015760326758027077, 0.037690117955207825, 0.09770826250314713, -0.05730453133583069, 0.1093982681632042, -0.12214767932891846, -0.03925999253988266, 0.06482458114624023, -0.08949877321720123, -0.0620526447892189, 0.15172334015369415, 0.09452512115240097, -0.17029376327991486, 0.11192109435796738, 0.08919417858123779, -0.15329907834529877, 0.10411087423563004, 0.015618515200912952, -0.035297323018312454, -0.03380458801984787, -0.0015146478544920683, 0.044155724346637726, 0.054645709693431854, -0.019743826240301132, -0.03272219002246857, 0.04923204705119133, -0.019997593015432358, 0.0801001712679863, -0.09354954212903976, -0.02473788522183895, 0.032913096249103546, -0.021571120247244835, -0.07168103754520416, 0.09187249094247818, -0.020596053451299667, 0.09764460474252701, -0.012953400611877441, -0.1568288505077362, 0.005738061852753162, 0.04570623114705086, -0.06462475657463074, 0.16145959496498108, -0.027945473790168762, -0.23399853706359863, -0.11989353597164154, 0.017309794202446938, -0.0634356290102005, 0.03010411560535431, 0.010082877241075039, -0.0626474916934967, 0.004661901853978634, 0.006356107536703348, -0.017840635031461716, 0.027139758691191673, 0.0229179784655571, -0.06970401108264923, 0.023004133254289627, -0.0034793042577803135, -0.052431680262088776, -0.008494308218359947, -0.08128123730421066, -0.07184623181819916, 0.06914417445659637, -0.09810231626033783, 0.19873493909835815, 0.15916894376277924, -0.03891100361943245, 0.013987481594085693, 0.003967803902924061, 0.11746998876333237, -0.05098683387041092, -0.02264295145869255, 0.1408415138721466, 0.07163791358470917, -0.05329284071922302, 0.08187292516231537, 0.02110290713608265, -0.020419955253601074, -0.057910896837711334, -0.020253179594874382, -0.09112896025180817, -0.1714332550764084, -0.14557132124900818, -0.07855718582868576, -0.10590551793575287, 0.013299671933054924, 0.017429353669285774, 0.03380419686436653, 0.09007744491100311, 0.08103588968515396, -0.06601991504430771, -0.0833788514137268, 0.033332694321870804, 0.21613936126232147, 0.0227263905107975, 0.10945157706737518, -0.04749983176589012, -0.15660519897937775, 0.08233378827571869, 0.07021355628967285, 0.15500392019748688, 0.014236664399504662, -0.0010126789566129446, 0.06491543352603912, 0.11895153671503067, 0.07256972789764404, 0.104767344892025, -0.036827340722084045, -0.04874932020902634, -0.01615230366587639, -0.04551327973604202, -0.007699836045503616, -0.04861056059598923, -0.036395810544490814, -0.015786830335855484, -0.0735095888376236, -0.07817672193050385, 0.08053083717823029, -0.07789487391710281, 0.08534745126962662, -0.33300238847732544, -0.005889503750950098, -0.010697493329644203, 0.03817920759320259, -0.003416775492951274, -0.01990344747900963, 0.06989704072475433, -0.0008725790539756417, 0.09962975978851318, -0.011964133009314537, 0.06268057972192764, 0.04108921065926552, 0.03100760653614998, -0.07962062954902649, 0.05998014286160469, 0.051577646285295486, 0.09846863895654678, -0.019555021077394485, 0.28489845991134644, 0.02139466628432274, -0.012713891454041004, 0.021403461694717407, -0.06975951045751572, -0.0406729020178318, 0.14922194182872772, 0.13345542550086975, 0.025260794907808304, -0.11200499534606934, -0.08440373837947845, -0.06716745346784592, 0.0854981541633606, -0.051147352904081345, 0.02954467013478279, 0.10470221936702728, -0.005660443566739559, -0.03213473781943321, 0.013482238166034222, 0.1227225810289383, -0.0006545368814840913, -0.10391310602426529, -0.04448632523417473, 0.0844777449965477, -0.15844842791557312, 0.014845743775367737, -0.08631435036659241, -0.15231522917747498, 0.17941002547740936, -0.05059371516108513, 0.004738279618322849, -0.12452254444360733, 0.0843854546546936, 0.10845954716205597, -0.10796044766902924, 0.011793236248195171, -0.029063623398542404, 0.03512543812394142, 0.004325792193412781, -0.11172135919332504, 0.06919841468334198, -0.11825734376907349, 0.03700820356607437, 0.001128589385189116, 0.05827789753675461, -0.010268873535096645, 0.01639256253838539, 0.09453467279672623, 0.03102744184434414, -0.01438022218644619, -0.08301600813865662, -0.0671488419175148, 0.05203942582011223, 0.027648264542222023, 0.008388597518205643, -0.07929336279630661, -0.12152300029993057, 0.023326946422457695, 0.054371852427721024, 0.19223447144031525, 0.033385008573532104, -0.11211277544498444, 0.05263245105743408, 0.1344117820262909, -0.054399311542510986, -0.25453680753707886, -0.04226410761475563, 0.05008605122566223, 0.05478137731552124, -0.017395097762346268, -0.007479874882847071, 0.12733794748783112, 0.15870347619056702, -0.033306390047073364, -0.039786871522665024, -0.1897888034582138, -0.04067686200141907, 0.09383261948823929, 0.04935942590236664, 0.45352011919021606, -0.03849770873785019, -0.051225028932094574, -0.03680361062288284, -0.012036050669848919, 0.15694822371006012, -0.14823320508003235, 0.04841136559844017, -0.05448418855667114, 0.002065675798803568, 0.04990269988775253, -0.023181337863206863, 0.12346361577510834, -0.041895948350429535, 0.037430763244628906, 0.00603640079498291, -0.05110680311918259, 0.03519106283783913, -0.049976278096437454, 0.047328658401966095, -0.0015351955080404878, 0.03152572363615036, -0.03032929077744484, -0.08484666049480438, -0.09104819595813751, 0.13364657759666443, 0.020969603210687637, 0.026136204600334167, -0.013663818128407001, 0.025620872154831886, 0.02289525792002678, -0.02903572842478752, 0.1294155716896057, -0.050475042313337326, 0.09597077965736389, 0.09198902547359467, 0.1148873120546341, -0.04099665954709053, 0.01125399861484766, 0.04021761938929558, -0.012360314838588238, 0.08067076653242111, -0.05054647475481033, 0.053762923926115036, 0.1404082477092743, 0.006201218813657761, -0.002586150774732232, 0.052730925381183624, -0.007038130424916744, -0.021755699068307877, 0.20891878008842468, -0.037783145904541016, 0.006585259921848774, -0.03349524736404419, -0.1455995887517929, -0.00419196393340826, 0.06955469399690628, 0.13710930943489075, -0.03699257969856262, -0.025234198197722435, -0.026594286784529686, -0.05982886999845505, -0.03797151893377304, 0.14176301658153534, 0.07517272233963013, 0.0018810763722285628, -0.09141112118959427, -0.06642933189868927, 0.03153618425130844, -0.0058646672405302525, -0.04494026303291321, -0.0010907824616879225, -0.0763222724199295, -0.09566742181777954, 0.04232089966535568, 0.19041815400123596, -0.29980969429016113, -0.14553919434547424, -0.12591613829135895, -0.09851177781820297, 0.01210222952067852, 0.17833662033081055, 0.1059420257806778, 0.0018784418934956193, 0.010173274204134941, -0.049648482352495193, -0.06459635496139526, 0.040709238499403, 0.035119324922561646, 0.06565224379301071, -0.18456068634986877, 0.05491049215197563, -0.020023399963974953, 0.053402483463287354, -0.08308516442775726, 0.01450273860245943, -0.14467675983905792, 0.01446023304015398, -0.08391618728637695, 0.06444638222455978, -0.06796451658010483, 0.003964378032833338, 0.0074789682403206825, -0.015807926654815674, -0.10502686351537704, -0.002382306382060051, -0.07019363343715668, 0.06232600659132004, -0.011521883308887482, 0.02599109709262848, -0.046303801238536835, -0.020157892256975174, -0.003256983356550336, -0.003671868471428752, -0.00003510881288093515, 0.019969213753938675, 0.011178245767951012, 0.13291090726852417, -0.23838523030281067, -0.009673871099948883, 0.13201627135276794, 0.09976065158843994, 0.10556056350469589, -0.07345210015773773, 0.10050138086080551, 0.16051380336284637, 0.04463709518313408, 0.047323741018772125, -0.08181656897068024, -0.07856549322605133, 0.026670629158616066, -0.05158116668462753, -0.12350507080554962, -0.0065533677116036415, 0.01600729301571846, 0.08222512155771255, 0.04593624547123909, 0.1252753734588623, -0.08444090187549591, -0.016275817528367043, -0.08891423046588898, -0.002839982509613037, -0.03764273598790169, -0.08713530004024506, -0.11111252009868622, -0.006747625768184662, 0.03108339011669159, 0.03620858117938042, 0.20916442573070526, 0.1491505354642868, 0.05175468325614929, -0.0461767241358757, -0.024649586528539658, 0.08260048925876617, -0.03345378115773201, 0.1695202887058258, 0.12098215520381927, 0.02668013609945774, -0.03287920728325844, 0.10054689645767212, 0.047032058238983154, 0.01401466317474842, 0.1078217476606369, 0.15390102565288544, 0.012679433450102806, 0.09077360481023788, 0.1125146895647049, -0.023190351203083992, 0.05637495592236519, -0.030193839222192764, -0.14882326126098633, 0.002467019949108362, 0.06344328820705414, -0.021369557827711105, 0.19080542027950287, -0.0645100325345993, 0.027336427941918373, 0.027338538318872452, -0.012554414570331573, -0.19031687080860138, -0.21689803898334503, -0.1337473839521408, -0.12761470675468445, -0.013887452892959118, -0.07122723013162613, -0.09967963397502899, -0.07363578677177429, 0.01299470104277134, -0.027229437604546547, 0.03199119493365288, 0.004268252290785313, -0.0579838827252388, -0.005500332452356815, -0.00347512518055737, 0.06787916272878647, 0.043777476996183395, 0.0776979923248291, -0.0025548271369189024, 0.05312711000442505, -0.0010161064565181732, 0.0010944213718175888, 0.057387448847293854, 0.03321694955229759, -0.050399623811244965, -0.01762782223522663, -0.07923107594251633, 0.03688064217567444, 0.0415022186934948, 0.044330108910799026, 0.027153784409165382, -0.06407349556684494, -0.0008777413750067353, 0.17333000898361206, 0.00843256525695324, -0.08093050867319107, -0.06494719535112381, 0.2671188712120056, 0.05418965965509415, 0.08503534644842148, -0.02336464449763298, -0.012348104268312454, -0.011156325228512287, 0.2266577184200287, 0.26107051968574524, 0.017494620755314827, -0.00012344439164735377, -0.04916245862841606, 0.02131533809006214, 0.0446886345744133, 0.06973601877689362, 0.049657829105854034, 0.3665870726108551, -0.008179450407624245, -0.14785371720790863, -0.08420145511627197, 0.11020626872777939, -0.04092991352081299, 0.031494736671447754, 0.022080760449171066, -0.06792710721492767, -0.0417482815682888, 0.08657307177782059, -0.06350617110729218, -0.045987971127033234, 0.12868472933769226, -0.08488694578409195, -0.13057059049606323, -0.053457122296094894, 0.08768033981323242, -0.0029159081168472767, 0.07013610005378723, -0.08326820284128189, -0.06557230651378632, -0.09386703372001648, -0.002812877530232072, -0.16733868420124054, -0.051502443850040436, 0.05356635898351669, 0.13910599052906036, 0.13955368101596832, -0.0028008397202938795, 0.10287140309810638, 0.08983452618122101, -0.017393384128808975, -0.10481236129999161, 0.13986831903457642, -0.007087393198162317, -0.0753839910030365, 0.1655467003583908, -0.07442952692508698, 0.0005156834959052503, -0.07077743113040924, 0.07314342260360718, -0.11816571652889252, 0.008752886205911636, 0.031480979174375534, -0.01669257879257202, -0.0882076621055603, 0.07630616426467896, -0.050513822585344315, 0.09498818218708038, 0.1382623165845871, -0.007894893176853657, 0.033659350126981735, -0.06591619551181793, 0.10584630072116852, 0.03347425535321236, 0.10257798433303833, -0.016170697286725044, -0.14944472908973694, -0.034192465245723724, -0.009942427277565002, -0.046693552285432816, -0.15488383173942566, 0.019229017198085785, -0.03439294174313545, -0.04055304080247879, -0.0018920835573226213, 0.007226803805679083, 0.09406298398971558, 0.07445123791694641, 0.008522214367985725, -0.03183512017130852, -0.015889756381511688, 0.0258328877389431, -0.06473098695278168, -0.061177827417850494 ]
null
null
null
# Description A pre-trained model for volumetric (3D) segmentation of the spleen from CT image. # Model Overview This model is trained using the runner-up [1] awarded pipeline of the "Medical Segmentation Decathlon Challenge 2018" using the UNet architecture [2] with 32 training images and 9 validation images. ## Data The training dataset is Task09_Spleen.tar from http://medicaldecathlon.com/. ## Training configuration The training was performed with at least 12GB-memory GPUs. Actual Model Input: 96 x 96 x 96 ## Input and output formats Input: 1 channel CT image Output: 2 channels: Label 1: spleen; Label 0: everything else ## Scores This model achieves the following Dice score on the validation data (our own split from the training dataset): Mean Dice = 0.96 ## commands example Execute inference: ``` python -m monai.bundle run evaluator --meta_file configs/metadata.json --config_file configs/inference.json --logging_file configs/logging.conf ``` Verify the metadata format: ``` python -m monai.bundle verify_metadata --meta_file configs/metadata.json --filepath eval/schema.json ``` Verify the data shape of network: ``` python -m monai.bundle verify_net_in_out network_def --meta_file configs/metadata.json --config_file configs/inference.json ``` Export checkpoint to TorchScript file: ``` python -m monai.bundle export network_def --filepath models/model.ts --ckpt_file models/model.pt --meta_file configs/metadata.json --config_file configs/inference.json ``` # Disclaimer This is an example, not to be used for diagnostic purposes. # References [1] Xia, Yingda, et al. "3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training." arXiv preprint arXiv:1811.12506 (2018). https://arxiv.org/abs/1811.12506. [2] Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. https://doi.org/10.1007/978-3-030-12029-0_40
{"tags": ["monai"]}
null
MONAI/example_spleen_segmentation
[ "monai", "arxiv:1811.12506", "region:us" ]
2022-03-02T23:29:04+00:00
[ "1811.12506" ]
[]
TAGS #monai #arxiv-1811.12506 #region-us
# Description A pre-trained model for volumetric (3D) segmentation of the spleen from CT image. # Model Overview This model is trained using the runner-up [1] awarded pipeline of the "Medical Segmentation Decathlon Challenge 2018" using the UNet architecture [2] with 32 training images and 9 validation images. ## Data The training dataset is Task09_Spleen.tar from URL ## Training configuration The training was performed with at least 12GB-memory GPUs. Actual Model Input: 96 x 96 x 96 ## Input and output formats Input: 1 channel CT image Output: 2 channels: Label 1: spleen; Label 0: everything else ## Scores This model achieves the following Dice score on the validation data (our own split from the training dataset): Mean Dice = 0.96 ## commands example Execute inference: Verify the metadata format: Verify the data shape of network: Export checkpoint to TorchScript file: # Disclaimer This is an example, not to be used for diagnostic purposes. # References [1] Xia, Yingda, et al. "3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training." arXiv preprint arXiv:1811.12506 (2018). URL [2] Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. URL
[ "# Description\r\nA pre-trained model for volumetric (3D) segmentation of the spleen from CT image.", "# Model Overview\r\nThis model is trained using the runner-up [1] awarded pipeline of the \"Medical Segmentation Decathlon Challenge 2018\" using the UNet architecture [2] with 32 training images and 9 validation images.", "## Data\r\nThe training dataset is Task09_Spleen.tar from URL", "## Training configuration\r\nThe training was performed with at least 12GB-memory GPUs.\r\n\r\nActual Model Input: 96 x 96 x 96", "## Input and output formats\r\nInput: 1 channel CT image\r\n\r\nOutput: 2 channels: Label 1: spleen; Label 0: everything else", "## Scores\r\nThis model achieves the following Dice score on the validation data (our own split from the training dataset):\r\n\r\nMean Dice = 0.96", "## commands example\r\nExecute inference:\r\n\r\n\r\n\r\nVerify the metadata format:\r\n\r\n\r\n\r\nVerify the data shape of network:\r\n\r\n\r\n\r\nExport checkpoint to TorchScript file:", "# Disclaimer\r\nThis is an example, not to be used for diagnostic purposes.", "# References\r\n[1] Xia, Yingda, et al. \"3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training.\" arXiv preprint arXiv:1811.12506 (2018). URL\r\n\r\n[2] Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. URL" ]
[ "TAGS\n#monai #arxiv-1811.12506 #region-us \n", "# Description\r\nA pre-trained model for volumetric (3D) segmentation of the spleen from CT image.", "# Model Overview\r\nThis model is trained using the runner-up [1] awarded pipeline of the \"Medical Segmentation Decathlon Challenge 2018\" using the UNet architecture [2] with 32 training images and 9 validation images.", "## Data\r\nThe training dataset is Task09_Spleen.tar from URL", "## Training configuration\r\nThe training was performed with at least 12GB-memory GPUs.\r\n\r\nActual Model Input: 96 x 96 x 96", "## Input and output formats\r\nInput: 1 channel CT image\r\n\r\nOutput: 2 channels: Label 1: spleen; Label 0: everything else", "## Scores\r\nThis model achieves the following Dice score on the validation data (our own split from the training dataset):\r\n\r\nMean Dice = 0.96", "## commands example\r\nExecute inference:\r\n\r\n\r\n\r\nVerify the metadata format:\r\n\r\n\r\n\r\nVerify the data shape of network:\r\n\r\n\r\n\r\nExport checkpoint to TorchScript file:", "# Disclaimer\r\nThis is an example, not to be used for diagnostic purposes.", "# References\r\n[1] Xia, Yingda, et al. \"3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training.\" arXiv preprint arXiv:1811.12506 (2018). URL\r\n\r\n[2] Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. URL" ]
[ 18, 24, 50, 18, 30, 31, 35, 34, 16, 167 ]
[ "passage: TAGS\n#monai #arxiv-1811.12506 #region-us \n# Description\r\nA pre-trained model for volumetric (3D) segmentation of the spleen from CT image.# Model Overview\r\nThis model is trained using the runner-up [1] awarded pipeline of the \"Medical Segmentation Decathlon Challenge 2018\" using the UNet architecture [2] with 32 training images and 9 validation images.## Data\r\nThe training dataset is Task09_Spleen.tar from URL## Training configuration\r\nThe training was performed with at least 12GB-memory GPUs.\r\n\r\nActual Model Input: 96 x 96 x 96## Input and output formats\r\nInput: 1 channel CT image\r\n\r\nOutput: 2 channels: Label 1: spleen; Label 0: everything else## Scores\r\nThis model achieves the following Dice score on the validation data (our own split from the training dataset):\r\n\r\nMean Dice = 0.96## commands example\r\nExecute inference:\r\n\r\n\r\n\r\nVerify the metadata format:\r\n\r\n\r\n\r\nVerify the data shape of network:\r\n\r\n\r\n\r\nExport checkpoint to TorchScript file:# Disclaimer\r\nThis is an example, not to be used for diagnostic purposes.# References\r\n[1] Xia, Yingda, et al. \"3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training.\" arXiv preprint arXiv:1811.12506 (2018). URL\r\n\r\n[2] Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. URL" ]
[ -0.1123567521572113, 0.06305604428052902, -0.003036136506125331, 0.042111583054065704, 0.1109774112701416, -0.0076245698146522045, 0.08302826434373856, 0.06386546045541763, 0.01820768602192402, 0.1671653538942337, -0.006418735254555941, 0.0007696262327954173, 0.08218815922737122, 0.18243128061294556, 0.01413219515234232, -0.094639353454113, 0.0507851280272007, -0.0920732393860817, 0.042703501880168915, 0.059018831700086594, 0.07519850879907608, -0.1298958957195282, 0.0825343206524849, -0.029546251520514488, -0.12105616927146912, -0.01507467683404684, 0.005388644058257341, -0.03178464621305466, 0.05820216238498688, 0.042820826172828674, 0.051435619592666626, -0.029671665281057358, 0.10321228951215744, -0.18262644112110138, 0.0148917930200696, 0.07225421816110611, 0.021408559754490852, 0.045721810311079025, 0.07933298498392105, 0.014026033692061901, 0.03239733353257179, -0.04985656961798668, 0.07893253117799759, 0.007163963746279478, -0.07204094529151917, 0.04556446895003319, -0.14451877772808075, 0.08723776787519455, 0.13225942850112915, 0.07112499326467514, -0.013053222559392452, 0.12690842151641846, -0.04686037823557854, 0.044506143778562546, 0.017450567334890366, -0.16027747094631195, -0.06504563242197037, 0.05052942782640457, 0.025229498744010925, 0.07708099484443665, -0.06820493191480637, 0.01628098450601101, 0.03445812687277794, 0.036153510212898254, 0.0043012225069105625, -0.028058718889951706, -0.0292199719697237, -0.02393290214240551, -0.12747551500797272, -0.04402957484126091, 0.16100017726421356, -0.00457583274692297, -0.07624975591897964, -0.023271536454558372, -0.0225311778485775, 0.056833527982234955, 0.003575411159545183, -0.045714475214481354, 0.017844505608081818, -0.04814204201102257, 0.06475774943828583, -0.02423182688653469, -0.11768709868192673, -0.08936411887407303, -0.10899976640939713, 0.06315083801746368, 0.05972206965088844, 0.033869072794914246, -0.009406822733581066, 0.0817079246044159, -0.025942014530301094, -0.06554286926984787, -0.03709058463573456, -0.044896531850099564, -0.16210709512233734, -0.049332283437252045, -0.0415848046541214, -0.10707109421491623, 0.0003718089428730309, 0.1301870197057724, 0.01179046556353569, 0.056435003876686096, -0.016969885677099228, 0.017384318634867668, 0.03266321122646332, 0.05645069479942322, -0.07029104977846146, 0.03748027980327606, -0.024402128532528877, 0.06714586913585663, 0.03388513624668121, -0.028271062299609184, -0.02100738324224949, -0.000438506540376693, 0.033783141523599625, 0.037291113287210464, -0.01440587267279625, -0.033181723207235336, -0.0736907348036766, -0.051653772592544556, 0.09890662133693695, -0.14069435000419617, 0.023171499371528625, -0.0018008657498285174, -0.03518154099583626, 0.009940971620380878, 0.04800119996070862, 0.016963062807917595, -0.0876949280500412, 0.011496221646666527, -0.0880051702260971, 0.044999390840530396, -0.046732474118471146, -0.06914278119802475, 0.03619090095162392, -0.09570521116256714, -0.06891719251871109, -0.12173821032047272, -0.12530305981636047, -0.10624915361404419, 0.005754393525421619, -0.06707656383514404, 0.031718045473098755, -0.03454960882663727, -0.008298949338495731, 0.0019064336083829403, 0.028127657249569893, 0.07222119718790054, -0.019115326926112175, -0.0015346190193668008, -0.004056626930832863, 0.042149804532527924, -0.01071092113852501, 0.037791624665260315, -0.03807591646909714, 0.013313095085322857, -0.07500767707824707, 0.09119127690792084, -0.0910724326968193, -0.015106375329196453, -0.11913394927978516, 0.02227111905813217, -0.04079153761267662, 0.007885901257395744, 0.08877982199192047, 0.08017939329147339, -0.22766809165477753, 0.003949332050979137, 0.13351809978485107, -0.13886778056621552, -0.09216050058603287, 0.07689902186393738, -0.026548517867922783, -0.0002539577253628522, 0.08320066332817078, 0.07464024424552917, 0.07181282341480255, -0.18586908280849457, -0.01780010759830475, -0.07684996724128723, 0.03803716599941254, 0.038962870836257935, 0.07183757424354553, -0.020532654598355293, 0.03939475864171982, 0.03221715986728668, -0.12174329161643982, -0.03310312330722809, -0.028390977531671524, -0.04636390879750252, -0.02718721330165863, -0.061527058482170105, -0.04981360584497452, -0.011822975240647793, 0.024797849357128143, -0.0008845370030030608, -0.02090071327984333, -0.0021530797239392996, 0.09438139945268631, -0.02410660870373249, 0.02551252953708172, -0.07020802050828934, 0.08175346255302429, -0.08866480737924576, -0.006747965235263109, -0.19345149397850037, -0.0758851170539856, 0.0763046145439148, -0.06231897696852684, 0.06487659364938736, -0.015964534133672714, -0.01716361753642559, 0.07418516278266907, -0.004446354694664478, 0.0006546509102918208, -0.032960422337055206, -0.013324351981282234, -0.08799535781145096, -0.11606764048337936, -0.012959099374711514, -0.07015768438577652, -0.0015659125056117773, -0.12984801828861237, 0.007326429709792137, -0.007015314418822527, 0.10653483122587204, -0.011557046324014664, -0.03659404069185257, 0.014471800066530704, 0.039069343358278275, -0.021202847361564636, -0.049609821289777756, 0.012625784613192081, 0.005886488128453493, -0.006845501717180014, 0.032120998948812485, -0.11967717111110687, -0.1460411101579666, 0.045188140124082565, 0.08523420244455338, -0.09964337944984436, -0.08980917185544968, 0.006836119573563337, -0.05259023606777191, -0.16740474104881287, -0.04437314718961716, 0.13858775794506073, 0.012784351594746113, 0.044494595378637314, -0.05615315958857536, -0.033691130578517914, 0.0014142043655738235, -0.010048738680779934, -0.016804352402687073, 0.049584049731492996, 0.05228788033127785, -0.12057595700025558, 0.04462838172912598, 0.00250926217995584, -0.07240623980760574, 0.08866848796606064, -0.02219552919268608, -0.09107514470815659, -0.028977295383810997, 0.05047934129834175, 0.035733096301555634, 0.10552893579006195, 0.030874080955982208, -0.021640753373503685, 0.028840241953730583, 0.016692044213414192, 0.0006912240060046315, -0.11414641886949539, 0.0406876839697361, 0.0009109407546930015, 0.0037018859293311834, 0.008328699506819248, -0.03843627870082855, -0.02714068442583084, 0.08487777411937714, -0.012813081033527851, 0.09992721676826477, -0.018538355827331543, -0.06409847736358643, -0.1298808455467224, 0.18987570703029633, -0.10723336786031723, -0.188202366232872, -0.1161523312330246, 0.08170339465141296, -0.060227613896131516, -0.002836104715242982, -0.008775630965828896, -0.03858397528529167, -0.08852163702249527, -0.11894305795431137, -0.009280367754399776, 0.0030462956055998802, -0.03570559248328209, -0.03761497139930725, 0.023501286283135414, 0.007274781819432974, -0.08638150244951248, 0.013409719802439213, -0.05195358023047447, -0.003918027970939875, 0.040124207735061646, 0.03440214693546295, 0.09334947168827057, 0.10622381418943405, 0.02034085802733898, -0.029826590791344643, -0.0032464938703924417, 0.11501339077949524, -0.03016534075140953, 0.083856962621212, 0.12693141400814056, -0.011997765861451626, 0.0617319792509079, 0.10204887390136719, 0.0008697008015587926, -0.050941433757543564, 0.06765539199113846, 0.017481664195656776, -0.036000851541757584, -0.2444121539592743, -0.09321776032447815, -0.06886725127696991, -0.08496417850255966, 0.0760062038898468, 0.02938830479979515, -0.012390641495585442, 0.06919873505830765, -0.02611478604376316, 0.040121059864759445, 0.022487737238407135, 0.061347320675849915, 0.09629310667514801, 0.04540114104747772, 0.09037111699581146, -0.029712991788983345, 0.061301037669181824, 0.08351139724254608, 0.11751724779605865, 0.24910542368888855, -0.04046834260225296, 0.06043250486254692, 0.07660803943872452, 0.03908700495958328, 0.028350846841931343, 0.06764627248048782, -0.003544105915352702, 0.038675978779792786, -0.004438335541635752, -0.05246363580226898, -0.022973792627453804, 0.0905376523733139, 0.05655262991786003, -0.020380064845085144, -0.02292456477880478, 0.06814191490411758, 0.03300857916474342, 0.1630064994096756, 0.03151574358344078, -0.20367029309272766, -0.07114402204751968, 0.021965742111206055, -0.024978099390864372, -0.046561092138290405, -0.01034852210432291, 0.19320353865623474, -0.07808200269937515, 0.05124149098992348, -0.029650744050741196, 0.07895980030298233, -0.009186171926558018, -0.04416866973042488, 0.0007336662383750081, 0.08266481757164001, 0.001275748130865395, 0.0627860352396965, -0.22400829195976257, 0.09137839078903198, -0.009817782789468765, 0.080819271504879, -0.025478050112724304, 0.05624658986926079, 0.040954750031232834, 0.014771705493330956, 0.1519915610551834, 0.016725173220038414, -0.11603429913520813, -0.06480032205581665, -0.08837094902992249, 0.02573087252676487, 0.0606258362531662, -0.05496978014707565, 0.06456950306892395, 0.010227780789136887, 0.009456206113100052, -0.04064124450087547, -0.0422150194644928, -0.17325705289840698, -0.15398041903972626, 0.023059271275997162, -0.09375899285078049, -0.06612008064985275, -0.05846024304628372, -0.0596231073141098, -0.04074171558022499, 0.05109163746237755, -0.1776677370071411, -0.0387265607714653, -0.14089229702949524, 0.08278728276491165, 0.12271852791309357, -0.0680500790476799, 0.059456270188093185, -0.019911035895347595, 0.1140475943684578, -0.05068032070994377, -0.06784317642450333, 0.05028555914759636, -0.09401892870664597, -0.1687316596508026, -0.08648315817117691, 0.0766913965344429, 0.1121320053935051, 0.035939574241638184, 0.01575031690299511, 0.06038304790854454, -0.021877169609069824, -0.09952190518379211, 0.03688099980354309, 0.19674721360206604, 0.09257698059082031, 0.08074340224266052, -0.13661140203475952, -0.21476736664772034, -0.07962876558303833, -0.046799324452877045, 0.02825680933892727, 0.12265325337648392, -0.028367767110466957, 0.1038033664226532, 0.15282835066318512, -0.10874580591917038, -0.21534396708011627, -0.014775055460631847, 0.08202122896909714, 0.07505063712596893, 0.04702593758702278, -0.15664120018482208, 0.13180434703826904, 0.06751677393913269, -0.002839848631992936, 0.05549638345837593, -0.19593824446201324, -0.10835543274879456, 0.031577371060848236, 0.08683892339468002, -0.035580042749643326, -0.09478463232517242, -0.05614762008190155, 0.016033455729484558, -0.03875788673758507, 0.11847826093435287, -0.013801698572933674, 0.0537966713309288, -0.00005027068982599303, -0.03927893936634064, 0.005776997189968824, -0.0397891029715538, 0.1309090554714203, 0.07609858363866806, 0.04897858947515488, -0.026151511818170547, -0.021848095580935478, 0.04001576080918312, -0.07039965689182281, 0.11072316020727158, 0.01719355583190918, 0.08321947604417801, -0.044267743825912476, -0.03616749867796898, -0.0572829432785511, 0.04033305123448372, -0.028686342760920525, -0.0025898294989019632, -0.07046232372522354, 0.09104278683662415, 0.06564203649759293, -0.008642241358757019, 0.032138701528310776, -0.018494533374905586, 0.027576353400945663, 0.1519564837217331, 0.10451164841651917, 0.07171376794576645, -0.06220637261867523, -0.03402906283736229, -0.0052690100856125355, 0.06063484773039818, -0.09648586064577103, 0.03836794197559357, 0.1322089582681656, 0.049060530960559845, 0.09574364125728607, 0.025792526081204414, -0.13750511407852173, 0.04324857518076897, 0.03676276281476021, -0.0556396022439003, -0.038483016192913055, 0.03243647515773773, 0.10491286218166351, -0.08355391770601273, -0.017446760088205338, 0.09772046655416489, -0.055275555700063705, -0.027478540316224098, -0.019552256911993027, 0.09259819239377975, -0.0004632528289221227, 0.2033117115497589, 0.05877260863780975, 0.02428419515490532, -0.0568026639521122, 0.14151552319526672, 0.06422854959964752, -0.08729339390993118, 0.027167532593011856, 0.06970841437578201, -0.12436038255691528, -0.07219033688306808, 0.002894520526751876, 0.06370073556900024, -0.04386356845498085, -0.06711640954017639, -0.005966890137642622, -0.10392013937234879, 0.035999055951833725, 0.13439100980758667, 0.03541130945086479, 0.03411558270454407, -0.05258708447217941, 0.004856652580201626, -0.032943207770586014, 0.12352178990840912, 0.08762226998806, 0.08321002870798111, -0.07328273355960846, 0.049434203654527664, 0.035794805735349655, 0.01662362553179264, -0.025209689512848854, -0.012122792191803455, -0.0863029807806015, 0.005248697940260172, -0.10736925154924393, 0.08043189346790314, -0.05772290751338005, -0.040738336741924286, -0.004272609483450651, -0.033581480383872986, 0.010910703800618649, 0.07734180986881256, -0.042406242340803146, -0.03232559561729431, -0.07437220215797424, 0.07678034901618958, -0.10646572709083557, -0.008294056169688702, 0.04300890862941742, -0.09531071782112122, 0.06090455502271652, 0.020636001601815224, 0.007990420795977116, 0.03113667666912079, -0.14376363158226013, 0.023111559450626373, 0.0290545504540205, 0.06031408905982971, -0.007687597535550594, -0.15124636888504028, -0.014407019130885601, 0.012877780012786388, -0.029288994148373604, -0.03297511488199234, 0.06363925337791443, -0.048750657588243484, -0.013045364059507847, -0.048665985465049744, -0.06833551824092865, -0.0677674412727356, 0.03690924122929573, 0.08950680494308472, 0.07994917035102844, 0.05765591189265251, -0.04937158524990082, 0.028771603479981422, -0.11429273337125778, -0.01955232210457325, 0.023611219599843025, 0.01700012758374214, -0.12619441747665405, -0.04605667665600777, 0.08574385195970535, 0.00716455839574337, 0.06628265976905823, -0.04297293722629547, 0.014686116017401218, 0.008247085846960545, 0.006967488676309586, -0.09804534912109375, 0.0802643671631813, 0.05704430118203163, -0.0034365770407021046, 0.005525368265807629, -0.013549821451306343, -0.05411604419350624, -0.009236756712198257, 0.02580663375556469, 0.13953541219234467, 0.11429000645875931, 0.03634891286492348, 0.07130592316389084, 0.05926482751965523, -0.07557343691587448, -0.058794599026441574, 0.06922823935747147, -0.12036234140396118, -0.007309858221560717, -0.025080367922782898, 0.03408672660589218, 0.05234786868095398, -0.19717727601528168, 0.044133540242910385, -0.0309299323707819, -0.09079761803150177, -0.016873331740498543, -0.14804314076900482, -0.043500855565071106, -0.018901381641626358, -0.024318447336554527, -0.09548968821763992, 0.0261091236025095, 0.15604664385318756, 0.03949796408414841, -0.0006081197061575949, 0.12515461444854736, -0.06602317094802856, -0.06151552498340607, 0.05747262015938759, 0.021587491035461426, 0.015538966283202171, 0.09551960974931717, 0.009384763427078724, 0.0693616047501564, 0.046743154525756836, 0.07236962020397186, 0.050530917942523956, 0.10963750630617142, 0.059392355382442474, 0.030674424022436142, -0.035602468997240067, 0.0303079504519701, -0.06119530275464058, -0.01787816546857357, 0.07720950990915298, 0.10246008634567261, -0.007767784409224987, 0.013935660943388939, 0.1370711475610733, -0.030017681419849396, -0.0416136272251606, -0.18866613507270813, 0.10888168215751648, 0.003831643145531416, 0.0289398692548275, 0.006379479542374611, -0.12021012604236603, -0.027423791587352753, 0.13486874103546143, -0.007385901641100645, -0.054721899330616, -0.0225449837744236, 0.031190263107419014, -0.01814866252243519, -0.035118360072374344, 0.09437896311283112, 0.023119546473026276, 0.19503089785575867, -0.04385378584265709, 0.06945115327835083, -0.02441738359630108, -0.07285315543413162, -0.041063565760850906, 0.019238321110606194, -0.04162764176726341, 0.014543539844453335, -0.07747837156057358, 0.07655443996191025, -0.021024925634264946, -0.2041396051645279, 0.09452295303344727, -0.02592969685792923, -0.10294781625270844, 0.004652685485780239, 0.04369222745299339, -0.015047182328999043, 0.018658259883522987, -0.023500783368945122, 0.05128127709031105, 0.1680261641740799, 0.012282278388738632, -0.03287676349282265, -0.08818133920431137, 0.07653956860303879, -0.03872586041688919, 0.1164274513721466, -0.022948388010263443, 0.11723065376281738, 0.0333530455827713, 0.02524133026599884, -0.07886074483394623, 0.07065044343471527, 0.006144464015960693, 0.016926908865571022, 0.0648794025182724, 0.15508949756622314, 0.029086720198392868, 0.09823864698410034, 0.07751574367284775, 0.008998988196253777, 0.01597031019628048, 0.003956701140850782, -0.014485957100987434, -0.10224641114473343, 0.09546510130167007, -0.11212901771068573, 0.18138054013252258, 0.08177199214696884, -0.023971782997250557, 0.013539014384150505, -0.035887494683265686, 0.06736880540847778, -0.02980191260576248, 0.14023946225643158, 0.04121078550815582, -0.1888367384672165, 0.06252779066562653, -0.07730455696582794, 0.10447270423173904, -0.189889058470726, -0.07540788501501083, -0.026388511061668396, -0.03678905591368675, 0.010393704287707806, 0.09095103293657303, 0.07846582680940628, 0.004235230851918459, -0.08469440042972565, -0.15698470175266266, 0.037738773971796036, 0.08278708159923553, -0.046507615596055984, -0.05607817694544792 ]
null
null
transformers
# Vision DialoGPT Model
{"tags": ["conversational"]}
text-generation
MS366/DialoGPT-small-vision
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Vision DialoGPT Model
[ "# Vision DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Vision DialoGPT Model" ]
[ 51, 7 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Vision DialoGPT Model" ]
[ -0.05086846277117729, 0.042514216154813766, -0.005796566139906645, 0.017002210021018982, 0.14028583467006683, -0.013398479670286179, 0.1357230693101883, 0.10945557802915573, 0.0034117030445486307, -0.05442188307642937, 0.1245487704873085, 0.18016737699508667, 0.023603398352861404, 0.11957960575819016, -0.061838191002607346, -0.3692496418952942, 0.03915070742368698, 0.06354788690805435, 0.00467017013579607, 0.12377088516950607, 0.08945126086473465, -0.0564286969602108, 0.08313968777656555, -0.003032839624211192, -0.1473025530576706, -0.004843002185225487, -0.0029229894280433655, -0.12129377573728561, 0.12241636216640472, 0.08352208882570267, -0.0011852964526042342, 0.0024345386773347855, -0.03992302343249321, -0.12194900959730148, 0.031528521329164505, 0.007927926257252693, -0.032443754374980927, 0.03418395295739174, 0.044939275830984116, -0.035075001418590546, 0.12698927521705627, 0.06407488137483597, 0.03778635337948799, 0.02990914136171341, -0.1665695309638977, -0.017438698559999466, 0.04534028470516205, 0.05821146443486214, 0.0805412232875824, 0.09826698899269104, -0.033264756202697754, 0.10596273839473724, -0.03814226761460304, 0.14267763495445251, 0.06809829920530319, -0.26543107628822327, -0.04248925670981407, 0.09586195647716522, -0.025204576551914215, 0.048868343234062195, -0.06732430309057236, 0.11398632079362869, 0.00638645188882947, 0.022677982226014137, -0.032948169857263565, -0.06881540268659592, -0.12145695835351944, -0.021289367228746414, -0.1054699718952179, -0.046449318528175354, 0.24582475423812866, -0.02714873105287552, 0.06920656561851501, -0.10064292699098587, -0.12524069845676422, -0.008797591552138329, -0.0627421885728836, -0.010318568907678127, -0.06198771670460701, 0.04791652411222458, -0.0391785204410553, -0.10888545960187912, -0.14808857440948486, 0.0002332238364033401, -0.18738362193107605, 0.10119137167930603, 0.029702479019761086, 0.06878094375133514, -0.19641810655593872, 0.11087995022535324, 0.05372557416558266, -0.10003897547721863, -0.005943266674876213, -0.11760783195495605, -0.002699860604479909, 0.036344435065984726, -0.017682738602161407, 0.007699011825025082, 0.00976108480244875, 0.0893167182803154, 0.0598406046628952, 0.033727094531059265, -0.037689462304115295, 0.07469229400157928, 0.004305482376366854, 0.13563714921474457, -0.018515875563025475, -0.03364415839314461, 0.00887718889862299, -0.12234895676374435, 0.012694066390395164, -0.05189364403486252, -0.16925184428691864, -0.0395476371049881, 0.03129519894719124, 0.03235900029540062, 0.02443135343492031, 0.14654366672039032, -0.006605816539376974, -0.06554245203733444, 0.018502896651625633, -0.019386351108551025, -0.029216410592198372, 0.0010435763979330659, 0.00013775209663435817, 0.11408104002475739, 0.0804520696401596, 0.015146414749324322, -0.13913963735103607, -0.030067024752497673, -0.02438616007566452, 0.02238716371357441, -0.03031071648001671, -0.01847238279879093, -0.003187665017321706, 0.00038286394556052983, 0.00907750241458416, -0.16236846148967743, -0.1705307811498642, 0.0038655682001262903, 0.00424583675339818, -0.041122451424598694, -0.07428088039159775, -0.07296625524759293, -0.03092162124812603, 0.015545113943517208, -0.05471586436033249, -0.0005619689472950995, -0.02105666883289814, 0.09341427683830261, -0.004067257512360811, 0.11551870405673981, -0.13940547406673431, 0.06754449009895325, -0.10823622345924377, -0.03475925698876381, -0.08846788853406906, 0.1784583032131195, 0.03159349039196968, 0.057939667254686356, 0.012419594451785088, -0.03909516707062721, -0.07770402729511261, 0.05129368230700493, -0.041730232536792755, 0.2529929578304291, -0.1373453438282013, -0.089144267141819, 0.24606071412563324, -0.07647261768579483, -0.15913209319114685, 0.1258167028427124, 0.010171515867114067, 0.05984009429812431, 0.15241752564907074, 0.19706329703330994, 0.034531254321336746, -0.02426961623132229, 0.07981618493795395, 0.08326368778944016, -0.10580198466777802, -0.00038830406265333295, 0.020437274128198624, 0.031138353049755096, -0.02632950246334076, 0.04747200012207031, 0.041547391563653946, 0.06759074330329895, -0.06970900297164917, -0.0569247342646122, 0.008725205436348915, 0.01877290941774845, 0.06005264073610306, 0.00948405172675848, 0.10306289047002792, -0.040230024605989456, -0.03576444461941719, -0.0243743397295475, 0.009920056909322739, -0.055106569081544876, 0.041075680404901505, -0.08323699235916138, 0.03840114176273346, -0.04288659617304802, 0.06019138917326927, -0.11964968591928482, -0.06494457274675369, -0.04781165346503258, 0.16441315412521362, 0.056024812161922455, 0.11597374826669693, 0.05404851958155632, -0.004109339322894812, -0.022107155993580818, -0.0010570520535111427, 0.14389607310295105, -0.03288343921303749, -0.08327104151248932, -0.11748725175857544, 0.09735310822725296, -0.03844185918569565, 0.10044334083795547, -0.06452398747205734, 0.015017424710094929, 0.04390282556414604, 0.13665226101875305, -0.01393795944750309, 0.025395702570676804, -0.010895930230617523, -0.03169979900121689, -0.019025452435016632, -0.030910616740584373, 0.11466698348522186, -0.013185280375182629, -0.04244181513786316, 0.26258403062820435, -0.20710599422454834, 0.16975350677967072, 0.17802740633487701, -0.3072226047515869, -0.0008721909252926707, -0.10044767707586288, -0.04687977209687233, 0.00038951251190155745, 0.05246559903025627, -0.03566453978419304, 0.23179133236408234, -0.029054276645183563, 0.17014995217323303, -0.03125720098614693, -0.040914565324783325, -0.014362208545207977, -0.03867591544985771, -0.013148307800292969, 0.07707613706588745, 0.050098638981580734, -0.21403458714485168, 0.17220811545848846, 0.07167040556669235, 0.09929314255714417, 0.20587550103664398, 0.05415443331003189, 0.004881496541202068, 0.0708620548248291, -0.016369620338082314, -0.0760406032204628, 0.02366763912141323, -0.3094951808452606, -0.05307196453213692, 0.061201825737953186, 0.0006052351673133671, 0.10330638289451599, -0.12529490888118744, -0.004106667824089527, -0.002206312958151102, -0.005525054410099983, 0.09382852166891098, 0.10052898526191711, 0.024657631292939186, 0.1194448471069336, -0.017419109120965004, -0.061564475297927856, 0.07497277110815048, -0.004603374283760786, -0.09049684554338455, 0.18630029261112213, -0.09220776706933975, -0.47194257378578186, -0.11812136322259903, -0.15616807341575623, -0.04478895291686058, 0.06841439753770828, 0.08157441020011902, -0.07758272439241409, -0.027623537927865982, 0.000021704503524233587, 0.08469146490097046, -0.07326117157936096, 0.010458358563482761, -0.043216388672590256, -0.004024240653961897, -0.09945271164178848, -0.07761265337467194, -0.05704585090279579, -0.05686946213245392, -0.05880312621593475, 0.12426307797431946, -0.13177426159381866, 0.0422668494284153, 0.20568914711475372, 0.030920404940843582, 0.07114620506763458, -0.05055313557386398, 0.22568562626838684, -0.15786691009998322, 0.0013033401919528842, 0.15578162670135498, -0.03856828063726425, 0.04838207736611366, 0.16580714285373688, -0.024085525423288345, -0.09644372761249542, 0.020991221070289612, -0.024132998660206795, -0.07122412323951721, -0.15458323061466217, -0.13807672262191772, -0.13820107281208038, 0.09121579676866531, 0.043530698865652084, 0.04552887752652168, 0.1451127827167511, 0.08154318481683731, -0.07914938032627106, 0.005034277681261301, 0.06549514830112457, 0.10259675979614258, 0.3371005654335022, -0.11962342262268066, 0.13869695365428925, -0.05202971771359444, -0.16869522631168365, 0.060742512345314026, 0.06365785002708435, 0.08777990192174911, 0.03686949610710144, -0.01171194203197956, 0.03213094547390938, -0.00029998968238942325, 0.13521282374858856, 0.02752017229795456, 0.04241977259516716, -0.034963205456733704, -0.03859521821141243, -0.05982264503836632, -0.06299298256635666, 0.03683873265981674, 0.07440470159053802, -0.13552887737751007, -0.018344076350331306, -0.03099076636135578, 0.06255842745304108, 0.09207562357187271, 0.1317530870437622, -0.22535237669944763, -0.009618031792342663, 0.07352706044912338, -0.01562691107392311, -0.1458105444908142, 0.07338019460439682, 0.033808931708335876, -0.17393219470977783, 0.07720170170068741, -0.038258496671915054, 0.11395279318094254, -0.12927919626235962, 0.0638771653175354, -0.1202140748500824, -0.128842294216156, 0.019785640761256218, 0.09299714863300323, -0.28350183367729187, 0.20035870373249054, -0.014628073200583458, -0.030096249654889107, -0.10219412297010422, -0.02137349173426628, 0.027539867907762527, 0.13945749402046204, 0.10639125853776932, -0.0036749686114490032, 0.12307301163673401, -0.0055227200500667095, -0.012865408323705196, 0.04606793820858002, 0.1063963770866394, -0.018353447318077087, -0.025828106328845024, -0.044582441449165344, -0.006894543766975403, -0.025134017691016197, -0.040415771305561066, 0.03207482397556305, -0.18706466257572174, 0.08193375915288925, 0.036530230194330215, 0.10984162986278534, 0.031801629811525345, -0.02721462957561016, -0.08048417419195175, 0.23588648438453674, -0.05457467585802078, -0.08785637468099594, -0.0892675593495369, 0.01056553702801466, 0.0307847261428833, -0.05093834549188614, 0.05711745098233223, -0.0657108873128891, 0.057304639369249344, -0.04660581052303314, -0.1874966025352478, 0.09590905904769897, -0.11007975041866302, -0.035403329879045486, -0.02059140056371689, 0.1961267590522766, -0.05600076541304588, -0.013916932977735996, 0.038795385509729385, 0.005281722638756037, -0.11199823766946793, -0.07457127422094345, 0.03189262002706528, 0.032545093446969986, -0.015319901518523693, 0.07124517112970352, 0.020073696970939636, -0.09138642996549606, -0.06428014487028122, 0.0035509851295500994, 0.2681300640106201, 0.11214260756969452, -0.03515388071537018, 0.15789221227169037, 0.12606099247932434, -0.0494956336915493, -0.3003014028072357, -0.06753451377153397, -0.07198959589004517, -0.03448975458741188, -0.08049766719341278, -0.13369916379451752, 0.04576718807220459, -0.07083646953105927, -0.03473898023366928, 0.13572636246681213, -0.2965170741081238, -0.09787580370903015, 0.18367144465446472, 0.017555227503180504, 0.3213471472263336, -0.10956086218357086, -0.05606186389923096, -0.044112637639045715, -0.1387242078781128, 0.13105672597885132, 0.09090203046798706, 0.14707879722118378, -0.020739087834954262, 0.15428318083286285, 0.057072632014751434, 0.00011876009375555441, 0.09815392643213272, -0.059217192232608795, -0.038625650107860565, -0.12292774021625519, -0.03248419612646103, 0.051440756767988205, 0.022544637322425842, 0.021103160455822945, 0.06519810855388641, 0.05638062208890915, -0.09895197302103043, -0.05034759268164635, -0.08699538558721542, 0.012604809366166592, 0.0346364863216877, -0.07660870999097824, -0.006198634393513203, -0.04458358883857727, 0.006384318694472313, 0.022929470986127853, 0.130830779671669, -0.10564588755369186, 0.07123542577028275, 0.039565179497003555, 0.11832025647163391, -0.09705185145139694, -0.11661689728498459, -0.09878373891115189, -0.04493052884936333, 0.07844488322734833, -0.06251063942909241, 0.0230313278734684, 0.11018155515193939, -0.02772892266511917, 0.08793741464614868, 0.10509806126356125, 0.0016225187573581934, 0.013674565590918064, 0.09453709423542023, -0.22126814723014832, -0.09223505854606628, -0.08373457193374634, 0.04899907112121582, 0.10111863911151886, 0.12997396290302277, 0.18334044516086578, -0.02868458442389965, -0.016467925161123276, 0.009049711748957634, 0.018066629767417908, -0.02240760810673237, 0.06996084004640579, -0.00584679888561368, 0.017920605838298798, -0.16595888137817383, 0.065555639564991, -0.008332174271345139, -0.11887124180793762, 0.020664868876338005, 0.1583119034767151, -0.09197693318128586, -0.12199605256319046, -0.06807087361812592, 0.07896330952644348, -0.1390862762928009, -0.017341962084174156, -0.0023303874768316746, -0.13688072562217712, 0.09143166989088058, 0.1268467754125595, 0.061454638838768005, 0.07573521882295609, -0.10441215336322784, -0.00460817338898778, -0.005616153124719858, 0.021704481914639473, -0.009342240169644356, -0.0066321128979325294, -0.08426526188850403, 0.04620833694934845, -0.004437118768692017, 0.1480763703584671, -0.09990857541561127, -0.1385890394449234, -0.1238364577293396, 0.05482211336493492, -0.10796499252319336, -0.05604624003171921, -0.06529121100902557, -0.034405238926410675, -0.009653694927692413, -0.046168357133865356, -0.050456251949071884, -0.0290992371737957, -0.09611243009567261, 0.03228943049907684, -0.02126156911253929, 0.000935469928663224, -0.07486845552921295, 0.001409581396728754, 0.046828147023916245, -0.03280740603804588, 0.146232470870018, 0.11841912567615509, -0.11356187611818314, 0.04563062638044357, -0.15084755420684814, -0.11628351360559464, 0.14891448616981506, 0.01664618030190468, 0.007284609600901604, 0.0985257625579834, 0.011414792388677597, 0.06063947454094887, 0.06984730809926987, 0.05546901002526283, 0.07549595087766647, -0.08826896548271179, 0.03483490273356438, -0.06192867085337639, -0.11642716079950333, -0.032831598073244095, 0.0018795270007103682, -0.05507116764783859, 0.0664122924208641, 0.04576155170798302, -0.08044411987066269, 0.07280283421278, -0.07227479666471481, 0.030218681320548058, 0.005919185467064381, -0.17093518376350403, 0.03814550116658211, -0.08708033710718155, 0.05242408812046051, 0.004587393254041672, 0.20130819082260132, 0.04359186813235283, 0.00925975851714611, 0.03643793985247612, 0.11046425253152847, 0.034915052354335785, 0.017082232981920242, 0.17568208277225494, 0.08765498548746109, -0.037012360990047455, -0.03384562209248543, 0.12540163099765778, 0.03998130187392235, 0.09962480515241623, 0.052255719900131226, -0.03302962705492973, -0.06910982728004456, 0.10871624201536179, 0.012713856063783169, 0.06236544996500015, -0.12302326411008835, -0.18137367069721222, -0.030925529077649117, 0.0548306368291378, -0.08996734023094177, 0.05343923345208168, 0.17870958149433136, -0.024561583995819092, 0.05305340886116028, 0.008692183531820774, -0.05925406143069267, -0.13634733855724335, -0.20752118527889252, -0.06981927901506424, -0.09231158345937729, 0.01631701923906803, -0.10912265628576279, 0.04626927152276039, 0.09157774597406387, 0.10800138115882874, -0.09039933979511261, 0.12700361013412476, 0.04822476953268051, -0.12922097742557526, 0.10365072637796402, -0.013009458780288696, 0.10679153352975845, -0.05793203413486481, 0.02489175647497177, -0.037758782505989075, 0.06902261078357697, 0.011517409235239029, 0.029352018609642982, -0.03531686216592789, -0.00593474181368947, -0.0949459820985794, -0.06879257410764694, -0.05796900391578674, 0.060347191989421844, 0.008303750306367874, 0.13843336701393127, 0.010983607731759548, -0.03093496710062027, 0.015410753898322582, 0.2600368559360504, -0.09803138673305511, -0.1439860612154007, -0.060828469693660736, 0.19798675179481506, -0.02427871897816658, 0.11230479925870895, -0.042068351060152054, -0.006750260479748249, -0.09352263808250427, 0.33129820227622986, 0.3018224239349365, -0.11006758362054825, -0.009965866804122925, 0.012212446890771389, 0.04457048326730728, 0.10258311033248901, 0.11603396385908127, 0.0805027037858963, 0.3624107241630554, -0.07498494535684586, -0.012758422642946243, 0.018473517149686813, -0.03089032508432865, -0.04561001807451248, 0.016645269468426704, 0.06603667140007019, -0.036342915147542953, -0.04803386703133583, 0.10419916361570358, -0.2239265739917755, 0.12318315356969833, -0.07734473794698715, -0.1886344701051712, -0.08363399654626846, 0.014567873440682888, 0.08900240808725357, 0.029172668233513832, 0.06382216513156891, -0.01733509637415409, -0.04657669737935066, 0.021078381687402725, 0.03662387281656265, -0.21638906002044678, -0.00689680827781558, 0.05683242902159691, -0.11925763636827469, 0.003469622926786542, -0.04642597213387489, 0.09146521240472794, 0.05544041842222214, 0.04720859229564667, -0.0008147238986566663, 0.007122228853404522, -0.04065937548875809, -0.0787108764052391, 0.04438122734427452, 0.09433597326278687, 0.023365002125501633, -0.1034632995724678, 0.09776865690946579, -0.1344115287065506, 0.032441023737192154, 0.0012990373652428389, -0.005406173877418041, 0.0035949156153947115, 0.030326344072818756, -0.0702202320098877, 0.054313428699970245, 0.052905138581991196, 0.0007737313862890005, -0.012834180146455765, -0.06493016332387924, -0.04850383847951889, 0.011069724336266518, -0.11275727301836014, -0.05102423205971718, -0.13290731608867645, -0.1384410560131073, 0.02314969338476658, -0.011976142413914204, -0.1786753088235855, -0.022202717140316963, -0.1024928167462349, 0.03160404786467552, -0.10538417100906372, 0.1040184423327446, 0.05096772313117981, 0.005013125017285347, -0.003886694321408868, -0.0438384935259819, 0.048532288521528244, 0.09605071693658829, -0.125544473528862, -0.07585527002811432 ]
null
null
transformers
#### Languages: - Source language: English - Source language: isiZulu #### Model Details: - model: transformer - Architecture: MarianMT - pre-processing: normalization + SentencePiece #### Pre-trained Model: - https://huggingface.co/Helsinki-NLP/opus-mt-en-xh #### Corpus: - Umsuka English-isiZulu Parallel Corpus (https://zenodo.org/record/5035171#.Yh5NIOhBy3A) #### Benchmark: | Benchmark | Train | Test | |-----------|-------|-------| | Umsuka | 17.61 | 13.73 | #### GitHub: - https://github.com/umair-nasir14/Geographical-Distance-Is-The-New-Hyperparameter #### Citation: ``` @article{umair2022geographical, title={Geographical Distance Is The New Hyperparameter: A Case Study Of Finding The Optimal Pre-trained Language For English-isiZulu Machine Translation}, author={Umair Nasir, Muhammad and Amos Mchechesi, Innocent}, journal={arXiv e-prints}, pages={arXiv--2205}, year={2022} } ```
{}
text2text-generation
MUNasir/umsuka-en-zu
[ "transformers", "pytorch", "marian", "text2text-generation", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us
#### Languages: * Source language: English * Source language: isiZulu #### Model Details: * model: transformer * Architecture: MarianMT * pre-processing: normalization + SentencePiece #### Pre-trained Model: * URL #### Corpus: * Umsuka English-isiZulu Parallel Corpus (URL #### Benchmark: Benchmark: Umsuka, Train: 17.61, Test: 13.73 #### GitHub: * URL :
[ "#### Languages:\n\n\n* Source language: English\n* Source language: isiZulu", "#### Model Details:\n\n\n* model: transformer\n* Architecture: MarianMT\n* pre-processing: normalization + SentencePiece", "#### Pre-trained Model:\n\n\n* URL", "#### Corpus:\n\n\n* Umsuka English-isiZulu Parallel Corpus (URL", "#### Benchmark:\n\n\nBenchmark: Umsuka, Train: 17.61, Test: 13.73", "#### GitHub:\n\n\n* URL\n\n\n:" ]
[ "TAGS\n#transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n", "#### Languages:\n\n\n* Source language: English\n* Source language: isiZulu", "#### Model Details:\n\n\n* model: transformer\n* Architecture: MarianMT\n* pre-processing: normalization + SentencePiece", "#### Pre-trained Model:\n\n\n* URL", "#### Corpus:\n\n\n* Umsuka English-isiZulu Parallel Corpus (URL", "#### Benchmark:\n\n\nBenchmark: Umsuka, Train: 17.61, Test: 13.73", "#### GitHub:\n\n\n* URL\n\n\n:" ]
[ 39, 17, 29, 10, 16, 22, 9 ]
[ "passage: TAGS\n#transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n#### Languages:\n\n\n* Source language: English\n* Source language: isiZulu#### Model Details:\n\n\n* model: transformer\n* Architecture: MarianMT\n* pre-processing: normalization + SentencePiece#### Pre-trained Model:\n\n\n* URL#### Corpus:\n\n\n* Umsuka English-isiZulu Parallel Corpus (URL#### Benchmark:\n\n\nBenchmark: Umsuka, Train: 17.61, Test: 13.73#### GitHub:\n\n\n* URL\n\n\n:" ]
[ -0.09957931190729141, 0.128879576921463, -0.004847380798310041, 0.07384715229272842, 0.13644416630268097, 0.010888167656958103, 0.092780202627182, 0.10574463754892349, -0.07797267287969589, 0.008532388135790825, 0.13459999859333038, 0.15983451902866364, 0.03781204670667648, 0.08211416006088257, -0.029640834778547287, -0.3200852572917938, 0.03081035614013672, 0.02817857451736927, -0.01085416879504919, 0.12540923058986664, 0.1261187344789505, -0.055411797016859055, 0.11863389611244202, 0.00488553149625659, -0.11549986153841019, 0.051922757178545, -0.02322026900947094, -0.08032814413309097, 0.09058305621147156, 0.05446698144078255, 0.08677485585212708, 0.030351612716913223, 0.02284286543726921, -0.1478395164012909, 0.030248207971453667, -0.003628448350355029, -0.006923950742930174, 0.04034188762307167, 0.12871591746807098, -0.12643121182918549, 0.15240193903446198, 0.007293335162103176, -0.017133424058556557, 0.017831146717071533, -0.1589786261320114, -0.07856463640928268, -0.017975499853491783, 0.09558487683534622, -0.0057251895777881145, 0.11097722500562668, -0.03654932603240013, 0.12058576941490173, -0.12087411433458328, 0.12562128901481628, 0.1497737169265747, -0.23103050887584686, -0.06887158006429672, 0.012701003812253475, 0.0969805121421814, 0.10037264227867126, -0.024271832779049873, 0.004565189126878977, 0.038908280432224274, 0.030719511210918427, -0.07807882875204086, -0.09704993665218353, -0.03217253461480141, -0.009628372266888618, -0.14200249314308167, 0.0032108877785503864, 0.2379990667104721, -0.06736137717962265, -0.006182509008795023, 0.008742133155465126, -0.07223036885261536, 0.037699270993471146, -0.03974694758653641, -0.02394472062587738, -0.0227345023304224, 0.034037034958601, 0.031775590032339096, -0.07660357654094696, -0.09929469972848892, -0.037171557545661926, -0.08613494038581848, 0.25640973448753357, 0.06334191560745239, -0.0034159263595938683, -0.08822524547576904, 0.049961257725954056, -0.011316677555441856, -0.17045992612838745, 0.02567765675485134, -0.06964193284511566, 0.054893285036087036, 0.014749305322766304, -0.007544762454926968, -0.13329669833183289, 0.06389486789703369, 0.15827427804470062, -0.056219033896923065, 0.05811186879873276, 0.018048197031021118, 0.04790106043219566, 0.0181907769292593, 0.19510380923748016, -0.1157812848687172, -0.05855876952409744, 0.013936434872448444, 0.012348972260951996, 0.01863677240908146, -0.036300692707300186, -0.14528387784957886, -0.0633077472448349, 0.02359362319111824, 0.07937931269407272, 0.057018574327230453, 0.09773270040750504, -0.029371898621320724, -0.062197934836149216, 0.041366539895534515, -0.09824857860803604, 0.023072998970746994, 0.01514145266264677, -0.018676087260246277, 0.059984009712934494, -0.014048127457499504, 0.014483987353742123, -0.12813246250152588, 0.04625155031681061, -0.06728330254554749, 0.0041305506601929665, -0.07691806554794312, -0.07753480970859528, 0.029584398493170738, -0.06919123232364655, 0.020413963124155998, -0.1420159786939621, -0.13143926858901978, -0.04196035861968994, 0.06723452359437943, -0.08865121006965637, -0.03732847049832344, -0.020372575148940086, -0.04367857426404953, 0.0516214482486248, -0.028871852904558182, 0.014863571152091026, -0.0705278217792511, 0.07185757160186768, 0.06923943012952805, 0.027347024530172348, -0.077000692486763, 0.05613928660750389, -0.11655889451503754, 0.014639142900705338, -0.1462903469800949, 0.029399467632174492, -0.055264316499233246, 0.06791191548109055, -0.03114165924489498, -0.01993885263800621, -0.055976852774620056, 0.07656330615282059, 0.0709993988275528, 0.19657593965530396, -0.09208683669567108, -0.06934957951307297, 0.2013370245695114, -0.1133190467953682, -0.08780689537525177, 0.15928316116333008, 0.010403815656900406, 0.035670917481184006, 0.03983575850725174, 0.24054981768131256, -0.01587771810591221, -0.02208889275789261, 0.07112471759319305, 0.05981889367103577, 0.0037159647326916456, -0.009518804959952831, 0.08859775960445404, -0.028510574251413345, -0.07029189169406891, 0.05695420876145363, -0.014468503184616566, 0.03687114268541336, -0.045113831758499146, -0.0521213673055172, -0.01522552128881216, -0.04726448282599449, 0.019952978938817978, 0.08495617657899857, 0.052437808364629745, -0.08233512938022614, -0.0801522433757782, -0.036710795015096664, 0.06259142607450485, -0.0057109445333480835, 0.004332204815000296, -0.0447811558842659, 0.16149692237377167, -0.016800619661808014, 0.025266695767641068, -0.17613288760185242, 0.07084012776613235, 0.032088425010442734, 0.06758113205432892, 0.0988783910870552, 0.019045477733016014, 0.04899872839450836, 0.04949644207954407, -0.03287116065621376, -0.047302380204200745, 0.10569855570793152, -0.0053734141401946545, -0.05785292759537697, -0.18998976051807404, 0.05306917428970337, -0.04199250414967537, 0.00968100968748331, -0.14297109842300415, 0.020400820299983025, -0.02463788352906704, 0.11093297600746155, -0.026931239292025566, 0.03272424265742302, -0.002287057461217046, 0.06262381374835968, -0.0655762106180191, 0.0018885931931436062, 0.06392959505319595, 0.032294467091560364, -0.03414757549762726, 0.2013140171766281, -0.14947916567325592, 0.1901174932718277, 0.14810346066951752, -0.20091257989406586, -0.025235453620553017, 0.029542407020926476, -0.01778058148920536, -0.017746979370713234, 0.07924643158912659, 0.011418042704463005, 0.1485653519630432, -0.01655379682779312, 0.17604905366897583, -0.10230456292629242, 0.016757989302277565, -0.0205437820404768, -0.12200983613729477, -0.05588353052735329, 0.17937329411506653, 0.056447964161634445, -0.16084718704223633, 0.17416828870773315, 0.13844850659370422, -0.11903620511293411, 0.24128498136997223, 0.007214435376226902, -0.03536820411682129, -0.006717763375490904, -0.014489061199128628, -0.017920494079589844, 0.08080797642469406, -0.25273171067237854, -0.04223199933767319, 0.02365998923778534, 0.029128603637218475, 0.08714810758829117, -0.1164921373128891, -0.005588296800851822, -0.008684027008712292, 0.002906119218096137, 0.06654635816812515, 0.036089617758989334, 0.0032136747613549232, 0.10901978611946106, -0.012722618877887726, -0.019266491755843163, -0.00495817419141531, 0.014823907054960728, -0.07903063297271729, 0.2286340892314911, -0.12037568539381027, -0.30491670966148376, -0.15754179656505585, -0.06674958765506744, -0.08538707345724106, 0.03696935623884201, 0.07333970069885254, -0.13665786385536194, -0.03136937692761421, -0.0008186157792806625, 0.10491585731506348, -0.11561703681945801, -0.05613686889410019, -0.14522692561149597, 0.04878229647874832, -0.02865513786673546, -0.09391795098781586, -0.040229037404060364, 0.0024579311721026897, -0.020259056240320206, 0.06256977468729019, -0.11298041045665741, 0.14071984589099884, 0.1616223007440567, 0.0256776362657547, 0.03503422811627388, 0.004881185479462147, 0.17167595028877258, -0.07831186056137085, 0.007668628357350826, 0.21343614161014557, -0.030126944184303284, 0.06776807457208633, 0.17805115878582, 0.013461488299071789, -0.053584158420562744, 0.006781916134059429, -0.02321597933769226, -0.01770206354558468, -0.24177336692810059, -0.09692652523517609, -0.09455561637878418, 0.06682342290878296, 0.0072875553742051125, 0.03138669207692146, 0.014481091871857643, 0.09391684830188751, -0.039379607886075974, -0.0034539250191301107, -0.004014288540929556, 0.0970054492354393, 0.13188686966896057, -0.0358683317899704, 0.1434018909931183, -0.041604720056056976, -0.12108131498098373, 0.08841000497341156, 0.03717769682407379, 0.02319835126399994, 0.016266703605651855, 0.15984445810317993, 0.048265159130096436, 0.1389264017343521, 0.07658764719963074, 0.002524282783269882, 0.03310941159725189, -0.008628644049167633, -0.026079945266246796, -0.05964633822441101, -0.08272187411785126, 0.03704097867012024, 0.05684495344758034, -0.04791000112891197, -0.09530827403068542, 0.011555762030184269, 0.07120004296302795, 0.07148560136556625, 0.03685883432626724, -0.1889858990907669, -0.029023798182606697, 0.04196374863386154, 0.00335374241694808, -0.12220647931098938, 0.06391922384500504, -0.006229884456843138, -0.11009852588176727, 0.02302926778793335, 0.0005077524110674858, 0.1332450956106186, -0.11313951760530472, 0.052297141402959824, -0.08566515892744064, 0.04450197517871857, -0.003241957165300846, 0.1260683834552765, -0.3329654037952423, 0.29067087173461914, 0.022310661152005196, -0.008351062424480915, -0.06852783262729645, 0.011274361982941628, 0.04149690270423889, 0.1874508559703827, 0.06644328683614731, -0.003931940998882055, -0.0826210156083107, -0.09662178158760071, -0.0266355462372303, 0.011782166548073292, 0.13135771453380585, 0.011517620645463467, 0.04684640094637871, -0.045318201184272766, 0.00910853035748005, -0.03730417788028717, 0.05684276297688484, -0.16391517221927643, -0.13566458225250244, 0.04961073398590088, -0.046069927513599396, -0.0031512142159044743, -0.05373816192150116, -0.06871721893548965, -0.03124789334833622, 0.2703281342983246, 0.020625485107302666, -0.05317966267466545, -0.13208447396755219, -0.011099844239652157, 0.09463730454444885, -0.12920671701431274, -0.02697749249637127, -0.13529594242572784, 0.04205766320228577, -0.03042909875512123, -0.0716308057308197, 0.09975630044937134, -0.10470093786716461, -0.09194116294384003, -0.07913704961538315, 0.10195154696702957, -0.03351534530520439, 0.020666638389229774, 0.0007872612914070487, 0.013815485872328281, -0.09527867287397385, -0.08104053139686584, -0.024959459900856018, -0.028667476028203964, 0.07582630962133408, 0.08594078570604324, -0.11554135382175446, -0.0847909152507782, -0.06851357966661453, -0.08611639589071274, 0.17562374472618103, 0.1631900668144226, -0.021832164376974106, 0.006953204516321421, 0.2575930058956146, -0.11322665214538574, -0.3274730145931244, -0.07089537382125854, -0.013172399252653122, 0.041439786553382874, -0.06280428171157837, -0.1888483166694641, 0.034051865339279175, -0.016798583790659904, -0.04100671783089638, -0.03666907921433449, -0.19785048067569733, -0.1146320328116417, 0.18943722546100616, 0.06276614964008331, 0.171545147895813, -0.19840165972709656, -0.0681590810418129, -0.06432721018791199, -0.11108701676130295, 0.02002847008407116, -0.030375167727470398, 0.10043440759181976, -0.028057042509317398, -0.0038479696959257126, 0.03296588361263275, -0.03931849077343941, 0.10904913395643234, -0.05147147551178932, -0.006025107577443123, -0.12855683267116547, -0.06656394898891449, 0.05964472517371178, -0.00203978200443089, 0.09507429599761963, -0.05642581358551979, 0.06142457574605942, -0.12281707674264908, -0.056921787559986115, -0.053895603865385056, 0.059930410236120224, -0.04538553208112717, -0.07387474924325943, -0.009067566134035587, 0.050014376640319824, -0.06109749153256416, 0.015175667591392994, 0.13204394280910492, -0.06580358743667603, 0.08579395711421967, 0.17675496637821198, 0.1351219117641449, -0.1232481524348259, 0.059799470007419586, -0.02551484853029251, -0.029983360320329666, 0.04377414658665657, -0.040012553334236145, 0.017228353768587112, 0.11552894115447998, -0.008094151504337788, 0.07768488675355911, 0.037460897117853165, -0.0690327063202858, -0.03512844070792198, 0.10065346956253052, -0.16571292281150818, -0.023664675652980804, -0.09315279871225357, -0.06121106445789337, 0.005909666419029236, 0.02081708051264286, 0.1344861388206482, -0.005975981708616018, -0.03950648009777069, -0.023172101005911827, -0.008868353441357613, -0.027860501781105995, 0.109996497631073, 0.10902395844459534, 0.007746171671897173, -0.0833391323685646, 0.08285848796367645, 0.07797800004482269, -0.08554244786500931, 0.021250836551189423, 0.21371477842330933, -0.07506608963012695, -0.12179360538721085, 0.07067866623401642, 0.17600546777248383, -0.09217018634080887, -0.07105062901973724, -0.12867964804172516, -0.09210148453712463, 0.05702900514006615, 0.11108745634555817, 0.10760658979415894, -0.01547228917479515, -0.04112166166305542, -0.027459032833576202, -0.02337571792304516, 0.1008298322558403, 0.10028926283121109, 0.03578770160675049, -0.10861092805862427, 0.06181624159216881, 0.01261057797819376, 0.09462353587150574, -0.048317860811948776, -0.02478760853409767, -0.2061116248369217, 0.026680542156100273, -0.2196788191795349, -0.018200483173131943, -0.0851314589381218, -0.02396145835518837, -0.04284984990954399, -0.10875651240348816, -0.06178000196814537, -0.022405926138162613, -0.09014904499053955, -0.018392542377114296, -0.04659664258360863, 0.07237286865711212, -0.07698235660791397, -0.0015882134903222322, 0.09799004346132278, -0.028556182980537415, 0.06316488981246948, 0.059452809393405914, -0.038521453738212585, 0.0788818895816803, -0.09131410717964172, 0.006263583432883024, -0.009933847934007645, 0.05107582360506058, 0.04709046334028244, -0.030213719233870506, 0.01489032432436943, 0.05135703086853027, 0.07423165440559387, 0.03534793481230736, 0.16809958219528198, -0.11376616358757019, 0.03683219850063324, 0.011523491702973843, -0.20253272354602814, -0.02412024326622486, 0.0949397012591362, 0.054470691829919815, -0.004696410149335861, 0.10763579607009888, -0.0783199593424797, 0.04770757630467415, -0.12421656399965286, 0.034598637372255325, 0.0073671285063028336, -0.11286453157663345, -0.08667612075805664, -0.09738944470882416, 0.0595269612967968, 0.0037478713784366846, 0.19377821683883667, 0.07841793447732925, 0.05515379458665848, 0.025423552840948105, 0.039874833077192307, 0.10365547239780426, 0.035903625190258026, 0.08539140224456787, 0.029517143964767456, -0.030360888689756393, -0.07871649414300919, 0.05642557889223099, 0.028684521093964577, 0.07096893340349197, 0.10603999346494675, 0.14467421174049377, 0.07758789509534836, 0.11106940358877182, 0.032467376440763474, 0.02312753163278103, -0.10376131534576416, -0.11983667314052582, -0.003025761106982827, 0.04535531625151634, -0.039688799530267715, 0.10298522561788559, 0.20122379064559937, -0.07691804319620132, 0.04334209859371185, -0.05444684252142906, -0.07566274702548981, -0.1525759994983673, -0.18532897531986237, -0.08994539082050323, -0.08800836652517319, -0.018313700333237648, -0.1263769268989563, 0.027237504720687866, -0.01800999790430069, 0.035577841103076935, -0.10538309812545776, 0.12906937301158905, 0.10541299730539322, -0.12298969179391861, 0.04264381155371666, -0.006952326744794846, 0.09032824635505676, -0.008692233823239803, 0.006316548213362694, -0.08431697636842728, 0.0074912081472575665, -0.010024518705904484, 0.03906228765845299, -0.11580727249383926, 0.020152783021330833, -0.060231469571590424, -0.0852101743221283, -0.02320532687008381, 0.02223161607980728, 0.061449892818927765, 0.19493816792964935, -0.01426705438643694, -0.019183874130249023, 0.02370521053671837, 0.20611843466758728, -0.02543323114514351, -0.10099606961011887, -0.10304097086191177, 0.25124025344848633, 0.003600907977670431, 0.051951371133327484, -0.020694805309176445, -0.04003766179084778, -0.03187860921025276, 0.3521541953086853, 0.27497971057891846, -0.1035970151424408, 0.0024645673111081123, 0.09307180345058441, 0.026652764528989792, 0.05328871309757233, 0.10883070528507233, 0.08272960782051086, 0.22461378574371338, -0.08571869879961014, -0.03152911737561226, -0.08057209849357605, -0.030886029824614525, -0.11564167588949203, 0.1332656294107437, 0.08804605156183243, -0.04800458252429962, -0.03787824138998985, 0.10276073217391968, -0.16102732717990875, 0.04809659719467163, -0.1259726881980896, -0.20809054374694824, -0.12666055560112, -0.05016765743494034, 0.09839338809251785, 0.01713460311293602, 0.07378086447715759, -0.0014171781949698925, -0.01598375476896763, 0.0015551303513348103, 0.020981797948479652, -0.11395183950662613, -0.04797409102320671, 0.06157476082444191, -0.0647185668349266, 0.11409305036067963, -0.02188940718770027, 0.038627929985523224, 0.1471799910068512, 0.04837886244058609, -0.06340586394071579, 0.07457178086042404, 0.028791792690753937, -0.0209801122546196, 0.05303797870874405, 0.036148663610219955, 0.005251748953014612, -0.03208598494529724, 0.07197287678718567, -0.10430630296468735, 0.0920051708817482, -0.06149902194738388, -0.046991977840662, -0.06036655977368355, 0.10505172610282898, -0.11059088259935379, 0.08485332876443863, 0.19646818935871124, 0.006286642514169216, -0.056156765669584274, -0.0788392722606659, 0.03594464063644409, 0.018396582454442978, 0.029940951615571976, -0.053624220192432404, -0.20137517154216766, -0.05534385144710541, 0.04248112067580223, 0.05467092618346214, -0.21828392148017883, -0.011989104561507702, -0.027895789593458176, 0.024164168164134026, -0.12454667687416077, 0.09106366336345673, 0.0799352154135704, 0.02367243729531765, -0.016287604346871376, -0.09023285657167435, -0.0018530200468376279, 0.08395271748304367, -0.15531402826309204, -0.07550433278083801 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # distilbert-base-uncased-finetuned-squad This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the squad dataset. It achieves the following results on the evaluation set: - Loss: 1.1520 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:-----:|:---------------:| | 1.2177 | 1.0 | 5533 | 1.1565 | | 0.9472 | 2.0 | 11066 | 1.1174 | | 0.7634 | 3.0 | 16599 | 1.1520 | ### Framework versions - Transformers 4.9.1 - Pytorch 1.9.0+cu102 - Datasets 1.10.2 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["squad"], "model_index": [{"name": "distilbert-base-uncased-finetuned-squad", "results": [{"task": {"name": "Question Answering", "type": "question-answering"}, "dataset": {"name": "squad", "type": "squad", "args": "plain_text"}}]}]}
question-answering
MYX4567/distilbert-base-uncased-finetuned-squad
[ "transformers", "pytorch", "tensorboard", "distilbert", "question-answering", "generated_from_trainer", "dataset:squad", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us
distilbert-base-uncased-finetuned-squad ======================================= This model is a fine-tuned version of distilbert-base-uncased on the squad dataset. It achieves the following results on the evaluation set: * Loss: 1.1520 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3 ### Training results ### Framework versions * Transformers 4.9.1 * Pytorch 1.9.0+cu102 * Datasets 1.10.2 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ 56, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3### Training results### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ -0.10605359822511673, 0.08381108194589615, -0.001792958122678101, 0.12038445472717285, 0.16523109376430511, 0.021818824112415314, 0.09323576092720032, 0.12554772198200226, -0.09509222209453583, 0.032472722232341766, 0.1327456384897232, 0.17362375557422638, 0.002321085426956415, 0.07084282487630844, -0.050293534994125366, -0.2198571264743805, -0.018329042941331863, 0.05792637914419174, -0.09005218744277954, 0.14523179829120636, 0.08547680079936981, -0.15135939419269562, 0.0719677284359932, 0.00022340241412166506, -0.21533754467964172, 0.013031255453824997, 0.0029703036416321993, -0.03505842387676239, 0.14169079065322876, 0.006553217768669128, 0.11905957013368607, 0.0010319119319319725, 0.06640363484621048, -0.18594089150428772, 0.014223197475075722, 0.049404170364141464, 0.00912395492196083, 0.08178208768367767, 0.04806838557124138, 0.007254451978951693, 0.10417725890874863, -0.08892225474119186, 0.03967216610908508, 0.02151229977607727, -0.12907542288303375, -0.2517024278640747, -0.10631465166807175, 0.01869826205074787, 0.0676460936665535, 0.12146912515163422, -0.007075157947838306, 0.1615457981824875, -0.1143447756767273, 0.09070240706205368, 0.2545009255409241, -0.2991047501564026, -0.0687943696975708, 0.03334929049015045, 0.028554711490869522, 0.06584392488002777, -0.10948768258094788, -0.03519793599843979, 0.052984751760959625, 0.05406859144568443, 0.11058809608221054, -0.046689361333847046, -0.12453089654445648, 0.03636053949594498, -0.14898380637168884, -0.04371955618262291, 0.1406540423631668, 0.04789841175079346, -0.022775541990995407, -0.02949974127113819, -0.05690768361091614, -0.13082139194011688, -0.025762872770428658, -0.018392177298665047, 0.04766008257865906, -0.0485854335129261, -0.08660604804754257, 0.0012566514778882265, -0.10935951769351959, -0.07549940049648285, -0.07765927910804749, 0.12193810939788818, 0.04076452925801277, 0.028505856171250343, -0.04884609207510948, 0.09989132732152939, 0.0060700466856360435, -0.13134166598320007, 0.014279140159487724, 0.03525831177830696, -0.019809186458587646, -0.040194179862737656, -0.06490138173103333, -0.05746442824602127, 0.02193313278257847, 0.11954208463430405, -0.07699719816446304, 0.03265904262661934, 0.052825573831796646, 0.04180832952260971, -0.08394170552492142, 0.1784861981868744, -0.07658115774393082, -0.007116896100342274, -0.005851270165294409, 0.038277823477983475, -0.0011524856090545654, 0.003897594753652811, -0.09727045893669128, -0.005010326858609915, 0.0996742770075798, 0.020515024662017822, -0.03606507182121277, 0.05722398683428764, -0.050209540873765945, -0.02511841058731079, -0.0010450490517541766, -0.08441684395074844, 0.03095036745071411, -0.0031681135296821594, -0.0906045064330101, -0.01490488275885582, 0.004936030134558678, 0.015606937929987907, -0.017351074144244194, 0.09916320443153381, -0.09297959506511688, 0.038921553641557693, -0.09564108401536942, -0.09928596764802933, 0.030557570978999138, -0.08315481245517731, 0.030703194439411163, -0.0792013630270958, -0.15765514969825745, -0.015483942814171314, 0.05193964019417763, -0.027732007205486298, -0.04843824729323387, -0.03464234247803688, -0.09200085699558258, -0.014268850907683372, -0.0215739868581295, 0.16167958080768585, -0.060371413826942444, 0.11945001035928726, 0.037590280175209045, 0.06655029952526093, -0.04338962212204933, 0.05865325778722763, -0.10739872604608536, 0.015373148024082184, -0.17040352523326874, 0.036876801401376724, -0.052118051797151566, 0.06738930940628052, -0.10403607785701752, -0.12555046379566193, 0.026700830087065697, -0.018618186935782433, 0.08653903007507324, 0.09518612921237946, -0.16815948486328125, -0.05584391951560974, 0.14872688055038452, -0.05208325386047363, -0.14874041080474854, 0.12073207646608353, -0.05715257674455643, 0.03779435157775879, 0.06813658028841019, 0.17323040962219238, 0.05166020616889, -0.09053823351860046, 0.007537012919783592, -0.0037716086953878403, 0.03454810008406639, -0.08158929646015167, 0.0702260360121727, -0.0010547118727117777, 0.034047629684209824, 0.025005826726555824, -0.058972056955099106, 0.058833736926317215, -0.11381006240844727, -0.09475001692771912, -0.046781834214925766, -0.10470551997423172, 0.040094003081321716, 0.09155309945344925, 0.07208091765642166, -0.09885256737470627, -0.06608764082193375, 0.08233092725276947, 0.06841455399990082, -0.05987966060638428, 0.031567949801683426, -0.06375066190958023, 0.07148618996143341, -0.07095091044902802, -0.029644178226590157, -0.19823412597179413, -0.029851384460926056, 0.00393311632797122, 0.007406012620776892, 0.00985361821949482, 0.04859089106321335, 0.0752648115158081, 0.03511310741305351, -0.05653386190533638, -0.018166163936257362, -0.040420517325401306, -0.006061851046979427, -0.13441041111946106, -0.1864537000656128, -0.03769826516509056, -0.015074987895786762, 0.0962519720196724, -0.1832677274942398, 0.02150205709040165, -0.010074807330965996, 0.0722169280052185, -0.0054266564548015594, -0.013964379206299782, -0.036623019725084305, 0.08405590802431107, -0.017042802646756172, -0.048380084335803986, 0.07911593466997147, -0.0014363405061885715, -0.09039528667926788, -0.05473852530121803, -0.06396719068288803, 0.14726725220680237, 0.1307804435491562, -0.11787976324558258, -0.06619784981012344, 0.004398916848003864, -0.07315891236066818, -0.039846841245889664, -0.041011713445186615, 0.04046039655804634, 0.17724761366844177, -0.002495266031473875, 0.12326813489198685, -0.08384975790977478, -0.054504722356796265, 0.011853890493512154, -0.03254283219575882, 0.041000429540872574, 0.13024848699569702, 0.12090369313955307, -0.07087890058755875, 0.1438014805316925, 0.15510070323944092, -0.09021108597517014, 0.09888555109500885, -0.06504927575588226, -0.08808339387178421, -0.03447708487510681, 0.002272180747240782, -0.008651649579405785, 0.1207658052444458, -0.14188364148139954, 0.018572254106402397, 0.032369568943977356, 0.021973077207803726, 0.02641378529369831, -0.23072244226932526, -0.06141732633113861, 0.016647417098283768, -0.04866513982415199, -0.02995437942445278, -0.0023059386294335127, 0.020106030628085136, 0.10020766407251358, -0.0026834674645215273, -0.06241365522146225, 0.04625426232814789, -0.0014626773772761226, -0.07027880102396011, 0.2180805653333664, -0.0734298825263977, -0.12619848549365997, -0.08880378305912018, -0.04954049363732338, -0.04438256844878197, -0.008311113342642784, 0.06724181771278381, -0.08658887445926666, -0.014724023640155792, -0.05132843926548958, 0.01372719556093216, -0.008656596764922142, 0.019662344828248024, 0.0012491324450820684, -0.004479818977415562, 0.07402306795120239, -0.11439955234527588, 0.0060601606965065, -0.058279942721128464, -0.07276216894388199, 0.05672276020050049, 0.050289418548345566, 0.1295948326587677, 0.14246951043605804, -0.014261976815760136, 0.008151041343808174, -0.027445055544376373, 0.2547439634799957, -0.07121428102254868, -0.037060342729091644, 0.13969776034355164, 0.014154138043522835, 0.058282118290662766, 0.11335944384336472, 0.07060611248016357, -0.09345915168523788, 0.005672888830304146, 0.037161827087402344, -0.038535796105861664, -0.24277417361736298, -0.03441740199923515, -0.06117137148976326, -0.026424385607242584, 0.07321344316005707, 0.023267220705747604, 0.03010266087949276, 0.0701482892036438, 0.04589647054672241, 0.040666814893484116, -0.06747310608625412, 0.042384449392557144, 0.11116234958171844, 0.04341305047273636, 0.11638441681861877, -0.04511420056223869, -0.05986056849360466, 0.0284555833786726, 0.003105072770267725, 0.24551990628242493, -0.01363899651914835, 0.14088919758796692, 0.08107256144285202, 0.2160363346338272, -0.017957258969545364, 0.08085088431835175, -0.015046212822198868, -0.04944072291254997, -0.006054923869669437, -0.03228180855512619, -0.02737589180469513, 0.005148492753505707, -0.03422144427895546, 0.06410595029592514, -0.10037782043218613, -0.02077343501150608, 0.05873394384980202, 0.2701513171195984, 0.03407701104879379, -0.2982122302055359, -0.08704660832881927, -0.009267948567867279, -0.029469851404428482, -0.0033005611039698124, 0.01993468403816223, 0.124266617000103, -0.09630898386240005, 0.002640645019710064, -0.06835850328207016, 0.09981267899274826, -0.014374696649610996, 0.03957580775022507, 0.07645940780639648, 0.0804067924618721, 0.01667465828359127, 0.0930686667561531, -0.3145759701728821, 0.27174797654151917, -0.0005419967346824706, 0.0750642716884613, -0.0790516659617424, -0.0187652800232172, 0.005000487435609102, 0.03239455446600914, 0.08743754029273987, -0.007083091419190168, 0.002543420996516943, -0.17478325963020325, -0.04199986532330513, 0.0379653237760067, 0.07873158901929855, -0.01293710432946682, 0.09538692235946655, -0.011601202189922333, 0.014760427176952362, 0.07214146107435226, 0.0011037953663617373, -0.04061086103320122, -0.07796905934810638, -0.014118867926299572, 0.009956484660506248, -0.04976291209459305, -0.06707276403903961, -0.10582272708415985, -0.12203291058540344, 0.1259656846523285, -0.0006100315367802978, -0.0396406464278698, -0.10575897246599197, 0.09665292501449585, 0.10705334693193436, -0.08827759325504303, 0.031050175428390503, 0.016073890030384064, 0.032328031957149506, 0.04597073420882225, -0.06015249341726303, 0.09918832778930664, -0.05780016630887985, -0.15368713438510895, -0.04353168606758118, 0.11474046111106873, 0.04986576363444328, 0.06643515080213547, -0.008312995545566082, 0.01740667223930359, -0.05352159962058067, -0.10265687108039856, 0.01832091063261032, -0.03727549687027931, 0.09735220670700073, 0.023511620238423347, -0.03051980398595333, 0.057196538895368576, -0.05884842202067375, -0.023956509307026863, 0.19743134081363678, 0.23224419355392456, -0.10158724337816238, 0.01639224775135517, 0.03145912289619446, -0.04925783723592758, -0.18937958776950836, 0.05289847403764725, 0.07031327486038208, -0.00982726737856865, 0.0562177374958992, -0.1522819548845291, 0.1496904343366623, 0.11473673582077026, -0.005827826913446188, 0.11069612950086594, -0.36852288246154785, -0.11462333798408508, 0.09180604666471481, 0.16161464154720306, 0.12026606500148773, -0.16558688879013062, -0.01916087605059147, 0.0014639698201790452, -0.17131178081035614, 0.11427576839923859, -0.08813866227865219, 0.11582745611667633, -0.03864455595612526, 0.1057366207242012, -0.0000680294178891927, -0.07526689022779465, 0.12463147938251495, 0.0396876186132431, 0.0992107018828392, -0.05067727342247963, -0.0329141728579998, 0.0847850814461708, -0.021164841949939728, 0.020463095977902412, -0.05994296818971634, 0.03819555416703224, -0.10785234719514847, -0.013422978110611439, -0.1109711304306984, 0.03474250063300133, -0.042249973863363266, -0.05401984602212906, -0.04147668927907944, 0.029964609071612358, 0.05341225489974022, -0.011323515325784683, 0.11869245767593384, 0.02739056386053562, 0.14387547969818115, 0.08667530864477158, 0.07074189186096191, -0.06739819049835205, -0.11628331243991852, -0.017654456198215485, -0.006318170577287674, 0.04854988679289818, -0.13467150926589966, 0.026445606723427773, 0.16081376373767853, 0.047867003828287125, 0.12461336702108383, 0.07590080797672272, -0.02710474468767643, 0.011129810474812984, 0.04188969358801842, -0.1605679988861084, -0.13680964708328247, 0.01772489584982395, -0.07365766167640686, -0.12125974893569946, 0.05512753874063492, 0.06330765783786774, -0.051582690328359604, -0.01427382230758667, -0.003932190127670765, -0.000284973211819306, -0.06617307662963867, 0.20951247215270996, 0.08031380921602249, 0.04945068433880806, -0.11422649025917053, 0.07329946011304855, 0.04457933083176613, -0.09597410261631012, -0.008507739752531052, 0.060977477580308914, -0.07190550118684769, -0.04527714475989342, 0.09788528829813004, 0.15158043801784515, -0.05874834954738617, -0.036527231335639954, -0.1284443736076355, -0.1104632318019867, 0.07869649678468704, 0.14410527050495148, 0.1138751432299614, 0.01321813277900219, -0.043267011642456055, 0.0055715483613312244, -0.12406940758228302, 0.08431137353181839, 0.04030027240514755, 0.05998232960700989, -0.12349391728639603, 0.13724036514759064, 0.002624939428642392, 0.06373646855354309, -0.018817519769072533, 0.035360097885131836, -0.1029633954167366, 0.031801991164684296, -0.14049239456653595, -0.03330818563699722, -0.03657275438308716, -0.005269969813525677, -0.008448345586657524, -0.0815650224685669, -0.0628526583313942, 0.022270608693361282, -0.12406373023986816, -0.019861344248056412, 0.04763200134038925, 0.04427756741642952, -0.14088737964630127, -0.04901644214987755, 0.03323126584291458, -0.04763423278927803, 0.06856223940849304, 0.0633973702788353, 0.011225586757063866, 0.054890017956495285, -0.13639892637729645, -0.021107351407408714, 0.049926649779081345, 0.012380811385810375, 0.08187820017337799, -0.0947868749499321, -0.01969246193766594, 0.013868151232600212, 0.06709402054548264, 0.02173612266778946, 0.0388948917388916, -0.1420074850320816, -0.01476726308465004, -0.02979038655757904, -0.07443968951702118, -0.07212886959314346, 0.012874369509518147, 0.09490647912025452, 0.03377852216362953, 0.19639691710472107, -0.0584394596517086, 0.0603647381067276, -0.2169201374053955, -0.009891215711832047, -0.013954530470073223, -0.09656111150979996, -0.10654684901237488, -0.042721547186374664, 0.06954560428857803, -0.05685175955295563, 0.12885093688964844, -0.007538212928920984, 0.05934493616223335, 0.023255061358213425, -0.01571759395301342, 0.031726349145174026, 0.015316985547542572, 0.23730705678462982, 0.013589037582278252, -0.033869463950395584, 0.08047523349523544, 0.06133481115102768, 0.06886807829141617, 0.12122106552124023, 0.21015194058418274, 0.176008403301239, 0.010704043321311474, 0.06938837468624115, 0.029945263639092445, -0.04301466420292854, -0.1338149905204773, 0.04370935261249542, -0.026429589837789536, 0.08435185998678207, -0.01957009918987751, 0.24065743386745453, 0.05458374693989754, -0.17992831766605377, 0.058420710265636444, -0.06638520210981369, -0.0950595960021019, -0.07925727218389511, -0.030235761776566505, -0.06899382919073105, -0.1492881327867508, 0.012143619358539581, -0.12669947743415833, 0.015432939864695072, 0.1354784220457077, 0.013441688381135464, -0.032884079962968826, 0.17910408973693848, 0.050125788897275925, 0.028374921530485153, 0.041445814073085785, -0.0012748991139233112, -0.02201717346906662, -0.08165018260478973, -0.037472765892744064, -0.002683798084035516, -0.02436111867427826, 0.044724032282829285, -0.04832546040415764, -0.07554934173822403, 0.031244957819581032, -0.03951858729124069, -0.09317280352115631, 0.004113818518817425, 0.03811529278755188, 0.07450993359088898, 0.056455403566360474, 0.01736924611032009, 0.03184187412261963, -0.02282238006591797, 0.219973623752594, -0.07288292795419693, -0.087431900203228, -0.09613658487796783, 0.2493261694908142, 0.035108134150505066, -0.02380264736711979, 0.043454453349113464, -0.07011737674474716, 0.0075133987702429295, 0.25138965249061584, 0.178171768784523, -0.10344215482473373, -0.012625083327293396, 0.008914858102798462, -0.008719791658222675, -0.03283786028623581, 0.08945208042860031, 0.14396436512470245, 0.05176806449890137, -0.112970732152462, -0.046612273901700974, -0.07591631263494492, -0.015324779786169529, -0.04013039916753769, 0.04624251276254654, 0.052826885133981705, -0.0038912822492420673, -0.04116274043917656, 0.06946039944887161, -0.07063174247741699, -0.12639428675174713, 0.07194344699382782, -0.19956931471824646, -0.1602112501859665, -0.017921950668096542, 0.11030497401952744, 0.007336482405662537, 0.06272663176059723, -0.03339948505163193, 0.01588640734553337, 0.0718822255730629, -0.016019124537706375, -0.09618295729160309, -0.07484064996242523, 0.11665049195289612, -0.11761713027954102, 0.1821468472480774, -0.04168466478586197, 0.089664988219738, 0.13011156022548676, 0.05897035822272301, -0.0878526046872139, 0.06203882768750191, 0.06027456372976303, -0.09406077861785889, 0.017281824722886086, 0.07978685945272446, -0.011374058201909065, 0.03640298545360565, 0.03947969526052475, -0.12074929475784302, 0.012561602517962456, -0.04832544922828674, -0.019942620769143105, -0.0677984356880188, -0.034974172711372375, -0.057135723531246185, 0.12500448524951935, 0.21449722349643707, -0.041058409959077835, 0.014930834993720055, -0.07920566201210022, 0.008785510435700417, 0.049913447350263596, 0.028273066505789757, -0.07647442072629929, -0.21203452348709106, 0.027638858184218407, 0.05132010579109192, -0.030393922701478004, -0.1995287388563156, -0.08917039632797241, 0.023642219603061676, -0.08881381154060364, -0.06975129246711731, 0.06708971410989761, 0.06988044083118439, 0.05689182132482529, -0.047090526670217514, -0.06866473704576492, -0.08859136700630188, 0.15795008838176727, -0.15028005838394165, -0.08568115532398224 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # distilgpt2-finetuned-wikitext2 This model is a fine-tuned version of [distilgpt2](https://huggingface.co/distilgpt2) on the None dataset. It achieves the following results on the evaluation set: - Loss: 3.6428 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 3.76 | 1.0 | 2334 | 3.6658 | | 3.6325 | 2.0 | 4668 | 3.6454 | | 3.6068 | 3.0 | 7002 | 3.6428 | ### Framework versions - Transformers 4.9.1 - Pytorch 1.9.0+cu102 - Datasets 1.10.2 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": [], "model_index": [{"name": "distilgpt2-finetuned-wikitext2", "results": [{"task": {"name": "Causal Language Modeling", "type": "text-generation"}}]}]}
text-generation
MYX4567/distilgpt2-finetuned-wikitext2
[ "transformers", "pytorch", "tensorboard", "gpt2", "text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
distilgpt2-finetuned-wikitext2 ============================== This model is a fine-tuned version of distilgpt2 on the None dataset. It achieves the following results on the evaluation set: * Loss: 3.6428 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.9.1 * Pytorch 1.9.0+cu102 * Datasets 1.10.2 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ 66, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ -0.0882163941860199, 0.07053600251674652, -0.002550736302509904, 0.11114644259214401, 0.1498534232378006, 0.020588545128703117, 0.13179509341716766, 0.13610534369945526, -0.11678916960954666, 0.03397107124328613, 0.13527177274227142, 0.16090750694274902, 0.020715439692139626, 0.11635954678058624, -0.04394647106528282, -0.2589915990829468, -0.0027922545559704304, 0.04134729877114296, -0.05039026215672493, 0.1392325907945633, 0.0887017622590065, -0.11559567600488663, 0.08553053438663483, 0.0017673210240900517, -0.1934940665960312, 0.004462109412997961, -0.003914162516593933, -0.057252977043390274, 0.14725349843502045, 0.028037838637828827, 0.09790606796741486, 0.004839475732296705, 0.0668710395693779, -0.1878286898136139, 0.010552073828876019, 0.05952294170856476, 0.0007423392380587757, 0.08738827705383301, 0.051170069724321365, 0.017416242510080338, 0.18175901472568512, -0.06950299441814423, 0.03733444958925247, 0.015103241428732872, -0.11652642488479614, -0.1913665235042572, -0.0888432189822197, 0.032774146646261215, 0.07725248485803604, 0.1169237270951271, -0.013491485267877579, 0.13397550582885742, -0.07430119812488556, 0.1000533327460289, 0.2317148745059967, -0.2987108826637268, -0.06530234217643738, 0.016145627945661545, 0.030991295352578163, 0.0792648121714592, -0.08439818769693375, -0.01474363636225462, 0.04777133837342262, 0.05068257451057434, 0.11547129601240158, -0.031669873744249344, -0.10968285799026489, 0.012054584920406342, -0.1457805186510086, -0.05595334619283676, 0.1730685979127884, 0.027701525017619133, -0.026576882228255272, -0.06157652288675308, -0.07249834388494492, -0.1573699712753296, -0.026269443333148956, -0.010319705121219158, 0.036305878311395645, -0.018922679126262665, -0.05821417272090912, -0.03776801750063896, -0.11461202800273895, -0.06763685494661331, -0.0753943920135498, 0.12039344757795334, 0.04101816564798355, 0.009600778110325336, -0.03451435640454292, 0.11434726417064667, -0.004668031353503466, -0.12821459770202637, 0.013025812804698944, 0.036293793469667435, 0.031881850212812424, -0.028207801282405853, -0.0630507543683052, -0.07593508809804916, 0.025010988116264343, 0.11898989230394363, -0.055902767926454544, 0.04326122626662254, 0.024841146543622017, 0.04975751414895058, -0.09215646982192993, 0.1762302666902542, -0.03207483887672424, -0.007522996049374342, 0.017781157046556473, 0.04419655725359917, 0.04255963861942291, -0.02337491326034069, -0.1298326700925827, 0.013092885725200176, 0.10258477181196213, 0.019644632935523987, -0.053034406155347824, 0.07541532814502716, -0.03858164697885513, -0.019159626215696335, 0.01108953170478344, -0.09569709748029709, 0.024453815072774887, -0.0031879330053925514, -0.07098468393087387, -0.014123708009719849, 0.025489114224910736, 0.014860780909657478, -0.04659966751933098, 0.09490633010864258, -0.0769641101360321, 0.023199213668704033, -0.09767068177461624, -0.10633523762226105, 0.022591253742575645, -0.09313400089740753, 0.01711728237569332, -0.09267714619636536, -0.19662892818450928, -0.011151943355798721, 0.05301074683666229, -0.025594284757971764, -0.06612763553857803, -0.06488761305809021, -0.08012448996305466, 0.016399452462792397, -0.025714900344610214, 0.14303018152713776, -0.0675969123840332, 0.10235854983329773, 0.030400987714529037, 0.05985245108604431, -0.05427945777773857, 0.054238490760326385, -0.09452521055936813, 0.006973431911319494, -0.14865094423294067, 0.04504113644361496, -0.03699974715709686, 0.05653171241283417, -0.08058907091617584, -0.09925222396850586, 0.0031435068231076, 0.00786370225250721, 0.0688760057091713, 0.08948015421628952, -0.16208717226982117, -0.08786305040121078, 0.17231778800487518, -0.07707498967647552, -0.126324862241745, 0.12808766961097717, -0.04993429407477379, 0.04848967865109444, 0.06817271560430527, 0.18203501403331757, 0.059104714542627335, -0.07443340867757797, 0.007410712540149689, 0.012324381619691849, 0.04980189725756645, -0.062223970890045166, 0.06341464072465897, -0.004736864939332008, 0.03196609020233154, 0.03350477293133736, -0.026119768619537354, 0.05710335820913315, -0.08273463696241379, -0.08780114352703094, -0.049373310059309006, -0.07774226367473602, 0.014744684100151062, 0.06397783011198044, 0.08035971224308014, -0.10630779713392258, -0.09143179655075073, 0.03797922655940056, 0.08130323886871338, -0.08126777410507202, 0.038636162877082825, -0.05582764744758606, 0.08275824040174484, -0.03160664066672325, -0.005064611788839102, -0.17460863292217255, -0.01670346036553383, 0.014169375412166119, -0.003405757714062929, 0.025625932961702347, 0.018733233213424683, 0.06360159069299698, 0.06408411264419556, -0.04313240200281143, -0.009967118501663208, -0.028501298278570175, -0.017471548169851303, -0.12468182295560837, -0.18677744269371033, -0.016508331522345543, -0.021580783650279045, 0.13644152879714966, -0.19678020477294922, 0.044578589498996735, 0.010218694806098938, 0.057978931814432144, 0.003832105780020356, -0.011896179057657719, -0.042633600533008575, 0.07621068507432938, -0.05656963959336281, -0.05260343849658966, 0.07605937123298645, 0.016144441440701485, -0.09130436182022095, -0.03511864319443703, -0.12705546617507935, 0.14701920747756958, 0.14267238974571228, -0.11461065709590912, -0.06218937039375305, -0.005394120700657368, -0.061839666217565536, -0.03197828307747841, -0.03966362029314041, 0.01683805137872696, 0.20147275924682617, -0.01095094345510006, 0.15600347518920898, -0.0786462053656578, -0.049602486193180084, 0.022599585354328156, -0.03403922915458679, 0.03109000064432621, 0.1273593008518219, 0.13212460279464722, -0.05590440705418587, 0.15028615295886993, 0.1440572291612625, -0.09382688254117966, 0.1459873616695404, -0.04558194801211357, -0.07538020610809326, -0.003975371830165386, -0.006413113325834274, -0.0031736891251057386, 0.07939054816961288, -0.17238737642765045, -0.006532506085932255, 0.026333313435316086, 0.026291532441973686, 0.042137034237384796, -0.2323586791753769, -0.029806997627019882, 0.027157803997397423, -0.06049369275569916, -0.000593731296248734, -0.010771378874778748, -0.007880841381847858, 0.10785087198019028, -0.0032859668135643005, -0.0754256546497345, 0.03726888447999954, 0.003375797066837549, -0.0846482589840889, 0.21071259677410126, -0.07940276712179184, -0.17690570652484894, -0.12435132265090942, -0.06767652928829193, -0.06034214049577713, 0.01110121700912714, 0.07808751612901688, -0.08604872971773148, -0.030970770865678787, -0.09086143970489502, 0.024829911068081856, 0.000640317564830184, 0.0236444603651762, 0.009272947907447815, -0.0016268437029793859, 0.04808034375309944, -0.11446884274482727, -0.013416318222880363, -0.05637838691473007, -0.07684464007616043, 0.05179154500365257, 0.02989475056529045, 0.1143876314163208, 0.15946468710899353, -0.0047677261754870415, 0.01806531846523285, -0.03276402875781059, 0.2148130238056183, -0.0766015276312828, -0.02413974702358246, 0.14870679378509521, 0.0032949212472885847, 0.05416659265756607, 0.09221507608890533, 0.05579317733645439, -0.08755691349506378, 0.009290908463299274, 0.024289797991514206, -0.04293818771839142, -0.22548624873161316, -0.048170190304517746, -0.0627787634730339, 0.009280914440751076, 0.08965373039245605, 0.03943584859371185, 0.04937662556767464, 0.06576728075742722, 0.02993948571383953, 0.08325160294771194, -0.02371840551495552, 0.05870645493268967, 0.13434842228889465, 0.03709915652871132, 0.13026933372020721, -0.052613429725170135, -0.061859387904405594, 0.053510066121816635, -0.005168219096958637, 0.22942937910556793, -0.0013827687362208962, 0.16087834537029266, 0.05619638040661812, 0.15539656579494476, -0.005525730084627867, 0.07641234248876572, -0.018647415563464165, -0.03235211595892906, -0.022744372487068176, -0.04662022367119789, -0.03816046938300133, 0.022728879004716873, -0.08533122390508652, 0.04012253135442734, -0.10811454057693481, 0.004670766182243824, 0.06266432255506516, 0.2482365369796753, 0.03576531633734703, -0.3160659074783325, -0.08696840703487396, 0.009665381163358688, -0.040325913578271866, -0.018236873671412468, 0.0350678414106369, 0.10702923685312271, -0.08519645035266876, 0.03273520991206169, -0.06943950802087784, 0.09874571114778519, -0.05405876412987709, 0.0545235313475132, 0.06293530762195587, 0.0889182835817337, 0.0130799924954772, 0.09527364373207092, -0.30840542912483215, 0.2672486901283264, 0.00021387777815107256, 0.07012230157852173, -0.08923578262329102, 0.01663096435368061, 0.029670655727386475, 0.05057071894407272, 0.0687447339296341, -0.018796637654304504, -0.04156346619129181, -0.15164215862751007, -0.07261047512292862, 0.041337933391332626, 0.08754488080739975, -0.029244646430015564, 0.09181105345487595, -0.03050939552485943, 0.013610202819108963, 0.06507112085819244, -0.01652500405907631, -0.03788707032799721, -0.11369398981332779, 0.005949075799435377, 0.023850059136748314, -0.046340905129909515, -0.05969269573688507, -0.10769113898277283, -0.13141471147537231, 0.1693572700023651, -0.026532063260674477, -0.043333008885383606, -0.1000000536441803, 0.07805652171373367, 0.05985376611351967, -0.08735352754592896, 0.03604045882821083, 0.008875944651663303, 0.06348251551389694, 0.030675305053591728, -0.07395461201667786, 0.10507845878601074, -0.0627226009964943, -0.1694703996181488, -0.04885299876332283, 0.11400046944618225, 0.01962423510849476, 0.05781906843185425, -0.011040379293262959, 0.01500745676457882, -0.05875447764992714, -0.1016487404704094, 0.018554773181676865, -0.006607364863157272, 0.0725201666355133, 0.01310505997389555, -0.050868336111307144, 0.025979889556765556, -0.06183895096182823, -0.050530362874269485, 0.21015241742134094, 0.23620110750198364, -0.08179185539484024, 0.03541063144803047, 0.027519771829247475, -0.07865523546934128, -0.20577654242515564, 0.012088678777217865, 0.045931458473205566, 0.003881317563354969, 0.02161083184182644, -0.19327260553836823, 0.105072982609272, 0.1173180490732193, -0.015258809551596642, 0.130706787109375, -0.3597645163536072, -0.12895596027374268, 0.11578144133090973, 0.1334628015756607, 0.11232775449752808, -0.15732786059379578, -0.02575174905359745, -0.02814018912613392, -0.10549405962228775, 0.11623259633779526, -0.10769222676753998, 0.1292678266763687, -0.030458321794867516, 0.09858207404613495, 0.0003085708594880998, -0.06237417086958885, 0.11517446488142014, 0.00805810745805502, 0.08218608051538467, -0.0700959786772728, 0.003393434686586261, 0.041828498244285583, -0.03292958065867424, 0.028328754007816315, -0.11574221402406693, 0.027524301782250404, -0.09660780429840088, -0.025327103212475777, -0.06509147584438324, 0.041502367705106735, -0.03125202655792236, -0.06090176850557327, -0.04216541349887848, -0.006553285755217075, 0.044351235032081604, -0.004198264330625534, 0.14091657102108002, 0.01583031378686428, 0.13884268701076508, 0.11087216436862946, 0.0713096410036087, -0.08650504052639008, -0.05173547938466072, -0.0192839615046978, -0.010946407914161682, 0.05037146434187889, -0.1555793732404709, 0.02062733843922615, 0.13910166919231415, 0.016316257417201996, 0.14185141026973724, 0.08253338187932968, -0.02945648320019245, 0.023965459316968918, 0.05962122604250908, -0.17868570983409882, -0.09425844252109528, -0.014969231560826302, -0.05746590718626976, -0.0914420410990715, 0.060127463191747665, 0.10339123010635376, -0.06536826491355896, -0.004375619813799858, -0.007085501216351986, 0.01637285202741623, -0.04950956627726555, 0.18662133812904358, 0.038911037147045135, 0.038532111793756485, -0.10157635062932968, 0.07395201176404953, 0.04191755875945091, -0.0815238505601883, 0.026514632627367973, 0.0962512344121933, -0.08050106465816498, -0.0554044134914875, 0.07000309228897095, 0.17121244966983795, -0.04621181637048721, -0.05240877717733383, -0.1371791809797287, -0.12099531292915344, 0.08710543811321259, 0.139133021235466, 0.10685655474662781, 0.01642853394150734, -0.06835876405239105, 0.01471957191824913, -0.12245111912488937, 0.08615219593048096, 0.0346401184797287, 0.06080096587538719, -0.12457238137722015, 0.14829427003860474, 0.019122987985610962, 0.03711041063070297, -0.02422920987010002, 0.021198365837335587, -0.09527382254600525, 0.012698212638497353, -0.10596533864736557, -0.021740971133112907, -0.02953493781387806, -0.0012755196075886488, -0.0027938461862504482, -0.041389089077711105, -0.05990688130259514, 0.012448521330952644, -0.11262524873018265, -0.02457631193101406, 0.013688712380826473, 0.050931334495544434, -0.11492801457643509, -0.02224041149020195, 0.02465369552373886, -0.06733562052249908, 0.08595751971006393, 0.05032923445105553, 0.012331255711615086, 0.06635063141584396, -0.14966201782226562, 0.018124617636203766, 0.07469412684440613, 0.029588833451271057, 0.04637647792696953, -0.0706973448395729, -0.007275038864463568, 0.015009099617600441, 0.05379783734679222, 0.023093173280358315, 0.07087566703557968, -0.13742463290691376, 0.010909502394497395, -0.024957461282610893, -0.08356595784425735, -0.06705834716558456, 0.04032937064766884, 0.06828934699296951, 0.016906674951314926, 0.19502699375152588, -0.0848931297659874, 0.038070209324359894, -0.2075580507516861, 0.012550391256809235, 0.0037239990197122097, -0.11842158436775208, -0.11607842892408371, -0.06756600737571716, 0.0649273693561554, -0.05638311430811882, 0.1526581048965454, 0.0320504829287529, 0.026193823665380478, 0.02416667528450489, -0.011425318196415901, 0.020820586010813713, 0.010036880150437355, 0.2223665565252304, 0.04349137842655182, -0.03221340849995613, 0.04340928792953491, 0.03936256468296051, 0.10868854075670242, 0.10252774506807327, 0.20093394815921783, 0.1265617161989212, -0.00908497255295515, 0.1049608588218689, 0.03186337649822235, -0.05897170305252075, -0.1554025262594223, 0.04668708145618439, -0.04356709495186806, 0.126632422208786, -0.026587456464767456, 0.21065670251846313, 0.07852506637573242, -0.15339191257953644, 0.03335749730467796, -0.046879842877388, -0.08178234845399857, -0.11579494178295135, -0.06774766743183136, -0.08563268929719925, -0.1445627212524414, 0.002565692411735654, -0.12298960983753204, 0.028851166367530823, 0.11076634377241135, 0.013561300002038479, -0.03063587285578251, 0.14968369901180267, 0.023848138749599457, 0.009706621989607811, 0.05638645589351654, -0.0010422521736472845, -0.027227260172367096, -0.10991507023572922, -0.06636819243431091, -0.016864383593201637, -0.008635209873318672, 0.05184898525476456, -0.03807545080780983, -0.04296177625656128, 0.0382787249982357, -0.04146124795079231, -0.08863865584135056, 0.004659319296479225, 0.023733602836728096, 0.06259308010339737, 0.05050425976514816, 0.008496463298797607, -0.0007583497790619731, -0.0020056322682648897, 0.21451249718666077, -0.07746092975139618, -0.08601438999176025, -0.08531346172094345, 0.23812232911586761, 0.035003647208213806, -0.015780864283442497, 0.0269931647926569, -0.06006840988993645, -0.008581841364502907, 0.2650059461593628, 0.21782413125038147, -0.0809641182422638, -0.01493937335908413, 0.009082858450710773, -0.0026382210198789835, -0.017714988440275192, 0.11625055223703384, 0.149053692817688, 0.07654212415218353, -0.08906249701976776, -0.046707652509212494, -0.047089070081710815, -0.006362777203321457, -0.05689602717757225, 0.07023677974939346, 0.0418195016682148, -0.003058726666495204, -0.02959827147424221, 0.053921230137348175, -0.06860774010419846, -0.07606742531061172, 0.02214772254228592, -0.20842820405960083, -0.15777279436588287, 0.00963867548853159, 0.1291494369506836, -0.0027665146626532078, 0.062313906848430634, -0.023702029138803482, 0.003432571655139327, 0.07093840092420578, -0.022314446046948433, -0.10661595314741135, -0.04938792809844017, 0.08642365783452988, -0.13449566066265106, 0.19932502508163452, -0.04322841763496399, 0.06539268791675568, 0.12375486642122269, 0.055633191019296646, -0.07206614315509796, 0.08020014315843582, 0.03685474395751953, -0.0602971650660038, 0.03283732011914253, 0.07378826290369034, -0.029314476996660233, 0.034167878329753876, 0.05531448870897293, -0.11202456802129745, 0.015893517062067986, -0.057362768799066544, -0.04825660586357117, -0.032022278755903244, -0.045334745198488235, -0.06839750707149506, 0.12804237008094788, 0.20233483612537384, -0.026451392099261284, 0.004420675802975893, -0.07982273399829865, 0.008645067922770977, 0.039404552429914474, 0.03656425327062607, -0.05490938574075699, -0.22647134959697723, -0.004471265245229006, 0.06039337441325188, -0.021773939952254295, -0.259458988904953, -0.08091280609369278, -0.002150601474568248, -0.06308051198720932, -0.11404204368591309, 0.0731591060757637, 0.09489615261554718, 0.04308493435382843, -0.05727330595254898, -0.04124792292714119, -0.07322133332490921, 0.14862559735774994, -0.14009325206279755, -0.09019780158996582 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # gpt2-wikitext2 This model is a fine-tuned version of [](https://huggingface.co/) on the None dataset. It achieves the following results on the evaluation set: - Loss: 6.3227 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 6.7523 | 1.0 | 2249 | 6.6652 | | 6.4134 | 2.0 | 4498 | 6.3987 | | 6.2507 | 3.0 | 6747 | 6.3227 | ### Framework versions - Transformers 4.9.1 - Pytorch 1.9.0+cu102 - Datasets 1.10.2 - Tokenizers 0.10.3
{"tags": ["generated_from_trainer"], "datasets": [], "model_index": [{"name": "gpt2-wikitext2", "results": [{"task": {"name": "Causal Language Modeling", "type": "text-generation"}}]}]}
text-generation
MYX4567/gpt2-wikitext2
[ "transformers", "pytorch", "tensorboard", "gpt2", "text-generation", "generated_from_trainer", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
gpt2-wikitext2 ============== This model is a fine-tuned version of [](URL on the None dataset. It achieves the following results on the evaluation set: * Loss: 6.3227 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.9.1 * Pytorch 1.9.0+cu102 * Datasets 1.10.2 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ 58, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.9.1\n* Pytorch 1.9.0+cu102\n* Datasets 1.10.2\n* Tokenizers 0.10.3" ]
[ -0.0960584208369255, 0.047566007822752, -0.002286564791575074, 0.10764877498149872, 0.17984764277935028, 0.020371435210108757, 0.12709158658981323, 0.12560021877288818, -0.12177886813879013, 0.031423695385456085, 0.13808560371398926, 0.1681254655122757, 0.011026216670870781, 0.120212621986866, -0.04943380132317543, -0.2728597819805145, -0.017116956412792206, 0.059024449437856674, -0.05359770357608795, 0.14824169874191284, 0.08355206251144409, -0.13851700723171234, 0.07390429079532623, -0.007407214026898146, -0.24309654533863068, 0.0003329847822897136, 0.011292141862213612, -0.06248707324266434, 0.15357212722301483, 0.016980459913611412, 0.12878228724002838, 0.011631760746240616, 0.07100408524274826, -0.1615905612707138, 0.012182199396193027, 0.04654854163527489, 0.017291143536567688, 0.09002611041069031, 0.06313729286193848, -0.006913845427334309, 0.1436765491962433, -0.07443759590387344, 0.04368049278855324, 0.009232026524841785, -0.13384173810482025, -0.18385879695415497, -0.06860994547605515, 0.014743531122803688, 0.05427827313542366, 0.11735896021127701, -0.0199446901679039, 0.13246139883995056, -0.08070998638868332, 0.10757632553577423, 0.2431543618440628, -0.2648944854736328, -0.0708853006362915, 0.023857267573475838, 0.028428474441170692, 0.09485206753015518, -0.10513099282979965, -0.011329243890941143, 0.052701592445373535, 0.0538998618721962, 0.12863034009933472, -0.03066132962703705, -0.09217562526464462, 0.015660634264349937, -0.150451198220253, -0.03914571553468704, 0.12282262742519379, 0.0083263935521245, -0.01989353448152542, -0.044897787272930145, -0.06730855256319046, -0.17499904334545135, -0.03645645081996918, -0.01928861066699028, 0.02062765322625637, -0.0423426516354084, -0.09339471161365509, -0.030483070760965347, -0.11098825931549072, -0.07346224784851074, -0.06927571445703506, 0.15598058700561523, 0.040031030774116516, -0.0011161933653056622, -0.04210418835282326, 0.12321833521127701, 0.0019450418185442686, -0.12882055342197418, 0.03634597361087799, 0.029927648603916168, 0.014690411277115345, -0.04480654001235962, -0.07264136523008347, -0.09523573517799377, -0.0033353727776557207, 0.07628978043794632, -0.0743870958685875, 0.04402540996670723, 0.0281008780002594, 0.04581635445356369, -0.09173935651779175, 0.19935929775238037, -0.03592724725604057, 0.00530287204310298, 0.00034950318513438106, 0.05521716549992561, -0.008248218335211277, -0.024047495797276497, -0.11675426363945007, -0.007364130113273859, 0.1387980729341507, 0.01569352112710476, -0.07134656608104706, 0.07776941359043121, -0.038379229605197906, -0.026927316561341286, -0.020637640729546547, -0.0956045463681221, 0.024800363928079605, -0.009263257496058941, -0.08327183127403259, 0.007838530465960503, 0.0205981507897377, 0.007309244945645332, -0.04729920253157616, 0.11703526973724365, -0.0853184312582016, 0.04716789722442627, -0.0998259112238884, -0.11805087327957153, -0.00023183786834124476, -0.09175090491771698, 0.008978724479675293, -0.09637996554374695, -0.16244450211524963, -0.025691183283925056, 0.030907899141311646, -0.028178149834275246, -0.047982193529605865, -0.07493797689676285, -0.0730639100074768, 0.0066405488178133965, -0.01840333454310894, 0.14147523045539856, -0.051944151520729065, 0.13077899813652039, 0.04731792211532593, 0.07408227026462555, -0.044217128306627274, 0.06031343713402748, -0.0860338807106018, -0.002974848262965679, -0.18987874686717987, 0.07495187222957611, -0.025736629962921143, 0.062491729855537415, -0.0765528455376625, -0.11829185485839844, -0.0005367219564504921, 0.005645929370075464, 0.08955327421426773, 0.10616970807313919, -0.15768057107925415, -0.09454106539487839, 0.18556776642799377, -0.05870186537504196, -0.09510723501443863, 0.12661121785640717, -0.061591774225234985, 0.06772685796022415, 0.0874897837638855, 0.18809685111045837, 0.055355530232191086, -0.06204388663172722, 0.028611762449145317, -0.018175620585680008, 0.04871140047907829, -0.049100905656814575, 0.044899482280015945, 0.004662495106458664, 0.006503196433186531, 0.034339651465415955, -0.012206313200294971, 0.06620977818965912, -0.11621853709220886, -0.07991476356983185, -0.03521881625056267, -0.09459471702575684, 0.0664818212389946, 0.069597527384758, 0.10704066604375839, -0.09820643812417984, -0.0725761130452156, 0.06344495713710785, 0.06281350553035736, -0.084190733730793, 0.03589186072349548, -0.04844718798995018, 0.07385890185832977, -0.046066269278526306, -0.013837859034538269, -0.20059695839881897, -0.01686258427798748, 0.0099874809384346, 0.04685784503817558, 0.03177165240049362, 0.014041622169315815, 0.07771936058998108, 0.06371437013149261, -0.0500461608171463, -0.014415028505027294, -0.018118569627404213, -0.023539669811725616, -0.1471368372440338, -0.16818194091320038, -0.006906514056026936, -0.01655617170035839, 0.11796562373638153, -0.20523376762866974, 0.04069111496210098, -0.004788901191204786, 0.06271158903837204, 0.001011338783428073, -0.021125439554452896, -0.03766712546348572, 0.0932086780667305, -0.03501041978597641, -0.044990383088588715, 0.0846710279583931, 0.000011453471415734384, -0.08903107792139053, -0.04157520830631256, -0.13059791922569275, 0.16135188937187195, 0.1386336386203766, -0.14715267717838287, -0.09557969123125076, -0.015734544023871422, -0.05984115228056908, -0.026660379022359848, -0.044035639613866806, 0.022771764546632767, 0.21688519418239594, -0.008074595592916012, 0.16082856059074402, -0.07227323204278946, -0.05169454216957092, 0.020965049043297768, -0.03223687782883644, 0.04452955350279808, 0.12998324632644653, 0.10002688318490982, -0.05956451967358589, 0.13156947493553162, 0.1159961074590683, -0.09497084468603134, 0.15910650789737701, -0.023893095552921295, -0.07787162065505981, -0.0030195447616279125, -0.008324341848492622, -0.0022748408373445272, 0.06731679290533066, -0.15222692489624023, -0.021547261625528336, 0.012481264770030975, 0.024071726948022842, 0.04120995104312897, -0.23437054455280304, -0.04311747848987579, 0.032001566141843796, -0.04395484924316406, -0.00010884655057452619, -0.01015637256205082, 0.014639430679380894, 0.11959870904684067, 0.003545523388311267, -0.05831068381667137, 0.030995644629001617, 0.007588229142129421, -0.08242885768413544, 0.2204684466123581, -0.06736163049936295, -0.17910641431808472, -0.11530228704214096, -0.07046689838171005, -0.04605498164892197, 0.01949250139296055, 0.06069926545023918, -0.1094134971499443, -0.007089405320584774, -0.05822739750146866, 0.0537787564098835, -0.01253755297511816, 0.040247924625873566, 0.00037292265915311873, -0.0077348086051642895, 0.04538523405790329, -0.10260636359453201, -0.007487577851861715, -0.06646669656038284, -0.07804293930530548, 0.06956618279218674, 0.022695986554026604, 0.11658933758735657, 0.1742292046546936, -0.02680857665836811, 0.020472735166549683, -0.03770637884736061, 0.23074908554553986, -0.0852554515004158, -0.03881863132119179, 0.12349791824817657, -0.00844413973391056, 0.055852748453617096, 0.08233412355184555, 0.05794680491089821, -0.09215813130140305, 0.016592131927609444, 0.023446165025234222, -0.04619399458169937, -0.21533203125, -0.04069049283862114, -0.05253153294324875, -0.0096125528216362, 0.09463904798030853, 0.02260594442486763, 0.05122298002243042, 0.0756903737783432, 0.0491388775408268, 0.08489426970481873, -0.03560667112469673, 0.050454478710889816, 0.11739753931760788, 0.03510696813464165, 0.13270577788352966, -0.036506567150354385, -0.08806225657463074, 0.033870335668325424, -0.027200456708669662, 0.22579729557037354, -0.023196116089820862, 0.12517397105693817, 0.042457789182662964, 0.16167886555194855, 0.012431132607161999, 0.09062698483467102, -0.008747488260269165, -0.04521014168858528, -0.008561653085052967, -0.03461636230349541, -0.05166611820459366, 0.0027075062971562147, -0.050058864057064056, 0.037562787532806396, -0.132701113820076, -0.01747874729335308, 0.05465284734964371, 0.22652342915534973, 0.027921387925744057, -0.33472636342048645, -0.08887112140655518, -0.007555911783128977, -0.03284938260912895, -0.025141490623354912, 0.019910762086510658, 0.11585472524166107, -0.10888092964887619, 0.013468168675899506, -0.07552193105220795, 0.09353095293045044, -0.06783659011125565, 0.05905953422188759, 0.040603455156087875, 0.0939994677901268, -0.005153524223715067, 0.08061278611421585, -0.32528063654899597, 0.2685072124004364, -0.0011271770345047116, 0.06734044849872589, -0.08027341216802597, -0.014084520749747753, 0.022684669122099876, 0.04094449803233147, 0.05252249166369438, -0.01666504330933094, -0.007817720994353294, -0.20153868198394775, -0.05953418090939522, 0.03539033979177475, 0.12078604102134705, -0.03204170614480972, 0.10343613475561142, -0.018470920622348785, 0.018275752663612366, 0.06499247997999191, -0.05754473805427551, -0.0382499024271965, -0.09298083186149597, 0.0012157873716205359, 0.006406905595213175, -0.022245295345783234, -0.04796064272522926, -0.11912957578897476, -0.12304772436618805, 0.15960700809955597, 0.00871772225946188, -0.04333561286330223, -0.11282961815595627, 0.09920010715723038, 0.07769566029310226, -0.08864673227071762, 0.033134281635284424, 0.01849992573261261, 0.06169912591576576, 0.025597944855690002, -0.06127147376537323, 0.10685393959283829, -0.04662258177995682, -0.16125202178955078, -0.04277007281780243, 0.11777521669864655, 0.04426060616970062, 0.062313925474882126, -0.01348536740988493, 0.007595516741275787, -0.0452827550470829, -0.09815766662359238, 0.026801180094480515, -0.019304482266306877, 0.06643722951412201, 0.030932089313864708, -0.05058179795742035, 0.030522799119353294, -0.07784558087587357, -0.03500092774629593, 0.22598880529403687, 0.22649919986724854, -0.0796176865696907, 0.020778002217411995, 0.03634420782327652, -0.0744175985455513, -0.2017878293991089, 0.04751313477754593, 0.07394812256097794, 0.014915021136403084, 0.020827287808060646, -0.18720084428787231, 0.08912567049264908, 0.1001863032579422, 0.005602646619081497, 0.12218953669071198, -0.357753723859787, -0.13116273283958435, 0.10686402022838593, 0.15517081320285797, 0.1312243789434433, -0.15108202397823334, -0.022543400526046753, -0.017444690689444542, -0.10397636145353317, 0.10493659228086472, -0.07134827226400375, 0.13785067200660706, -0.029421327635645866, 0.12038642168045044, 0.01651562936604023, -0.06269880384206772, 0.10317172855138779, 0.015636200085282326, 0.07865341752767563, -0.07039047032594681, -0.032493263483047485, 0.03631553053855896, -0.031135262921452522, 0.006369255017489195, -0.05956462770700455, 0.02318413183093071, -0.09483359009027481, -0.03273150697350502, -0.09158430993556976, 0.028663279488682747, -0.026360616087913513, -0.061184223741292953, -0.030119936913251877, 0.0014995932579040527, 0.0384802520275116, -0.007989726029336452, 0.09306763112545013, -0.007418167311698198, 0.16546328365802765, 0.0967213362455368, 0.07935330271720886, -0.06587548553943634, -0.04622698947787285, -0.006627945229411125, -0.005828390829265118, 0.04824198782444, -0.1317742019891739, 0.020103532820940018, 0.15689249336719513, 0.021886548027396202, 0.13729563355445862, 0.0934586301445961, -0.023073401302099228, 0.028566231951117516, 0.05932335928082466, -0.18568536639213562, -0.07838702201843262, -0.023503277450799942, -0.08563058078289032, -0.09077291190624237, 0.05629381164908409, 0.10085351765155792, -0.06386027485132217, -0.012788772583007812, -0.01825621724128723, -0.007092112675309181, -0.05387401580810547, 0.2154264748096466, 0.05037220939993858, 0.047958798706531525, -0.10101927071809769, 0.051582835614681244, 0.04455842822790146, -0.07971524447202682, 0.01774483360350132, 0.11153677105903625, -0.08263740688562393, -0.039484865963459015, 0.08716684579849243, 0.18576128780841827, -0.07291728258132935, -0.019807422533631325, -0.14656703174114227, -0.11994677782058716, 0.08093851804733276, 0.17060412466526031, 0.10471614450216293, 0.015588633716106415, -0.07061855494976044, 0.020483946427702904, -0.15045548975467682, 0.07054285705089569, 0.06117080897092819, 0.06290293484926224, -0.11619159579277039, 0.2084728330373764, 0.0057771108113229275, 0.052928391844034195, -0.033524006605148315, 0.013076826930046082, -0.10883321613073349, 0.028833728283643723, -0.10774580389261246, -0.03902708366513252, -0.013411137275397778, -0.01013887394219637, -0.014782090671360493, -0.0504356324672699, -0.04183969274163246, -0.001975951250642538, -0.12298627197742462, -0.01827252097427845, 0.01955367997288704, 0.025805940851569176, -0.10669814795255661, -0.02802259847521782, 0.018612317740917206, -0.05833064392209053, 0.08329466730356216, 0.06327202916145325, 0.003560922108590603, 0.06711754202842712, -0.14371423423290253, 0.005138257518410683, 0.07126264274120331, -0.00299743190407753, 0.05453503876924515, -0.053433608263731, -0.00029938772786408663, 0.00007267704495461658, 0.0871393010020256, 0.03713434934616089, 0.06755578517913818, -0.1341027170419693, 0.018318703398108482, -0.029548203572630882, -0.07678642868995667, -0.07750647515058517, 0.044258661568164825, 0.052696675062179565, 0.02853042632341385, 0.1638725847005844, -0.08880415558815002, 0.05739033222198486, -0.20608758926391602, -0.0010377430589869618, -0.004286853596568108, -0.12449658662080765, -0.08840160071849823, -0.07385500520467758, 0.08188337832689285, -0.048286840319633484, 0.12877587974071503, 0.029337210580706596, 0.04800992086529732, 0.016596294939517975, -0.023424962535500526, 0.009614715352654457, 0.020454498007893562, 0.21168239414691925, 0.043441638350486755, -0.04930057004094124, 0.056866005063056946, 0.07251850515604019, 0.1074712797999382, 0.1280609667301178, 0.21436551213264465, 0.11916305124759674, -0.019391927868127823, 0.09045057743787766, 0.016718914732336998, -0.034901928156614304, -0.15236897766590118, 0.033553238958120346, -0.05550001934170723, 0.09111442416906357, -0.030312450602650642, 0.2116284817457199, 0.06640635430812836, -0.14989595115184784, 0.043545354157686234, -0.04311646893620491, -0.10587979853153229, -0.09919767081737518, -0.03579796105623245, -0.0804823562502861, -0.1412045955657959, 0.0037574719171971083, -0.12093214690685272, 0.027533134445548058, 0.1079440712928772, 0.021383672952651978, -0.03186540678143501, 0.18278197944164276, 0.050840411335229874, 0.004517796915024519, 0.08173467218875885, -0.0037538334727287292, -0.009327706880867481, -0.10722466558218002, -0.06304173171520233, -0.019152183085680008, 0.0059059057384729385, 0.052841585129499435, -0.04490279778838158, -0.0743802860379219, 0.026614943519234657, -0.040367331355810165, -0.10114055126905441, 0.008064310997724533, 0.03463223576545715, 0.07557323575019836, 0.040780168026685715, 0.0009952059481292963, -0.010733665898442268, -0.024326806887984276, 0.22931773960590363, -0.07458759099245071, -0.08674953877925873, -0.08357701450586319, 0.2662336528301239, 0.0401456356048584, -0.00579789699986577, 0.019436800852417946, -0.060492709279060364, 0.003291928907856345, 0.2795484960079193, 0.20639309287071228, -0.1022987812757492, -0.007772114127874374, 0.006091715302318335, -0.0028582653030753136, 0.004452562890946865, 0.1250239759683609, 0.13778820633888245, 0.07017230987548828, -0.10688653588294983, -0.04019526019692421, -0.052226629108190536, -0.00975704938173294, -0.038703471422195435, 0.06261337548494339, 0.05828884616494179, 0.017277594655752182, -0.05397164821624756, 0.06375141441822052, -0.10217612236738205, -0.07937344163656235, 0.016803916543722153, -0.21797257661819458, -0.15764111280441284, -0.0016818416770547628, 0.098508320748806, -0.009387177415192127, 0.07305242866277695, -0.025902390480041504, 0.0014440711820498109, 0.05223190411925316, -0.021529683843255043, -0.08507250994443893, -0.05074235424399376, 0.0841650664806366, -0.12171856313943863, 0.15847688913345337, -0.048210300505161285, 0.06432639062404633, 0.11904700100421906, 0.05617745965719223, -0.05457419157028198, 0.06850490719079971, 0.02809538133442402, -0.06460435688495636, 0.03174969553947449, 0.12098917365074158, -0.026586037129163742, 0.018869535997509956, 0.04340151324868202, -0.13519105315208435, 0.027041040360927582, -0.08719265460968018, -0.03258347138762474, -0.0306377150118351, -0.06356922537088394, -0.05527525767683983, 0.12288036197423935, 0.22615988552570343, -0.018952786922454834, 0.025968026369810104, -0.07821354269981384, 0.00023551928461529315, 0.03758268430829048, 0.049266282469034195, -0.07752841711044312, -0.2559826076030731, -0.0174187533557415, 0.08463748544454575, -0.03557198494672775, -0.26966190338134766, -0.08179780095815659, -0.00010556451888987795, -0.06650608032941818, -0.10122504085302353, 0.09308220446109772, 0.06990883499383926, 0.052275657653808594, -0.048568643629550934, -0.06406017392873764, -0.07771581411361694, 0.17030417919158936, -0.15517055988311768, -0.08861732482910156 ]
null
null
transformers
bgc-accession model is a Named Entity Recognition (NER) model that identifies and annotates the accession number of biosynthetic gene clusters in texts. The model is a fine-tuned BioBERT model and the training dataset is available in https://gitlab.com/maaly7/emerald_bgcs_annotations Testing examples: 1. The genome sequences of Leptolyngbya sp. PCC 7375 (ALVN00000000) and G. sunshinyii YC6258 (NZ_CP007142.1) were obtained previously.36,59 2. K311 was sequenced (NCBI accession number: JN852959) and analyzed with FramePlot and 18 genes were predicted to be involved in echinomycin biosynthesis (Figure 2). 3. The mar cluster was sequenced and annotated and the complete sequence was deposited into Genbank (accession KF711829).
{}
token-classification
Maaly/bgc-accession
[ "transformers", "pytorch", "bert", "token-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us
bgc-accession model is a Named Entity Recognition (NER) model that identifies and annotates the accession number of biosynthetic gene clusters in texts. The model is a fine-tuned BioBERT model and the training dataset is available in URL Testing examples: 1. The genome sequences of Leptolyngbya sp. PCC 7375 (ALVN00000000) and G. sunshinyii YC6258 (NZ_CP007142.1) were obtained previously.36,59 2. K311 was sequenced (NCBI accession number: JN852959) and analyzed with FramePlot and 18 genes were predicted to be involved in echinomycin biosynthesis (Figure 2). 3. The mar cluster was sequenced and annotated and the complete sequence was deposited into Genbank (accession KF711829).
[]
[ "TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04952388256788254, 0.052763525396585464, -0.008742042817175388, 0.033980391919612885, 0.16650345921516418, 0.031232766807079315, 0.056794650852680206, 0.08634597808122635, 0.05724777653813362, -0.022096728906035423, 0.12041265517473221, 0.25661665201187134, -0.04172574356198311, 0.09726614505052567, -0.09425565600395203, -0.2964369058609009, 0.072568878531456, 0.08518822491168976, -0.03685073181986809, 0.10874255001544952, 0.0826217457652092, -0.09953062981367111, 0.07087896764278412, -0.021146323531866074, -0.14565661549568176, 0.03782055899500847, 0.04566175118088722, -0.12290510535240173, 0.10927622765302658, 0.024675650522112846, 0.195825457572937, 0.0250800009816885, -0.04914003983139992, -0.12460087239742279, 0.02292012982070446, 0.012434997595846653, -0.0567244216799736, 0.05464257672429085, 0.07972842454910278, -0.09245497733354568, -0.02643316052854061, 0.0736164003610611, 0.040207646787166595, 0.040536463260650635, -0.12785013020038605, -0.130097895860672, -0.01677129417657852, 0.04410306364297867, 0.06830945611000061, 0.03920266404747963, 0.028024563565850258, 0.19659002125263214, -0.1535772681236267, 0.1040927842259407, 0.1168038472533226, -0.2951667606830597, -0.0032763986382633448, 0.12271767109632492, 0.02307300455868244, 0.002292903373017907, -0.046535883098840714, 0.026178892701864243, 0.025552578270435333, 0.011873415671288967, 0.027952805161476135, -0.08463964611291885, -0.08450421690940857, 0.03911300376057625, -0.10113436728715897, -0.025793785229325294, 0.17653688788414001, -0.04118471220135689, 0.051768165081739426, 0.011256481520831585, -0.10429224371910095, -0.06710886210203171, -0.016446024179458618, -0.016140753403306007, -0.029147058725357056, 0.05014093220233917, 0.020645350217819214, 0.04166753962635994, -0.09745467454195023, 0.026441968977451324, -0.21823887526988983, 0.2394854873418808, 0.026930933818221092, 0.06543339043855667, -0.1759624481201172, 0.06742089986801147, 0.002468109829351306, -0.080185666680336, 0.03979361802339554, -0.10338287800550461, 0.000461930176243186, -0.05314353480935097, -0.03661246970295906, 0.03140731528401375, 0.06317161023616791, 0.17395952343940735, 0.0793117806315422, 0.05008377507328987, -0.005898697301745415, 0.07871981710195541, 0.034834783524274826, 0.12483206391334534, 0.004537689033895731, -0.03222474083304405, 0.04727894067764282, -0.12738829851150513, -0.022797152400016785, -0.057654689997434616, -0.13722378015518188, -0.035683806985616684, 0.08572584390640259, 0.08669279515743256, -0.002899006474763155, 0.07131802290678024, -0.07259770482778549, -0.04170111194252968, 0.0977427288889885, -0.06708423793315887, 0.03773060068488121, 0.011165250092744827, 0.01788998953998089, 0.10969475656747818, -0.03837720677256584, 0.006092004477977753, -0.038544073700904846, 0.16035914421081543, -0.06788671761751175, -0.0086200051009655, -0.03894633799791336, -0.07913154363632202, 0.03580477461218834, -0.1462087333202362, 0.05359502136707306, -0.16970540583133698, -0.07705289125442505, 0.03400159999728203, 0.03982843458652496, 0.006068000569939613, -0.023860258981585503, 0.004609986208379269, 0.0009630053536966443, 0.010919814929366112, -0.06532157212495804, -0.059639010578393936, -0.06180674210190773, 0.0789342075586319, -0.026356957852840424, 0.05199717730283737, -0.09772148728370667, 0.06380254030227661, -0.10777808725833893, 0.014992175623774529, -0.1314254105091095, -0.01425449550151825, -0.07122194766998291, 0.1727602779865265, -0.012890664860606194, -0.0652521625161171, -0.042813826352357864, 0.026928367093205452, -0.05078446492552757, 0.1189238503575325, -0.05899157002568245, -0.11599802225828171, 0.16220137476921082, -0.10287307947874069, -0.12483754754066467, 0.07581168413162231, -0.01511769462376833, -0.007789896801114082, 0.06788471341133118, 0.1409188061952591, 0.11342629045248032, -0.021826764568686485, 0.08137305825948715, 0.10294424742460251, -0.1294003278017044, -0.13587328791618347, 0.006361662410199642, 0.00798719096928835, -0.14556561410427094, 0.052592433989048004, 0.05236833915114403, 0.0726967453956604, -0.07074553519487381, -0.03274666517972946, -0.01327072735875845, -0.016134168952703476, 0.11864199489355087, 0.06209159642457962, 0.11604267358779907, -0.0657677873969078, 0.00820392556488514, 0.047656312584877014, 0.004204337950795889, 0.036543652415275574, 0.015800083056092262, -0.08706195652484894, 0.12248360365629196, -0.04112236201763153, -0.0011841603554785252, -0.1986646205186844, -0.09740031510591507, 0.023004116490483284, 0.07795482873916626, -0.03679869696497917, 0.13610167801380157, 0.0701465755701065, -0.04764446243643761, 0.00010037058382295072, -0.03370752930641174, 0.17777207493782043, 0.04204830154776573, -0.07011453807353973, -0.07916951924562454, 0.018525518476963043, -0.07664067298173904, -0.030626622959971428, -0.05736034736037254, 0.004993060603737831, 0.09117806702852249, 0.15110987424850464, 0.013702728785574436, 0.07227712869644165, -0.04311654344201088, 0.06486255675554276, -0.07453466951847076, 0.009454507380723953, 0.10986973345279694, -0.00844109058380127, -0.05139068886637688, 0.12689460813999176, -0.1288842260837555, 0.3503526449203491, 0.18760092556476593, -0.3039218783378601, -0.0014054732164368033, -0.04166017845273018, -0.015616725198924541, 0.008022678084671497, 0.052066002041101456, 0.02243027463555336, 0.055117130279541016, 0.004745377227663994, 0.16756683588027954, -0.015916254371404648, -0.05048782005906105, 0.01112330798059702, -0.05658484622836113, -0.04292769730091095, 0.0737248957157135, 0.08670081943273544, -0.20279163122177124, 0.1850307285785675, 0.22442755103111267, 0.0013078266056254506, 0.10093411803245544, -0.009863444603979588, 0.027319302782416344, 0.03913215547800064, -0.0403471440076828, -0.01890004798769951, -0.015322047285735607, -0.1852157860994339, -0.04855918884277344, 0.07947539538145065, 0.031089356169104576, 0.044881563633680344, -0.12700966000556946, -0.023778779432177544, 0.019753707572817802, 0.05750936269760132, -0.006435907445847988, 0.08618827164173126, 0.05749829113483429, 0.08228709548711777, -0.00042137576383538544, -0.12340108305215836, 0.11843181401491165, 0.008938729763031006, -0.06630217283964157, 0.1701919436454773, -0.13096192479133606, -0.2919446527957916, -0.12918199598789215, -0.21609659492969513, -0.02221912518143654, 0.04468577727675438, 0.06791006773710251, -0.09210261702537537, -0.05621439218521118, 0.07646377384662628, -0.0043442221358418465, -0.08893678337335587, 0.06794130802154541, -0.08020073175430298, 0.05017327144742012, -0.04635123163461685, -0.06104189157485962, -0.06701690703630447, -0.041732318699359894, -0.02662169374525547, 0.13805724680423737, -0.09828965365886688, 0.06120699644088745, 0.17539545893669128, -0.011075721122324467, 0.06305833160877228, -0.023022029548883438, 0.17187125980854034, -0.051036398857831955, -0.01183983776718378, 0.15369866788387299, -0.07339499890804291, 0.08695117384195328, 0.16216324269771576, 0.039562564343214035, -0.05847073718905449, 0.00318810623139143, -0.03215182200074196, -0.10039623826742172, -0.18391156196594238, -0.12352752685546875, -0.11139705777168274, 0.03804181143641472, 0.07061707973480225, 0.06962733715772629, 0.135431706905365, 0.09561170637607574, 0.051199477165937424, 0.010959632694721222, -0.048153605312108994, 0.07466201484203339, 0.2208920270204544, 0.001999937929213047, 0.1435864269733429, -0.04169393703341484, -0.1389981210231781, 0.07379768788814545, 0.05560476705431938, 0.13692645728588104, 0.10865066200494766, -0.01025706622749567, 0.01681477762758732, 0.15626244246959686, 0.18229423463344574, 0.1308237463235855, 0.006019692402333021, -0.03366916626691818, -0.00786581914871931, 0.01499095093458891, -0.05352693051099777, 0.018093694001436234, 0.1126210168004036, -0.1184353232383728, -0.05580713599920273, -0.1544867902994156, 0.06733953207731247, 0.09452182799577713, 0.05705242604017258, -0.21316885948181152, 0.015583771280944347, 0.07424211502075195, -0.02289263904094696, -0.07244562357664108, 0.07719103991985321, -0.06336886435747147, -0.14039036631584167, 0.06610569357872009, -0.05594165250658989, 0.1137172058224678, -0.07018838077783585, 0.07125633209943771, 0.00436688307672739, -0.09134659916162491, 0.03966715931892395, 0.09198823571205139, -0.24242180585861206, 0.2353951781988144, -0.005842206999659538, -0.08202855288982391, -0.07314476370811462, -0.01116443332284689, 0.040539294481277466, 0.20659157633781433, 0.06959166377782822, 0.015105132944881916, -0.09668217599391937, -0.2116534262895584, -0.01098657213151455, 0.0037440438754856586, 0.10247340053319931, -0.042362287640571594, -0.020731588825583458, -0.04073396697640419, -0.02784070186316967, -0.013651788234710693, -0.025264961645007133, 0.03604467213153839, -0.12370047718286514, 0.0628918707370758, 0.03108403831720352, 0.0375843271613121, 0.011039070785045624, -0.053596705198287964, -0.131315678358078, 0.20352721214294434, -0.08504047989845276, -0.057783741503953934, -0.11823975294828415, -0.09986942261457443, 0.06580016016960144, -0.09040012210607529, 0.08111396431922913, -0.08633793145418167, 0.013077793642878532, -0.03235287219285965, -0.1910691112279892, 0.14946654438972473, -0.11215386539697647, -0.021799318492412567, -0.08084782212972641, 0.13647201657295227, -0.07384097576141357, 0.013447601348161697, 0.013732876628637314, 0.02437661960721016, -0.08041444420814514, -0.0828900933265686, 0.006355836056172848, -0.014282151125371456, 0.031239764764904976, 0.025724230334162712, -0.06753705441951752, -0.0018155953148379922, -0.011079292744398117, 0.043730828911066055, 0.24128669500350952, 0.1798989176750183, -0.08305246382951736, 0.11879931390285492, 0.15382987260818481, -0.04894930124282837, -0.31972965598106384, -0.07097899168729782, -0.11553299427032471, -0.045486610382795334, -0.038512568920850754, -0.1360434889793396, 0.1564210206270218, 0.02604006603360176, -0.04126296564936638, 0.08387403935194016, -0.14068999886512756, -0.07977245002985, 0.22926518321037292, 0.0029623862355947495, 0.40268903970718384, -0.08702389895915985, -0.08436572551727295, -0.01582670770585537, -0.15964074432849884, 0.11801808327436447, 0.04110552370548248, 0.06407788395881653, -0.02680877409875393, 0.053290240466594696, 0.039342157542705536, -0.06043728440999985, 0.09375226497650146, 0.031009389087557793, 0.044987753033638, -0.10373856127262115, -0.13265928626060486, 0.028911620378494263, -0.030960315838456154, -0.014786438085138798, 0.057378023862838745, 0.022116998210549355, -0.12861059606075287, -0.025071382522583008, -0.07482665032148361, 0.08682981133460999, 0.03502606973052025, -0.06619370728731155, -0.003656937973573804, -0.011468438431620598, -0.010950524359941483, -0.007217009086161852, 0.25750675797462463, 0.003593818750232458, 0.14098960161209106, 0.10273806750774384, 0.09543769061565399, -0.17969036102294922, -0.03609991818666458, -0.07452508062124252, -0.06570184230804443, 0.096438467502594, -0.030126970261335373, 0.07519517093896866, 0.1516796350479126, -0.04122238606214523, 0.04297369718551636, 0.12120365351438522, 0.047616977244615555, -0.0461055189371109, 0.14043885469436646, -0.20969203114509583, 0.03770104795694351, -0.02787908911705017, -0.02063949778676033, 0.07864256948232651, 0.10774786025285721, 0.10418630391359329, 0.04115518182516098, -0.035168662667274475, 0.01394918467849493, -0.02965446747839451, -0.03510928899049759, 0.07017704844474792, 0.06717298924922943, 0.043598420917987823, -0.13562940061092377, 0.03572770580649376, 0.03545781224966049, -0.15994900465011597, -0.04561840742826462, 0.0798286497592926, -0.15686658024787903, -0.11122603714466095, -0.02263965830206871, 0.11455298960208893, -0.14521896839141846, -0.039632488042116165, -0.04641811549663544, -0.13418996334075928, 0.06972779333591461, 0.18159188330173492, 0.13103143870830536, 0.10970540344715118, -0.05561865121126175, -0.021705783903598785, -0.011595118790864944, -0.01822039857506752, 0.006359242834150791, 0.06845489144325256, -0.17037172615528107, 0.017899589613080025, -0.01394583098590374, 0.14702916145324707, -0.09660974144935608, -0.07415182143449783, -0.16891857981681824, 0.04697556421160698, -0.09303826838731766, -0.07159677147865295, -0.08290879428386688, -0.02118426188826561, 0.028802918270230293, -0.08412807434797287, -0.03680410608649254, -0.03769955411553383, -0.12591150403022766, 0.058045439422130585, 0.016383599489927292, 0.029256748035550117, -0.04278605803847313, -0.049387238919734955, 0.10788699239492416, -0.040735047310590744, 0.09248634427785873, 0.11333432793617249, -0.06952280551195145, 0.08524111658334732, -0.09002139419317245, -0.12434586137533188, 0.12248294800519943, 0.02376852184534073, 0.11538374423980713, 0.037905752658843994, 0.03187960386276245, 0.07364030182361603, 0.015629447996616364, 0.05559782683849335, 0.05336270108819008, -0.12224778532981873, 0.02708340249955654, -0.01786322332918644, -0.1931128054857254, -0.02867043949663639, -0.07598401606082916, 0.12200799584388733, -0.0023715540301054716, 0.15108288824558258, -0.006962954066693783, 0.08709387481212616, -0.04373457655310631, -0.00553933484479785, -0.020426053553819656, -0.20569974184036255, -0.038188423961400986, -0.05518931895494461, 0.0054757255129516125, -0.003793900366872549, 0.25238698720932007, 0.03206604719161987, 0.021465452387928963, 0.04169522970914841, 0.05841078236699104, 0.0034062466584146023, 0.03988324850797653, 0.17441175878047943, 0.1048174500465393, -0.044596027582883835, -0.06612113863229752, 0.07449153810739517, 0.014104411005973816, -0.03425929695367813, 0.10280604660511017, 0.0579635351896286, -0.022101202979683876, 0.061401285231113434, 0.006350876297801733, 0.03077852725982666, -0.17194421589374542, -0.18425245583057404, -0.0518796369433403, 0.07249171286821365, 0.02366054244339466, 0.06857233494520187, 0.10899512469768524, -0.026017313823103905, 0.0467560812830925, -0.04243495315313339, -0.03868629038333893, -0.19200804829597473, -0.11754908412694931, -0.09499595314264297, -0.10949105769395828, 0.012144351378083229, -0.045467864722013474, -0.025607097893953323, 0.112579844892025, 0.05665137246251106, -0.02637707255780697, 0.07898925989866257, 0.0068581425584852695, -0.015829376876354218, 0.035544686019420624, -0.015088078565895557, -0.002572772093117237, -0.008363397791981697, -0.025032468140125275, -0.1646868884563446, -0.01614730805158615, -0.059904489666223526, -0.0038963949773460627, -0.0638962835073471, 0.002605070825666189, -0.10870174318552017, -0.11156944185495377, -0.027449829503893852, 0.031112194061279297, -0.07530830055475235, 0.08167865127325058, -0.012178707867860794, 0.031354498118162155, 0.02408476360142231, 0.15556955337524414, -0.0745464414358139, -0.05411846935749054, -0.04471001774072647, 0.26918578147888184, 0.0574658028781414, 0.1188357025384903, 0.007326812483370304, 0.018914537504315376, -0.0766475573182106, 0.29574328660964966, 0.26567307114601135, -0.03664971888065338, 0.05142061784863472, 0.04157736524939537, 0.01670730672776699, 0.09608681499958038, 0.1372172236442566, 0.07940847426652908, 0.23908233642578125, -0.07535005360841751, -0.04486403986811638, -0.029895322397351265, -0.017877299338579178, -0.10601367056369781, 0.0677277147769928, 0.0556669756770134, -0.0367586687207222, -0.08847290277481079, 0.07175103574991226, -0.16698697209358215, 0.1506146639585495, 0.055220942944288254, -0.18291416764259338, -0.07399025559425354, -0.022136300802230835, 0.1443227231502533, -0.019863387569785118, 0.0790862888097763, -0.031677428632974625, -0.10550876706838608, 0.039427150040864944, 0.01414680015295744, -0.21330086886882782, -0.05566805601119995, 0.0937623530626297, 0.0036555929109454155, 0.05017957463860512, -0.023827895522117615, 0.03583429008722305, 0.08428710699081421, 0.0726693794131279, -0.04607251659035683, 0.006363187450915575, 0.011929735541343689, -0.08450563997030258, -0.03499215841293335, 0.00016984343528747559, 0.013966171070933342, -0.05488259717822075, 0.03193806856870651, -0.18189109861850739, 0.04003556817770004, -0.09101450443267822, -0.036184389144182205, -0.019026435911655426, 0.023357758298516273, -0.029626764357089996, 0.05516811087727547, 0.07363101094961166, 0.009205193258821964, -0.03664170578122139, -0.06109684333205223, -0.025447756052017212, 0.03078463301062584, -0.11446559429168701, -0.14089645445346832, -0.08753776550292969, -0.06155245006084442, 0.09708955883979797, -0.01227374467998743, -0.0782943144440651, -0.04041222110390663, -0.07965502887964249, 0.03774513676762581, -0.14707180857658386, 0.06991016864776611, 0.03579777479171753, 0.04206673055887222, -0.01093299314379692, -0.03975704312324524, 0.019534343853592873, 0.054816145449876785, -0.12402302771806717, -0.09320621192455292 ]
null
null
transformers
body-site model is a Named Entity Recognition (NER) model that identifies and annotates the body-site of microbiome samples in texts. The model is a fine-tuned BioBERT model and the training dataset is available in https://gitlab.com/maaly7/emerald_metagenomics_annotations Testing examples: 1. Scalp hair was collected from behind the right ear, near the right retroauricular crease, and pubic hair was collected from their right pubis, near the right inguinal crease. 2. Field-collected bee samples were dissected on dry ice and separated into head, thorax (excluding legs and wings), and abdomens. 3. TSO modulate the IEC and LPMC transcriptome To gain further insights into the mechanisms of TSO treatment, we performed genome wide expression analysis on intestinal epithelial cells (IEC) and lamina propria mononuclear cells (LPMC) isolated from caecum samples by RNA sequencing (RNAseq). 4. Two catheters were bilaterally placed in the CA1 region of the hippocampus with the coordinates of 4.5 mm anterior to bregma, 1.6 mm ventral to the dura, and two directions of ± 4.0 mm from the interaural line (Park et al. 2013; Yang et al. 2013).
{}
token-classification
Maaly/body-site
[ "transformers", "pytorch", "bert", "token-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us
body-site model is a Named Entity Recognition (NER) model that identifies and annotates the body-site of microbiome samples in texts. The model is a fine-tuned BioBERT model and the training dataset is available in URL Testing examples: 1. Scalp hair was collected from behind the right ear, near the right retroauricular crease, and pubic hair was collected from their right pubis, near the right inguinal crease. 2. Field-collected bee samples were dissected on dry ice and separated into head, thorax (excluding legs and wings), and abdomens. 3. TSO modulate the IEC and LPMC transcriptome To gain further insights into the mechanisms of TSO treatment, we performed genome wide expression analysis on intestinal epithelial cells (IEC) and lamina propria mononuclear cells (LPMC) isolated from caecum samples by RNA sequencing (RNAseq). 4. Two catheters were bilaterally placed in the CA1 region of the hippocampus with the coordinates of 4.5 mm anterior to bregma, 1.6 mm ventral to the dura, and two directions of ± 4.0 mm from the interaural line (Park et al. 2013; Yang et al. 2013).
[]
[ "TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04952388256788254, 0.052763525396585464, -0.008742042817175388, 0.033980391919612885, 0.16650345921516418, 0.031232766807079315, 0.056794650852680206, 0.08634597808122635, 0.05724777653813362, -0.022096728906035423, 0.12041265517473221, 0.25661665201187134, -0.04172574356198311, 0.09726614505052567, -0.09425565600395203, -0.2964369058609009, 0.072568878531456, 0.08518822491168976, -0.03685073181986809, 0.10874255001544952, 0.0826217457652092, -0.09953062981367111, 0.07087896764278412, -0.021146323531866074, -0.14565661549568176, 0.03782055899500847, 0.04566175118088722, -0.12290510535240173, 0.10927622765302658, 0.024675650522112846, 0.195825457572937, 0.0250800009816885, -0.04914003983139992, -0.12460087239742279, 0.02292012982070446, 0.012434997595846653, -0.0567244216799736, 0.05464257672429085, 0.07972842454910278, -0.09245497733354568, -0.02643316052854061, 0.0736164003610611, 0.040207646787166595, 0.040536463260650635, -0.12785013020038605, -0.130097895860672, -0.01677129417657852, 0.04410306364297867, 0.06830945611000061, 0.03920266404747963, 0.028024563565850258, 0.19659002125263214, -0.1535772681236267, 0.1040927842259407, 0.1168038472533226, -0.2951667606830597, -0.0032763986382633448, 0.12271767109632492, 0.02307300455868244, 0.002292903373017907, -0.046535883098840714, 0.026178892701864243, 0.025552578270435333, 0.011873415671288967, 0.027952805161476135, -0.08463964611291885, -0.08450421690940857, 0.03911300376057625, -0.10113436728715897, -0.025793785229325294, 0.17653688788414001, -0.04118471220135689, 0.051768165081739426, 0.011256481520831585, -0.10429224371910095, -0.06710886210203171, -0.016446024179458618, -0.016140753403306007, -0.029147058725357056, 0.05014093220233917, 0.020645350217819214, 0.04166753962635994, -0.09745467454195023, 0.026441968977451324, -0.21823887526988983, 0.2394854873418808, 0.026930933818221092, 0.06543339043855667, -0.1759624481201172, 0.06742089986801147, 0.002468109829351306, -0.080185666680336, 0.03979361802339554, -0.10338287800550461, 0.000461930176243186, -0.05314353480935097, -0.03661246970295906, 0.03140731528401375, 0.06317161023616791, 0.17395952343940735, 0.0793117806315422, 0.05008377507328987, -0.005898697301745415, 0.07871981710195541, 0.034834783524274826, 0.12483206391334534, 0.004537689033895731, -0.03222474083304405, 0.04727894067764282, -0.12738829851150513, -0.022797152400016785, -0.057654689997434616, -0.13722378015518188, -0.035683806985616684, 0.08572584390640259, 0.08669279515743256, -0.002899006474763155, 0.07131802290678024, -0.07259770482778549, -0.04170111194252968, 0.0977427288889885, -0.06708423793315887, 0.03773060068488121, 0.011165250092744827, 0.01788998953998089, 0.10969475656747818, -0.03837720677256584, 0.006092004477977753, -0.038544073700904846, 0.16035914421081543, -0.06788671761751175, -0.0086200051009655, -0.03894633799791336, -0.07913154363632202, 0.03580477461218834, -0.1462087333202362, 0.05359502136707306, -0.16970540583133698, -0.07705289125442505, 0.03400159999728203, 0.03982843458652496, 0.006068000569939613, -0.023860258981585503, 0.004609986208379269, 0.0009630053536966443, 0.010919814929366112, -0.06532157212495804, -0.059639010578393936, -0.06180674210190773, 0.0789342075586319, -0.026356957852840424, 0.05199717730283737, -0.09772148728370667, 0.06380254030227661, -0.10777808725833893, 0.014992175623774529, -0.1314254105091095, -0.01425449550151825, -0.07122194766998291, 0.1727602779865265, -0.012890664860606194, -0.0652521625161171, -0.042813826352357864, 0.026928367093205452, -0.05078446492552757, 0.1189238503575325, -0.05899157002568245, -0.11599802225828171, 0.16220137476921082, -0.10287307947874069, -0.12483754754066467, 0.07581168413162231, -0.01511769462376833, -0.007789896801114082, 0.06788471341133118, 0.1409188061952591, 0.11342629045248032, -0.021826764568686485, 0.08137305825948715, 0.10294424742460251, -0.1294003278017044, -0.13587328791618347, 0.006361662410199642, 0.00798719096928835, -0.14556561410427094, 0.052592433989048004, 0.05236833915114403, 0.0726967453956604, -0.07074553519487381, -0.03274666517972946, -0.01327072735875845, -0.016134168952703476, 0.11864199489355087, 0.06209159642457962, 0.11604267358779907, -0.0657677873969078, 0.00820392556488514, 0.047656312584877014, 0.004204337950795889, 0.036543652415275574, 0.015800083056092262, -0.08706195652484894, 0.12248360365629196, -0.04112236201763153, -0.0011841603554785252, -0.1986646205186844, -0.09740031510591507, 0.023004116490483284, 0.07795482873916626, -0.03679869696497917, 0.13610167801380157, 0.0701465755701065, -0.04764446243643761, 0.00010037058382295072, -0.03370752930641174, 0.17777207493782043, 0.04204830154776573, -0.07011453807353973, -0.07916951924562454, 0.018525518476963043, -0.07664067298173904, -0.030626622959971428, -0.05736034736037254, 0.004993060603737831, 0.09117806702852249, 0.15110987424850464, 0.013702728785574436, 0.07227712869644165, -0.04311654344201088, 0.06486255675554276, -0.07453466951847076, 0.009454507380723953, 0.10986973345279694, -0.00844109058380127, -0.05139068886637688, 0.12689460813999176, -0.1288842260837555, 0.3503526449203491, 0.18760092556476593, -0.3039218783378601, -0.0014054732164368033, -0.04166017845273018, -0.015616725198924541, 0.008022678084671497, 0.052066002041101456, 0.02243027463555336, 0.055117130279541016, 0.004745377227663994, 0.16756683588027954, -0.015916254371404648, -0.05048782005906105, 0.01112330798059702, -0.05658484622836113, -0.04292769730091095, 0.0737248957157135, 0.08670081943273544, -0.20279163122177124, 0.1850307285785675, 0.22442755103111267, 0.0013078266056254506, 0.10093411803245544, -0.009863444603979588, 0.027319302782416344, 0.03913215547800064, -0.0403471440076828, -0.01890004798769951, -0.015322047285735607, -0.1852157860994339, -0.04855918884277344, 0.07947539538145065, 0.031089356169104576, 0.044881563633680344, -0.12700966000556946, -0.023778779432177544, 0.019753707572817802, 0.05750936269760132, -0.006435907445847988, 0.08618827164173126, 0.05749829113483429, 0.08228709548711777, -0.00042137576383538544, -0.12340108305215836, 0.11843181401491165, 0.008938729763031006, -0.06630217283964157, 0.1701919436454773, -0.13096192479133606, -0.2919446527957916, -0.12918199598789215, -0.21609659492969513, -0.02221912518143654, 0.04468577727675438, 0.06791006773710251, -0.09210261702537537, -0.05621439218521118, 0.07646377384662628, -0.0043442221358418465, -0.08893678337335587, 0.06794130802154541, -0.08020073175430298, 0.05017327144742012, -0.04635123163461685, -0.06104189157485962, -0.06701690703630447, -0.041732318699359894, -0.02662169374525547, 0.13805724680423737, -0.09828965365886688, 0.06120699644088745, 0.17539545893669128, -0.011075721122324467, 0.06305833160877228, -0.023022029548883438, 0.17187125980854034, -0.051036398857831955, -0.01183983776718378, 0.15369866788387299, -0.07339499890804291, 0.08695117384195328, 0.16216324269771576, 0.039562564343214035, -0.05847073718905449, 0.00318810623139143, -0.03215182200074196, -0.10039623826742172, -0.18391156196594238, -0.12352752685546875, -0.11139705777168274, 0.03804181143641472, 0.07061707973480225, 0.06962733715772629, 0.135431706905365, 0.09561170637607574, 0.051199477165937424, 0.010959632694721222, -0.048153605312108994, 0.07466201484203339, 0.2208920270204544, 0.001999937929213047, 0.1435864269733429, -0.04169393703341484, -0.1389981210231781, 0.07379768788814545, 0.05560476705431938, 0.13692645728588104, 0.10865066200494766, -0.01025706622749567, 0.01681477762758732, 0.15626244246959686, 0.18229423463344574, 0.1308237463235855, 0.006019692402333021, -0.03366916626691818, -0.00786581914871931, 0.01499095093458891, -0.05352693051099777, 0.018093694001436234, 0.1126210168004036, -0.1184353232383728, -0.05580713599920273, -0.1544867902994156, 0.06733953207731247, 0.09452182799577713, 0.05705242604017258, -0.21316885948181152, 0.015583771280944347, 0.07424211502075195, -0.02289263904094696, -0.07244562357664108, 0.07719103991985321, -0.06336886435747147, -0.14039036631584167, 0.06610569357872009, -0.05594165250658989, 0.1137172058224678, -0.07018838077783585, 0.07125633209943771, 0.00436688307672739, -0.09134659916162491, 0.03966715931892395, 0.09198823571205139, -0.24242180585861206, 0.2353951781988144, -0.005842206999659538, -0.08202855288982391, -0.07314476370811462, -0.01116443332284689, 0.040539294481277466, 0.20659157633781433, 0.06959166377782822, 0.015105132944881916, -0.09668217599391937, -0.2116534262895584, -0.01098657213151455, 0.0037440438754856586, 0.10247340053319931, -0.042362287640571594, -0.020731588825583458, -0.04073396697640419, -0.02784070186316967, -0.013651788234710693, -0.025264961645007133, 0.03604467213153839, -0.12370047718286514, 0.0628918707370758, 0.03108403831720352, 0.0375843271613121, 0.011039070785045624, -0.053596705198287964, -0.131315678358078, 0.20352721214294434, -0.08504047989845276, -0.057783741503953934, -0.11823975294828415, -0.09986942261457443, 0.06580016016960144, -0.09040012210607529, 0.08111396431922913, -0.08633793145418167, 0.013077793642878532, -0.03235287219285965, -0.1910691112279892, 0.14946654438972473, -0.11215386539697647, -0.021799318492412567, -0.08084782212972641, 0.13647201657295227, -0.07384097576141357, 0.013447601348161697, 0.013732876628637314, 0.02437661960721016, -0.08041444420814514, -0.0828900933265686, 0.006355836056172848, -0.014282151125371456, 0.031239764764904976, 0.025724230334162712, -0.06753705441951752, -0.0018155953148379922, -0.011079292744398117, 0.043730828911066055, 0.24128669500350952, 0.1798989176750183, -0.08305246382951736, 0.11879931390285492, 0.15382987260818481, -0.04894930124282837, -0.31972965598106384, -0.07097899168729782, -0.11553299427032471, -0.045486610382795334, -0.038512568920850754, -0.1360434889793396, 0.1564210206270218, 0.02604006603360176, -0.04126296564936638, 0.08387403935194016, -0.14068999886512756, -0.07977245002985, 0.22926518321037292, 0.0029623862355947495, 0.40268903970718384, -0.08702389895915985, -0.08436572551727295, -0.01582670770585537, -0.15964074432849884, 0.11801808327436447, 0.04110552370548248, 0.06407788395881653, -0.02680877409875393, 0.053290240466594696, 0.039342157542705536, -0.06043728440999985, 0.09375226497650146, 0.031009389087557793, 0.044987753033638, -0.10373856127262115, -0.13265928626060486, 0.028911620378494263, -0.030960315838456154, -0.014786438085138798, 0.057378023862838745, 0.022116998210549355, -0.12861059606075287, -0.025071382522583008, -0.07482665032148361, 0.08682981133460999, 0.03502606973052025, -0.06619370728731155, -0.003656937973573804, -0.011468438431620598, -0.010950524359941483, -0.007217009086161852, 0.25750675797462463, 0.003593818750232458, 0.14098960161209106, 0.10273806750774384, 0.09543769061565399, -0.17969036102294922, -0.03609991818666458, -0.07452508062124252, -0.06570184230804443, 0.096438467502594, -0.030126970261335373, 0.07519517093896866, 0.1516796350479126, -0.04122238606214523, 0.04297369718551636, 0.12120365351438522, 0.047616977244615555, -0.0461055189371109, 0.14043885469436646, -0.20969203114509583, 0.03770104795694351, -0.02787908911705017, -0.02063949778676033, 0.07864256948232651, 0.10774786025285721, 0.10418630391359329, 0.04115518182516098, -0.035168662667274475, 0.01394918467849493, -0.02965446747839451, -0.03510928899049759, 0.07017704844474792, 0.06717298924922943, 0.043598420917987823, -0.13562940061092377, 0.03572770580649376, 0.03545781224966049, -0.15994900465011597, -0.04561840742826462, 0.0798286497592926, -0.15686658024787903, -0.11122603714466095, -0.02263965830206871, 0.11455298960208893, -0.14521896839141846, -0.039632488042116165, -0.04641811549663544, -0.13418996334075928, 0.06972779333591461, 0.18159188330173492, 0.13103143870830536, 0.10970540344715118, -0.05561865121126175, -0.021705783903598785, -0.011595118790864944, -0.01822039857506752, 0.006359242834150791, 0.06845489144325256, -0.17037172615528107, 0.017899589613080025, -0.01394583098590374, 0.14702916145324707, -0.09660974144935608, -0.07415182143449783, -0.16891857981681824, 0.04697556421160698, -0.09303826838731766, -0.07159677147865295, -0.08290879428386688, -0.02118426188826561, 0.028802918270230293, -0.08412807434797287, -0.03680410608649254, -0.03769955411553383, -0.12591150403022766, 0.058045439422130585, 0.016383599489927292, 0.029256748035550117, -0.04278605803847313, -0.049387238919734955, 0.10788699239492416, -0.040735047310590744, 0.09248634427785873, 0.11333432793617249, -0.06952280551195145, 0.08524111658334732, -0.09002139419317245, -0.12434586137533188, 0.12248294800519943, 0.02376852184534073, 0.11538374423980713, 0.037905752658843994, 0.03187960386276245, 0.07364030182361603, 0.015629447996616364, 0.05559782683849335, 0.05336270108819008, -0.12224778532981873, 0.02708340249955654, -0.01786322332918644, -0.1931128054857254, -0.02867043949663639, -0.07598401606082916, 0.12200799584388733, -0.0023715540301054716, 0.15108288824558258, -0.006962954066693783, 0.08709387481212616, -0.04373457655310631, -0.00553933484479785, -0.020426053553819656, -0.20569974184036255, -0.038188423961400986, -0.05518931895494461, 0.0054757255129516125, -0.003793900366872549, 0.25238698720932007, 0.03206604719161987, 0.021465452387928963, 0.04169522970914841, 0.05841078236699104, 0.0034062466584146023, 0.03988324850797653, 0.17441175878047943, 0.1048174500465393, -0.044596027582883835, -0.06612113863229752, 0.07449153810739517, 0.014104411005973816, -0.03425929695367813, 0.10280604660511017, 0.0579635351896286, -0.022101202979683876, 0.061401285231113434, 0.006350876297801733, 0.03077852725982666, -0.17194421589374542, -0.18425245583057404, -0.0518796369433403, 0.07249171286821365, 0.02366054244339466, 0.06857233494520187, 0.10899512469768524, -0.026017313823103905, 0.0467560812830925, -0.04243495315313339, -0.03868629038333893, -0.19200804829597473, -0.11754908412694931, -0.09499595314264297, -0.10949105769395828, 0.012144351378083229, -0.045467864722013474, -0.025607097893953323, 0.112579844892025, 0.05665137246251106, -0.02637707255780697, 0.07898925989866257, 0.0068581425584852695, -0.015829376876354218, 0.035544686019420624, -0.015088078565895557, -0.002572772093117237, -0.008363397791981697, -0.025032468140125275, -0.1646868884563446, -0.01614730805158615, -0.059904489666223526, -0.0038963949773460627, -0.0638962835073471, 0.002605070825666189, -0.10870174318552017, -0.11156944185495377, -0.027449829503893852, 0.031112194061279297, -0.07530830055475235, 0.08167865127325058, -0.012178707867860794, 0.031354498118162155, 0.02408476360142231, 0.15556955337524414, -0.0745464414358139, -0.05411846935749054, -0.04471001774072647, 0.26918578147888184, 0.0574658028781414, 0.1188357025384903, 0.007326812483370304, 0.018914537504315376, -0.0766475573182106, 0.29574328660964966, 0.26567307114601135, -0.03664971888065338, 0.05142061784863472, 0.04157736524939537, 0.01670730672776699, 0.09608681499958038, 0.1372172236442566, 0.07940847426652908, 0.23908233642578125, -0.07535005360841751, -0.04486403986811638, -0.029895322397351265, -0.017877299338579178, -0.10601367056369781, 0.0677277147769928, 0.0556669756770134, -0.0367586687207222, -0.08847290277481079, 0.07175103574991226, -0.16698697209358215, 0.1506146639585495, 0.055220942944288254, -0.18291416764259338, -0.07399025559425354, -0.022136300802230835, 0.1443227231502533, -0.019863387569785118, 0.0790862888097763, -0.031677428632974625, -0.10550876706838608, 0.039427150040864944, 0.01414680015295744, -0.21330086886882782, -0.05566805601119995, 0.0937623530626297, 0.0036555929109454155, 0.05017957463860512, -0.023827895522117615, 0.03583429008722305, 0.08428710699081421, 0.0726693794131279, -0.04607251659035683, 0.006363187450915575, 0.011929735541343689, -0.08450563997030258, -0.03499215841293335, 0.00016984343528747559, 0.013966171070933342, -0.05488259717822075, 0.03193806856870651, -0.18189109861850739, 0.04003556817770004, -0.09101450443267822, -0.036184389144182205, -0.019026435911655426, 0.023357758298516273, -0.029626764357089996, 0.05516811087727547, 0.07363101094961166, 0.009205193258821964, -0.03664170578122139, -0.06109684333205223, -0.025447756052017212, 0.03078463301062584, -0.11446559429168701, -0.14089645445346832, -0.08753776550292969, -0.06155245006084442, 0.09708955883979797, -0.01227374467998743, -0.0782943144440651, -0.04041222110390663, -0.07965502887964249, 0.03774513676762581, -0.14707180857658386, 0.06991016864776611, 0.03579777479171753, 0.04206673055887222, -0.01093299314379692, -0.03975704312324524, 0.019534343853592873, 0.054816145449876785, -0.12402302771806717, -0.09320621192455292 ]
null
null
transformers
host model is a Named Entity Recognition (NER) model that identifies and annotates the host (living organism) of microbiome samples in texts. The model is a fine-tuned BioBERT model and the training dataset is available in https://gitlab.com/maaly7/emerald_metagenomics_annotations Testing examples: 1. Turkestan cockroach nymphs (Finke, 2013) were fed to the treefrogs at a quantity of 10% of treefrog biomass twice a week. 2. Samples were collected from clinically healthy giant pandas (five females and four males) at the China Conservation and Research Center for Giant Pandas (Ya'an, China). 3. Field-collected bee samples were dissected on dry ice and separated into head, thorax (excluding legs and wings), and abdomens.
{}
token-classification
Maaly/host
[ "transformers", "pytorch", "bert", "token-classification", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us
host model is a Named Entity Recognition (NER) model that identifies and annotates the host (living organism) of microbiome samples in texts. The model is a fine-tuned BioBERT model and the training dataset is available in URL Testing examples: 1. Turkestan cockroach nymphs (Finke, 2013) were fed to the treefrogs at a quantity of 10% of treefrog biomass twice a week. 2. Samples were collected from clinically healthy giant pandas (five females and four males) at the China Conservation and Research Center for Giant Pandas (Ya'an, China). 3. Field-collected bee samples were dissected on dry ice and separated into head, thorax (excluding legs and wings), and abdomens.
[]
[ "TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #bert #token-classification #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04952388256788254, 0.052763525396585464, -0.008742042817175388, 0.033980391919612885, 0.16650345921516418, 0.031232766807079315, 0.056794650852680206, 0.08634597808122635, 0.05724777653813362, -0.022096728906035423, 0.12041265517473221, 0.25661665201187134, -0.04172574356198311, 0.09726614505052567, -0.09425565600395203, -0.2964369058609009, 0.072568878531456, 0.08518822491168976, -0.03685073181986809, 0.10874255001544952, 0.0826217457652092, -0.09953062981367111, 0.07087896764278412, -0.021146323531866074, -0.14565661549568176, 0.03782055899500847, 0.04566175118088722, -0.12290510535240173, 0.10927622765302658, 0.024675650522112846, 0.195825457572937, 0.0250800009816885, -0.04914003983139992, -0.12460087239742279, 0.02292012982070446, 0.012434997595846653, -0.0567244216799736, 0.05464257672429085, 0.07972842454910278, -0.09245497733354568, -0.02643316052854061, 0.0736164003610611, 0.040207646787166595, 0.040536463260650635, -0.12785013020038605, -0.130097895860672, -0.01677129417657852, 0.04410306364297867, 0.06830945611000061, 0.03920266404747963, 0.028024563565850258, 0.19659002125263214, -0.1535772681236267, 0.1040927842259407, 0.1168038472533226, -0.2951667606830597, -0.0032763986382633448, 0.12271767109632492, 0.02307300455868244, 0.002292903373017907, -0.046535883098840714, 0.026178892701864243, 0.025552578270435333, 0.011873415671288967, 0.027952805161476135, -0.08463964611291885, -0.08450421690940857, 0.03911300376057625, -0.10113436728715897, -0.025793785229325294, 0.17653688788414001, -0.04118471220135689, 0.051768165081739426, 0.011256481520831585, -0.10429224371910095, -0.06710886210203171, -0.016446024179458618, -0.016140753403306007, -0.029147058725357056, 0.05014093220233917, 0.020645350217819214, 0.04166753962635994, -0.09745467454195023, 0.026441968977451324, -0.21823887526988983, 0.2394854873418808, 0.026930933818221092, 0.06543339043855667, -0.1759624481201172, 0.06742089986801147, 0.002468109829351306, -0.080185666680336, 0.03979361802339554, -0.10338287800550461, 0.000461930176243186, -0.05314353480935097, -0.03661246970295906, 0.03140731528401375, 0.06317161023616791, 0.17395952343940735, 0.0793117806315422, 0.05008377507328987, -0.005898697301745415, 0.07871981710195541, 0.034834783524274826, 0.12483206391334534, 0.004537689033895731, -0.03222474083304405, 0.04727894067764282, -0.12738829851150513, -0.022797152400016785, -0.057654689997434616, -0.13722378015518188, -0.035683806985616684, 0.08572584390640259, 0.08669279515743256, -0.002899006474763155, 0.07131802290678024, -0.07259770482778549, -0.04170111194252968, 0.0977427288889885, -0.06708423793315887, 0.03773060068488121, 0.011165250092744827, 0.01788998953998089, 0.10969475656747818, -0.03837720677256584, 0.006092004477977753, -0.038544073700904846, 0.16035914421081543, -0.06788671761751175, -0.0086200051009655, -0.03894633799791336, -0.07913154363632202, 0.03580477461218834, -0.1462087333202362, 0.05359502136707306, -0.16970540583133698, -0.07705289125442505, 0.03400159999728203, 0.03982843458652496, 0.006068000569939613, -0.023860258981585503, 0.004609986208379269, 0.0009630053536966443, 0.010919814929366112, -0.06532157212495804, -0.059639010578393936, -0.06180674210190773, 0.0789342075586319, -0.026356957852840424, 0.05199717730283737, -0.09772148728370667, 0.06380254030227661, -0.10777808725833893, 0.014992175623774529, -0.1314254105091095, -0.01425449550151825, -0.07122194766998291, 0.1727602779865265, -0.012890664860606194, -0.0652521625161171, -0.042813826352357864, 0.026928367093205452, -0.05078446492552757, 0.1189238503575325, -0.05899157002568245, -0.11599802225828171, 0.16220137476921082, -0.10287307947874069, -0.12483754754066467, 0.07581168413162231, -0.01511769462376833, -0.007789896801114082, 0.06788471341133118, 0.1409188061952591, 0.11342629045248032, -0.021826764568686485, 0.08137305825948715, 0.10294424742460251, -0.1294003278017044, -0.13587328791618347, 0.006361662410199642, 0.00798719096928835, -0.14556561410427094, 0.052592433989048004, 0.05236833915114403, 0.0726967453956604, -0.07074553519487381, -0.03274666517972946, -0.01327072735875845, -0.016134168952703476, 0.11864199489355087, 0.06209159642457962, 0.11604267358779907, -0.0657677873969078, 0.00820392556488514, 0.047656312584877014, 0.004204337950795889, 0.036543652415275574, 0.015800083056092262, -0.08706195652484894, 0.12248360365629196, -0.04112236201763153, -0.0011841603554785252, -0.1986646205186844, -0.09740031510591507, 0.023004116490483284, 0.07795482873916626, -0.03679869696497917, 0.13610167801380157, 0.0701465755701065, -0.04764446243643761, 0.00010037058382295072, -0.03370752930641174, 0.17777207493782043, 0.04204830154776573, -0.07011453807353973, -0.07916951924562454, 0.018525518476963043, -0.07664067298173904, -0.030626622959971428, -0.05736034736037254, 0.004993060603737831, 0.09117806702852249, 0.15110987424850464, 0.013702728785574436, 0.07227712869644165, -0.04311654344201088, 0.06486255675554276, -0.07453466951847076, 0.009454507380723953, 0.10986973345279694, -0.00844109058380127, -0.05139068886637688, 0.12689460813999176, -0.1288842260837555, 0.3503526449203491, 0.18760092556476593, -0.3039218783378601, -0.0014054732164368033, -0.04166017845273018, -0.015616725198924541, 0.008022678084671497, 0.052066002041101456, 0.02243027463555336, 0.055117130279541016, 0.004745377227663994, 0.16756683588027954, -0.015916254371404648, -0.05048782005906105, 0.01112330798059702, -0.05658484622836113, -0.04292769730091095, 0.0737248957157135, 0.08670081943273544, -0.20279163122177124, 0.1850307285785675, 0.22442755103111267, 0.0013078266056254506, 0.10093411803245544, -0.009863444603979588, 0.027319302782416344, 0.03913215547800064, -0.0403471440076828, -0.01890004798769951, -0.015322047285735607, -0.1852157860994339, -0.04855918884277344, 0.07947539538145065, 0.031089356169104576, 0.044881563633680344, -0.12700966000556946, -0.023778779432177544, 0.019753707572817802, 0.05750936269760132, -0.006435907445847988, 0.08618827164173126, 0.05749829113483429, 0.08228709548711777, -0.00042137576383538544, -0.12340108305215836, 0.11843181401491165, 0.008938729763031006, -0.06630217283964157, 0.1701919436454773, -0.13096192479133606, -0.2919446527957916, -0.12918199598789215, -0.21609659492969513, -0.02221912518143654, 0.04468577727675438, 0.06791006773710251, -0.09210261702537537, -0.05621439218521118, 0.07646377384662628, -0.0043442221358418465, -0.08893678337335587, 0.06794130802154541, -0.08020073175430298, 0.05017327144742012, -0.04635123163461685, -0.06104189157485962, -0.06701690703630447, -0.041732318699359894, -0.02662169374525547, 0.13805724680423737, -0.09828965365886688, 0.06120699644088745, 0.17539545893669128, -0.011075721122324467, 0.06305833160877228, -0.023022029548883438, 0.17187125980854034, -0.051036398857831955, -0.01183983776718378, 0.15369866788387299, -0.07339499890804291, 0.08695117384195328, 0.16216324269771576, 0.039562564343214035, -0.05847073718905449, 0.00318810623139143, -0.03215182200074196, -0.10039623826742172, -0.18391156196594238, -0.12352752685546875, -0.11139705777168274, 0.03804181143641472, 0.07061707973480225, 0.06962733715772629, 0.135431706905365, 0.09561170637607574, 0.051199477165937424, 0.010959632694721222, -0.048153605312108994, 0.07466201484203339, 0.2208920270204544, 0.001999937929213047, 0.1435864269733429, -0.04169393703341484, -0.1389981210231781, 0.07379768788814545, 0.05560476705431938, 0.13692645728588104, 0.10865066200494766, -0.01025706622749567, 0.01681477762758732, 0.15626244246959686, 0.18229423463344574, 0.1308237463235855, 0.006019692402333021, -0.03366916626691818, -0.00786581914871931, 0.01499095093458891, -0.05352693051099777, 0.018093694001436234, 0.1126210168004036, -0.1184353232383728, -0.05580713599920273, -0.1544867902994156, 0.06733953207731247, 0.09452182799577713, 0.05705242604017258, -0.21316885948181152, 0.015583771280944347, 0.07424211502075195, -0.02289263904094696, -0.07244562357664108, 0.07719103991985321, -0.06336886435747147, -0.14039036631584167, 0.06610569357872009, -0.05594165250658989, 0.1137172058224678, -0.07018838077783585, 0.07125633209943771, 0.00436688307672739, -0.09134659916162491, 0.03966715931892395, 0.09198823571205139, -0.24242180585861206, 0.2353951781988144, -0.005842206999659538, -0.08202855288982391, -0.07314476370811462, -0.01116443332284689, 0.040539294481277466, 0.20659157633781433, 0.06959166377782822, 0.015105132944881916, -0.09668217599391937, -0.2116534262895584, -0.01098657213151455, 0.0037440438754856586, 0.10247340053319931, -0.042362287640571594, -0.020731588825583458, -0.04073396697640419, -0.02784070186316967, -0.013651788234710693, -0.025264961645007133, 0.03604467213153839, -0.12370047718286514, 0.0628918707370758, 0.03108403831720352, 0.0375843271613121, 0.011039070785045624, -0.053596705198287964, -0.131315678358078, 0.20352721214294434, -0.08504047989845276, -0.057783741503953934, -0.11823975294828415, -0.09986942261457443, 0.06580016016960144, -0.09040012210607529, 0.08111396431922913, -0.08633793145418167, 0.013077793642878532, -0.03235287219285965, -0.1910691112279892, 0.14946654438972473, -0.11215386539697647, -0.021799318492412567, -0.08084782212972641, 0.13647201657295227, -0.07384097576141357, 0.013447601348161697, 0.013732876628637314, 0.02437661960721016, -0.08041444420814514, -0.0828900933265686, 0.006355836056172848, -0.014282151125371456, 0.031239764764904976, 0.025724230334162712, -0.06753705441951752, -0.0018155953148379922, -0.011079292744398117, 0.043730828911066055, 0.24128669500350952, 0.1798989176750183, -0.08305246382951736, 0.11879931390285492, 0.15382987260818481, -0.04894930124282837, -0.31972965598106384, -0.07097899168729782, -0.11553299427032471, -0.045486610382795334, -0.038512568920850754, -0.1360434889793396, 0.1564210206270218, 0.02604006603360176, -0.04126296564936638, 0.08387403935194016, -0.14068999886512756, -0.07977245002985, 0.22926518321037292, 0.0029623862355947495, 0.40268903970718384, -0.08702389895915985, -0.08436572551727295, -0.01582670770585537, -0.15964074432849884, 0.11801808327436447, 0.04110552370548248, 0.06407788395881653, -0.02680877409875393, 0.053290240466594696, 0.039342157542705536, -0.06043728440999985, 0.09375226497650146, 0.031009389087557793, 0.044987753033638, -0.10373856127262115, -0.13265928626060486, 0.028911620378494263, -0.030960315838456154, -0.014786438085138798, 0.057378023862838745, 0.022116998210549355, -0.12861059606075287, -0.025071382522583008, -0.07482665032148361, 0.08682981133460999, 0.03502606973052025, -0.06619370728731155, -0.003656937973573804, -0.011468438431620598, -0.010950524359941483, -0.007217009086161852, 0.25750675797462463, 0.003593818750232458, 0.14098960161209106, 0.10273806750774384, 0.09543769061565399, -0.17969036102294922, -0.03609991818666458, -0.07452508062124252, -0.06570184230804443, 0.096438467502594, -0.030126970261335373, 0.07519517093896866, 0.1516796350479126, -0.04122238606214523, 0.04297369718551636, 0.12120365351438522, 0.047616977244615555, -0.0461055189371109, 0.14043885469436646, -0.20969203114509583, 0.03770104795694351, -0.02787908911705017, -0.02063949778676033, 0.07864256948232651, 0.10774786025285721, 0.10418630391359329, 0.04115518182516098, -0.035168662667274475, 0.01394918467849493, -0.02965446747839451, -0.03510928899049759, 0.07017704844474792, 0.06717298924922943, 0.043598420917987823, -0.13562940061092377, 0.03572770580649376, 0.03545781224966049, -0.15994900465011597, -0.04561840742826462, 0.0798286497592926, -0.15686658024787903, -0.11122603714466095, -0.02263965830206871, 0.11455298960208893, -0.14521896839141846, -0.039632488042116165, -0.04641811549663544, -0.13418996334075928, 0.06972779333591461, 0.18159188330173492, 0.13103143870830536, 0.10970540344715118, -0.05561865121126175, -0.021705783903598785, -0.011595118790864944, -0.01822039857506752, 0.006359242834150791, 0.06845489144325256, -0.17037172615528107, 0.017899589613080025, -0.01394583098590374, 0.14702916145324707, -0.09660974144935608, -0.07415182143449783, -0.16891857981681824, 0.04697556421160698, -0.09303826838731766, -0.07159677147865295, -0.08290879428386688, -0.02118426188826561, 0.028802918270230293, -0.08412807434797287, -0.03680410608649254, -0.03769955411553383, -0.12591150403022766, 0.058045439422130585, 0.016383599489927292, 0.029256748035550117, -0.04278605803847313, -0.049387238919734955, 0.10788699239492416, -0.040735047310590744, 0.09248634427785873, 0.11333432793617249, -0.06952280551195145, 0.08524111658334732, -0.09002139419317245, -0.12434586137533188, 0.12248294800519943, 0.02376852184534073, 0.11538374423980713, 0.037905752658843994, 0.03187960386276245, 0.07364030182361603, 0.015629447996616364, 0.05559782683849335, 0.05336270108819008, -0.12224778532981873, 0.02708340249955654, -0.01786322332918644, -0.1931128054857254, -0.02867043949663639, -0.07598401606082916, 0.12200799584388733, -0.0023715540301054716, 0.15108288824558258, -0.006962954066693783, 0.08709387481212616, -0.04373457655310631, -0.00553933484479785, -0.020426053553819656, -0.20569974184036255, -0.038188423961400986, -0.05518931895494461, 0.0054757255129516125, -0.003793900366872549, 0.25238698720932007, 0.03206604719161987, 0.021465452387928963, 0.04169522970914841, 0.05841078236699104, 0.0034062466584146023, 0.03988324850797653, 0.17441175878047943, 0.1048174500465393, -0.044596027582883835, -0.06612113863229752, 0.07449153810739517, 0.014104411005973816, -0.03425929695367813, 0.10280604660511017, 0.0579635351896286, -0.022101202979683876, 0.061401285231113434, 0.006350876297801733, 0.03077852725982666, -0.17194421589374542, -0.18425245583057404, -0.0518796369433403, 0.07249171286821365, 0.02366054244339466, 0.06857233494520187, 0.10899512469768524, -0.026017313823103905, 0.0467560812830925, -0.04243495315313339, -0.03868629038333893, -0.19200804829597473, -0.11754908412694931, -0.09499595314264297, -0.10949105769395828, 0.012144351378083229, -0.045467864722013474, -0.025607097893953323, 0.112579844892025, 0.05665137246251106, -0.02637707255780697, 0.07898925989866257, 0.0068581425584852695, -0.015829376876354218, 0.035544686019420624, -0.015088078565895557, -0.002572772093117237, -0.008363397791981697, -0.025032468140125275, -0.1646868884563446, -0.01614730805158615, -0.059904489666223526, -0.0038963949773460627, -0.0638962835073471, 0.002605070825666189, -0.10870174318552017, -0.11156944185495377, -0.027449829503893852, 0.031112194061279297, -0.07530830055475235, 0.08167865127325058, -0.012178707867860794, 0.031354498118162155, 0.02408476360142231, 0.15556955337524414, -0.0745464414358139, -0.05411846935749054, -0.04471001774072647, 0.26918578147888184, 0.0574658028781414, 0.1188357025384903, 0.007326812483370304, 0.018914537504315376, -0.0766475573182106, 0.29574328660964966, 0.26567307114601135, -0.03664971888065338, 0.05142061784863472, 0.04157736524939537, 0.01670730672776699, 0.09608681499958038, 0.1372172236442566, 0.07940847426652908, 0.23908233642578125, -0.07535005360841751, -0.04486403986811638, -0.029895322397351265, -0.017877299338579178, -0.10601367056369781, 0.0677277147769928, 0.0556669756770134, -0.0367586687207222, -0.08847290277481079, 0.07175103574991226, -0.16698697209358215, 0.1506146639585495, 0.055220942944288254, -0.18291416764259338, -0.07399025559425354, -0.022136300802230835, 0.1443227231502533, -0.019863387569785118, 0.0790862888097763, -0.031677428632974625, -0.10550876706838608, 0.039427150040864944, 0.01414680015295744, -0.21330086886882782, -0.05566805601119995, 0.0937623530626297, 0.0036555929109454155, 0.05017957463860512, -0.023827895522117615, 0.03583429008722305, 0.08428710699081421, 0.0726693794131279, -0.04607251659035683, 0.006363187450915575, 0.011929735541343689, -0.08450563997030258, -0.03499215841293335, 0.00016984343528747559, 0.013966171070933342, -0.05488259717822075, 0.03193806856870651, -0.18189109861850739, 0.04003556817770004, -0.09101450443267822, -0.036184389144182205, -0.019026435911655426, 0.023357758298516273, -0.029626764357089996, 0.05516811087727547, 0.07363101094961166, 0.009205193258821964, -0.03664170578122139, -0.06109684333205223, -0.025447756052017212, 0.03078463301062584, -0.11446559429168701, -0.14089645445346832, -0.08753776550292969, -0.06155245006084442, 0.09708955883979797, -0.01227374467998743, -0.0782943144440651, -0.04041222110390663, -0.07965502887964249, 0.03774513676762581, -0.14707180857658386, 0.06991016864776611, 0.03579777479171753, 0.04206673055887222, -0.01093299314379692, -0.03975704312324524, 0.019534343853592873, 0.054816145449876785, -0.12402302771806717, -0.09320621192455292 ]
null
null
transformers
#Harry Potter DialoGPT Model
{"tags": ["conversational"]}
text-generation
MadhanKumar/DialoGPT-small-HarryPotter
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#Harry Potter DialoGPT Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
#Harry Potter Bot Model
{"tags": ["conversational"]}
text-generation
MadhanKumar/HarryPotter-Bot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#Harry Potter Bot Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
# Model Trained Using AutoNLP - Problem type: Multi-class Classification - Model ID: 515314387 - CO2 Emissions (in grams): 70.95647633212745 ## Validation Metrics - Loss: 0.08077705651521683 - Accuracy: 0.9760103738923709 - Macro F1: 0.9728412857204902 - Micro F1: 0.9760103738923709 - Weighted F1: 0.9759907151741426 - Macro Precision: 0.9736622407675567 - Micro Precision: 0.9760103738923709 - Weighted Precision: 0.97673611876005 - Macro Recall: 0.9728978421381711 - Micro Recall: 0.9760103738923709 - Weighted Recall: 0.9760103738923709 ## Usage You can use cURL to access this model: ``` $ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoNLP"}' https://api-inference.huggingface.co/models/MadhurJindalWorkMail/autonlp-Gibb-Detect-515314387 ``` Or Python API: ``` from transformers import AutoModelForSequenceClassification, AutoTokenizer model = AutoModelForSequenceClassification.from_pretrained("MadhurJindalWorkMail/autonlp-Gibb-Detect-515314387", use_auth_token=True) tokenizer = AutoTokenizer.from_pretrained("MadhurJindalWorkMail/autonlp-Gibb-Detect-515314387", use_auth_token=True) inputs = tokenizer("I love AutoNLP", return_tensors="pt") outputs = model(**inputs) ```
{"language": "en", "tags": "autonlp", "datasets": ["MadhurJindalWorkMail/autonlp-data-Gibb-Detect"], "widget": [{"text": "I love AutoNLP \ud83e\udd17"}], "co2_eq_emissions": 70.95647633212745}
text-classification
MadhurJindalWorkMail/autonlp-Gibb-Detect-515314387
[ "transformers", "pytorch", "bert", "text-classification", "autonlp", "en", "dataset:MadhurJindalWorkMail/autonlp-data-Gibb-Detect", "co2_eq_emissions", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #text-classification #autonlp #en #dataset-MadhurJindalWorkMail/autonlp-data-Gibb-Detect #co2_eq_emissions #autotrain_compatible #endpoints_compatible #region-us
# Model Trained Using AutoNLP - Problem type: Multi-class Classification - Model ID: 515314387 - CO2 Emissions (in grams): 70.95647633212745 ## Validation Metrics - Loss: 0.08077705651521683 - Accuracy: 0.9760103738923709 - Macro F1: 0.9728412857204902 - Micro F1: 0.9760103738923709 - Weighted F1: 0.9759907151741426 - Macro Precision: 0.9736622407675567 - Micro Precision: 0.9760103738923709 - Weighted Precision: 0.97673611876005 - Macro Recall: 0.9728978421381711 - Micro Recall: 0.9760103738923709 - Weighted Recall: 0.9760103738923709 ## Usage You can use cURL to access this model: Or Python API:
[ "# Model Trained Using AutoNLP\n\n- Problem type: Multi-class Classification\n- Model ID: 515314387\n- CO2 Emissions (in grams): 70.95647633212745", "## Validation Metrics\n\n- Loss: 0.08077705651521683\n- Accuracy: 0.9760103738923709\n- Macro F1: 0.9728412857204902\n- Micro F1: 0.9760103738923709\n- Weighted F1: 0.9759907151741426\n- Macro Precision: 0.9736622407675567\n- Micro Precision: 0.9760103738923709\n- Weighted Precision: 0.97673611876005\n- Macro Recall: 0.9728978421381711\n- Micro Recall: 0.9760103738923709\n- Weighted Recall: 0.9760103738923709", "## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #autonlp #en #dataset-MadhurJindalWorkMail/autonlp-data-Gibb-Detect #co2_eq_emissions #autotrain_compatible #endpoints_compatible #region-us \n", "# Model Trained Using AutoNLP\n\n- Problem type: Multi-class Classification\n- Model ID: 515314387\n- CO2 Emissions (in grams): 70.95647633212745", "## Validation Metrics\n\n- Loss: 0.08077705651521683\n- Accuracy: 0.9760103738923709\n- Macro F1: 0.9728412857204902\n- Micro F1: 0.9760103738923709\n- Weighted F1: 0.9759907151741426\n- Macro Precision: 0.9736622407675567\n- Micro Precision: 0.9760103738923709\n- Weighted Precision: 0.97673611876005\n- Macro Recall: 0.9728978421381711\n- Micro Recall: 0.9760103738923709\n- Weighted Recall: 0.9760103738923709", "## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ 73, 43, 154, 17 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #autonlp #en #dataset-MadhurJindalWorkMail/autonlp-data-Gibb-Detect #co2_eq_emissions #autotrain_compatible #endpoints_compatible #region-us \n# Model Trained Using AutoNLP\n\n- Problem type: Multi-class Classification\n- Model ID: 515314387\n- CO2 Emissions (in grams): 70.95647633212745## Validation Metrics\n\n- Loss: 0.08077705651521683\n- Accuracy: 0.9760103738923709\n- Macro F1: 0.9728412857204902\n- Micro F1: 0.9760103738923709\n- Weighted F1: 0.9759907151741426\n- Macro Precision: 0.9736622407675567\n- Micro Precision: 0.9760103738923709\n- Weighted Precision: 0.97673611876005\n- Macro Recall: 0.9728978421381711\n- Micro Recall: 0.9760103738923709\n- Weighted Recall: 0.9760103738923709## Usage\n\nYou can use cURL to access this model:\n\n\n\nOr Python API:" ]
[ -0.11133242398500443, 0.21633559465408325, -0.0025777157861739397, 0.07532184571027756, 0.10642104595899582, 0.02942410670220852, 0.05254653841257095, 0.13542455434799194, 0.0031386390328407288, 0.16369520127773285, 0.09658478945493698, 0.17951296269893646, 0.06850549578666687, 0.13153071701526642, -0.08865172415971756, -0.10668879747390747, 0.014305153861641884, 0.028585517778992653, 0.07018128037452698, 0.08844009041786194, 0.07015681266784668, -0.08783155679702759, 0.131374329328537, -0.004281037487089634, -0.1004369854927063, 0.048821207135915756, 0.06118299812078476, -0.06801498681306839, 0.06124301254749298, 0.09972687810659409, 0.10949890315532684, -0.007003959733992815, 0.07355043292045593, -0.12679456174373627, -0.02315671555697918, 0.04804085195064545, -0.03749818727374077, 0.0829063281416893, 0.15839450061321259, 0.0023581781424582005, 0.07789162546396255, -0.10860155522823334, 0.09120506793260574, 0.06874610483646393, -0.07274843752384186, -0.04606247693300247, -0.1296512335538864, 0.08686070889234543, 0.08603435754776001, 0.10479141026735306, 0.01163475401699543, 0.20065851509571075, -0.006233590189367533, 0.10635349154472351, 0.08751892298460007, -0.22543983161449432, -0.048657387495040894, 0.16471043229103088, -0.018779220059514046, 0.010185765102505684, -0.008675162680447102, 0.0015725730918347836, 0.05402648076415062, 0.008069018833339214, 0.00207769637927413, -0.04786423221230507, -0.03056805208325386, -0.026840783655643463, -0.11590257287025452, -0.08299015462398529, 0.1315554529428482, 0.0205981507897377, -0.07081428915262222, -0.10939111560583115, -0.06575226038694382, -0.10525405406951904, -0.04573537036776543, -0.03913794085383415, 0.004177496302872896, -0.04051511362195015, -0.05193840712308884, 0.07424585521221161, -0.036845047026872635, -0.08260202407836914, -0.11757144331932068, 0.009112595580518246, 0.005499731749296188, 0.05159247666597366, 0.011621472425758839, 0.021344825625419617, -0.0718497708439827, -0.06115385517477989, -0.012233402580022812, 0.0292668454349041, -0.07292595505714417, -0.060041394084692, 0.01606808975338936, 0.06491965055465698, 0.05109672248363495, 0.14512749016284943, -0.040348686277866364, 0.10728128999471664, 0.03496582433581352, -0.021778995171189308, -0.04892570525407791, 0.12353843450546265, -0.1045885905623436, -0.12715010344982147, 0.014300764538347721, -0.028810322284698486, 0.0224631205201149, -0.030500881373882294, -0.039879605174064636, -0.0870061069726944, 0.053077273070812225, 0.04052603989839554, 0.05479882284998894, 0.010484717786312103, -0.06149184703826904, -0.057006873190402985, 0.11201794445514679, -0.09314406663179398, 0.03858020156621933, 0.01254143938422203, -0.12268877774477005, 0.07598384469747543, 0.06570792198181152, 0.007750425022095442, -0.13745421171188354, 0.020614836364984512, -0.1059349775314331, 0.013668998144567013, -0.06066301465034485, -0.12288974225521088, 0.06040556728839874, -0.0049805715680122375, -0.031226925551891327, -0.11360590159893036, -0.16211242973804474, -0.09537273645401001, -0.008664234541356564, -0.06594373285770416, -0.050729021430015564, -0.016445808112621307, -0.00808057002723217, 0.05124251917004585, 0.0028815139085054398, 0.041599296033382416, -0.024411117658019066, 0.04605484381318092, 0.04826020449399948, 0.05623897537589073, -0.030309315770864487, 0.031835634261369705, -0.037227679044008255, 0.010494635440409184, -0.11488176882266998, 0.0817454606294632, -0.0844762921333313, 0.04275738075375557, -0.19083833694458008, -0.047724053263664246, 0.07457427680492401, -0.03935637325048447, 0.0865977331995964, 0.09354095906019211, -0.12121450901031494, 0.016936542466282845, 0.08175599575042725, -0.0732879564166069, -0.12077848613262177, 0.06383457779884338, 0.0067329625599086285, 0.016358792781829834, 0.047119565308094025, 0.10635707527399063, 0.1649906486272812, -0.14237844944000244, -0.0914868414402008, 0.0010932607110589743, 0.019759804010391235, -0.0814630538225174, 0.0823788046836853, -0.05979357659816742, -0.12757623195648193, -0.006427869666367769, 0.0073302011005580425, -0.017442405223846436, -0.018127860501408577, -0.07386721670627594, -0.03426871821284294, -0.0447365827858448, -0.004594011697918177, 0.00649998988956213, 0.01402078103274107, -0.03201029822230339, -0.026646697893738747, 0.03889298066496849, 0.16084203124046326, -0.039573270827531815, -0.029104290530085564, -0.13193221390247345, 0.053124621510505676, -0.12718364596366882, -0.04353323578834534, -0.21712647378444672, -0.05679374188184738, 0.01738905720412731, -0.09813343733549118, 0.013836909085512161, -0.08313564211130142, 0.08763212710618973, 0.03439384698867798, 0.05763853341341019, 0.02046339027583599, 0.10672172904014587, -0.02033747173845768, -0.0986284464597702, -0.04828650504350662, -0.03331020474433899, 0.006153556518256664, 0.19576388597488403, -0.1675557792186737, 0.012987591326236725, 0.04260288551449776, 0.045164044946432114, -0.008490352891385555, -0.07129278779029846, -0.02738749235868454, 0.0768422782421112, 0.02770564891397953, -0.05432208254933357, 0.05887125805020332, -0.03592943400144577, -0.0850711241364479, -0.017192455008625984, -0.23176923394203186, 0.19169117510318756, 0.1122913584113121, 0.03486606106162071, -0.08389875292778015, -0.06254715472459793, 0.04170374199748039, -0.05653480812907219, -0.02527385950088501, 0.04244115576148033, 0.13827809691429138, 0.029948588460683823, 0.08363267779350281, -0.06969796866178513, -0.024380123242735863, 0.016113411635160446, -0.020131774246692657, -0.04197501018643379, 0.201440691947937, 0.03711175173521042, -0.11751759797334671, 0.05377328395843506, -0.022263700142502785, -0.07650244235992432, 0.027347519993782043, 0.034563809633255005, -0.06327643990516663, -0.07489556819200516, 0.012681516818702221, 0.05687113478779793, 0.017584819346666336, -0.014638267457485199, 0.07353638112545013, 0.0572957880795002, -0.03358025848865509, 0.0366574302315712, -0.10176565498113632, 0.02515357919037342, 0.029376769438385963, -0.0528927817940712, -0.06151881441473961, 0.016519218683242798, 0.024623574689030647, 0.10098738968372345, 0.016393041238188744, 0.0015757037326693535, -0.014700894244015217, -0.013984982855618, -0.1376916468143463, 0.21421438455581665, -0.09043572843074799, -0.13925574719905853, -0.15356294810771942, -0.1488727331161499, -0.07331341505050659, -0.06120039150118828, -0.0010864054784178734, -0.05069925636053085, -0.11042144149541855, -0.05889938026666641, -0.11481427401304245, -0.016996735706925392, -0.06798196583986282, 0.03815574571490288, -0.032304249703884125, 0.09041419625282288, -0.12128755450248718, -0.02571018598973751, -0.0029759129974991083, -0.10414015501737595, 0.033442817628383636, -0.0006123498314991593, 0.12085382640361786, 0.1627657115459442, -0.029227621853351593, 0.03370482474565506, 0.004708999767899513, 0.22500024735927582, -0.0038221953436732292, -0.036766886711120605, 0.2079492211341858, 0.09066509455442429, 0.07807861268520355, 0.10168376564979553, 0.06464562565088272, -0.06068025156855583, -0.014376076869666576, 0.043644171208143234, -0.020234692841768265, -0.20041880011558533, -0.18487028777599335, 0.018433094024658203, -0.013349856249988079, 0.17826737463474274, 0.03946959972381592, 0.025414234027266502, 0.10145309567451477, 0.024097178131341934, 0.0799822211265564, -0.03226395323872566, 0.07440359145402908, 0.11117778718471527, 0.04430362209677696, 0.11354871094226837, -0.08254746347665787, 0.032205820083618164, 0.09071501344442368, 0.005933810491114855, 0.05797947198152542, 0.03027915395796299, 0.12034979462623596, -0.02533443458378315, 0.14263811707496643, 0.014623818919062614, 0.10043506324291229, 0.015562355518341064, -0.007314978167414665, 0.061479952186346054, -0.10149562358856201, -0.11752789467573166, -0.019190911203622818, 0.02905544824898243, 0.04895868897438049, -0.09478253126144409, -0.006451014894992113, -0.003665275638923049, 0.05208926275372505, 0.040611639618873596, -0.44494977593421936, -0.06178036332130432, 0.011212197132408619, -0.006314103491604328, -0.10309943556785583, -0.028357479721307755, -0.013920246623456478, -0.13647672533988953, 0.056100618094205856, -0.013867368921637535, 0.12880580127239227, -0.06466148793697357, -0.04347248375415802, -0.034849800169467926, 0.0480463020503521, -0.002846500603482127, 0.057245682924985886, -0.1606968492269516, 0.15202346444129944, 0.04964260756969452, 0.07199682295322418, -0.07345068454742432, 0.007349623832851648, 0.03190861642360687, -0.004751097876578569, 0.14577022194862366, 0.011738890781998634, -0.08242479711771011, -0.30891337990760803, -0.15171733498573303, 0.021931301802396774, -0.023116335272789, 0.008167608641088009, 0.07293209433555603, -0.011081889271736145, -0.01277383416891098, -0.042456258088350296, -0.0771382600069046, -0.0996994599699974, -0.07004350423812866, 0.029135987162590027, 0.08764113485813141, -0.032488010823726654, -0.03813321888446808, -0.03381668031215668, -0.018652353435754776, 0.12893934547901154, -0.11246765404939651, -0.061270058155059814, -0.1284465193748474, -0.03601691126823425, 0.13149549067020416, -0.12528525292873383, 0.0428294762969017, -0.004552087280899286, 0.0698951855301857, -0.012844299897551537, -0.10566013306379318, 0.055037301033735275, -0.049371138215065, -0.031812846660614014, 0.032311663031578064, 0.04297889396548271, 0.018347393721342087, 0.05210935324430466, 0.0613381564617157, 0.027993472293019295, -0.04356164112687111, -0.13036051392555237, -0.0459616556763649, 0.06849024444818497, 0.12486521899700165, 0.08361820876598358, 0.03831063210964203, -0.15628241002559662, -0.07307462394237518, 0.07217498123645782, 0.11383126676082611, 0.21140806376934052, -0.0662413239479065, 0.003624476259574294, 0.10832919925451279, -0.037052810192108154, -0.19500714540481567, -0.02478015050292015, 0.035565365105867386, 0.0024054446257650852, -0.0674571767449379, -0.05537727102637291, 0.11737462878227234, 0.17244474589824677, -0.03938731923699379, -0.04709664732217789, -0.3066856861114502, -0.13319654762744904, 0.16380226612091064, 0.1335800439119339, 0.009801690466701984, -0.15587486326694489, -0.07884564250707626, -0.12479782104492188, -0.16696888208389282, 0.12095337361097336, -0.033657945692539215, 0.055551230907440186, -0.05717446655035019, 0.08573580533266068, 0.04436877369880676, -0.07608257979154587, 0.1578661948442459, 0.007375617045909166, 0.008968735113739967, -0.04422573372721672, -0.04608900099992752, -0.0420096255838871, -0.10745848715305328, 0.14654231071472168, 0.04692539572715759, 0.08624635636806488, -0.2396792322397232, 0.010651386342942715, -0.012968608178198338, 0.056812599301338196, -0.052036043256521225, -0.0030211862176656723, -0.017203811556100845, 0.010843775235116482, -0.007763235829770565, -0.029841100797057152, -0.024220872670412064, -0.038698840886354446, 0.08344539254903793, 0.1914341002702713, 0.10364602506160736, -0.007463972549885511, -0.10175465047359467, 0.053078483790159225, -0.05537841096520424, 0.04904939979314804, -0.12676547467708588, 0.054267819970846176, 0.12717576324939728, 0.05248994752764702, 0.06529391556978226, 0.014118739403784275, -0.051373690366744995, -0.023667041212320328, 0.0404532253742218, -0.1263372004032135, 0.03799080848693848, 0.008140042424201965, 0.035074204206466675, -0.09197905659675598, -0.040969740599393845, 0.10448528826236725, 0.003894232213497162, -0.034901365637779236, 0.016439689323306084, 0.003948252648115158, -0.0270369965583086, 0.2618085443973541, 0.01316466648131609, 0.08698213845491409, -0.11551335453987122, 0.06206916645169258, 0.10068859905004501, -0.16612815856933594, 0.018111661076545715, 0.10931513458490372, -0.08137109875679016, -0.05830485373735428, 0.007371308282017708, 0.12865957617759705, -0.1379571408033371, -0.061462726444005966, 0.021087108179926872, -0.0553433857858181, 0.07321249693632126, 0.22142161428928375, 0.0933363288640976, 0.007010635454207659, 0.007243221625685692, -0.0929589569568634, -0.11310651898384094, 0.0275257620960474, 0.09468214958906174, 0.015621182508766651, -0.09255631268024445, 0.14589886367321014, -0.0012975967256352305, 0.001015365356579423, 0.002715073525905609, -0.003475868608802557, -0.18216122686862946, -0.026766398921608925, -0.030182329937815666, 0.09443246573209763, -0.06975315511226654, 0.0560404434800148, -0.020769771188497543, 0.030135128647089005, -0.04706902429461479, 0.01741231046617031, -0.05255484580993652, -0.06753254681825638, 0.011561376973986626, 0.06159072741866112, -0.12144998461008072, -0.013769907876849174, 0.0728779137134552, -0.020642166957259178, 0.02432815358042717, 0.1027567908167839, 0.06516212970018387, 0.009913518093526363, -0.07273891568183899, -0.012388503178954124, 0.05830001085996628, 0.01859297603368759, 0.08059176057577133, -0.1804174780845642, 0.06260035187005997, 0.0034472844563424587, 0.011220073327422142, 0.05534978583455086, 0.11368001997470856, -0.11284129321575165, 0.005757416598498821, -0.09319949150085449, -0.059341978281736374, -0.1271948367357254, 0.05786314979195595, 0.1562757045030594, 0.0616939403116703, 0.05599171668291092, -0.07850577682256699, 0.02732180990278721, -0.177668496966362, -0.015010420233011246, -0.03042328543961048, -0.030914144590497017, -0.004183113109320402, -0.006296537816524506, 0.09063313156366348, -0.007338255178183317, 0.07179489731788635, -0.02806585654616356, 0.024342145770788193, 0.015660926699638367, 0.09099896252155304, -0.028678884729743004, -0.06090512499213219, 0.19669322669506073, 0.0650762990117073, 0.010483899153769016, 0.12279338389635086, 0.09769342094659805, 0.008841041475534439, 0.027496516704559326, -0.008675583638250828, 0.07637634873390198, -0.0708581805229187, 0.06806574761867523, 0.03595449775457382, -0.08452299982309341, -0.020861493423581123, 0.06554265320301056, -0.11848163604736328, 0.011491905897855759, -0.053409796208143234, 0.048350438475608826, 0.13139557838439941, -0.14994244277477264, 0.0017415301408618689, 0.0039513567462563515, -0.07198181003332138, -0.18447235226631165, -0.09826016426086426, -0.1182778924703598, -0.015554926358163357, -0.02781723067164421, -0.10878951102495193, 0.02874855510890484, 0.1382560282945633, 0.013848720118403435, 0.038460299372673035, 0.10243035107851028, -0.18965160846710205, -0.013062383979558945, -0.048622287809848785, 0.00489368662238121, -0.007517588324844837, -0.005568259861320257, 0.004754222463816404, 0.04303857684135437, -0.022808030247688293, 0.11326292157173157, 0.026639821007847786, 0.03490028530359268, 0.09637974202632904, -0.013382482342422009, -0.07675673812627792, -0.036310408264398575, 0.03183252736926079, 0.04105297103524208, 0.164488285779953, 0.04867236688733101, 0.008986115455627441, -0.043711107224226, 0.20001740753650665, -0.09174947440624237, 0.014769259840250015, -0.10412286221981049, 0.25279006361961365, 0.02043447643518448, 0.03151913732290268, 0.03038869798183441, -0.018428491428494453, 0.0312623605132103, 0.17080923914909363, 0.0902094617486, 0.010393117554485798, -0.0218089260160923, 0.003167446469888091, -0.005599000956863165, -0.02644028328359127, 0.07252762466669083, 0.05977047234773636, 0.19286154210567474, -0.06759341061115265, 0.0466875359416008, 0.005595663096755743, 0.00505922082811594, -0.09517363458871841, 0.029807073995471, -0.006992073263972998, -0.01804531365633011, 0.004379503428936005, 0.12081518769264221, -0.03292670473456383, 0.04530026391148567, 0.09649497270584106, -0.09844354540109634, -0.13507172465324402, 0.035207558423280716, -0.03349877521395683, -0.0526127815246582, 0.07905667275190353, -0.038800377398729324, 0.003299736650660634, 0.027523623779416084, 0.0051767402328550816, -0.1997363418340683, -0.08476997166872025, -0.011737603694200516, 0.1545112580060959, 0.28671887516975403, 0.03664661571383476, 0.12356426566839218, 0.17209625244140625, -0.00028218282386660576, -0.161990687251091, 0.10402128845453262, 0.0017504349816590548, -0.1512940227985382, 0.09658430516719818, 0.06162135675549507, -0.03675900027155876, 0.1362907737493515, 0.04519585520029068, -0.15242666006088257, -0.0022742305882275105, -0.0019795100670307875, 0.10568707436323166, -0.07221121340990067, 0.01918988674879074, -0.08256786316633224, 0.13099989295005798, 0.14340536296367645, -0.026335671544075012, 0.015513032674789429, -0.04384305328130722, 0.04999834671616554, -0.02212516963481903, 0.004003472626209259, -0.030417006462812424, -0.10668882727622986, 0.07210519164800644, -0.20842070877552032, 0.012854893691837788, -0.27847835421562195, -0.02355669066309929, -0.01151316612958908, -0.06621010601520538, -0.04833315685391426, 0.09829407185316086, 0.015777671709656715, -0.005513922311365604, -0.038121044635772705, -0.170862078666687, 0.01609271578490734, 0.15700580179691315, -0.12108878791332245, -0.13416782021522522 ]
null
null
transformers
# WIP
{}
automatic-speech-recognition
Mads/wav2vec2-xlsr-large-53-kor-financial-engineering
[ "transformers", "pytorch", "jax", "wav2vec2", "automatic-speech-recognition", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us
# WIP
[ "# WIP" ]
[ "TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n", "# WIP" ]
[ 40, 3 ]
[ "passage: TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n# WIP" ]
[ -0.06307961046695709, 0.009615154005587101, -0.007244257256388664, -0.04345442354679108, 0.07671734690666199, -0.0439150296151638, 0.07881732285022736, 0.1042490005493164, 0.08286044001579285, -0.013418040238320827, 0.11936390399932861, 0.2025117725133896, 0.028433801606297493, 0.021630987524986267, -0.04610326513648033, -0.22771084308624268, 0.10155124217271805, 0.044946905225515366, 0.09649307280778885, 0.12499978393316269, 0.08166350424289703, -0.06404007971286774, 0.02600937895476818, 0.06256245821714401, -0.1759394407272339, 0.028259241953492165, 0.05584190413355827, -0.1495409458875656, 0.09420911967754364, 0.0401267409324646, 0.09558185935020447, 0.01770222745835781, -0.0154221560806036, -0.20625518262386322, 0.008191321976482868, 0.005125337280333042, 0.002829846227541566, 0.019665639847517014, 0.05962127447128296, -0.04719061031937599, -0.04015768691897392, 0.06481092423200607, 0.003779561026021838, 0.07562100887298584, -0.05759564787149429, -0.18819135427474976, 0.01495884358882904, 0.10347212851047516, 0.04857289418578148, 0.08232695609331131, -0.008301262743771076, 0.1586904674768448, -0.0926094800233841, 0.10942310839891434, 0.1342291533946991, -0.3848341405391693, 0.015041344799101353, -0.06737593561410904, 0.06512024998664856, -0.03570268675684929, -0.03849755972623825, 0.05381111428141594, -0.003071635030210018, 0.026847053319215775, -0.03772151097655296, -0.0324251689016819, -0.1698075830936432, 0.011899160221219063, -0.10887238383293152, -0.03995341807603836, 0.1838100105524063, -0.003530074842274189, 0.042542945593595505, -0.0626896321773529, -0.04801041632890701, -0.00831841491162777, -0.02724285051226616, -0.045934438705444336, -0.0619114525616169, 0.05262013152241707, -0.028828924521803856, -0.009988028556108475, -0.09780443459749222, -0.04256607964634895, -0.18488936126232147, 0.32815998792648315, 0.025348614901304245, 0.09073695540428162, -0.18671555817127228, 0.01341185625642538, 0.041438933461904526, -0.06931602209806442, 0.002231078688055277, -0.049769677221775055, 0.03406662121415138, 0.047386281192302704, -0.07188443839550018, 0.025992078706622124, 0.10089800506830215, 0.03304849565029144, 0.06985582411289215, 0.06069936230778694, -0.031833190470933914, 0.09882491827011108, -0.004459016025066376, 0.0809989720582962, -0.031794801354408264, 0.003156287595629692, 0.04037145897746086, -0.132368266582489, 0.009774989448487759, -0.04896317794919014, -0.0747937485575676, -0.043642424046993256, 0.06126939877867699, 0.0809040367603302, 0.01165138278156519, 0.03909970074892044, -0.03694994002580643, -0.021276352927088737, 0.030968230217695236, -0.10100508481264114, -0.015565533190965652, 0.04166039451956749, 0.04668059200048447, 0.26135510206222534, 0.02808668464422226, 0.024474460631608963, -0.15281714498996735, 0.058821577578783035, 0.012098263017833233, 0.022767089307308197, 0.04469232261180878, -0.019002581015229225, 0.021721698343753815, -0.05034312978386879, 0.022961677983403206, -0.19899417459964752, -0.05523374676704407, 0.016828829422593117, -0.02723073959350586, 0.027604833245277405, -0.03678177297115326, -0.05642746761441231, -0.031753990799188614, 0.03344197943806648, -0.08774004876613617, -0.06362016499042511, -0.04260186105966568, 0.10643170028924942, -0.011471251025795937, 0.11444553732872009, -0.13451442122459412, 0.058787986636161804, -0.02896251156926155, -0.027021190151572227, -0.023320702835917473, 0.06139924004673958, -0.06259489804506302, 0.10516251623630524, -0.08594664931297302, -0.02855195477604866, -0.09909512102603912, 0.05784330144524574, -0.03755242004990578, 0.12465070933103561, -0.10913236439228058, -0.12409437447786331, 0.2577064633369446, -0.11102163046598434, -0.08696750551462173, 0.09873171150684357, 0.04876919463276863, -0.007988843135535717, 0.10254405438899994, 0.3081318438053131, 0.0029006688855588436, -0.14454792439937592, 0.04489262402057648, 0.09925183653831482, -0.13539594411849976, -0.07434611022472382, 0.019571958109736443, -0.035260483622550964, -0.09397456794977188, 0.020636096596717834, 0.07340364903211594, 0.06032625213265419, -0.04580521211028099, -0.07177016884088516, -0.03565073385834694, -0.07762613892555237, 0.020075393840670586, -0.03948306664824486, 0.07027256488800049, -0.050294049084186554, -0.01861499808728695, -0.02185654453933239, 0.058707185089588165, -0.02296864241361618, 0.061449792236089706, -0.1755971908569336, 0.06991886347532272, -0.0277483519166708, 0.02057826705276966, -0.14993074536323547, 0.09927208721637726, -0.024174705147743225, 0.06980960071086884, 0.03664183244109154, 0.03121676668524742, 0.09884832054376602, -0.07537955790758133, 0.05817754566669464, -0.02968471124768257, 0.147488534450531, 0.052367452532052994, -0.02020488679409027, -0.09911037236452103, 0.013469059020280838, -0.05347699671983719, -0.05708204582333565, -0.011647026985883713, -0.024197807535529137, 0.10923018306493759, 0.12969814240932465, 0.01592000015079975, 0.002501376671716571, -0.009727175347507, 0.025021372362971306, -0.004258567467331886, 0.02568482793867588, 0.07564911246299744, -0.017446523532271385, -0.0242305938154459, 0.2621223032474518, -0.09962942451238632, 0.28462934494018555, 0.24572916328907013, -0.2648591995239258, 0.03199862316250801, 0.10905834287405014, 0.010106693021953106, -0.020515255630016327, 0.07503847032785416, -0.058268215507268906, 0.17241628468036652, -0.02547653205692768, 0.1280321627855301, -0.043251682072877884, -0.021587619557976723, 0.035983722656965256, -0.03178456798195839, -0.02586159110069275, 0.047472450882196426, 0.012714728713035583, -0.11588208377361298, 0.09449826925992966, 0.16646632552146912, -0.03713864088058472, 0.11119352281093597, -0.014971179887652397, -0.011313206516206264, 0.06131882220506668, 0.014304694719612598, -0.03461726754903793, 0.0016916872700676322, -0.2565593421459198, -0.08540484309196472, 0.06267263740301132, -0.006143671926110983, 0.09412426501512527, -0.12432371079921722, -0.014444950968027115, -0.012113220989704132, -0.05582582578063011, -0.09363515675067902, 0.05014368146657944, 0.00003964850111515261, 0.07624442875385284, -0.014715051278471947, -0.09895363450050354, 0.05550661310553551, -0.03205706179141998, -0.0905299112200737, 0.06857383251190186, -0.1098332479596138, -0.2648794651031494, -0.10812627524137497, -0.13993187248706818, 0.027087097987532616, 0.023854844272136688, 0.11744401603937149, -0.11978093534708023, -0.0009356591035611928, 0.049091145396232605, 0.019343232735991478, -0.08286028355360031, 0.05296985059976578, 0.04081987217068672, 0.010445695370435715, -0.013627346605062485, -0.10814052820205688, -0.03082452341914177, -0.04143056645989418, 0.023627569898962975, 0.07550676167011261, -0.06796280294656754, 0.06493087112903595, 0.17256708443164825, 0.05913643538951874, 0.07807297259569168, -0.0020120004191994667, 0.14438611268997192, -0.06619959324598312, -0.06904654949903488, 0.1574661135673523, -0.10578884184360504, 0.039105113595724106, 0.0924052819609642, 0.02257131040096283, -0.09613791853189468, -0.0508042648434639, -0.08044782280921936, -0.07001248747110367, -0.21017394959926605, -0.12181878834962845, -0.06398745626211166, 0.004694931209087372, 0.03127247840166092, 0.041168104857206345, 0.05728496238589287, 0.0010056376922875643, 0.023478137329220772, -0.03886192664504051, 0.023721149191260338, 0.04671501740813255, 0.16167251765727997, -0.033110056072473526, 0.1278201788663864, -0.07284602522850037, -0.11149633675813675, 0.045436687767505646, 0.07687539607286453, 0.09623769670724869, 0.13987086713314056, 0.024836530908942223, 0.017399152740836143, 0.17006801068782806, 0.18943504989147186, 0.13757441937923431, 0.044709812849760056, -0.02120836265385151, 0.030374083667993546, -0.03805871307849884, -0.07328195124864578, 0.048134539276361465, 0.18533915281295776, -0.08550932258367538, -0.0063992333598434925, -0.20100931823253632, 0.048596106469631195, 0.2452498972415924, 0.06368165463209152, -0.19557952880859375, -0.00028955802554264665, 0.052810560911893845, -0.13671304285526276, -0.036566440016031265, 0.14047640562057495, 0.03333870321512222, -0.09642230719327927, 0.10313542187213898, 0.024861477315425873, 0.07396940886974335, -0.11185609549283981, 0.07122118026018143, -0.08608982712030411, -0.14038261771202087, 0.048722460865974426, 0.045662201941013336, -0.21490176022052765, 0.18060427904129028, -0.012662319466471672, 0.03628254309296608, -0.0776718333363533, -0.013458959758281708, 0.010057179257273674, 0.057979896664619446, 0.12810854613780975, 0.0011762982467189431, -0.0027122339233756065, -0.057035163044929504, -0.038130853325128555, 0.06678085029125214, 0.16251422464847565, 0.06036198511719704, -0.032028649002313614, -0.0019509706180542707, -0.05110215023159981, -0.014346073381602764, -0.09401122480630875, -0.07595362514257431, -0.10059180110692978, 0.02818949893116951, 0.20473510026931763, 0.13831894099712372, 0.014039747416973114, -0.02725089155137539, -0.15477055311203003, 0.18167348206043243, -0.18790364265441895, -0.02643321454524994, -0.06933485716581345, -0.19286872446537018, 0.05861144885420799, -0.02995186112821102, 0.03920695558190346, -0.006061465013772249, 0.017479775473475456, -0.0484747439622879, -0.17309890687465668, 0.1333460956811905, -0.11982934176921844, -0.01599235273897648, -0.03323807194828987, 0.21299728751182556, -0.007854809053242207, -0.010033166967332363, 0.05944520980119705, -0.009326319210231304, -0.08944782614707947, -0.06576335430145264, 0.08466951549053192, 0.1377001255750656, -0.1068529337644577, 0.018828457221388817, 0.033754587173461914, -0.13309042155742645, -0.0820293053984642, 0.02826666086912155, 0.26711001992225647, 0.05625598877668381, -0.05283072218298912, 0.18741072714328766, 0.1954263299703598, -0.0031853425316512585, -0.3038669228553772, -0.16950732469558716, -0.0494917556643486, -0.01911020092666149, -0.12754912674427032, -0.11456377804279327, 0.13754773139953613, -0.030340397730469704, -0.06189112365245819, 0.1509166657924652, -0.15266598761081696, -0.08573117107152939, 0.1656440943479538, -0.02326931431889534, 0.3956788182258606, -0.08269798755645752, -0.1208423525094986, -0.05818535387516022, -0.19474203884601593, 0.12517660856246948, -0.07317960262298584, 0.07245565950870514, 0.033077385276556015, 0.10441877692937851, 0.03060898929834366, -0.03362139314413071, 0.09820795804262161, 0.056254204362630844, -0.07076920568943024, -0.05478791147470474, -0.017823705449700356, -0.04747546836733818, 0.026787666603922844, 0.056376442313194275, -0.028461314737796783, 0.005311078857630491, -0.12423209100961685, -0.05852299556136131, -0.12605559825897217, 0.06965111941099167, 0.06390833109617233, -0.003991028759628534, 0.06048591062426567, -0.1377464383840561, -0.015805602073669434, 0.05426366254687309, 0.15345148742198944, -0.07098882645368576, 0.0949176624417305, 0.16315239667892456, 0.1480654776096344, -0.13413411378860474, -0.028513923287391663, -0.06982377916574478, -0.1176723837852478, 0.1622147113084793, -0.08324010670185089, 0.05987082049250603, 0.06718195229768753, 0.02960684709250927, -0.005447220988571644, 0.08166877925395966, -0.052489571273326874, -0.012248539365828037, 0.09401970356702805, -0.17661207914352417, -0.03957023099064827, -0.001697829458862543, 0.10263420641422272, 0.15386003255844116, 0.14084960520267487, 0.18192709982395172, -0.011135686188936234, -0.03001983091235161, -0.02864767052233219, 0.0051020062528550625, -0.15314117074012756, 0.10974044352769852, 0.07387946546077728, 0.04669680818915367, -0.1795673966407776, 0.05814162641763687, -0.04423800855875015, -0.17800453305244446, 0.03027459979057312, 0.049923643469810486, -0.11576072126626968, -0.1206849068403244, -0.11403204500675201, 0.027932992205023766, -0.01134270429611206, -0.1356646716594696, 0.055631160736083984, -0.17259548604488373, 0.08932657539844513, 0.22398336231708527, 0.047858234494924545, 0.09936341643333435, -0.05030828341841698, -0.04432832449674606, -0.009013875387609005, -0.058383759111166, -0.03901797905564308, -0.008751856163144112, -0.13276347517967224, 0.019244389608502388, 0.022875918075442314, 0.1425589770078659, -0.0936642587184906, -0.07822176814079285, -0.14235132932662964, 0.08703114092350006, -0.11615089327096939, -0.024042198434472084, -0.10766085237264633, -0.013102625496685505, 0.05893085524439812, -0.08098627626895905, -0.030279118567705154, 0.013832733035087585, -0.10597074031829834, 0.03949544206261635, 0.01781025342643261, -0.017403827980160713, -0.08437473326921463, 0.02252664789557457, 0.061387889087200165, -0.05088924244046211, 0.11697501689195633, 0.22867237031459808, -0.1439528614282608, 0.14829020202159882, -0.10421250015497208, -0.15942826867103577, 0.133963942527771, 0.009725463576614857, 0.005765488371253014, 0.05041324719786644, -0.0033678787294775248, 0.1039302721619606, 0.059541117399930954, 0.03347272425889969, 0.19184237718582153, -0.0691528245806694, 0.045194849371910095, -0.048356056213378906, -0.09292587637901306, -0.03715227544307709, -0.07272934168577194, 0.14184069633483887, 0.04487866908311844, 0.1104050725698471, -0.032347243279218674, 0.048883870244026184, -0.0037697148509323597, 0.04206210374832153, -0.05168721452355385, -0.1341799646615982, -0.010149531066417694, -0.015704169869422913, 0.03092053532600403, -0.04739684239029884, 0.2000875025987625, -0.13169920444488525, -0.03367771953344345, 0.02123575285077095, -0.07653264701366425, -0.17856018245220184, 0.0366344079375267, 0.2602296769618988, 0.0991094633936882, -0.03370603173971176, -0.10184652358293533, -0.010330624878406525, -0.0022562446538358927, 0.011136217042803764, -0.03063030354678631, 0.1644914448261261, 0.01474691927433014, 0.15382425487041473, 0.09497042745351791, 0.027306528761982918, -0.12449678778648376, -0.1143205538392067, -0.09893360733985901, 0.051647499203681946, -0.01457618921995163, 0.095281682908535, 0.162972554564476, 0.06325694918632507, 0.004234750755131245, -0.020020360127091408, -0.0076215616427361965, -0.172161266207695, -0.0803556963801384, -0.064754419028759, -0.11448416113853455, 0.028239214792847633, -0.009448505938053131, 0.045924875885248184, 0.08185780048370361, 0.06883546710014343, -0.010237992741167545, 0.06278709322214127, 0.03481067717075348, -0.07327140867710114, 0.11748669296503067, -0.039899393916130066, -0.04263532906770706, -0.008423837833106518, -0.021689465269446373, -0.019357217475771904, -0.0026153912767767906, -0.006029196083545685, 0.059303004294633865, -0.13491517305374146, 0.026205874979496002, -0.1162513792514801, -0.09922845661640167, -0.03452387824654579, 0.02848247066140175, -0.0256170853972435, 0.08728921413421631, 0.06798171997070312, -0.059477053582668304, 0.03165947645902634, 0.12479941546916962, -0.12265580892562866, -0.15024472773075104, -0.04920832812786102, 0.1903073787689209, 0.017805403098464012, 0.14169205725193024, -0.05515918508172035, 0.015724657103419304, -0.1044396236538887, 0.34452104568481445, 0.22373846173286438, -0.036270517855882645, 0.07692907005548477, -0.0066161854192614555, 0.045295823365449905, 0.021009253337979317, 0.04485359415411949, 0.14888952672481537, 0.2946443259716034, -0.019912978634238243, -0.06623248010873795, -0.05239614471793175, -0.044735413044691086, -0.10849445313215256, 0.02414388582110405, -0.06668807566165924, -0.12995871901512146, -0.05586572363972664, 0.08376616984605789, -0.21753844618797302, 0.08990536630153656, -0.024021290242671967, -0.1508283019065857, -0.05007746443152428, 0.011364635080099106, 0.09622396528720856, 0.08344262093305588, 0.05991138145327568, -0.02854444645345211, -0.0910358652472496, 0.0818210318684578, 0.03413067013025284, -0.23002557456493378, 0.04347025975584984, 0.021015768870711327, -0.09612911194562912, -0.06315858662128448, 0.003468909068033099, 0.1318800300359726, 0.013579532504081726, 0.13604755699634552, -0.015813937410712242, 0.09706056863069534, -0.023257452994585037, -0.11474727094173431, -0.04106639698147774, 0.120599165558815, -0.006308306939899921, 0.016141390427947044, 0.03522041067481041, -0.15759119391441345, 0.009344038553535938, 0.016283072531223297, -0.0009529172093607485, -0.047323524951934814, 0.0036870939657092094, -0.024930106475949287, 0.0488300584256649, 0.002066315384581685, -0.03800462558865547, -0.019054867327213287, 0.002558383857831359, 0.011010375805199146, 0.015176007524132729, -0.14647938311100006, -0.12159176915884018, -0.17151996493339539, -0.08976714313030243, -0.08160483837127686, 0.040320344269275665, -0.10490252822637558, 0.009980456903576851, -0.07950912415981293, 0.012951293028891087, -0.09459655731916428, 0.017488105222582817, 0.11491206288337708, 0.010913295671343803, 0.006985660642385483, -0.04664207622408867, 0.12923747301101685, 0.12149302661418915, -0.1150209829211235, -0.11362892389297485 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # deberta-base-finetuned-squad This model is a fine-tuned version of [microsoft/deberta-base](https://huggingface.co/microsoft/deberta-base) on the squad dataset. ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 0.0001 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 0.0 | 2 | 5.3843 | ### Framework versions - Transformers 4.16.2 - Pytorch 1.10.0+cu111 - Datasets 1.18.3 - Tokenizers 0.11.0
{"license": "mit", "tags": ["generated_from_trainer"], "datasets": ["squad"], "model-index": [{"name": "deberta-base-finetuned-squad", "results": []}]}
question-answering
MaggieXM/deberta-base-finetuned-squad
[ "transformers", "pytorch", "tensorboard", "deberta", "question-answering", "generated_from_trainer", "dataset:squad", "license:mit", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #deberta #question-answering #generated_from_trainer #dataset-squad #license-mit #endpoints_compatible #region-us
deberta-base-finetuned-squad ============================ This model is a fine-tuned version of microsoft/deberta-base on the squad dataset. Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 0.0001 ### Training results ### Framework versions * Transformers 4.16.2 * Pytorch 1.10.0+cu111 * Datasets 1.18.3 * Tokenizers 0.11.0
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.0001", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #tensorboard #deberta #question-answering #generated_from_trainer #dataset-squad #license-mit #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.0001", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ 53, 99, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #deberta #question-answering #generated_from_trainer #dataset-squad #license-mit #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.0001### Training results### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ -0.10906852036714554, 0.06746307760477066, -0.0018726623384281993, 0.12245453894138336, 0.176510289311409, 0.03287193924188614, 0.09382078051567078, 0.11269780248403549, -0.07744082808494568, 0.04151449725031853, 0.14050540328025818, 0.1859036386013031, -0.002300688298419118, 0.07394661009311676, -0.060312796384096146, -0.243434339761734, -0.02754439227283001, 0.05745415762066841, -0.07524315267801285, 0.12829966843128204, 0.09376247972249985, -0.1532052457332611, 0.07452365756034851, -0.01643524132668972, -0.21578669548034668, 0.03173454478383064, 0.0023752213455736637, -0.032221511006355286, 0.14971983432769775, -0.0022265994921326637, 0.13316713273525238, 0.0006904460024088621, 0.07087747007608414, -0.18054047226905823, 0.016060464084148407, 0.0494723841547966, 0.003227503504604101, 0.0682324692606926, 0.05044325441122055, 0.0036251589190214872, 0.12669910490512848, -0.11117244511842728, 0.05049264803528786, 0.008520628325641155, -0.1404227763414383, -0.24140433967113495, -0.09662343561649323, -0.00889391265809536, 0.06195613741874695, 0.11675234884023666, -0.012416032142937183, 0.15943077206611633, -0.09969065338373184, 0.09060459583997726, 0.2401823103427887, -0.2945340871810913, -0.0673379898071289, 0.04761459678411484, 0.023897066712379456, 0.0820293202996254, -0.10638795047998428, -0.02888677828013897, 0.06469137221574783, 0.06282836198806763, 0.09832145273685455, -0.054576799273490906, -0.08739683032035828, 0.035966772586107254, -0.14263519644737244, -0.0323781855404377, 0.11741100251674652, 0.042585376650094986, -0.03396529331803322, -0.03200254961848259, -0.04978111758828163, -0.12898586690425873, -0.01741613820195198, -0.04125765711069107, 0.04875101149082184, -0.05631307512521744, -0.09298799932003021, 0.0039881435222923756, -0.11607278883457184, -0.0745830163359642, -0.07984917610883713, 0.12757232785224915, 0.040921375155448914, 0.024772414937615395, -0.05771277844905853, 0.10146419703960419, -0.014094995334744453, -0.13614626228809357, 0.011633050628006458, 0.03487182781100273, -0.009839228354394436, -0.051041193306446075, -0.07681000977754593, -0.07411006838083267, 0.020340967923402786, 0.11077996343374252, -0.08195619285106659, 0.038506731390953064, 0.05483483150601387, 0.030439194291830063, -0.06597094237804413, 0.16986097395420074, -0.05944868177175522, -0.022767765447497368, -0.009679267182946205, 0.03574565798044205, 0.0024655587039887905, 0.006083325482904911, -0.10132772475481033, -0.018333962187170982, 0.1123267337679863, 0.020886441692709923, -0.059068817645311356, 0.04406878724694252, -0.05102228745818138, -0.02949458174407482, -0.0011232884135097265, -0.0824902132153511, 0.029889889061450958, -0.012855302542448044, -0.09873241186141968, -0.021587364375591278, -0.01787460595369339, 0.01358390599489212, -0.008940866217017174, 0.11448857933282852, -0.09354112297296524, 0.03422633185982704, -0.09939790517091751, -0.10964055359363556, 0.01830948144197464, -0.10246928781270981, 0.04551805928349495, -0.08885350823402405, -0.154616117477417, -0.029594484716653824, 0.041562534868717194, -0.03879478573799133, -0.03288087621331215, -0.04334716126322746, -0.07977252453565598, -0.022559817880392075, -0.022394346073269844, 0.15221458673477173, -0.05769772455096245, 0.11836796998977661, 0.05086519941687584, 0.06931854039430618, -0.061223313212394714, 0.05511834844946861, -0.09075803309679031, 0.007302772253751755, -0.17870277166366577, 0.0414438433945179, -0.0391484871506691, 0.06768574565649033, -0.09956254810094833, -0.12419266998767853, 0.023241670802235603, -0.008156060241162777, 0.09977179765701294, 0.09540600329637527, -0.18454749882221222, -0.05171259865164757, 0.14879564940929413, -0.05193806812167168, -0.13441413640975952, 0.11923389881849289, -0.07279756665229797, 0.05089661106467247, 0.08219404518604279, 0.18529091775417328, 0.03902118280529976, -0.10835572332143784, 0.02097715437412262, -0.025105690583586693, 0.03633710741996765, -0.07082182914018631, 0.05244239419698715, -0.0043000332079827785, 0.04608679562807083, 0.020111214369535446, -0.029271200299263, 0.041114479303359985, -0.11857492476701736, -0.08235017210245132, -0.030374497175216675, -0.11068493127822876, 0.018598293885588646, 0.09203321486711502, 0.08021950721740723, -0.11705341190099716, -0.05191250145435333, 0.07923376560211182, 0.06099322438240051, -0.0576673187315464, 0.019398635253310204, -0.05282509699463844, 0.0568179190158844, -0.07090170681476593, -0.04237821698188782, -0.19062140583992004, -0.03253867104649544, 0.006324611604213715, 0.01642480306327343, 0.015398003160953522, 0.06546691060066223, 0.08060513436794281, 0.03483114019036293, -0.05820056423544884, -0.004116482567042112, -0.047675203531980515, -0.0019695896189659834, -0.14093975722789764, -0.18150095641613007, -0.02583497390151024, -0.022089708596467972, 0.07132486999034882, -0.19414527714252472, 0.016960086300969124, -0.01364872232079506, 0.07628684490919113, 0.0006814183434471488, -0.017158081755042076, -0.044972311705350876, 0.08874596655368805, -0.011289291083812714, -0.050480104982852936, 0.07120310515165329, -0.008773626759648323, -0.0824279636144638, -0.07927785068750381, -0.07988245040178299, 0.1546686887741089, 0.12652002274990082, -0.12163029611110687, -0.08933351188898087, 0.000365629413863644, -0.06436643749475479, -0.03252577781677246, -0.041161615401506424, 0.03758399561047554, 0.18712805211544037, -0.008214499801397324, 0.12578220665454865, -0.0809369906783104, -0.04939969256520271, 0.016187669709324837, -0.024475058540701866, 0.029286270961165428, 0.12734302878379822, 0.10789967328310013, -0.11230992525815964, 0.13466228544712067, 0.13473078608512878, -0.0887748971581459, 0.10748772323131561, -0.05112215131521225, -0.09028642624616623, -0.04069872200489044, 0.0026489298325031996, -0.009202072396874428, 0.13493865728378296, -0.14265617728233337, 0.002923782914876938, 0.014453635551035404, 0.029875503852963448, 0.032488953322172165, -0.22377441823482513, -0.06963121891021729, 0.02022462524473667, -0.03723626956343651, -0.033513233065605164, 0.009405339136719704, 0.01762651465833187, 0.10752640664577484, 0.004146002233028412, -0.06462658196687698, 0.037630192935466766, -0.0032264806795865297, -0.06657109409570694, 0.22388401627540588, -0.06308706849813461, -0.10609418153762817, -0.06777282059192657, -0.03012274019420147, -0.041916534304618835, 0.00520241679623723, 0.07164256274700165, -0.08818166702985764, -0.008909866213798523, -0.04570751637220383, 0.01587805151939392, -0.02777503989636898, 0.021680917590856552, -0.005862090270966291, -0.005761952139437199, 0.056213632225990295, -0.12249716371297836, -0.004572782665491104, -0.07394681125879288, -0.07332208007574081, 0.056574635207653046, 0.04088132455945015, 0.12561938166618347, 0.12629352509975433, -0.019211476668715477, 0.006146795582026243, -0.03077799268066883, 0.27128133177757263, -0.0730060264468193, -0.04208487272262573, 0.1264486312866211, 0.014105144888162613, 0.05339660868048668, 0.11345461010932922, 0.07037395238876343, -0.11153526604175568, 0.014711493626236916, 0.04431004449725151, -0.036325838416814804, -0.23864442110061646, -0.02028270624577999, -0.059421639889478683, -0.038850538432598114, 0.07492908835411072, 0.02213570475578308, 0.034114450216293335, 0.06819012761116028, 0.0530177503824234, 0.05117795988917351, -0.0695335641503334, 0.049347858875989914, 0.11530358344316483, 0.04271784424781799, 0.11358557641506195, -0.045272886753082275, -0.07789775729179382, 0.02845177613198757, 0.005695371422916651, 0.24618718028068542, -0.002950567053630948, 0.1165931224822998, 0.07972053438425064, 0.18133477866649628, -0.026602329686284065, 0.0736309215426445, -0.013620841316878796, -0.05510192736983299, -0.014981547370553017, -0.02384813316166401, -0.021129023283720016, 0.012705648317933083, -0.03235762193799019, 0.04182064160704613, -0.11585651338100433, -0.022712133824825287, 0.05054628476500511, 0.23519453406333923, 0.04969538003206253, -0.3019542992115021, -0.07638070732355118, -0.0023124103900045156, -0.024649446830153465, -0.013830854557454586, 0.01804654859006405, 0.12792587280273438, -0.08486592769622803, 0.009786706417798996, -0.05897927284240723, 0.09500482678413391, -0.030065573751926422, 0.04557683318853378, 0.0728321373462677, 0.08139775693416595, 0.005202753469347954, 0.07807865738868713, -0.3351340889930725, 0.269655704498291, 0.005754767917096615, 0.08967748284339905, -0.08474477380514145, -0.02851230651140213, -0.003446556394919753, 0.006832140497863293, 0.07994267344474792, -0.012267249636352062, -0.007392329163849354, -0.18092505633831024, -0.010030235163867474, 0.04060959070920944, 0.10557982325553894, -0.009124299511313438, 0.09338906407356262, 0.004401530604809523, 0.02708321437239647, 0.07480204850435257, 0.006306950468569994, -0.05973632261157036, -0.07385183870792389, -0.015700312331318855, 0.01608356088399887, -0.06551012396812439, -0.05531088262796402, -0.09672978520393372, -0.11011071503162384, 0.11117827147245407, 0.006899753585457802, -0.04061031714081764, -0.10242726653814316, 0.10715275257825851, 0.09946190565824509, -0.08639245480298996, 0.03110731951892376, 0.027356283739209175, 0.012992347590625286, 0.040999285876750946, -0.049368370324373245, 0.10861369967460632, -0.04601781815290451, -0.13991224765777588, -0.05841115862131119, 0.10319467633962631, 0.05961059033870697, 0.05165814235806465, 0.000958340591751039, 0.01687627099454403, -0.04624851420521736, -0.10006760060787201, 0.03854727745056152, -0.0637526661157608, 0.10805032402276993, 0.018565788865089417, -0.02823050133883953, 0.058313824236392975, -0.057445961982011795, -0.0264425128698349, 0.18283019959926605, 0.243144690990448, -0.09403698146343231, -0.0067754751071333885, 0.028209520503878593, -0.047241684049367905, -0.16886897385120392, 0.07203403860330582, 0.07638583332300186, -0.003183972090482712, 0.06127743422985077, -0.15982240438461304, 0.13104939460754395, 0.12067361921072006, 0.0005576407420448959, 0.1344357579946518, -0.35285332798957825, -0.12224552035331726, 0.09386329352855682, 0.17115306854248047, 0.15553683042526245, -0.17337635159492493, -0.01499408483505249, -0.005067420192062855, -0.16410253942012787, 0.11114078015089035, -0.08020307123661041, 0.11735273897647858, -0.03681957721710205, 0.13357889652252197, 0.007081165444105864, -0.07050485163927078, 0.12927229702472687, 0.05059071630239487, 0.11754964292049408, -0.05475282296538353, -0.05625322088599205, 0.06863997131586075, -0.017688540741801262, 0.01633000560104847, -0.04545693099498749, 0.034301891922950745, -0.10819976031780243, -0.023293185979127884, -0.10276053100824356, 0.03019988164305687, -0.04292849451303482, -0.06629740446805954, -0.03692889213562012, 0.0349653996527195, 0.04192369058728218, -0.017749574035406113, 0.11575844138860703, 0.013877280987799168, 0.15121248364448547, 0.06528942286968231, 0.07184568792581558, -0.05084993317723274, -0.08539872616529465, -0.005330831278115511, -0.006148995365947485, 0.04826746881008148, -0.11915057897567749, 0.022976413369178772, 0.16038499772548676, 0.04522019252181053, 0.12687262892723083, 0.07778637856245041, -0.0342944897711277, 0.02309544011950493, 0.044321175664663315, -0.1527748852968216, -0.12664176523685455, 0.021797385066747665, -0.08727319538593292, -0.10015197843313217, 0.07352425903081894, 0.06896974891424179, -0.04170703887939453, -0.018738793209195137, -0.01616632379591465, -0.01035295519977808, -0.06826329231262207, 0.21358394622802734, 0.08219273388385773, 0.03991309553384781, -0.10280744731426239, 0.0714743435382843, 0.04387481510639191, -0.10763643682003021, 0.003661820665001869, 0.05546589195728302, -0.061987753957509995, -0.03880517929792404, 0.08479759842157364, 0.17360259592533112, -0.0737328752875328, -0.024554088711738586, -0.12887069582939148, -0.10186035931110382, 0.071917325258255, 0.1466834545135498, 0.1103333979845047, 0.010969791561365128, -0.04128824919462204, 0.015214976854622364, -0.13387085497379303, 0.07300840318202972, 0.04438461363315582, 0.06741239875555038, -0.12168541550636292, 0.1378946304321289, -0.012997373007237911, 0.04907304793596268, -0.018131224438548088, 0.039217717945575714, -0.11605378240346909, 0.026855379343032837, -0.14983804523944855, -0.031149713322520256, -0.03066718578338623, -0.008304767310619354, -0.002490169368684292, -0.08028828352689743, -0.0624820739030838, 0.016895735636353493, -0.12182493507862091, -0.019355248659849167, 0.05666094273328781, 0.04099619388580322, -0.13247592747211456, -0.06113049015402794, 0.012836229056119919, -0.04677388072013855, 0.06527552008628845, 0.059172019362449646, 0.01893891766667366, 0.04826347902417183, -0.1368434876203537, -0.0014189736684784293, 0.04941768944263458, 0.0009740079985931516, 0.08533546328544617, -0.0808146595954895, -0.016379225999116898, 0.010953071527183056, 0.08286145329475403, 0.022708607837557793, 0.042687930166721344, -0.14083077013492584, -0.012855502776801586, -0.02439640462398529, -0.08845098316669464, -0.07585417479276657, 0.008879831060767174, 0.08719410747289658, 0.034595225006341934, 0.18130195140838623, -0.06596950441598892, 0.05989367887377739, -0.21043486893177032, -0.015652839094400406, -0.006970599293708801, -0.08702950924634933, -0.086637943983078, -0.044544946402311325, 0.08223985135555267, -0.05747522786259651, 0.1340256780385971, 0.004605904687196016, 0.062426432967185974, 0.02310953289270401, -0.03455747291445732, 0.034555695950984955, 0.0163964182138443, 0.2405117005109787, 0.008661195635795593, -0.0410127229988575, 0.05148835852742195, 0.07266159355640411, 0.07585102319717407, 0.14360494911670685, 0.21921157836914062, 0.18694645166397095, -0.0036645333748310804, 0.06450499594211578, 0.024348434060811996, -0.04777124151587486, -0.13112390041351318, 0.027315663173794746, 0.00013807733193971217, 0.06661582738161087, -0.015175133012235165, 0.21529404819011688, 0.05847951024770737, -0.18571004271507263, 0.051108673214912415, -0.07385663688182831, -0.09754128754138947, -0.08885084837675095, -0.020756199955940247, -0.0732128694653511, -0.13299836218357086, 0.018302004784345627, -0.1242777407169342, 0.020360535010695457, 0.11734964698553085, 0.012741449289023876, -0.035368092358112335, 0.17947116494178772, 0.052137892693281174, 0.029047109186649323, 0.05845717713236809, 0.010380552150309086, -0.008690660819411278, -0.06692970544099808, -0.03991454839706421, -0.018095968291163445, -0.03345944732427597, 0.034023236483335495, -0.06497859209775925, -0.08589160442352295, 0.013237159699201584, -0.03149421885609627, -0.08987612277269363, 0.005354170221835375, 0.049384117126464844, 0.06891921162605286, 0.07297006249427795, 0.01667221076786518, 0.02332925796508789, -0.020156366750597954, 0.21533343195915222, -0.06476415693759918, -0.07947593182325363, -0.08074905723333359, 0.265627384185791, 0.05027703195810318, -0.004046577028930187, 0.04033198952674866, -0.08480563014745712, 0.02243131212890148, 0.2169245183467865, 0.18607759475708008, -0.11245785653591156, -0.007832574658095837, 0.011305221356451511, -0.005878118798136711, -0.021379433572292328, 0.09197362512350082, 0.1257472038269043, 0.07400757074356079, -0.10305534303188324, -0.031333714723587036, -0.06454739719629288, 0.0015038832789286971, -0.0384715273976326, 0.05281813070178032, 0.06506214290857315, 0.0030763624235987663, -0.04556673765182495, 0.07925759255886078, -0.06144498288631439, -0.13460782170295715, 0.09334390610456467, -0.20764866471290588, -0.15828830003738403, -0.012697347439825535, 0.09336383640766144, -0.0030799382366240025, 0.07776813209056854, -0.040103912353515625, 0.013611658476293087, 0.05764710158109665, -0.018620485439896584, -0.09056394547224045, -0.07793968170881271, 0.11235781013965607, -0.0997680276632309, 0.17177686095237732, -0.04978856444358826, 0.10937511920928955, 0.13368308544158936, 0.06495781987905502, -0.07195554673671722, 0.07014140486717224, 0.061791013926267624, -0.08630527555942535, 0.018510999158024788, 0.08397405594587326, -0.022385036572813988, 0.02437000162899494, 0.04602088779211044, -0.13158954679965973, 0.011918668635189533, -0.0361701175570488, -0.03017357364296913, -0.07815974950790405, -0.0275187399238348, -0.06274496763944626, 0.12678520381450653, 0.2051575779914856, -0.03207334876060486, 0.026675567030906677, -0.07083410769701004, 0.010915475897490978, 0.07513152807950974, 0.04066971689462662, -0.0883568748831749, -0.21315082907676697, 0.02498883567750454, 0.08290039002895355, -0.03336548060178757, -0.21750140190124512, -0.08352483063936234, 0.021173350512981415, -0.081793412566185, -0.06557159870862961, 0.06631553173065186, 0.05174168944358826, 0.056519512087106705, -0.05227046087384224, -0.08401533961296082, -0.09473040699958801, 0.16473813354969025, -0.1501629501581192, -0.09653576463460922 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # distilbert-base-uncased-finetuned-squad This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the squad dataset. ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 0.01 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 0.01 | 56 | 4.8054 | ### Framework versions - Transformers 4.16.2 - Pytorch 1.10.0+cu111 - Datasets 1.18.3 - Tokenizers 0.11.0
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["squad"], "model-index": [{"name": "distilbert-base-uncased-finetuned-squad", "results": []}]}
question-answering
MaggieXM/distilbert-base-uncased-finetuned-squad
[ "transformers", "pytorch", "tensorboard", "distilbert", "question-answering", "generated_from_trainer", "dataset:squad", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us
distilbert-base-uncased-finetuned-squad ======================================= This model is a fine-tuned version of distilbert-base-uncased on the squad dataset. Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 0.01 ### Training results ### Framework versions * Transformers 4.16.2 * Pytorch 1.10.0+cu111 * Datasets 1.18.3 * Tokenizers 0.11.0
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.01", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.01", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ 56, 99, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #distilbert #question-answering #generated_from_trainer #dataset-squad #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 0.01### Training results### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ -0.11015374958515167, 0.07788887619972229, -0.0017295079305768013, 0.11789435148239136, 0.1642647236585617, 0.018663961440324783, 0.08534939587116241, 0.128647118806839, -0.09940217435359955, 0.036410510540008545, 0.1395506113767624, 0.17325018346309662, -0.0012561118928715587, 0.07648244500160217, -0.05558345839381218, -0.2178054004907608, -0.014283804222941399, 0.0623629093170166, -0.08695878088474274, 0.14169123768806458, 0.08469094336032867, -0.15261618793010712, 0.07438448071479797, 0.004443165380507708, -0.21694086492061615, 0.01598680205643177, 0.003087438177317381, -0.04070437699556351, 0.13559721410274506, 0.008506129495799541, 0.11581699550151825, -0.0016935884486883879, 0.06187553331255913, -0.17726369202136993, 0.013342312537133694, 0.05116193741559982, 0.009605822153389454, 0.08249520510435104, 0.04675626754760742, 0.001785987988114357, 0.11378403753042221, -0.09623835980892181, 0.03718724474310875, 0.02098107524216175, -0.12663134932518005, -0.25508636236190796, -0.10503796488046646, 0.020665986463427544, 0.06835926324129105, 0.1246817484498024, -0.0038069274742156267, 0.16230128705501556, -0.10793673992156982, 0.09056346118450165, 0.261287122964859, -0.3026773929595947, -0.06928998976945877, 0.02931191399693489, 0.024418726563453674, 0.059648532420396805, -0.10867570340633392, -0.03694573789834976, 0.058019690215587616, 0.05589241534471512, 0.11122817546129227, -0.04603881761431694, -0.11824721843004227, 0.03243563696742058, -0.1461743861436844, -0.047218356281518936, 0.13719776272773743, 0.046157412230968475, -0.02770325541496277, -0.034532736986875534, -0.057804230600595474, -0.13452331721782684, -0.030928630381822586, -0.015085950493812561, 0.0475519523024559, -0.04909048601984978, -0.08610432595014572, 0.003774745622649789, -0.10786937177181244, -0.07555754482746124, -0.08140842616558075, 0.13088266551494598, 0.041462209075689316, 0.03307836875319481, -0.05474916845560074, 0.09480872750282288, 0.000986318802461028, -0.1327459216117859, 0.004625031724572182, 0.03388960286974907, -0.011974030174314976, -0.03722645714879036, -0.07150428742170334, -0.05946481600403786, 0.02393309213221073, 0.12220640480518341, -0.09399408102035522, 0.03759457916021347, 0.051880721002817154, 0.0394192710518837, -0.08507681638002396, 0.17958223819732666, -0.06804200261831284, 0.00372084672562778, -0.004175118636339903, 0.030380500480532646, 0.0016766528133302927, 0.00967189110815525, -0.09443464875221252, -0.009230931289494038, 0.09628622978925705, 0.016344916075468063, -0.04123422130942345, 0.06241907551884651, -0.04320916533470154, -0.023059653118252754, 0.005019506439566612, -0.08632654696702957, 0.02957758866250515, -0.005633399356156588, -0.09180940687656403, -0.014339231885969639, 0.00924031250178814, 0.009973254054784775, -0.023559562861919403, 0.09622745215892792, -0.09258875250816345, 0.039059679955244064, -0.0966431200504303, -0.09610658884048462, 0.03135469928383827, -0.08633721619844437, 0.03323899209499359, -0.08351001888513565, -0.15356701612472534, -0.014352404512465, 0.05196052044630051, -0.029093196615576744, -0.04568847268819809, -0.03338509052991867, -0.09365558624267578, -0.007894967682659626, -0.020463159307837486, 0.16361241042613983, -0.059523746371269226, 0.11596428602933884, 0.044956617057323456, 0.07047417759895325, -0.039283402264118195, 0.05550408363342285, -0.10669739544391632, 0.0158601775765419, -0.17886844277381897, 0.03756573051214218, -0.05117318034172058, 0.0713115930557251, -0.10789308696985245, -0.12821386754512787, 0.018587902188301086, -0.019058089703321457, 0.08941914886236191, 0.09900131076574326, -0.1556246131658554, -0.05476286634802818, 0.1530635505914688, -0.052373457700014114, -0.14595623314380646, 0.11681996285915375, -0.05391699820756912, 0.030727345496416092, 0.06505748629570007, 0.17029711604118347, 0.04974878951907158, -0.09419012814760208, 0.0010907232062891126, -0.004161385353654623, 0.029011201113462448, -0.08832317590713501, 0.0670306459069252, -0.0001891383290058002, 0.03975708782672882, 0.02596360072493553, -0.04876140132546425, 0.05175551027059555, -0.11207973957061768, -0.09092425554990768, -0.057880911976099014, -0.10791530460119247, 0.03218374773859978, 0.0905875489115715, 0.07711558789014816, -0.10291846096515656, -0.07167141139507294, 0.07738851010799408, 0.06820821762084961, -0.06235070526599884, 0.035304564982652664, -0.06711430102586746, 0.07074054330587387, -0.07706119865179062, -0.029941074550151825, -0.20273137092590332, -0.021548641845583916, 0.0019728210754692554, 0.012119793333113194, 0.004839509725570679, 0.042980484664440155, 0.07962939888238907, 0.02798469178378582, -0.05774602293968201, -0.015288996510207653, -0.03741457685828209, -0.008657107129693031, -0.13563691079616547, -0.17950096726417542, -0.03678828105330467, -0.018127555027604103, 0.07953228056430817, -0.17851758003234863, 0.019270332530140877, -0.007756600622087717, 0.07432907819747925, -0.008074558340013027, -0.012123621068894863, -0.03615254908800125, 0.0785207450389862, -0.017569556832313538, -0.05204256251454353, 0.07942155748605728, 0.002103864448145032, -0.08673360198736191, -0.05574655532836914, -0.05979409068822861, 0.1450270712375641, 0.13448466360569, -0.11105206608772278, -0.06628117710351944, 0.004419723059982061, -0.07500427216291428, -0.03761880844831467, -0.04047377407550812, 0.04766576737165451, 0.18294212222099304, -0.0037512541748583317, 0.12620289623737335, -0.08567149937152863, -0.05728199705481529, 0.020066212862730026, -0.03150564804673195, 0.03527354076504707, 0.12844246625900269, 0.11603357642889023, -0.07435338199138641, 0.13970668613910675, 0.14547762274742126, -0.09199351817369461, 0.09339506924152374, -0.06889690458774567, -0.09075712412595749, -0.030127281323075294, 0.00434486847370863, -0.005323006771504879, 0.11542841792106628, -0.14221735298633575, 0.014828763902187347, 0.033721111714839935, 0.025246618315577507, 0.029354531317949295, -0.22640223801136017, -0.05597813427448273, 0.0163411907851696, -0.04848344624042511, -0.03194795921444893, 0.0015703573590144515, 0.02147223800420761, 0.09968853741884232, -0.0008251997060142457, -0.05660254508256912, 0.04685702174901962, 0.0021694819442927837, -0.07103854417800903, 0.2220717817544937, -0.07234596461057663, -0.12835386395454407, -0.0852649062871933, -0.04811260476708412, -0.04162163287401199, -0.007446030620485544, 0.07010088860988617, -0.09312668442726135, -0.018019525334239006, -0.05169244110584259, 0.007826929911971092, -0.0109031330794096, 0.02679537422955036, 0.016242122277617455, -0.002124949125573039, 0.07835830748081207, -0.11545468121767044, 0.0008860546513460577, -0.05883374065160751, -0.0695970430970192, 0.055466800928115845, 0.047446995973587036, 0.12389592081308365, 0.13560613989830017, -0.018238088116049767, 0.013950306922197342, -0.02655613422393799, 0.25302210450172424, -0.06622323393821716, -0.04057104140520096, 0.14324858784675598, 0.019704295322299004, 0.05686932057142258, 0.10648545622825623, 0.0675860047340393, -0.09581409394741058, 0.005111063830554485, 0.03656438738107681, -0.03937583044171333, -0.24599342048168182, -0.03233567625284195, -0.06093300133943558, -0.02924877032637596, 0.07826539874076843, 0.024258362129330635, 0.02824166789650917, 0.07095792889595032, 0.04267703369259834, 0.04349096864461899, -0.07362958788871765, 0.04700988531112671, 0.112698495388031, 0.04999757185578346, 0.116783007979393, -0.050775256007909775, -0.05455601587891579, 0.026487382128834724, 0.0005488854949362576, 0.25257933139801025, -0.015906134620308876, 0.1378321796655655, 0.07847289741039276, 0.211569681763649, -0.01710767112672329, 0.0820537582039833, -0.01875017210841179, -0.05335214361548424, -0.0032733548432588577, -0.030824264511466026, -0.0319545641541481, 0.006102568004280329, -0.045682162046432495, 0.06479659676551819, -0.10718666762113571, -0.01067331712692976, 0.05619589611887932, 0.2765735983848572, 0.03167176991701126, -0.3040013909339905, -0.0939360037446022, -0.011409441009163857, -0.03460099175572395, -0.010622787289321423, 0.02116243913769722, 0.12006749212741852, -0.09286521375179291, 0.007154675666242838, -0.0721404030919075, 0.10102619230747223, -0.007397133857011795, 0.03832288086414337, 0.07753928005695343, 0.07852420210838318, 0.01918460987508297, 0.08935196697711945, -0.3165249526500702, 0.273616760969162, 0.001025219215080142, 0.08340408653020859, -0.08360306918621063, -0.014896032400429249, 0.0008899413514882326, 0.030907172709703445, 0.09090516716241837, -0.0070644039660692215, -0.01944386400282383, -0.16334831714630127, -0.03948266804218292, 0.03699937090277672, 0.07811927050352097, 0.0009304016712121665, 0.09796538949012756, -0.011179493740200996, 0.014279087074100971, 0.07155420631170273, -0.00013710353232454509, -0.04048570245504379, -0.08175895363092422, -0.014965207315981388, 0.01591159775853157, -0.060276616364717484, -0.06846851110458374, -0.10328219830989838, -0.11329144984483719, 0.1351993978023529, 0.0019247994059696794, -0.04290667176246643, -0.10858233273029327, 0.09799107909202576, 0.10798382014036179, -0.09025448560714722, 0.038749951869249344, 0.01472387183457613, 0.034847285598516464, 0.04604438319802284, -0.0693267360329628, 0.098652683198452, -0.06055672839283943, -0.1489265263080597, -0.03881422057747841, 0.11255855113267899, 0.046655744314193726, 0.0629650130867958, -0.008113856427371502, 0.020311513915657997, -0.05406700447201729, -0.1006295457482338, 0.021069105714559555, -0.03477996215224266, 0.11475688219070435, 0.013802527450025082, -0.029866911470890045, 0.05405566468834877, -0.05444075167179108, -0.0242867860943079, 0.19349876046180725, 0.21907226741313934, -0.10284736007452011, 0.014620968140661716, 0.02473662979900837, -0.047286223620176315, -0.1842731237411499, 0.05538327991962433, 0.07619230449199677, -0.009339156560599804, 0.039403513073921204, -0.15368792414665222, 0.14976239204406738, 0.11220846325159073, -0.0031245576683431864, 0.10765616595745087, -0.3633509576320648, -0.11525602638721466, 0.09299447387456894, 0.155845046043396, 0.1386876255273819, -0.16358144581317902, -0.019037233665585518, 0.00012717772915493697, -0.17832490801811218, 0.10925263166427612, -0.08529660105705261, 0.11654216051101685, -0.04265850782394409, 0.11033932864665985, 0.0006630435236729681, -0.0762135460972786, 0.11955022066831589, 0.03938749432563782, 0.09723257273435593, -0.05115067586302757, -0.03152041882276535, 0.07912573218345642, -0.02510959841310978, 0.02608017809689045, -0.06220613047480583, 0.04215196147561073, -0.10917120426893234, -0.015053248032927513, -0.11018785089254379, 0.03539660945534706, -0.038652680814266205, -0.04830507934093475, -0.041744496673345566, 0.026962002739310265, 0.05628117918968201, -0.011864308267831802, 0.12817785143852234, 0.02758049964904785, 0.14116384088993073, 0.08972228318452835, 0.07603209465742111, -0.07411273568868637, -0.11580276489257812, -0.011934204027056694, -0.007018248550593853, 0.04832480475306511, -0.14719359576702118, 0.02765008620917797, 0.15880350768566132, 0.04746207967400551, 0.11441139131784439, 0.07686521112918854, -0.02395448461174965, 0.010500557720661163, 0.041812196373939514, -0.16100136935710907, -0.13150982558727264, 0.019345365464687347, -0.06431492418050766, -0.12183037400245667, 0.06255700439214706, 0.0614863820374012, -0.053670935332775116, -0.015826858580112457, -0.007531673181802034, -0.0000784465519245714, -0.06449813395738602, 0.20853574573993683, 0.07574069499969482, 0.048698995262384415, -0.11472739279270172, 0.07782591879367828, 0.037856556475162506, -0.10484078526496887, -0.00043059163726866245, 0.06093478575348854, -0.07275664806365967, -0.044956061989068985, 0.10446915030479431, 0.14397208392620087, -0.06062052771449089, -0.03850027173757553, -0.12939509749412537, -0.11092450469732285, 0.0867898017168045, 0.1498306691646576, 0.11203416436910629, 0.010702472180128098, -0.04144223779439926, 0.005244255065917969, -0.12977226078510284, 0.08067489415407181, 0.04265280067920685, 0.06121926009654999, -0.1252250373363495, 0.1370554119348526, -0.002394858282059431, 0.06265623867511749, -0.016730153933167458, 0.0398893840610981, -0.09971027821302414, 0.02905036322772503, -0.1444123387336731, -0.02442949078977108, -0.036741480231285095, -0.006753525696694851, -0.00887435581535101, -0.07813660800457001, -0.06596478819847107, 0.027912121266126633, -0.12257038801908493, -0.018435150384902954, 0.04572593793272972, 0.04037759080529213, -0.13759653270244598, -0.04557492956519127, 0.029421065002679825, -0.0499146468937397, 0.06454519927501678, 0.07398687303066254, 0.008211798965930939, 0.05289365351200104, -0.1264968067407608, -0.022527271881699562, 0.05434576794505119, 0.00926513597369194, 0.08384920656681061, -0.09910508245229721, -0.014380033127963543, 0.020839296281337738, 0.06822219491004944, 0.020238682627677917, 0.03845583274960518, -0.14285027980804443, -0.018837932497262955, -0.02821674570441246, -0.07020819187164307, -0.07723715156316757, 0.01345986220985651, 0.10301172733306885, 0.031078552827239037, 0.1966402232646942, -0.06038171425461769, 0.054881513118743896, -0.2155103236436844, -0.007993056438863277, -0.014213412068784237, -0.09941823035478592, -0.10211960226297379, -0.03712885081768036, 0.07247202843427658, -0.054526250809431076, 0.12507131695747375, -0.010522706434130669, 0.05511965602636337, 0.026142578572034836, -0.02383393608033657, 0.02797207050025463, 0.016729772090911865, 0.2453097254037857, 0.012167572975158691, -0.034186702221632004, 0.084782175719738, 0.05997959524393082, 0.0729484036564827, 0.12799881398677826, 0.2171582728624344, 0.18005363643169403, 0.014068243093788624, 0.07868261635303497, 0.022636642679572105, -0.04231913387775421, -0.13241125643253326, 0.04872181639075279, -0.03132710978388786, 0.08536207675933838, -0.01792125403881073, 0.2359994649887085, 0.06551254540681839, -0.18002425134181976, 0.05878134071826935, -0.06992379575967789, -0.09417777508497238, -0.0825299471616745, -0.03307226300239563, -0.07295344769954681, -0.1535087674856186, 0.016281677410006523, -0.12791068851947784, 0.019965602084994316, 0.12326633930206299, 0.01258273608982563, -0.0320543609559536, 0.18129871785640717, 0.050368405878543854, 0.028184697031974792, 0.044583749026060104, -0.0007905585807748139, -0.02059895172715187, -0.07136116921901703, -0.03791867569088936, 0.00259474478662014, -0.03068586252629757, 0.04712353274226189, -0.04646455496549606, -0.07031720876693726, 0.03329735994338989, -0.034761399030685425, -0.08883184939622879, 0.002518441528081894, 0.04173534736037254, 0.07615391910076141, 0.0575120709836483, 0.017576973885297775, 0.03193562477827072, -0.02499249577522278, 0.22016319632530212, -0.07670002430677414, -0.08505483716726303, -0.09922771155834198, 0.24867719411849976, 0.041172221302986145, -0.02430764026939869, 0.04168091341853142, -0.06929002702236176, 0.0062982672825455666, 0.25402766466140747, 0.16880691051483154, -0.0884319543838501, -0.013150698505342007, 0.00764429522678256, -0.009473364800214767, -0.03209451586008072, 0.08964710682630539, 0.15046899020671844, 0.05030607059597969, -0.10978054255247116, -0.05600152164697647, -0.07037844508886337, -0.01225765235722065, -0.04804908111691475, 0.0485059879720211, 0.04596910625696182, -0.005694499239325523, -0.03783002123236656, 0.062422726303339005, -0.0654640719294548, -0.12123943865299225, 0.07217341661453247, -0.19615107774734497, -0.15636804699897766, -0.01435395423322916, 0.1063883826136589, 0.006639970000833273, 0.06619680672883987, -0.03206487372517586, 0.013406367041170597, 0.07448720932006836, -0.016242513433098793, -0.0967838242650032, -0.07638733088970184, 0.11124274879693985, -0.1227458268404007, 0.1818791925907135, -0.03898648917675018, 0.08749271184206009, 0.1330489069223404, 0.060049690306186676, -0.0956043004989624, 0.058276813477277756, 0.05560051277279854, -0.09308828413486481, 0.021883029490709305, 0.08434037864208221, -0.013400538824498653, 0.032409101724624634, 0.03615253046154976, -0.12238544225692749, 0.008272245526313782, -0.045542601495981216, -0.01548202708363533, -0.06825341284275055, -0.03519028425216675, -0.058415599167346954, 0.12555000185966492, 0.21518740057945251, -0.04043752700090408, 0.013987925834953785, -0.07852297276258469, 0.013654906302690506, 0.05009142681956291, 0.025670628994703293, -0.07588822394609451, -0.21717745065689087, 0.028418874368071556, 0.05854406580328941, -0.03153513744473457, -0.19838708639144897, -0.09007848054170609, 0.024734025821089745, -0.08972173929214478, -0.07070647925138474, 0.06478147208690643, 0.07001863420009613, 0.055369921028614044, -0.04885675385594368, -0.061354681849479675, -0.08677151054143906, 0.1601332575082779, -0.15044917166233063, -0.08544379472732544 ]
null
null
transformers
#Rick Sanchez DialoGPT Model
{"tags": "conversational"}
text-generation
MagmaCubes1133/DialoGPT-large-rick
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#Rick Sanchez DialoGPT Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
#xlsr-large-53-tamil
{"language": ["ne"], "license": "apache-2.0", "tags": ["automatic-speech-recognition", "robust-speech-event", "hf-asr-leaderboard"], "datasets": ["openslr"], "model-index": [{"name": "wav2vec2-large-xlsr-53-tamil", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "openslr", "type": "openslr", "args": "ne"}, "metrics": [{"type": "wer", "value": 25.02, "name": "Test WER"}]}]}]}
automatic-speech-recognition
Mahalakshmi/wav2vec2-large-xlsr-53-demo-colab
[ "transformers", "pytorch", "automatic-speech-recognition", "robust-speech-event", "hf-asr-leaderboard", "ne", "dataset:openslr", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ne" ]
TAGS #transformers #pytorch #automatic-speech-recognition #robust-speech-event #hf-asr-leaderboard #ne #dataset-openslr #license-apache-2.0 #model-index #endpoints_compatible #region-us
#xlsr-large-53-tamil
[]
[ "TAGS\n#transformers #pytorch #automatic-speech-recognition #robust-speech-event #hf-asr-leaderboard #ne #dataset-openslr #license-apache-2.0 #model-index #endpoints_compatible #region-us \n" ]
[ 70 ]
[ "passage: TAGS\n#transformers #pytorch #automatic-speech-recognition #robust-speech-event #hf-asr-leaderboard #ne #dataset-openslr #license-apache-2.0 #model-index #endpoints_compatible #region-us \n" ]
[ -0.15396882593631744, 0.11242730170488358, -0.004502166993916035, -0.002695143222808838, 0.06645902246236801, -0.056674372404813766, 0.07984006404876709, 0.12589755654335022, 0.13549266755580902, -0.04060596972703934, 0.09869384765625, 0.15405094623565674, 0.016807621344923973, 0.09710457175970078, -0.0666922777891159, -0.16635173559188843, 0.12455108016729355, 0.010327912867069244, -0.0033962952438741922, 0.07099287956953049, 0.13034702837467194, -0.039970479905605316, 0.02410936914384365, 0.049934983253479004, 0.00016774357936810702, 0.04734155535697937, 0.022226983681321144, -0.1409280002117157, 0.12267125397920609, 0.050216950476169586, -0.05221768468618393, 0.052269045263528824, 0.00246187811717391, -0.1943984478712082, 0.02607646770775318, 0.0012972239637747407, 0.016222111880779266, 0.0381493903696537, -0.016170913353562355, 0.013753059320151806, -0.002189352409914136, 0.0392371229827404, -0.023459559306502342, 0.08727803826332092, -0.006730038207024336, -0.2796943187713623, -0.04554010555148125, 0.10527545213699341, 0.00941175501793623, 0.07991611212491989, 0.0008266096701845527, 0.1125481054186821, -0.11074527353048325, 0.05921076983213425, 0.047813862562179565, -0.22826378047466278, 0.041819799691438675, -0.058529242873191833, -0.04309273883700371, -0.02454080991446972, -0.030556851997971535, 0.003996220882982016, 0.007285034283995628, 0.0032502287067472935, -0.012020929716527462, -0.04044044390320778, -0.16166801750659943, 0.017293956130743027, -0.07073202729225159, -0.042260169982910156, 0.2544134855270386, 0.04752431437373161, 0.052584584802389145, -0.10410535335540771, -0.055238112807273865, 0.12447613477706909, -0.05423646420240402, 0.03847770765423775, 0.0141008784994483, 0.08292485773563385, 0.08254962414503098, -0.05508051812648773, -0.11729062348604202, -0.027939271181821823, -0.1451835185289383, 0.14363479614257812, 0.029974112287163734, 0.0782967135310173, -0.15722115337848663, 0.011638018302619457, 0.012383776716887951, -0.08693606406450272, -0.05781979113817215, -0.04062981903553009, -0.003203291678801179, 0.08140184730291367, -0.02472631260752678, 0.061938486993312836, 0.20878590643405914, 0.0977027490735054, -0.07767020910978317, 0.022692428901791573, -0.015434881672263145, 0.09719885885715485, -0.03424955531954765, 0.1129952222108841, -0.046211324632167816, 0.04405919089913368, 0.1034630537033081, -0.02244533970952034, 0.0670141726732254, -0.009314211085438728, -0.07504018396139145, -0.024664530530571938, -0.009146513417363167, 0.07128158956766129, 0.039764754474163055, 0.061840277165174484, 0.01604463718831539, 0.012350848875939846, 0.087668277323246, -0.1157345399260521, -0.05342923104763031, 0.06272503733634949, -0.0066911145113408566, 0.08420280367136002, 0.052945394068956375, 0.028059443458914757, -0.08726093918085098, -0.025584477931261063, -0.010959457606077194, -0.0014805197715759277, 0.042287107557058334, 0.02542225271463394, 0.06445838510990143, -0.0940341204404831, 0.029887786135077477, -0.1487899273633957, -0.14467720687389374, 0.009253653697669506, 0.004639079794287682, 0.013374796137213707, -0.10752679407596588, -0.016886616125702858, -0.006343442015349865, 0.008778177201747894, -0.09597599506378174, -0.007115026470273733, -0.08254613727331161, 0.054389484226703644, 0.001559654949232936, 0.03854495286941528, -0.1514723002910614, 0.07231879234313965, -0.1057049036026001, -0.014299025759100914, 0.009710444137454033, 0.10758310556411743, -0.1200566440820694, 0.14310792088508606, -0.08148625493049622, 0.010033355094492435, -0.06463120877742767, 0.047116439789533615, -0.03580477833747864, 0.15195825695991516, -0.1041240394115448, -0.08860735595226288, 0.2267702966928482, -0.07533364742994308, -0.14659002423286438, 0.08997829258441925, 0.014420315623283386, 0.01923356205224991, 0.07687217742204666, 0.2652420997619629, -0.03767048195004463, -0.08679807186126709, 0.03571518510580063, 0.1485106348991394, -0.10400435328483582, -0.16274189949035645, 0.04492562636733055, -0.12857022881507874, -0.020428188145160675, 0.0487242266535759, -0.021967513486742973, 0.12437810003757477, 0.022774046286940575, -0.0913347452878952, -0.045215364545583725, -0.09999168664216995, -0.050751522183418274, -0.011677797883749008, 0.037774935364723206, -0.04606758430600166, -0.014048300683498383, -0.06158532202243805, 0.07694857567548752, -0.030959460884332657, 0.062134988605976105, -0.1365155130624771, 0.059781331568956375, 0.00039167096838355064, 0.050048984587192535, -0.14270581305027008, 0.11626113206148148, -0.044867292046546936, -0.03390604257583618, 0.03207709267735481, 0.04391452670097351, 0.06779558211565018, -0.09838705509901047, 0.02686750888824463, -0.005767539143562317, 0.1748814731836319, 0.06442997604608536, -0.006993561051785946, -0.19271822273731232, 0.06506552547216415, -0.05339648947119713, 0.16063743829727173, -0.05241328105330467, 0.006740926764905453, 0.0730879008769989, 0.08086368441581726, -0.031482234597206116, 0.06054673343896866, 0.041010454297065735, -0.039641123265028, 0.03505294397473335, -0.014291903004050255, 0.06299908459186554, 0.03258083388209343, -0.12373867630958557, 0.24279707670211792, -0.11398899555206299, 0.1774570643901825, 0.17936290800571442, -0.08124642819166183, 0.09549695998430252, 0.07659129798412323, -0.04770909622311592, -0.02391335740685463, 0.06314659863710403, 0.01990598812699318, 0.1370268613100052, 0.014757143333554268, 0.14120522141456604, -0.045419417321681976, -0.022531386464834213, -0.00023945806606207043, -0.03537467122077942, -0.0033511542715132236, 0.07555796951055527, 0.07477753609418869, -0.1165182814002037, 0.10516230016946793, 0.11336683481931686, -0.057350315153598785, 0.12947334349155426, -0.09931403398513794, -0.038226962089538574, 0.11252502351999283, 0.004051973111927509, -0.06573446094989777, 0.11944209039211273, -0.2684449851512909, -0.03077004663646221, 0.08290135860443115, -0.026356767863035202, 0.09328985959291458, -0.12446562945842743, -0.005640982650220394, -0.02526743896305561, -0.08552200347185135, -0.07631463557481766, 0.11428479850292206, -0.011683334596455097, 0.09233367443084717, -0.04858682304620743, -0.1946893185377121, 0.08280876278877258, -0.04138021543622017, -0.11154615879058838, 0.09895597398281097, -0.07977864891290665, -0.25637349486351013, -0.058200404047966, -0.08487951755523682, -0.032577358186244965, -0.007774744648486376, 0.11771699786186218, -0.09903876483440399, -0.023615093901753426, -0.01658538356423378, -0.042932331562042236, 0.04357029125094414, -0.003091508988291025, 0.0705370157957077, 0.007090195547789335, 0.08253920823335648, -0.14728547632694244, -0.042137350887060165, -0.06452486664056778, 0.01573905535042286, 0.018119757995009422, -0.022138362750411034, 0.07608319073915482, 0.14597509801387787, 0.10824883729219437, 0.05676301196217537, -0.028586825355887413, 0.08924274146556854, -0.07762455195188522, -0.06717973202466965, 0.18342681229114532, -0.029692810028791428, 0.02095929905772209, 0.17129044234752655, 0.0365254245698452, -0.027706000953912735, -0.04061513766646385, -0.03111962042748928, -0.0632941871881485, -0.190302312374115, -0.12646307051181793, -0.11898931115865707, -0.024539440870285034, -0.01654602773487568, 0.09834697097539902, 0.07093499600887299, -0.011860957369208336, -0.006808805279433727, -0.0829954668879509, 0.020642422139644623, -0.015910040587186813, 0.26622623205184937, -0.027236297726631165, 0.07902254164218903, -0.12162895500659943, -0.07145222276449203, 0.09223805367946625, 0.04528263583779335, 0.06258292496204376, 0.06743886321783066, 0.056734826415777206, 0.06868419796228409, 0.1595601588487625, 0.055010221898555756, 0.08231593668460846, 0.02640519291162491, 0.014792102389037609, 0.007039500400424004, -0.05589419975876808, -0.05688638985157013, 0.0675618126988411, 0.1312151402235031, -0.09444602578878403, -0.01352737843990326, -0.08333113044500351, 0.06841786205768585, 0.2670345604419708, 0.0524863600730896, -0.13755516707897186, -0.01787896826863289, 0.03238900378346443, -0.07133658230304718, 0.004233600106090307, 0.10484713315963745, -0.025544168427586555, -0.0894971564412117, 0.10748350620269775, 0.02938057854771614, 0.08994588255882263, -0.05372652783989906, 0.058511584997177124, -0.08935710787773132, -0.013065489940345287, 0.06042730435729027, 0.08971657603979111, -0.2832953631877899, 0.2303517609834671, -0.015497349202632904, 0.037475455552339554, -0.08033184707164764, 0.010240783914923668, 0.1189398542046547, 0.11951206624507904, 0.14785826206207275, 0.0069107734598219395, -0.006833858788013458, -0.018028490245342255, -0.10176113247871399, 0.09933747351169586, -0.049957700073719025, 0.04646245762705803, -0.0679573267698288, -0.012340977787971497, -0.030693527311086655, 0.03686443716287613, -0.027048464864492416, -0.11881520599126816, -0.11331870406866074, 0.028226198628544807, 0.2568749487400055, 0.027621811255812645, -0.052763715386390686, -0.0226724985986948, -0.12004464119672775, 0.055374156683683395, -0.15179556608200073, -0.07464023679494858, -0.09169348329305649, -0.14473988115787506, 0.0796392410993576, -0.056477319449186325, -0.006570490542799234, -0.049682289361953735, -0.006065487861633301, -0.03423347696661949, -0.16829197108745575, 0.12679018080234528, -0.13674813508987427, -0.024755628779530525, 0.013220843859016895, 0.16962818801403046, -0.03722831979393959, 0.02880971133708954, 0.035939306020736694, -0.013272742740809917, -0.08875058591365814, -0.0702756717801094, 0.08288783580064774, 0.14640478789806366, -0.09148404747247696, 0.015109152533113956, 0.010557953268289566, -0.11868426948785782, -0.01583753153681755, -0.005800405517220497, 0.23330052196979523, 0.10074736922979355, -0.06939594447612762, 0.23610630631446838, 0.2308139055967331, -0.029439793899655342, -0.2676456868648529, -0.16800209879875183, -0.08718447387218475, -0.04376048967242241, -0.1108962893486023, -0.1437987983226776, 0.1358497142791748, -0.014810249209403992, -0.11883453279733658, 0.07799641042947769, -0.1355757862329483, -0.08140571415424347, 0.3223019242286682, -0.11983691155910492, 0.26999667286872864, -0.09096767753362656, -0.07985025644302368, -0.07410842925310135, -0.12648971378803253, 0.06485308706760406, -0.11058563739061356, 0.06298860907554626, -0.006348589435219765, 0.04384442791342735, -0.013745274394750595, -0.03486808389425278, 0.08900358527898788, 0.04688652977347374, -0.04143739119172096, -0.05356672778725624, 0.058283980935811996, 0.0027979284059256315, -0.02148248627781868, 0.1613800823688507, -0.10528308153152466, 0.010733995586633682, -0.11889488995075226, -0.04285001754760742, -0.11848456412553787, 0.12185965478420258, 0.08619655668735504, -0.006039232946932316, 0.036263030022382736, -0.07559320330619812, 0.03413642197847366, 0.03821415454149246, 0.16781926155090332, -0.0724879652261734, 0.02206690050661564, 0.10845466703176498, 0.15737701952457428, -0.22070899605751038, -0.07816389203071594, -0.0966150313615799, -0.057482268661260605, 0.0877821296453476, -0.09307901561260223, 0.074465811252594, 0.058732952922582626, -0.0014845648547634482, 0.06578856706619263, 0.03967474773526192, -0.05599132925271988, -0.0025402826722711325, 0.08169759809970856, -0.1276942640542984, -0.07696310430765152, -0.00466161360964179, 0.05711120367050171, 0.05159151181578636, 0.11709539592266083, 0.14679229259490967, -0.00531255267560482, 0.009510818868875504, -0.02288033626973629, 0.05676877126097679, -0.09678763151168823, 0.08855997025966644, 0.11733092367649078, 0.03669268637895584, -0.179120272397995, 0.11195691674947739, -0.03575947508215904, -0.10317379981279373, 0.03335469961166382, 0.048716213554143906, -0.11438936740159988, -0.10391655564308167, -0.10195760428905487, 0.06915018707513809, -0.0633673295378685, -0.18706387281417847, -0.04867362976074219, -0.15914884209632874, 0.07843411713838577, 0.1349322646856308, 0.07521674036979675, 0.06581008434295654, -0.05237226188182831, -0.07110373675823212, 0.01999002881348133, -0.009139795787632465, -0.054141439497470856, -0.04153270274400711, -0.09875953197479248, -0.08604696393013, 0.012712318450212479, 0.11786097288131714, -0.05964132398366928, -0.08153297752141953, -0.056983787566423416, 0.062222253531217575, -0.19363346695899963, -0.009271611459553242, -0.10020317137241364, 0.0220988467335701, 0.047095831483602524, -0.09331677854061127, -0.008190508000552654, 0.056541360914707184, -0.12074394524097443, 0.011581934988498688, 0.012039675377309322, 0.0796671137213707, -0.17640435695648193, -0.003885519690811634, 0.00786000769585371, -0.01628078892827034, 0.19356407225131989, 0.1582164317369461, -0.15927772223949432, 0.08443569391965866, -0.18433146178722382, -0.1671614795923233, 0.11093107610940933, 0.04162774980068207, 0.021312259137630463, -0.0025092025753110647, -0.015881234779953957, 0.13865530490875244, 0.013287599198520184, 0.0093853073194623, 0.06128556653857231, -0.08440093696117401, -0.0005153797101229429, -0.05697184056043625, -0.011742600239813328, -0.01491482648998499, -0.05810263380408287, 0.10490069538354874, 0.12951621413230896, 0.12033446878194809, -0.055193837732076645, -0.00787818431854248, -0.05174226686358452, 0.013763654977083206, -0.035917025059461594, -0.09841775894165039, -0.09251813590526581, 0.003788719652220607, 0.04463912546634674, -0.04151095822453499, 0.31608060002326965, -0.04336337000131607, -0.061892684549093246, 0.04901827871799469, -0.016405530273914337, 0.03796303644776344, -0.0010235828813165426, 0.2460048496723175, 0.04036278277635574, 0.012201284058392048, 0.041308555752038956, -0.0292067788541317, 0.037868645042181015, 0.00394264655187726, 0.03870344161987305, 0.11872975528240204, 0.12724891304969788, 0.12193084508180618, 0.1579873263835907, -0.01963680423796177, 0.016832560300827026, -0.051055870950222015, -0.058255769312381744, 0.06543518602848053, -0.032875001430511475, 0.1529110074043274, 0.116136334836483, 0.019941525533795357, 0.026078034192323685, -0.03966318443417549, -0.0048690252006053925, -0.1797104775905609, -0.10578297078609467, -0.047103021293878555, -0.13927263021469116, 0.024502521380782127, -0.010432273149490356, -0.02147296629846096, 0.1162298172712326, 0.06966636329889297, -0.03562137112021446, 0.008070656098425388, 0.020647983998060226, -0.022633466869592667, 0.09678532928228378, -0.05536390095949173, -0.050809528678655624, -0.04442591220140457, -0.02802128717303276, 0.02874428778886795, 0.027046628296375275, -0.013963904231786728, 0.016455771401524544, -0.10472849011421204, 0.08737124502658844, -0.10958284884691238, -0.03758702427148819, -0.011939209885895252, 0.016544943675398827, 0.026662291958928108, 0.08962023258209229, 0.0860985815525055, -0.032347824424505234, 0.06935011595487595, 0.18146347999572754, -0.09928841143846512, -0.19366201758384705, -0.08456139266490936, 0.15522785484790802, -0.0007058268529362977, 0.031947195529937744, -0.0253632590174675, -0.04014565423130989, -0.04580072686076164, 0.2599327266216278, 0.27466145157814026, -0.09417750686407089, 0.06395943462848663, -0.09243456274271011, 0.02626248076558113, -0.02709481492638588, 0.033610060811042786, 0.12857279181480408, 0.22810544073581696, -0.02360648475587368, -0.060322653502225876, -0.012304487638175488, -0.036895476281642914, -0.1242496520280838, 0.06077897921204567, -0.0446355976164341, -0.10051512718200684, -0.024805977940559387, 0.10047639906406403, -0.13926386833190918, -0.04973499849438667, -0.13841384649276733, -0.06776206195354462, -0.05341118574142456, -0.026696400716900826, 0.07810918986797333, 0.11961682885885239, -0.027783865109086037, -0.046833377331495285, -0.011659485287964344, 0.08499395847320557, -0.00934653915464878, -0.2063533067703247, -0.013109738938510418, 0.05547214299440384, -0.08418575674295425, 0.0840102881193161, 0.004567456431686878, 0.1076488047838211, 0.04165919870138168, 0.09777911752462387, -0.04833977669477463, 0.1314554661512375, 0.010069199837744236, -0.09444987028837204, 0.0015557166188955307, 0.0011774825397878885, 0.008324375376105309, -0.01795467548072338, 0.04863693192601204, -0.10547156631946564, 0.04379347711801529, -0.02406063675880432, -0.08602315187454224, -0.09138815104961395, 0.017578821629285812, -0.04424060508608818, 0.04915256053209305, -0.0038383828941732645, -0.05678783357143402, -0.04101262241601944, -0.03725209832191467, -0.015755582600831985, 0.008860801346600056, -0.24334977567195892, -0.09956477582454681, -0.06166136637330055, -0.0061546252109110355, -0.08954942226409912, -0.0071436213329434395, -0.07046236842870712, -0.03139251843094826, -0.09309756755828857, -0.0004273192898835987, -0.0062955464236438274, 0.007958558388054371, 0.08461568504571915, 0.03708384186029434, 0.00058030488435179, 0.029271138831973076, 0.06899283081293106, 0.07784728705883026, -0.12871940433979034, -0.07822439074516296 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # wav2vec2-xls-r-300m-demo-colab This model is a fine-tuned version of [facebook/wav2vec2-xls-r-300m](https://huggingface.co/facebook/wav2vec2-xls-r-300m) on the common_voice dataset. It achieves the following results on the evaluation set: - eval_loss: 0.9475 - eval_wer: 1.0377 - eval_runtime: 70.5646 - eval_samples_per_second: 25.239 - eval_steps_per_second: 3.16 - epoch: 21.05 - step: 2000 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0003 - train_batch_size: 32 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 500 - num_epochs: 300 - mixed_precision_training: Native AMP ### Framework versions - Transformers 4.17.0.dev0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2.dev0 - Tokenizers 0.11.0
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["common_voice"], "model-index": [{"name": "wav2vec2-xls-r-300m-demo-colab", "results": []}]}
automatic-speech-recognition
Mahalakshmi/wav2vec2-xls-r-300m-demo-colab
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "generated_from_trainer", "dataset:common_voice", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us
# wav2vec2-xls-r-300m-demo-colab This model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_voice dataset. It achieves the following results on the evaluation set: - eval_loss: 0.9475 - eval_wer: 1.0377 - eval_runtime: 70.5646 - eval_samples_per_second: 25.239 - eval_steps_per_second: 3.16 - epoch: 21.05 - step: 2000 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0003 - train_batch_size: 32 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 500 - num_epochs: 300 - mixed_precision_training: Native AMP ### Framework versions - Transformers 4.17.0.dev0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2.dev0 - Tokenizers 0.11.0
[ "# wav2vec2-xls-r-300m-demo-colab\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_voice dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.9475\n- eval_wer: 1.0377\n- eval_runtime: 70.5646\n- eval_samples_per_second: 25.239\n- eval_steps_per_second: 3.16\n- epoch: 21.05\n- step: 2000", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 32\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 500\n- num_epochs: 300\n- mixed_precision_training: Native AMP", "### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.2.dev0\n- Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n", "# wav2vec2-xls-r-300m-demo-colab\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_voice dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.9475\n- eval_wer: 1.0377\n- eval_runtime: 70.5646\n- eval_samples_per_second: 25.239\n- eval_steps_per_second: 3.16\n- epoch: 21.05\n- step: 2000", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 32\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 500\n- num_epochs: 300\n- mixed_precision_training: Native AMP", "### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.2.dev0\n- Tokenizers 0.11.0" ]
[ 61, 127, 6, 12, 8, 3, 117, 39 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n# wav2vec2-xls-r-300m-demo-colab\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_voice dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.9475\n- eval_wer: 1.0377\n- eval_runtime: 70.5646\n- eval_samples_per_second: 25.239\n- eval_steps_per_second: 3.16\n- epoch: 21.05\n- step: 2000## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 32\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 500\n- num_epochs: 300\n- mixed_precision_training: Native AMP### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.2.dev0\n- Tokenizers 0.11.0" ]
[ -0.09641500562429428, 0.10715430974960327, -0.0029268739745020866, 0.0581725649535656, 0.13200370967388153, 0.016933448612689972, 0.05336592346429825, 0.13264727592468262, -0.06887901574373245, 0.08316424489021301, 0.06682556122541428, 0.03769518435001373, 0.07348478585481644, 0.09125108271837234, -0.03380528837442398, -0.18851430714130402, -0.007282201200723648, -0.03343150019645691, -0.0501309297978878, 0.08846314996480942, 0.11351870000362396, -0.07282489538192749, 0.06178666651248932, 0.014240631833672523, -0.08950798958539963, 0.047069162130355835, -0.033761151134967804, -0.054260652512311935, 0.10835318267345428, 0.030403675511479378, 0.04747426509857178, 0.003244982333853841, 0.11365886777639389, -0.2745119631290436, -0.011876166798174381, 0.09059281647205353, 0.03302609175443649, 0.05503284931182861, 0.06372831016778946, -0.005708945915102959, 0.08227473497390747, -0.16674959659576416, 0.09669049829244614, 0.06279820203781128, -0.10202256590127945, -0.1637311726808548, -0.09763290733098984, 0.07297507673501968, 0.11997822672128677, 0.12887562811374664, -0.017956620082259178, 0.12920157611370087, -0.03551195189356804, 0.07957582175731659, 0.19351637363433838, -0.2773958146572113, -0.05620322376489639, -0.004180499352514744, 0.07178063690662384, 0.042672622948884964, -0.08841337263584137, 0.02621663361787796, 0.04152275249361992, 0.026541350409388542, 0.08864535391330719, -0.01641206629574299, -0.09679902344942093, -0.0052206385880708694, -0.10679255425930023, -0.04501388967037201, 0.18240682780742645, 0.09890451282262802, -0.05184757336974144, -0.09916283190250397, -0.03242188319563866, -0.12536534667015076, 0.0030944806057959795, -0.07104013860225677, 0.028049010783433914, -0.0369693785905838, -0.045863665640354156, -0.06436511129140854, -0.08308098465204239, -0.05732978507876396, 0.042899180203676224, 0.1246359646320343, 0.010303120128810406, 0.000730963540263474, -0.011211739853024483, 0.08875438570976257, -0.019392680376768112, -0.12341056019067764, -0.041714683175086975, 0.01589435525238514, -0.1280459761619568, -0.05208144336938858, -0.03706337884068489, -0.06381595879793167, -0.02345193363726139, 0.1799274981021881, -0.023953691124916077, 0.09029746055603027, 0.02082904428243637, -0.01678844727575779, -0.03177107498049736, 0.15168069303035736, -0.04044343903660774, -0.10147149860858917, -0.02620038203895092, 0.0934963971376419, -0.007989520207047462, -0.026048652827739716, -0.04861407354474068, -0.012016668915748596, 0.0711689218878746, 0.06140342727303505, -0.0203211959451437, 0.016057094559073448, -0.05926314741373062, -0.01555339153856039, 0.011390382423996925, -0.13040880858898163, 0.051102664321660995, -0.009128947742283344, -0.08176703751087189, -0.06585060805082321, 0.04754844680428505, 0.027418840676546097, -0.042276643216609955, 0.05973805859684944, -0.045270923525094986, -0.0193906482309103, -0.04837982729077339, -0.05943029746413231, 0.009597078897058964, -0.062577024102211, -0.0017732888227328658, -0.07854478061199188, -0.17644450068473816, -0.06365160644054413, 0.042808130383491516, -0.06618326902389526, -0.04750183969736099, -0.02919190563261509, -0.044831883162260056, 0.02150672674179077, -0.027063390240073204, 0.1410168707370758, -0.04950536787509918, 0.045936208218336105, 0.012234289199113846, 0.015623641200363636, 0.05521724373102188, 0.04262559860944748, -0.049255482852458954, 0.03956574201583862, -0.06352964788675308, 0.11217889189720154, -0.08564308285713196, 0.019462836906313896, -0.15138934552669525, -0.07377457618713379, -0.026718106120824814, -0.021045103669166565, 0.09029072523117065, 0.10860414057970047, -0.1706051528453827, -0.03282686322927475, 0.09097053855657578, -0.0441543310880661, -0.10897132754325867, 0.10301701724529266, -0.020613228902220726, 0.04102471470832825, 0.048744574189186096, 0.14199194312095642, 0.08878114819526672, -0.1832806020975113, -0.031430404633283615, -0.014387822709977627, 0.03799334540963173, 0.08833155781030655, 0.058251626789569855, -0.03449733555316925, 0.053420618176460266, -0.003909625578671694, -0.06013377383351326, -0.022149909287691116, -0.06609226018190384, -0.08983799070119858, -0.04240546375513077, -0.08362139761447906, 0.0019412129186093807, 0.012986686080694199, 0.003805631771683693, -0.07678163796663284, -0.14028224349021912, 0.06351735442876816, 0.12226907908916473, -0.031977951526641846, 0.01977098174393177, -0.0905681699514389, -0.0191472340375185, 0.01092536561191082, -0.025290969759225845, -0.18293949961662292, -0.08346867561340332, 0.028463659808039665, -0.07670639455318451, 0.028136735782027245, 0.01595343090593815, 0.06815335154533386, 0.04797971248626709, -0.03265075013041496, -0.027835272252559662, -0.12768946588039398, 0.003998733591288328, -0.07305840402841568, -0.1501397043466568, -0.08745826780796051, -0.024351133033633232, 0.23937252163887024, -0.20788362622261047, 0.009276206605136395, 0.027314599603414536, 0.1350811868906021, 0.007078273221850395, -0.07185547053813934, -0.014676050283014774, 0.023920023813843727, 0.00678189005702734, -0.09643173962831497, 0.01643909141421318, 0.016145657747983932, -0.09363329410552979, -0.06461050361394882, -0.1461854726076126, 0.008297763764858246, 0.06269725412130356, 0.05959564074873924, -0.09949501603841782, -0.0064914957620203495, -0.056999124586582184, -0.046440400183200836, -0.07561323046684265, -0.04268280044198036, 0.24859751760959625, 0.04971424117684364, 0.10970091819763184, -0.026114707812666893, -0.062459785491228104, 0.00701668718829751, 0.01620200276374817, -0.018163012340664864, 0.07805868983268738, 0.030141707509756088, -0.11627823114395142, 0.04405095800757408, 0.045136645436286926, 0.01226640772074461, 0.11403404176235199, -0.011669037863612175, -0.08201314508914948, -0.03992212563753128, 0.006960134021937847, 0.0064039588905870914, 0.1037159189581871, -0.13518112897872925, -0.005047958344221115, 0.030744222924113274, 0.0015090814558789134, 0.015670444816350937, -0.14711526036262512, 0.007943060249090195, 0.057009533047676086, -0.034293342381715775, 0.003349684877321124, -0.03757545351982117, 0.008975801058113575, 0.0558992438018322, 0.04134596511721611, -0.008602905087172985, 0.00008394291944568977, -0.025693254545331, -0.09621848165988922, 0.14941281080245972, -0.09135635197162628, -0.17973493039608002, -0.13409936428070068, 0.06084532290697098, -0.06316780298948288, -0.022572625428438187, 0.03726297989487648, -0.09057306498289108, -0.07522182166576385, -0.09113271534442902, 0.007525251712650061, -0.039357803761959076, -0.02171873301267624, 0.08926504105329514, 0.022042477503418922, 0.11390054225921631, -0.13788825273513794, 0.00736915273591876, 0.0007190764299593866, -0.07099670171737671, -0.03579074889421463, 0.07013055682182312, 0.11493739485740662, 0.09571176767349243, 0.006850794889032841, 0.03665817901492119, -0.017909133806824684, 0.23804020881652832, -0.1052807942032814, -0.005226793698966503, 0.11779440939426422, 0.013633416034281254, 0.04243205487728119, 0.11046449095010757, 0.025569070130586624, -0.10714075714349747, 0.03755849599838257, 0.08820342272520065, -0.013770390301942825, -0.2507075369358063, -0.043174341320991516, -0.018135329708456993, -0.08123669773340225, 0.11874550580978394, 0.05026834085583687, 0.023733187466859818, 0.030517367646098137, -0.022015372291207314, 0.02866598591208458, 0.010865825228393078, 0.08023575693368912, 0.08114023506641388, 0.04529750719666481, 0.0855412408709526, -0.00837028305977583, -0.00383385200984776, 0.051458872854709625, 0.0024771778844296932, 0.19015716016292572, 0.0025713560171425343, 0.14312982559204102, 0.023918936029076576, 0.13471221923828125, -0.06330940872430801, 0.02096414938569069, 0.04137705639004707, -0.0051349373534321785, 0.02717513032257557, -0.060200050473213196, -0.0389694981276989, 0.06701938807964325, 0.0019180495291948318, 0.01923222653567791, -0.08966933935880661, 0.061254482716321945, 0.030537588521838188, 0.3206011652946472, 0.055549200624227524, -0.28473949432373047, -0.07951223850250244, 0.0059974296018481255, -0.03189097344875336, -0.08025854080915451, -0.0161422211676836, 0.09254642575979233, -0.13760265707969666, 0.09140220284461975, -0.036124564707279205, 0.0944381058216095, -0.04464849457144737, 0.01701892912387848, 0.0541221909224987, 0.08170776814222336, 0.011774913407862186, 0.06832092255353928, -0.16466432809829712, 0.20402486622333527, 0.02930273860692978, 0.12774814665317535, -0.0590045191347599, 0.05013255402445793, -0.014995803125202656, 0.02869489975273609, 0.12916268408298492, 0.0014334978768602014, -0.017355823889374733, -0.18409138917922974, -0.08246740698814392, 0.023195791989564896, 0.1255500465631485, -0.0843842402100563, 0.09491489827632904, -0.040125250816345215, -0.005889258347451687, 0.03335119038820267, 0.00045933446381241083, -0.19070519506931305, -0.13420996069908142, 0.03534632548689842, 0.028820063918828964, 0.053810346871614456, -0.0696272924542427, -0.07033856213092804, -0.059549979865550995, 0.209079772233963, -0.019959719851613045, -0.028927844017744064, -0.14731696248054504, 0.0687781274318695, 0.12336859107017517, -0.05416952818632126, 0.017670461907982826, 0.03932694345712662, 0.13310986757278442, 0.020254097878932953, -0.03808916360139847, 0.05574988201260567, -0.06878898292779922, -0.14701804518699646, -0.04650731384754181, 0.15166093409061432, 0.05246669054031372, 0.042958181351423264, 0.02432781644165516, 0.023299675434827805, 0.01764030009508133, -0.0802546814084053, 0.043964043259620667, 0.0276072658598423, 0.034466661512851715, 0.02896917797625065, -0.024739328771829605, 0.03366810083389282, -0.07685329020023346, -0.03349149599671364, 0.11589004844427109, 0.2548646628856659, -0.0793604776263237, 0.062335629016160965, 0.06087693199515343, -0.07693358510732651, -0.13681694865226746, 0.047291260212659836, 0.12631377577781677, 0.020855825394392014, 0.0764467716217041, -0.16991503536701202, 0.08144666999578476, 0.11999265849590302, -0.021907342597842216, 0.012438664212822914, -0.28436312079429626, -0.1522117406129837, 0.06835254281759262, 0.06602240353822708, -0.01872413419187069, -0.13164924085140228, -0.05259311944246292, -0.06082027405500412, -0.18848609924316406, 0.05928366631269455, -0.08957106620073318, 0.0953148677945137, 0.02342389151453972, 0.04890126734972, 0.03563537076115608, -0.024188557639718056, 0.16371119022369385, 0.05173460394144058, 0.06260764598846436, -0.043185755610466, 0.0627278983592987, 0.07575913518667221, -0.08038771897554398, 0.09042596071958542, -0.020625542849302292, 0.04451427608728409, -0.15903617441654205, -0.029202258214354515, -0.06082470342516899, 0.07828175276517868, -0.05139943212270737, -0.057368528097867966, -0.013994206674396992, 0.028844470158219337, 0.06185852736234665, -0.028158102184534073, 0.05130289867520332, 0.0015826672315597534, 0.08842387795448303, 0.16038142144680023, 0.08087869733572006, -0.0350676029920578, -0.13800708949565887, 0.014939602464437485, -0.011651902459561825, 0.05135466903448105, -0.07545986026525497, 0.043748483061790466, 0.11808651685714722, 0.04887699708342552, 0.1609775274991989, -0.000797271030023694, -0.08058902621269226, 0.010976049117743969, 0.02143130451440811, -0.08795999735593796, -0.1570129245519638, -0.022285770624876022, -0.03708625212311745, -0.12035349011421204, -0.007555339485406876, 0.14519008994102478, -0.04665264114737511, -0.005950252525508404, -0.021151263266801834, 0.016476009041070938, -0.03676453232765198, 0.18933646380901337, 0.013855364173650742, 0.08689667284488678, -0.06637892872095108, 0.12465696781873703, 0.08343528211116791, -0.1008370965719223, 0.08178037405014038, 0.04964900389313698, -0.06854748725891113, -0.02590355835855007, 0.008479063399136066, 0.09318912029266357, -0.016597570851445198, -0.041375335305929184, -0.06610043346881866, -0.09177372604608536, 0.047976601868867874, 0.04113246127963066, 0.004496139474213123, -0.0205439031124115, -0.007874098606407642, 0.0184465441852808, -0.1311166137456894, 0.06908287107944489, 0.06320678442716599, 0.03556987643241882, -0.13242028653621674, 0.12059909850358963, 0.023106135427951813, 0.032284483313560486, 0.0034919960889965296, -0.007930121384561062, -0.06042769178748131, 0.003944353200495243, -0.151435986161232, -0.033014070242643356, -0.008587859570980072, 0.009821783751249313, -0.011296043172478676, -0.0422302670776844, -0.051781121641397476, 0.06091795861721039, -0.06571077555418015, -0.10267608612775803, 0.007364768069237471, 0.055965691804885864, -0.14504219591617584, -0.021104775369167328, 0.04423448070883751, -0.11445818841457367, 0.066587895154953, 0.05765673518180847, 0.025434846058487892, 0.007627996616065502, -0.0553252287209034, -0.008116771467030048, 0.03216109797358513, 0.030739611014723778, 0.057834770530462265, -0.12393556535243988, -0.019617903977632523, -0.026962101459503174, 0.03671584278345108, 0.006748678628355265, 0.04965759441256523, -0.10661984980106354, -0.048938438296318054, -0.04411165788769722, -0.033511918038129807, -0.04040253162384033, 0.03711630403995514, 0.10987512022256851, 0.04241419583559036, 0.14754153788089752, -0.06531073898077011, 0.041930247098207474, -0.2200222760438919, -0.03030194155871868, -0.011005372740328312, 0.0013175619533285499, -0.02088424377143383, -0.047415751963853836, 0.10068317502737045, -0.047869760543107986, 0.08308733999729156, -0.005450318567454815, 0.16592933237552643, 0.05564337223768234, -0.06807078421115875, -0.05303347483277321, 0.00481795147061348, 0.11525321751832962, 0.07510533928871155, -0.00014465241110883653, 0.0870656967163086, -0.030382944270968437, 0.07977087050676346, 0.0753851905465126, 0.13723193109035492, 0.14519304037094116, 0.01230346318334341, 0.06656121462583542, 0.06275536119937897, -0.14717206358909607, -0.1554001420736313, 0.08555996417999268, -0.05465801805257797, 0.12948067486286163, -0.05650731548666954, 0.0960073247551918, 0.09334473311901093, -0.17734836041927338, 0.06131904572248459, -0.06448780745267868, -0.09590553492307663, -0.09672882407903671, -0.032279375940561295, -0.07776165753602982, -0.11357205361127853, 0.037741269916296005, -0.09301255643367767, 0.05940549448132515, 0.06358058005571365, 0.007804872002452612, 0.02417203038930893, 0.14951162040233612, -0.051616597920656204, -0.012072745710611343, 0.07205814123153687, -0.005820452235639095, -0.015579581260681152, -0.06815104931592941, -0.03543657809495926, 0.06607615947723389, 0.022879566997289658, 0.08609513193368912, -0.02700803428888321, -0.020290035754442215, 0.03233448043465614, 0.015467829070985317, -0.09189783036708832, 0.007799078244715929, 0.012661808170378208, 0.027976952493190765, 0.05233195424079895, 0.07064932584762573, 0.019944455474615097, -0.036705709993839264, 0.2702510952949524, -0.07331639528274536, -0.06880702823400497, -0.1459127813577652, 0.11832019686698914, 0.05902698636054993, 0.013723879121243954, 0.04151660576462746, -0.12402509152889252, -0.0013391259126365185, 0.1419682800769806, 0.09103964269161224, -0.03586627170443535, -0.008696062490344048, -0.0318666473031044, -0.009303977712988853, -0.05547705292701721, 0.06834998726844788, 0.08950268477201462, -0.0037879194132983685, -0.05521733686327934, 0.03824132680892944, 0.0019036168232560158, -0.07156755775213242, -0.05309935659170151, 0.09134630113840103, -0.012098103761672974, 0.03408535569906235, -0.012304127216339111, 0.08560063689947128, 0.03005136549472809, -0.25151553750038147, 0.051696084439754486, -0.17067712545394897, -0.16603782773017883, -0.013784114271402359, 0.06884399801492691, -0.004690129309892654, 0.07900739461183548, 0.011663643643260002, -0.02148307114839554, 0.17717242240905762, -0.009726110845804214, -0.04967518523335457, -0.13641589879989624, 0.0774613618850708, -0.08859752863645554, 0.24279144406318665, -0.015604371204972267, 0.04871654883027077, 0.0952170193195343, 0.011853877454996109, -0.15249228477478027, 0.043469421565532684, 0.07312192767858505, -0.06279654055833817, 0.04648713022470474, 0.16839593648910522, -0.06056392565369606, 0.13324648141860962, 0.047513578087091446, -0.14489294588565826, -0.01819266565144062, -0.010410605929791927, 0.01650630496442318, -0.07426631450653076, -0.010910597629845142, -0.047416847199201584, 0.1477961540222168, 0.17943941056728363, -0.04208078980445862, 0.010923157446086407, -0.08988767117261887, 0.016623487696051598, 0.04124223440885544, 0.13100995123386383, -0.022571519017219543, -0.20901404321193695, 0.045579396188259125, 0.025202717632055283, 0.027025410905480385, -0.2278386801481247, -0.12451989948749542, 0.08080022037029266, -0.059447307139635086, 0.00658686738461256, 0.1042545810341835, 0.07734460383653641, 0.015413044951856136, -0.04144145920872688, -0.13561715185642242, -0.019584108144044876, 0.1646343171596527, -0.14643441140651703, -0.0478411465883255 ]
null
null
null
testing for nothing
{}
null
Mahmoud97/Temp
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
testing for nothing
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # Persian-Image-Captioning This model is a fine-tuned version of [Vision Encoder Decoder](https://huggingface.co/docs/transformers/model_doc/vision-encoder-decoder) on coco-flickr-farsi. ### Framework versions - Transformers 4.12.5 - Pytorch 1.9.1 - Datasets 1.16.1 - Tokenizers 0.10.3
{"tags": ["generated_from_trainer"]}
null
MahsaShahidi/Persian-Image-Captioning
[ "transformers", "pytorch", "vision-encoder-decoder", "generated_from_trainer", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #vision-encoder-decoder #generated_from_trainer #endpoints_compatible #has_space #region-us
# Persian-Image-Captioning This model is a fine-tuned version of Vision Encoder Decoder on coco-flickr-farsi. ### Framework versions - Transformers 4.12.5 - Pytorch 1.9.1 - Datasets 1.16.1 - Tokenizers 0.10.3
[ "# Persian-Image-Captioning\n\nThis model is a fine-tuned version of Vision Encoder Decoder on coco-flickr-farsi.", "### Framework versions\n\n- Transformers 4.12.5\n- Pytorch 1.9.1\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #vision-encoder-decoder #generated_from_trainer #endpoints_compatible #has_space #region-us \n", "# Persian-Image-Captioning\n\nThis model is a fine-tuned version of Vision Encoder Decoder on coco-flickr-farsi.", "### Framework versions\n\n- Transformers 4.12.5\n- Pytorch 1.9.1\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ 40, 35, 31 ]
[ "passage: TAGS\n#transformers #pytorch #vision-encoder-decoder #generated_from_trainer #endpoints_compatible #has_space #region-us \n# Persian-Image-Captioning\n\nThis model is a fine-tuned version of Vision Encoder Decoder on coco-flickr-farsi.### Framework versions\n\n- Transformers 4.12.5\n- Pytorch 1.9.1\n- Datasets 1.16.1\n- Tokenizers 0.10.3" ]
[ -0.11858084797859192, -0.010509070008993149, -0.002176702255383134, 0.0672345757484436, 0.12874557077884674, 0.00915249902755022, 0.0733962431550026, 0.08494779467582703, -0.11146198958158493, 0.018460949882864952, 0.11049100011587143, 0.10651283711194992, 0.05576471611857414, 0.1215667799115181, 0.023554299026727676, -0.3380311131477356, 0.008271592669188976, 0.1373019516468048, -0.0436415821313858, 0.10663414001464844, 0.09513246268033981, -0.10683493316173553, 0.10583172738552094, 0.017214933410286903, -0.2837218642234802, -0.003964389208704233, -0.06487669050693512, -0.13188225030899048, 0.06862406432628632, 0.023824501782655716, 0.10943679511547089, -0.018886059522628784, 0.024262038990855217, -0.029910199344158173, 0.026586364954710007, 0.008755698800086975, -0.04668772220611572, 0.05146968364715576, 0.0855315551161766, -0.03528216481208801, 0.13401535153388977, -0.0423126257956028, 0.007041268516331911, -0.0407111681997776, -0.08063215762376785, -0.268573522567749, 0.023994261398911476, 0.09795579314231873, 0.06043363735079765, 0.08897978812456131, 0.029200976714491844, 0.020637383684515953, -0.04066074267029762, 0.1739472895860672, 0.12628735601902008, -0.11677997559309006, -0.05862385034561157, -0.05054369196295738, -0.0786820650100708, 0.02240053191781044, -0.07291287928819656, 0.04450662061572075, -0.0005918019451200962, 0.032607730478048325, 0.056553516536951065, -0.06441517174243927, -0.10818216949701309, -0.08761250227689743, -0.07879166305065155, -0.12992028892040253, 0.14720900356769562, -0.03414181247353554, 0.020914796739816666, -0.06595505028963089, -0.14621953666210175, -0.14257806539535522, -0.08150029927492142, 0.05944467708468437, -0.026194952428340912, -0.03371802717447281, -0.07897799462080002, -0.0392129011452198, -0.15570823848247528, -0.021325401961803436, -0.14873386919498444, 0.1987704336643219, 0.0652332603931427, 0.12334232777357101, -0.11331824213266373, 0.09219324588775635, 0.10839717090129852, -0.16498716175556183, 0.02786320261657238, -0.08751100301742554, 0.09164202958345413, 0.08875947445631027, -0.0661938488483429, -0.0023924200795590878, -0.06129371002316475, 0.01570967026054859, -0.04862509295344353, 0.05465064197778702, 0.04664209857583046, 0.10375101119279861, -0.03060557134449482, 0.16923420131206512, -0.04560788720846176, 0.1097358837723732, 0.020213255658745766, 0.004864614922553301, 0.06550666689872742, -0.03702447935938835, -0.11708898842334747, -0.03407292813062668, 0.06536058336496353, -0.01975785568356514, -0.08866088837385178, 0.0731566920876503, 0.045795731246471405, -0.019786396995186806, 0.1501937359571457, -0.08872264623641968, 0.005461800377815962, -0.007629093248397112, -0.05102206766605377, 0.06490781903266907, 0.12024740129709244, -0.0946539118885994, -0.08587386459112167, -0.02388446405529976, -0.04110078513622284, 0.11853794008493423, -0.05343521758913994, -0.06791114062070847, 0.008554059080779552, -0.13466665148735046, 0.06219254434108734, -0.20507752895355225, 0.019989237189292908, 0.09543514996767044, 0.05979842320084572, 0.007885477505624294, 0.07975725084543228, 0.015384442172944546, -0.10628995299339294, 0.036276061087846756, 0.004692059010267258, -0.06414070725440979, 0.00928114727139473, 0.12917804718017578, 0.07195033133029938, 0.14038841426372528, -0.1601700782775879, 0.05945448949933052, -0.10662923753261566, 0.006429249886423349, -0.248763307929039, 0.13535764813423157, -0.008381086401641369, -0.016047945246100426, -0.006377636454999447, -0.15540166199207306, 0.01096669677644968, 0.001606081728823483, 0.03886951506137848, 0.08721697330474854, -0.1275898963212967, -0.06064664199948311, 0.1320585012435913, -0.13957594335079193, -0.11415260285139084, 0.08319156616926193, -0.0020747657399624586, -0.06676330417394638, 0.013461609371006489, 0.16115818917751312, 0.141910582780838, -0.11116288602352142, -0.032908231019973755, 0.11232452094554901, -0.061832889914512634, -0.07335923612117767, 0.06636931747198105, 0.11230123043060303, 0.12976914644241333, 0.03720897436141968, -0.07437671720981598, 0.13251395523548126, -0.07576590776443481, -0.08368392288684845, -0.03140828758478165, -0.00023706236970610917, 0.03707719221711159, 0.08344700932502747, 0.12060535699129105, -0.040861159563064575, -0.05316273495554924, 0.024855436757206917, 0.08441503345966339, -0.10865321010351181, 0.062387507408857346, -0.1349078118801117, 0.09840600192546844, -0.16656066477298737, 0.010033756494522095, -0.16453072428703308, 0.029510339722037315, -0.03520269691944122, 0.0181143619120121, -0.027140945196151733, -0.01869957521557808, 0.04901263117790222, 0.09147483110427856, -0.0209227092564106, -0.08405831456184387, -0.025956595316529274, -0.00318895629607141, -0.016917049884796143, -0.07108104228973389, -0.041431594640016556, -0.015589229762554169, 0.10577832162380219, 0.01815730892121792, -0.00986840482801199, 0.1314270794391632, 0.1455809324979782, -0.01018349640071392, 0.0347038134932518, -0.012436950579285622, 0.06944084912538528, -0.0017281308537349105, -0.07222144305706024, 0.08190645277500153, -0.01762041077017784, 0.023236898705363274, 0.13148954510688782, -0.17601686716079712, 0.1371825486421585, 0.23358818888664246, -0.2618958055973053, -0.013457884080708027, 0.07363681495189667, -0.006272227969020605, 0.012181384488940239, 0.09823142737150192, 0.030552558600902557, 0.12808144092559814, -0.08958496898412704, 0.1908087283372879, -0.0707138255238533, 0.04653124511241913, 0.10219674557447433, -0.029821190983057022, -0.09802127629518509, 0.03977256268262863, -0.01711072400212288, -0.20614583790302277, 0.11859060078859329, 0.15648281574249268, -0.018465986475348473, 0.13223037123680115, -0.009778243489563465, -0.06999281048774719, 0.018933545798063278, -0.005130297504365444, -0.051399338990449905, 0.18429985642433167, -0.15093640983104706, -0.1250409483909607, 0.026122596114873886, -0.04228520765900612, 0.05744102969765663, -0.18470071256160736, 0.05076879262924194, 0.014744107611477375, 0.016905805096030235, 0.016836080700159073, 0.062031473964452744, 0.01667514443397522, 0.06705456972122192, -0.03642777353525162, -0.0950934886932373, 0.07899295538663864, 0.026480792090296745, -0.011089173145592213, 0.13522709906101227, -0.11928752809762955, -0.4247627556324005, -0.14863835275173187, -0.03491506725549698, -0.03451911360025406, 0.027590351179242134, 0.07815178483724594, -0.05078449472784996, -0.01191239058971405, -0.05240775644779205, -0.04990692436695099, -0.09011511504650116, 0.020587246865034103, -0.01864376664161682, -0.040579088032245636, 0.014630384743213654, -0.10254304856061935, -0.03444899246096611, -0.05817139521241188, -0.008173953741788864, 0.11186790466308594, -0.05724864825606346, 0.10950905084609985, 0.06358468532562256, -0.08304952830076218, 0.07721684128046036, -0.037112798541784286, 0.19069397449493408, -0.15379898250102997, -0.0003837620315607637, 0.20730376243591309, -0.00267557380720973, 0.039822544902563095, 0.0625464916229248, 0.013734813779592514, -0.04386004060506821, -0.06065578758716583, -0.07285947352647781, -0.1028355211019516, 0.04780282825231552, -0.06272248923778534, -0.11156893521547318, -0.04471728578209877, 0.09483688324689865, 0.03549965098500252, 0.00384073075838387, 0.11826376616954803, -0.0457480363547802, 0.03129532188177109, -0.037175197154283524, 0.08980141580104828, 0.200892373919487, -0.02595173381268978, 0.09412094205617905, -0.12170109897851944, -0.05151499807834625, 0.039957381784915924, 0.0725889652967453, 0.20465710759162903, -0.0804622620344162, 0.017259595915675163, 0.04062788933515549, 0.17253905534744263, 0.13211148977279663, 0.02321759983897209, -0.012751667760312557, 0.0021649268455803394, 0.013945715501904488, -0.043068159371614456, -0.09772767126560211, -0.03062550164759159, -0.02995993196964264, -0.005621706135571003, -0.05494522303342819, 0.04708738997578621, 0.07688721269369125, 0.1439063996076584, 0.029992103576660156, -0.36603888869285583, -0.051097970455884933, -0.011212212964892387, 0.045969683676958084, -0.10742297023534775, 0.020719749853014946, 0.1248643696308136, -0.055782489478588104, 0.062944695353508, -0.09188717603683472, 0.061313338577747345, -0.08113493770360947, 0.0014093808131292462, -0.0031981959473341703, -0.05673495680093765, 0.09662366658449173, 0.04796610027551651, -0.15521779656410217, 0.17229051887989044, 0.02512819878757, 0.04440218210220337, -0.07380248606204987, 0.007169265765696764, 0.06255880743265152, 0.1815691888332367, 0.07386543601751328, 0.01722891442477703, 0.03043191134929657, -0.19172103703022003, -0.014363590627908707, 0.02993772178888321, 0.15890070796012878, 0.07122006267309189, 0.004295533522963524, -0.004147541709244251, -0.006846328265964985, -0.01651587523519993, 0.03663492947816849, 0.08368989080190659, -0.17321529984474182, 0.04969372972846031, 0.03280375152826309, 0.010110052302479744, -0.016655486077070236, -0.048475492745637894, -0.09429556876420975, 0.0005583158927038312, -0.06629049777984619, -0.10419633984565735, -0.07674257457256317, 0.01423836313188076, 0.04809340462088585, -0.09763818979263306, 0.1415129005908966, -0.0887177586555481, 0.0448213666677475, 0.009846151806414127, -0.17879660427570343, 0.04195418953895569, -0.07723508030176163, 0.009328321553766727, 0.04433079808950424, 0.1214514747262001, -0.08313591778278351, -0.03958698734641075, 0.012163552455604076, 0.019328869879245758, -0.09766076505184174, -0.05502457916736603, 0.008803892880678177, -0.009391591884195805, 0.0795242115855217, 0.012788873165845871, 0.05182315409183502, -0.07986117154359818, -0.002696909010410309, 0.08912362158298492, 0.12387257069349289, -0.0018970892997458577, -0.09423055499792099, 0.005878969095647335, 0.10525668412446976, 0.03491600230336189, -0.2617010176181793, -0.03976587578654289, 0.037415310740470886, 0.003636689390987158, -0.06228971853852272, -0.11420128494501114, 0.04826051741838455, 0.012927710078656673, -0.013902245089411736, 0.11167509108781815, -0.2928379774093628, -0.044930487871170044, 0.12455630302429199, 0.1354919970035553, 0.10585623979568481, -0.14434199035167694, 0.040615443140268326, 0.0020578268449753523, -0.2026260495185852, 0.05704546347260475, 0.05266934260725975, 0.15227706730365753, -0.03593820333480835, 0.0326433889567852, -0.0016474121948704123, -0.03516756743192673, 0.11863119155168533, -0.10880634188652039, 0.07061003148555756, -0.10266055166721344, -0.06739743798971176, 0.2207898497581482, 0.0001602197444299236, 0.03468023240566254, 0.047734688967466354, 0.09588226675987244, -0.07545355707406998, 0.009100031107664108, -0.08495817333459854, -0.03099333867430687, 0.020552657544612885, -0.011042356491088867, -0.0732838362455368, -0.022575780749320984, 0.029279522597789764, 0.011749223805963993, 0.19808471202850342, 0.02932249940931797, -0.05490376427769661, 0.07360226660966873, -0.04496050626039505, -0.10504982620477676, -0.17982816696166992, -0.08386271446943283, -0.020609520375728607, 0.15575970709323883, -0.15103378891944885, 0.02883743867278099, 0.07969444245100021, 0.026743125170469284, 0.03628190606832504, 0.05683052912354469, 0.029043877497315407, 0.07988949865102768, 0.08745162189006805, -0.10638850927352905, -0.11798597872257233, -0.04930608347058296, 0.04986707866191864, 0.11613348126411438, 0.12297026067972183, 0.1158810555934906, -0.0844189003109932, 0.015735140070319176, -0.03419855982065201, -0.03523898497223854, -0.026972759515047073, 0.042210597544908524, 0.042189229279756546, 0.00968969240784645, -0.15467089414596558, 0.10951361805200577, -0.0014750101836398244, -0.17220334708690643, 0.0069142975844442844, 0.08883892744779587, -0.14768870174884796, -0.08536422997713089, -0.12857672572135925, -0.005854194518178701, -0.098391093313694, -0.09666876494884491, -0.032229233533144, -0.09367221593856812, 0.03335772454738617, 0.1416018307209015, 0.11165408790111542, 0.013664177618920803, -0.07326210290193558, 0.05087513476610184, -0.09746728092432022, 0.009988603182137012, -0.10166376084089279, 0.05438445135951042, -0.12326210737228394, 0.10176156461238861, 0.050829485058784485, 0.17126493155956268, -0.09015525877475739, -0.07292250543832779, 0.005583516322076321, 0.05532611533999443, -0.08253797143697739, 0.021725110709667206, -0.09614340215921402, -0.016223115846514702, -0.02454770728945732, -0.010610255412757397, -0.05073975771665573, 0.05383832007646561, -0.05007065460085869, -0.010486453771591187, 0.01731974445283413, -0.010996010154485703, -0.07614276558160782, -0.03134734183549881, -0.04495792090892792, -0.049184806644916534, 0.0772036463022232, 0.14554205536842346, -0.06893005222082138, 0.03133460134267807, 0.011936888098716736, -0.17658139765262604, 0.1390853226184845, 0.023249000310897827, 0.013706778176128864, 0.05136008933186531, 0.03944125398993492, 0.04335235059261322, 0.00232271128334105, -0.020912498235702515, 0.1619967818260193, -0.062034547328948975, -0.046229153871536255, -0.09502699971199036, 0.020726868882775307, -0.08186797797679901, 0.12249362468719482, 0.10034163296222687, 0.07196641713380814, 0.06009199097752571, -0.021204344928264618, 0.004949015099555254, -0.05685851350426674, -0.02267269231379032, -0.04078388214111328, -0.19409921765327454, -0.028335174545645714, -0.02733713760972023, 0.039597973227500916, -0.05848481506109238, 0.11487055569887161, 0.022574517875909805, -0.005458040162920952, 0.007071688771247864, 0.09851738810539246, -0.041090380400419235, 0.022232884541153908, 0.21445271372795105, 0.02534380555152893, -0.024248898029327393, 0.05320313572883606, 0.09096324443817139, 0.08071958273649216, 0.17752614617347717, -0.07169849425554276, 0.1273156702518463, -0.02019837126135826, 0.14346152544021606, 0.026577802374958992, 0.03369583562016487, -0.16714754700660706, -0.1303476244211197, -0.03242214396595955, 0.06673610210418701, -0.05755449831485748, -0.03909073770046234, 0.2559654414653778, -0.011436347849667072, 0.06483288109302521, 0.03234143182635307, -0.0559481717646122, 0.030735177919268608, -0.12087734788656235, -0.049745913594961166, -0.10325437784194946, 0.026833035051822662, -0.023887859657406807, 0.00443089846521616, 0.18802374601364136, 0.01680661365389824, -0.06335892528295517, 0.28377658128738403, -0.004838112276047468, -0.0836573988199234, 0.10516194999217987, 0.022014299407601357, 0.016644347459077835, 0.024786120280623436, -0.02535509690642357, 0.04765031859278679, -0.026666462421417236, 0.036906518042087555, -0.005091629922389984, 0.00682472251355648, 0.04844560846686363, -0.0677061453461647, -0.07011761516332626, -0.013720078393816948, 0.0525173582136631, 0.04144889861345291, 0.08796218037605286, -0.015408341772854328, 0.01403647381812334, -0.038386270403862, 0.14508692920207977, -0.05471792072057724, -0.08263678103685379, -0.051573481410741806, 0.0884656235575676, 0.004276241175830364, 0.03143707290291786, 0.016087878495454788, -0.06608092784881592, -0.10924108326435089, 0.17561814188957214, 0.20380254089832306, -0.0505651980638504, 0.011338943615555763, 0.006632410455495119, 0.012590214610099792, -0.003958613146096468, 0.1233874186873436, 0.08603522181510925, 0.20454959571361542, -0.0739845484495163, -0.09255501627922058, -0.10838575661182404, 0.00892880279570818, -0.0981372594833374, -0.02212342619895935, 0.031119106337428093, -0.0640547052025795, -0.09802734851837158, -0.00429307809099555, -0.036118727177381516, 0.04928705096244812, 0.21400368213653564, -0.15580908954143524, -0.03471853956580162, 0.027879614382982254, 0.13628900051116943, 0.03407568484544754, 0.014904545620083809, -0.050609420984983444, 0.04744361340999603, 0.05225585028529167, 0.04039944335818291, -0.135981023311615, -0.03066924586892128, 0.016630781814455986, -0.2354700118303299, 0.07362259924411774, -0.0330500490963459, 0.09353949874639511, 0.05207068845629692, 0.10577936470508575, -0.027430254966020584, 0.0659915953874588, -0.005940051283687353, -0.05012151226401329, 0.0014683505287393928, 0.15196460485458374, 0.010460158810019493, -0.08824139088392258, 0.002562102396041155, -0.05655534565448761, -0.0016703065484762192, -0.07817530632019043, 0.0018614869331941009, -0.0012585490476340055, -0.05772830918431282, -0.05742236599326134, 0.0806475505232811, 0.1006416603922844, 0.005457485560327768, -0.06470649689435959, -0.049885381013154984, -0.03475040942430496, 0.09479866921901703, -0.15075843036174774, -0.03427831456065178, -0.11562879383563995, -0.06825532019138336, -0.01670905575156212, -0.010405609384179115, 0.03045092150568962, -0.07068680226802826, -0.04764159396290779, -0.06994683295488358, -0.026189688593149185, 0.019536832347512245, 0.018944939598441124, 0.020907267928123474, -0.03797929361462593, 0.017649298533797264, 0.006959564983844757, 0.07171092182397842, -0.13002221286296844, -0.09763447940349579 ]