modelId
stringlengths
4
81
tags
list
pipeline_tag
stringclasses
17 values
config
dict
downloads
int64
0
59.7M
first_commit
timestamp[ns, tz=UTC]
card
stringlengths
51
438k
embedding
list
Dazai/Ok
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- thumbnail: https://huggingface.co/front/thumbnails/dialogpt.png tags: - conversational license: mit --- # DialoGPT Trained on the Speech of a Game Character This is an instance of [microsoft/DialoGPT-medium](https://huggingface.co/microsoft/DialoGPT-medium) trained on a game character, Joshua from [The World Ends With You](https://en.wikipedia.org/wiki/The_World_Ends_with_You). The data comes from [a Kaggle game script dataset](https://www.kaggle.com/ruolinzheng/twewy-game-script). I built a Discord AI chatbot based on this model. [Check out my GitHub repo.](https://github.com/RuolinZheng08/twewy-discord-chatbot) Chat with the model: ```python from transformers import AutoTokenizer, AutoModelWithLMHead tokenizer = AutoTokenizer.from_pretrained("scottastrong/DialogGPT-medium-joshua") model = AutoModelWithLMHead.from_pretrained("scottastrong/DialogGPT-medium-joshua") # Let's chat for 4 lines for step in range(4): # 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') # print(new_user_input_ids) # 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=200, pad_token_id=tokenizer.eos_token_id, no_repeat_ngram_size=3, do_sample=True, top_k=100, top_p=0.7, temperature=0.8 ) # pretty print last ouput tokens from bot print("JoshuaBot: {}".format(tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True))) ```
[ -0.0315883569419384, -0.006760313641279936, 0.003566568251699209, 0.03730595111846924, 0.0608547106385231, 0.01743558794260025, -0.005330248735845089, -0.014949663542211056, -0.01389484852552414, 0.0467093400657177, 0.01976034604012966, 0.00263960100710392, 0.00990437064319849, 0.03225544095039368, -0.024671735242009163, -0.024391310289502144, -0.02622530609369278, 0.00043688813457265496, -0.023996785283088684, 0.011716227047145367, 0.015854550525546074, 0.030441537499427795, 0.003942615818232298, -0.0187159962952137, -0.013291056267917156, 0.03290531411767006, 0.005486080422997475, 0.021362008526921272, 0.01573721133172512, -0.0402253195643425, 0.022244581952691078, -0.03901517018675804, -0.03148834407329559, -0.018761243671178818, -0.02822813019156456, -0.02714979462325573, -0.0018468268681317568, -0.010397142730653286, -0.015432526357471943, 0.051398731768131256, -0.016933897510170937, -0.025138260796666145, 0.012223800644278526, -0.015049375593662262, 0.06386148184537888, -0.003902971977367997, -0.06473051011562347, 0.033660758286714554, 0.02489512227475643, -0.0015259559731930494, -0.043834857642650604, -0.04497848078608513, -0.043335095047950745, 0.002609334886074066, -0.01614338345825672, -0.0193814467638731, -0.05358050391077995, -0.03696475923061371, 0.09192430973052979, -0.03304629400372505, -0.021890126168727875, 0.020814169198274612, -0.04798228666186333, 0.01663399487733841, 0.025639811530709267, -0.04993589222431183, -0.0016829364467412233, -0.04686727374792099, 0.011492457240819931, -0.018920157104730606, 0.04258280247449875, -0.04085663706064224, 0.027146732434630394, -0.10207929462194443, 0.007836518809199333, -0.018997671082615852, 0.03382706642150879, 0.045654889196157455, -0.04872357100248337, 0.06391577422618866, 0.022398067638278008, -0.00019312008225824684, 0.031811587512493134, -0.009107014164328575, -0.0356631726026535, 0.024540890008211136, -0.039399128407239914, 0.006642306223511696, 0.0006075301207602024, 0.057706914842128754, -0.04001766815781593, -0.05233926326036453, -0.05547192320227623, -0.03801170364022255, -0.017906466498970985, 0.05671842768788338, 0.04348117113113403, -0.003513799514621496, 0.032785091549158096, 0.041338998824357986, 0.013662703335285187, 0.051820624619722366, -0.021244460716843605, 0.029028937220573425, -0.006737518589943647, 0.019403114914894104, 0.008931848220527172, -0.031565871089696884, -0.060548897832632065, 0.0012134655844420195, 0.021908162161707878, -0.021243514493107796, -0.0417383648455143, 0.038044899702072144, 0.020662227645516396, -0.012071051634848118, 0.029176099225878716, -0.022098161280155182, -0.039157934486866, -0.056567396968603134, 0.04799506068229675, 0.009610387496650219, -0.02471967041492462, 0.012668145820498466, -0.04908522590994835, 0.02329760417342186, -0.04310939460992813, -0.038848910480737686, 0.018263716250658035, 0.026448333635926247, 0.012219388969242573, 0.06017112731933594, -0.0025123071391135454, -0.041242387145757675, 0.007541138678789139, 0.031051618978381157, -0.04112442210316658, 0.03297841548919678, 0.009851844981312752, 0.10205147415399551, -0.0840616449713707, -0.06974445283412933, -0.0019953339360654354, 0.021905524656176567, -0.03599508851766586, -0.0049858707934618, 0.021277109161019325, 0.006735850591212511, -0.02429957129061222, 0.023254716768860817, 0.04978805035352707, -0.053707871586084366, -0.02114892564713955, 0.03725533187389374, 0.010662036016583443, 0.0335991345345974, -0.04843859374523163, -0.017115626484155655, 0.009625460021197796, -0.020132241770625114, -0.04137631133198738, 0.0500442199409008, -0.02606932260096073, -0.0408494807779789, -0.05251801386475563, -0.032814785838127136, 0.02665627747774124, 0.07699663937091827, -0.019033005461096764, -0.028789373114705086, 0.0037235040217638016, 0.017455514520406723, 0.04295691102743149, 0.037018682807683945, -0.014094910584390163, 0.02428486756980419, 0.05800604075193405, 0.030361127108335495, -0.034550752490758896, 0.05102575197815895, 0.01412542350590229, -0.036062102764844894, -0.03684474155306816, -0.01758221536874771, 0.016146013513207436, -0.020761478692293167, 0.028656307607889175, 0.023239167407155037, -0.028429655358195305, -0.03880245238542557, -0.01805969513952732, 0.05119200050830841, -0.015197956003248692, -0.012816805392503738, -0.020075729116797447, -0.014800677075982094, -0.014780393801629543, 0.07017688453197479, -0.025653868913650513, -0.003699051681905985, -0.04116787761449814, -0.019493738189339638, 0.0009081304306164384, 0.019054127857089043, 0.04321287199854851, 0.04616789519786835, 0.009954429231584072, 0.09447428584098816, -0.031855259090662, 0.014397192746400833, -0.05771077796816826, -0.05407342687249184, 0.025942200794816017, 0.06118343770503998, 0.03423210233449936, 0.06362833827733994, -0.0015947516076266766, -0.03216685727238655, 0.028853727504611015, 0.08526507019996643, 0.04301835596561432, -0.0003124150971416384, -0.030063150450587273, 0.0019037585007026792, 0.04031330347061157, 0.06912539154291153, -0.04351908713579178, -0.032891251146793365, 0.014173359610140324, 0.0295347161591053, -0.005094027612358332, -0.005797915626317263, -0.02108819968998432, 0.025910580530762672, -0.05313055217266083, -0.08469356596469879, 0.06311115622520447, 0.030550431460142136, 0.01943369023501873, 0.007760127540677786, 0.015503883361816406, -0.005766279064118862, 0.038460493087768555, -0.009723576717078686, -0.015446782112121582, -0.06250327825546265, 0.015539982356131077, 0.03828912228345871, 0.03626903146505356, -0.041188403964042664, 0.045509591698646545, 0.0016721494030207396, -0.010154866613447666, 0.03243524208664894, -0.02659057080745697, 0.035377971827983856, 0.05990122631192207, 0.03397670015692711, -0.014733442105352879, 0.02012898400425911, -0.004410014022141695, 0.04428804665803909, 0.029407337307929993, -0.01964804343879223, 0.04080693796277046, 0.008546129800379276, 0.025414563715457916, 0.0819842591881752, 0.026033805683255196, 0.003215119009837508, 0.007361435331404209, 0.09267256408929825, 0.00929553434252739, 0.01502635795623064, 0.05973219498991966, -0.026464181020855904, 0.010445338673889637, -0.03610440343618393, 0.008319844491779804, -0.004392234608530998, -0.013892698101699352, 0.040603846311569214, 0.03889116272330284, -0.014489533379673958, 0.024355120956897736, -0.009231597185134888, -0.006188120227307081, 0.042826537042856216, -0.010539733804762363, -0.01939903199672699, -0.007374361157417297, -0.049751896411180496, 0.007077016402035952, -0.08202693611383438, -0.04442615434527397, -0.054582126438617706, -0.030840575695037842, -0.011790703982114792, -0.09382718056440353, -0.009987483732402325, -0.061046432703733444, -0.01754600927233696, 0.02505926787853241, -0.014158157631754875, 0.0018649400444701314, -0.02030092291533947, 0.013751580379903316, -0.04834960028529167, -0.03742371127009392, -0.05772671848535538, -0.0342000350356102, -0.022591931745409966, -0.06149943917989731, 0.03232849761843681, 0.016863593831658363, 0.005061135161668062, -0.010167472064495087, -0.011200889945030212, -0.039182133972644806, -0.01318612415343523, 0.04853247478604317, 0.029203003272414207, -0.045981310307979584, -0.06054902821779251, 0.024757398292422295, -0.026734471321105957, 0.03493618220090866, 0.015349200926721096, -0.027592388913035393, 0.06490516662597656, 0.06576807796955109, -0.019696606323122978, 0.006974388845264912, -0.029001694172620773, -0.0618305504322052, -0.0454108826816082, -0.020533515140414238, -0.04528482258319855, -0.024107512086629868, -0.019574018195271492, -0.05628184229135513, -0.05062923580408096, -0.03322850167751312, 0.004431181121617556, 0.00999888963997364, 0.008960177190601826, 0.0494060255587101, 0.03668178245425224, 0.02830033004283905, 0.05091455206274986, -0.061040256172418594, -0.006998557131737471, 0.05180925130844116, 0.014335078187286854, 0.006112043745815754, -0.09979338198900223, -0.04353686049580574, 0.019592275843024254, 0.04474171623587608, -0.019517282024025917, -0.00898388959467411, 0.06636674702167511, 0.020856212824583054, -0.014776318334043026, 0.015986457467079163, -0.04510852321982384, -0.006762600038200617, -0.008276318199932575, -0.01935715228319168, -0.032689400017261505, -0.0507962740957737, -0.009760476648807526, -0.01502128504216671, 0.03783969208598137, -0.05273041874170303, -0.07095236331224442, -0.04249740019440651, 0.017665723338723183, 0.012142137624323368, -0.01104004867374897, -0.04609811305999756, 0.001173039898276329, -0.06841274350881577, -0.007245173212140799, 0.02910567820072174, 0.0024539718870073557, 0.028482120484113693, 0.031224239617586136, 0.026662876829504967, -0.0061623589135706425, 0.038291554898023605, 0.018697109073400497, 0.05408668890595436, -0.004685163497924805, -0.0532868430018425, 0.0034547753166407347, -0.018265841528773308, 0.026687687262892723, -0.0026021867524832487, -0.019267495721578598, -0.043581027537584305, -0.08267144113779068, -0.026565782725811005, 0.000011536089004948735, -0.013073461130261421, -0.005509277805685997, 0.057987865060567856, -0.03107372671365738, 0.0053612301126122475, 0.0014397797640413046, 0.01717217266559601, 0.07253430038690567, -0.044499028474092484, 0.05884871631860733, 0.007232630159705877, 0.060791146010160446, -0.05553366243839264, 0.00815606489777565, -0.031031711027026176, 0.0011070918990299106, -0.0183758195489645, 0.0682433620095253, 0.030988622456789017, 0.08618693053722382, 0.054371170699596405, 0.026749884709715843, -0.04848382622003555, 0.014489574357867241, 0.034080978482961655, -0.032637983560562134, -0.03216766193509102, -0.01298313308507204, -0.020144445821642876, -0.01610163412988186, -0.0006922215688973665, -0.006721619050949812, 0.028135662898421288, 0.04785159230232239, 0.010669508948922157, -0.015003377571702003, 0.011229167692363262, -0.041956741362810135, -0.009434137493371964, -0.06394222378730774, -0.0373629629611969, 0.020696405321359634, 0.0008313997532241046, 0.0183632280677557, 0.039512377232313156, 0.03190423548221588, 0.05574563518166542, 0.02509990520775318, -0.024554384872317314, -0.04264463111758232, 0.050035763531923294, 0.037628885358572006, -0.03194992616772652, -0.05363893136382103, -0.03668127581477165, 0.023955294862389565, 0.020694678649306297, -0.031115354970097542, -0.07320620119571686, 0.025523701682686806, 0.05221901834011078, -0.03729548677802086, 0.03824898973107338, -0.00837971642613411, 0.039427973330020905, 0.0517430454492569, 0.012718213722109795, 0.0322863794863224, -0.030496926978230476, 0.013132299296557903, -0.007331427186727524, 0.0376681387424469, -0.03425337001681328, -0.040115173906087875, -0.07566408067941666, 0.037436142563819885, 0.04333670809864998, 0.020142676308751106, 0.0283485259860754, -0.01591009460389614, -0.02253604307770729, -0.01431967318058014, 0.051679130643606186, -0.031221386045217514, 0.028859738260507584, 0.013611176051199436, 0.052839718759059906, -0.0647525042295456, -0.031174030154943466, 0.006062531378120184, 0.013794250786304474, 0.04369745030999184, 0.009924785234034061, -0.023204555734992027, -0.010314395651221275, 0.028344592079520226, -0.03799545392394066, -0.020571134984493256, -0.07054858654737473, 0.03359019383788109, -0.019681382924318314, -0.009366794489324093, 0.04972385615110397, 0.03925769403576851, 0.03317080810666084, 0.06890054047107697, 0.010520870797336102, 0.020087065175175667, -0.037290558218955994, 0.025714445859193802, -0.04804990813136101, -0.030710501596331596, -0.009381070733070374, -0.049914926290512085, -0.007575199007987976, -0.03372840955853462, -0.051216404885053635, -0.04616842418909073, -0.039732228964567184, 0.03722311556339264, -0.011757425963878632, -0.017296303063631058, -0.01546237338334322, 0.044658858329057693, -0.043221522122621536, -0.03409552574157715, -0.032111041247844696, -0.024276111274957657, -0.05228884145617485, -0.0621723048388958, 0.010186311788856983, -0.010255583561956882, 0.02800486981868744, -0.0018438685219734907, 0.024853093549609184, 0.036125995218753815, -0.0014453616458922625, -0.010357535444200039, 0.04449081793427467, -0.0027066441252827644, -0.04566892981529236, -0.028990447521209717, 0.020253900438547134, 0.019191231578588486, 0.022573234513401985, -0.005785427521914244, 0.01882920041680336, 0.013894952833652496, -0.02598908543586731, -0.004722993355244398, 0.02348688244819641, 0.023732498288154602, -0.08605939149856567, -0.040050867944955826, -0.005489808972924948, -0.04941223934292793, 0.02797136828303337, -0.028179842978715897, -0.024021688848733902, 0.0034723058342933655, 0.016239764168858528, 0.04377809166908264, -0.01659236289560795, -0.024976393207907677, 0.023935096338391304, -0.010420233011245728, 0.030644342303276062, -0.04683610051870346, 0.04140011966228485, -0.04033326357603073, 0.004539727233350277, -0.002205022145062685, 0.019303977489471436, -0.04396112635731697, 0.06911202520132065, -0.01332804560661316, -0.0019626994617283344, -0.01159705501049757, -0.0036367285065352917, -0.008035406470298767, 0.05638781934976578, -0.0027360478416085243, 0.0375530831515789, -0.0573597215116024, 0.053605277091264725, -0.043739043176174164, 0.014822620898485184, -0.01639033481478691, 0.006429323926568031, -0.03250013291835785, -0.005021048244088888, -0.0043590678833425045, -0.012604376301169395, 0.02314263954758644, 0.06692802160978317, 0.050077635794878006, 0.021305149421095848, -0.02867872267961502, 0.00718452176079154, 0.0031044618226587772, -0.07438591122627258, -0.016402592882514, -0.01531875878572464, -0.0007714580278843641, 0.0020647160708904266, 0.03796255961060524, 0.03890254721045494, -0.05547964572906494, -0.042436882853507996, 0.01681399531662464, 0.022908618673682213, 0.02067926712334156, -0.002122861798852682, 0.028810277581214905, 0.028776073828339577, 0.058908432722091675, -0.014191259630024433, 0.007670385297387838, 0.008677875623106956, -0.018545055761933327, 0.012500084936618805, -0.0014114228542894125, 0.014487547799944878, -0.0002752256696112454, -0.014981838874518871, -0.029442885890603065, 0.04414120316505432, 0.008445125073194504, -0.013695166446268559, 0.008698566816747189, -0.044560931622982025, 0.03289427608251572, -0.01240698155015707, -0.04376028850674629, -0.015430211089551449, 0.0125769954174757, -0.023485559970140457, 0.07386624068021774, -0.02071988768875599, 0.009990179911255836, 0.046832889318466187, 0.016696853563189507, -0.020087169483304024, 0.04699641838669777, -0.04001038148999214, 0.019660746678709984, 0.023965230211615562, -0.05920132249593735, -0.017517905682325363, -0.022213149815797806, 0.0718344897031784, -0.06586854159832001, 0.05876350402832031, 0.013561039231717587, 0.007525786757469177, 0.0037147002294659615, -0.028611475601792336, -0.06795083731412888, 0.006612403783947229, -0.04863099381327629, 0.07192091643810272, 0.017591603100299835, -0.055984873324632645, 0.0934951975941658, 0.0256109070032835, -0.08023893088102341, 0.04064931720495224, 0.07599510252475739, 0.013064278289675713, 0.03801112622022629, 0.0534939207136631, -0.050202373415231705, 0.002573619829490781, -0.028074994683265686, 0.029362188652157784, -0.05777036026120186, -0.031179528683423996, 0.00318085472099483, -0.05005626007914543, -0.012813338078558445, 0.019003549590706825, 0.030666101723909378, 0.016190294176340103, 0.016964435577392578, -0.05861734226346016, -0.03672653064131737, -0.014328246004879475, 0.007664284203201532, -0.04322459548711777, -0.0014466247521340847, -0.010568531230092049, 0.01777242124080658, 0.021933913230895996, -0.001145369024015963, -0.02890682965517044, -0.017575440928339958, 0.014546218328177929, -0.05955110490322113, -0.05104224383831024, 0.08831389993429184, 0.004127033054828644, -0.016640184447169304, 0.013183577917516232, 0.010483699850738049, 0.01254197210073471, 0.008186059072613716, -0.015745794400572777, 0.006229185964912176, -0.06097478047013283, 0.00209804973565042, 0.02437572553753853, 0.01604250818490982, 0.005250533577054739, 0.0006767981103621423, 0.04357387498021126, 0.04889912158250809, 0.028132185339927673, 0.007437039632350206, -0.04253179952502251, -0.01792762242257595, 0.01250800583511591, -0.047452542930841446, 0.02975960075855255, 0.023882700130343437, -0.06059594452381134, -0.018926585093140602, -0.04206041619181633, 0.003834217321127653, 0.05149361863732338, -0.041044168174266815, 0.013028505258262157, 0.06159273907542229, -0.011205571703612804, -0.018203239887952805, -0.10440492630004883, -0.04177781194448471, -0.025829628109931946, 0.024392232298851013, 0.03529048711061478, -0.06737810373306274, 0.013032512739300728, -0.05053886026144028, -0.03365466371178627, 0.04582296311855316, 0.027691174298524857, -0.031774140894412994, 0.051675084978342056, 0.055122483521699905, -0.04483354091644287, 0.038483068346977234, -0.001152619021013379, -0.025958849117159843, 0.02436966262757778, 0.021090956404805183, 0.003552613314241171, 0.026479311287403107, 0.02530207857489586, -0.03532325103878975, 0.008360585197806358, -0.032608166337013245, -0.0342191606760025, -0.011372447945177555, 0.011647932231426239, 0.05969101935625076 ]
Dean/summarsiation
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- tags: - conversational --- # Sedged DialoGPT Model
[ -0.03515734151005745, 0.021266929805278778, 0.01088976114988327, 0.01506869401782751, 0.011783570982515812, 0.01097252406179905, -0.009054141119122505, 0.04104582220315933, -0.0170881524682045, 0.016957657411694527, 0.023924890905618668, -0.03133354336023331, 0.011416027322411537, 0.03235466405749321, -0.037952639162540436, -0.015722312033176422, -0.030608953908085823, -0.010416374541819096, -0.03024718165397644, -0.02023962512612343, 0.038245636969804764, 0.0019524371018633246, -0.024657774716615677, 0.025731388479471207, -0.0077871521934866905, 0.036853935569524765, 0.00173506501596421, 0.000025514866138109937, 0.022369712591171265, -0.021053902804851532, 0.011410255916416645, -0.04328349232673645, -0.025208625942468643, -0.030123665928840637, -0.020853988826274872, -0.040229760110378265, 0.03101040981709957, -0.025820206850767136, -0.017827576026320457, 0.025549322366714478, -0.024091243743896484, -0.006700712721794844, 0.009217198938131332, -0.03529902175068855, 0.07753609120845795, 0.0036180010065436363, -0.05182988569140434, -0.019697101786732674, 0.02170427329838276, -0.031249329447746277, -0.03894266113638878, -0.07171177119016647, -0.05273202806711197, -0.019673362374305725, 0.026417827233672142, -0.059784404933452606, -0.07091458886861801, -0.020357325673103333, 0.12027469277381897, -0.012466481886804104, -0.012070679105818272, 0.002193397842347622, -0.0775688961148262, 0.007972093299031258, 0.021543916314840317, -0.0631522536277771, 0.016231615096330643, -0.04979056119918823, 0.014210224151611328, -0.0327385738492012, 0.04676363244652748, -0.04074445739388466, 0.016008194535970688, -0.07559721171855927, -0.02522784098982811, -0.0022174257319420576, 0.031516898423433304, 0.0538296103477478, -0.031233320012688637, 0.05874268710613251, 0.034137047827243805, 0.008911329321563244, 0.056037601083517075, 0.007294051814824343, -0.0401831716299057, 0.04479880630970001, -0.060191839933395386, 0.013449798338115215, -0.0011775142047554255, 0.015660330653190613, -0.02230086550116539, -0.056155651807785034, -0.023651044815778732, -0.01753782294690609, -0.004465003497898579, 0.03919726237654686, 0.009785096161067486, -0.0325566865503788, 0.024923276156187057, 0.03790980577468872, 0.019975729286670685, 0.04154488816857338, -0.022255409508943558, 0.035768963396549225, -0.002673171693459153, 0.035034239292144775, 0.014099230989813805, -0.02037300541996956, -0.045558273792266846, 0.03269074112176895, -0.006708149332553148, -0.04344569519162178, -0.026002874597907066, 0.0350535586476326, 0.001478069112636149, 0.003503126325085759, 0.06254764646291733, -0.023771032691001892, -0.024411823600530624, -0.06196140870451927, 0.037523023784160614, -0.013629850931465626, -0.01613209769129753, 0.000445905199740082, -0.052684810012578964, 0.0014771443093195558, -0.034847091883420944, -0.01626412756741047, -0.023250829428434372, -0.003127835690975189, 0.0166791919618845, 0.03374866768717766, -0.02247316762804985, -0.06828907877206802, 0.018044186756014824, 0.03440815582871437, -0.08718356490135193, 0.0013702682917937636, 0.04295005276799202, 0.09043062478303909, -0.07273504883050919, -0.04131670668721199, -0.014871785417199135, 0.009219028986990452, -0.03301076218485832, -0.023466141894459724, 0.006740620359778404, -0.005024706479161978, -0.038729485124349594, -0.009780624881386757, 0.020827166736125946, -0.04032362997531891, -0.007476219441741705, 0.04594536870718002, 0.01581556163728237, 0.02164454199373722, -0.025674602016806602, 0.012670990079641342, -0.01157646719366312, -0.026573190465569496, -0.05089610442519188, 0.045817237347364426, -0.03230656683444977, -0.041965097188949585, -0.036146219819784164, -0.025830954313278198, 0.007366793230175972, 0.06091322377324104, 0.0028237751685082912, -0.023359064012765884, -0.007928071543574333, 0.04123353213071823, 0.06591399759054184, 0.06314490735530853, -0.014406035654246807, 0.006666349247097969, 0.05160655081272125, 0.0164036825299263, -0.03306713327765465, 0.07427141070365906, 0.019911210983991623, -0.03342548757791519, -0.0405668206512928, -0.027689551934599876, 0.03738167881965637, -0.022226283326745033, 0.018905796110630035, 0.049882322549819946, -0.03726824373006821, -0.038342200219631195, -0.0003109342069365084, 0.04490089416503906, -0.02961035817861557, -0.007242935709655285, -0.03044925630092621, -0.022612828761339188, -0.02156059630215168, 0.016147926449775696, -0.03661685064435005, -0.013667907565832138, -0.031112072989344597, -0.008672632277011871, 0.026619013398885727, 0.010921599343419075, 0.016665279865264893, 0.042511485517024994, -0.003924321383237839, 0.05248267203569412, -0.045828331261873245, 0.020394179970026016, -0.03710787370800972, -0.02233273908495903, -0.04028010368347168, 0.04419349133968353, 0.017924778163433075, 0.04456644505262375, -0.039981160312891006, -0.050176478922367096, 0.037845395505428314, 0.05146678909659386, 0.022908668965101242, 0.0303755272179842, -0.014223769307136536, -0.010321639478206635, 0.030002640560269356, 0.03642693907022476, -0.032223891466856, 0.0073410882614552975, 0.01659942790865898, 0.013284838758409023, -0.02708262950181961, -0.03992727771401405, -0.0455029234290123, 0.016106948256492615, -0.03606252744793892, -0.05501358211040497, 0.03725003823637962, 0.046340323984622955, -0.014302042312920094, 0.037473130971193314, -0.017994187772274017, -0.001385928364470601, 0.037863705307245255, 0.009975457563996315, -0.0059817517176270485, -0.08724857121706009, 0.012088900431990623, 0.03571675717830658, 0.09360680729150772, -0.05567057430744171, 0.01578984223306179, 0.013859455473721027, 0.022349121049046516, 0.022395819425582886, -0.018482021987438202, 0.04911836236715317, 0.03814169764518738, 0.05267145857214928, -0.029525527730584145, 0.031040482223033905, -0.0034237660001963377, 0.03462641313672066, 0.06603644043207169, -0.013205752708017826, 0.06766814738512039, -0.012580012902617455, 0.025712257251143456, 0.052747953683137894, 0.019916031509637833, -0.021731095388531685, 0.007459624204784632, 0.07676208764314651, -0.003326272591948509, 0.029775189235806465, 0.041416484862565994, 0.000847084796987474, -0.001536702737212181, -0.03221381828188896, -0.006374144461005926, -0.010035280138254166, -0.02645660564303398, 0.08109123259782791, 0.0011076574446633458, -0.010409904643893242, 0.009886263869702816, -0.006172821391373873, 0.004414815455675125, 0.039406586438417435, 0.003054217668250203, -0.017216799780726433, 0.007879506796598434, -0.03223486244678497, 0.022473588585853577, -0.04577989876270294, -0.051792941987514496, -0.023074623197317123, -0.05677899345755577, -0.013550331816077232, -0.09475674480199814, -0.042211487889289856, -0.06029389798641205, -0.0200797189027071, 0.03770389407873154, 0.025217099115252495, 0.02945767529308796, 0.009535707533359528, 0.016811218112707138, -0.01861063949763775, -0.06226937845349312, -0.04919082671403885, -0.041825536638498306, -0.016451139003038406, -0.04140671715140343, 0.039525654166936874, 0.030749009922146797, 0.0432174988090992, 0.006669629365205765, -0.025323811918497086, -0.03995222598314285, -0.021022852510213852, 0.048008304089307785, 0.021418973803520203, -0.04602949693799019, -0.042058635503053665, 0.008930627256631851, 0.016291774809360504, -0.009698721580207348, -0.02848532423377037, -0.041506920009851456, 0.07356643676757812, 0.04595767334103584, 0.013913645409047604, 0.017316045239567757, -0.003511138493195176, -0.03302681818604469, -0.025830639526247978, -0.062151458114385605, -0.02056266739964485, -0.005382579751312733, -0.023716764524579048, -0.05577202886343002, -0.020762309432029724, -0.044223230332136154, -0.021078048273921013, 0.001186263863928616, 0.013737025670707226, 0.03208272159099579, 0.023662423714995384, 0.018084155395627022, 0.02318861335515976, -0.02040422335267067, -0.01477805059403181, 0.0362040176987648, -0.02061135694384575, -0.0028633351903408766, -0.072870172560215, -0.05219600722193718, 0.023362472653388977, -0.0017740402836352587, 0.005423393566161394, -0.013600469566881657, 0.032087165862321854, 0.04092909023165703, -0.004056632984429598, 0.024547835811972618, -0.05392012372612953, -0.0024540098384022713, -0.032769735902547836, -0.017100760713219643, -0.03172712028026581, -0.019752968102693558, -0.010057932697236538, -0.011035963892936707, 0.03466163948178291, -0.08605220913887024, -0.03106982819736004, -0.025745268911123276, 0.016507389023900032, 0.04813399910926819, -0.008677635341882706, -0.06363598257303238, -0.0021940378937870264, -0.03980005532503128, -0.01206189300864935, -0.006958172656595707, -0.016558624804019928, 0.0007293268572539091, 0.023872071877121925, 0.019471153616905212, -0.020332111045718193, 0.05615995451807976, 0.017557265236973763, 0.08264829218387604, 0.05226181074976921, -0.02922564558684826, 0.03130952641367912, -0.02890101820230484, 0.03178633749485016, 0.002605287590995431, -0.035138994455337524, -0.046597670763731, -0.10154414176940918, -0.049813978374004364, 0.035752665251493454, -0.008258071728050709, 0.00867239385843277, 0.030867116525769234, -0.04660071060061455, -0.004143673460930586, 0.0012019573478028178, 0.03834036737680435, 0.05110301822423935, -0.03218252211809158, 0.06952156871557236, 0.020400522276759148, 0.022905461490154266, -0.06679556518793106, -0.0002674641436897218, -0.0551985502243042, -0.0000430871186836157, -0.01340530626475811, 0.04777419567108154, 0.007828524336218834, 0.06770237535238266, 0.07238594442605972, 0.039742495864629745, -0.03811498358845711, 0.03795168921351433, 0.06984291225671768, -0.03360842168331146, -0.031170569360256195, -0.004695174749940634, -0.004881620407104492, -0.012708360329270363, -0.008693084120750427, -0.02610207535326481, 0.03020971640944481, 0.03454186022281647, -0.014424183405935764, 0.004569957964122295, 0.0071285623125731945, -0.03891102969646454, -0.024586668238043785, -0.059293512254953384, -0.01653575338423252, 0.004053790587931871, -0.02822367660701275, 0.05775816738605499, 0.04980294406414032, 0.0005307722021825612, 0.06901455670595169, 0.01192012894898653, -0.01463026087731123, -0.05260572209954262, 0.029035326093435287, 0.01734795793890953, -0.04371408000588417, -0.05112426355481148, -0.04967105761170387, 0.02601485513150692, 0.052368711680173874, -0.014006633311510086, -0.07546362280845642, 0.030699241906404495, 0.05276928469538689, -0.038484808057546616, 0.05967411398887634, -0.0011473699705675244, 0.06626645475625992, 0.0402243435382843, 0.009538058191537857, 0.04745503515005112, -0.07193343341350555, 0.02264256216585636, -0.02523708902299404, 0.013598577119410038, -0.04649174585938454, -0.04887693375349045, -0.04873804375529289, 0.04421822354197502, 0.013830085285007954, 0.01838618330657482, 0.02672595903277397, -0.05020103603601456, -0.035236962139606476, 0.008036432787775993, 0.042090144008398056, -0.025520071387290955, 0.021217908710241318, 0.029363613575696945, 0.05460577830672264, -0.07375743985176086, 0.008446128107607365, 0.01374485157430172, 0.01835908554494381, 0.026686089113354683, -0.019752103835344315, -0.03606133162975311, -0.014792021363973618, 0.024644142016768456, -0.03544404357671738, -0.03635760024189949, -0.06985077261924744, 0.013794606551527977, -0.032844118773937225, -0.042050134390592575, 0.0633678287267685, 0.06740333139896393, 0.060354460030794144, 0.0744289755821228, -0.01038438081741333, 0.04484853148460388, -0.03210238739848137, 0.010847131721675396, -0.030567873269319534, -0.03705872222781181, -0.003997030667960644, -0.08046096563339233, -0.03488724306225777, -0.028397725895047188, -0.031709786504507065, -0.039720650762319565, 0.0050625731237232685, 0.00748059106990695, -0.003209918737411499, -0.02088950015604496, 0.013624945655465126, 0.02464419975876808, -0.02103683538734913, -0.036817096173763275, -0.004224396776407957, -0.006908752024173737, -0.08747594803571701, -0.05465599149465561, 0.0066851237788796425, -0.03373769670724869, 0.001694810576736927, 0.00585084967315197, 0.01040219608694315, 0.03796382248401642, -0.0068644993007183075, -0.014976772479712963, 0.009553502313792706, 0.03452945500612259, -0.025020280852913857, -0.019845403730869293, 0.009925778955221176, 0.02828323468565941, 0.02650478482246399, -0.030435973778367043, 0.04544125124812126, 0.009783949702978134, -0.05831001326441765, -0.02710009552538395, 0.034864164888858795, 0.027542363852262497, -0.07502921670675278, -0.016117127612233162, -0.041001539677381516, -0.026534363627433777, 0.010995466262102127, -0.040346529334783554, -0.02648373693227768, -0.008609197102487087, 0.04572579264640808, 0.024655288085341454, 0.006034044083207846, -0.022104665637016296, 0.022654427215456963, -0.009835053235292435, 0.006712543312460184, -0.07481780648231506, 0.023923557251691818, -0.04321344196796417, 0.011088455095887184, -0.01356278546154499, 0.017453579232096672, -0.04014589264988899, 0.04282774031162262, -0.009300190955400467, 0.011603725142776966, 0.0050092353485524654, -0.02101145312190056, 0.004065182525664568, 0.06508836895227432, 0.018328960984945297, 0.008300009183585644, -0.034411005675792694, 0.0638476312160492, -0.0645342767238617, 0.004461408592760563, -0.0050797974690794945, -0.02587055042386055, -0.024111764505505562, 0.005896331742405891, -0.0010050741257146, -0.06384607404470444, 0.031109515577554703, 0.0314004123210907, 0.014364774338901043, 0.03117300011217594, -0.0007055569440126419, -0.0019217552617192268, 0.029327088966965675, -0.06366395205259323, -0.023571252822875977, 0.0024094826076179743, -0.00012092319957446307, 0.011412195861339569, 0.050713520497083664, 0.02028987929224968, -0.056595828384160995, -0.017586445435881615, 0.02674022875726223, 0.017564717680215836, 0.01682637259364128, 0.0072642420418560505, 0.051003776490688324, 0.05758608505129814, 0.06355606019496918, -0.0037315809167921543, -0.002863290486857295, 0.022412512451410294, -0.024959132075309753, -0.016041181981563568, -0.006486649625003338, 0.00316316238604486, 0.00858523789793253, -0.02381877601146698, -0.045460641384124756, 0.06266934424638748, -0.0132155641913414, -0.0009825915331020951, -0.025873713195323944, -0.04399875923991203, 0.07440277934074402, -0.0033857126254588366, -0.03191033750772476, -0.021042773500084877, 0.04138535261154175, -0.019707679748535156, 0.04038848727941513, -0.026334330439567566, 0.013797524385154247, 0.048774056136608124, 0.02002725750207901, 0.0094709238037467, 0.004874242935329676, -0.009747125208377838, -0.001880164840258658, 0.02384432777762413, -0.044467806816101074, -0.011058354750275612, -0.03945410996675491, 0.07038328051567078, -0.044783011078834534, 0.05838386341929436, 0.04096263274550438, 0.05180879309773445, 0.024879654869437218, -0.06016351282596588, -0.04346078261733055, -0.0235239677131176, -0.033731792122125626, 0.0734841376543045, -0.003296525916084647, -0.029234493151307106, 0.06522431969642639, 0.04116181284189224, -0.07656680792570114, 0.03199078515172005, 0.04292275756597519, 0.04384675621986389, 0.03718453645706177, 0.04581151902675629, -0.05683396756649017, 0.014580875635147095, -0.025270111858844757, 0.002930770395323634, -0.03106003627181053, -0.013996695168316364, -0.02760385163128376, -0.054395198822021484, -0.00448097987100482, 0.024732809513807297, -0.02735317498445511, 0.0003477485734038055, 0.015281627885997295, -0.031115952879190445, -0.04955212399363518, -0.0035193332005292177, 0.02250063419342041, -0.01740015298128128, -0.01838996820151806, -0.036134082823991776, 0.009242178872227669, 0.03304892033338547, -0.0008918403182178736, -0.060209568589925766, 0.013276790268719196, -0.010044723749160767, -0.06231164559721947, -0.0418197326362133, 0.05547409504652023, 0.029865136370062828, -0.014074631966650486, -0.0018214108422398567, 0.03019614703953266, 0.022956373170018196, 0.038623884320259094, -0.008883473463356495, 0.005284617189317942, -0.06139053776860237, -0.005601166747510433, 0.01906403712928295, 0.011844750493764877, 0.007462304551154375, -0.010776958428323269, 0.027224531397223473, 0.08185257762670517, 0.05005759373307228, 0.009229850023984909, -0.05109764263033867, -0.03792431578040123, -0.004869941622018814, -0.03752386197447777, 0.046834446489810944, -0.0026744836941361427, -0.06859597563743591, -0.014983046799898148, -0.014909988269209862, -0.002565769013017416, 0.020154915750026703, -0.042438581585884094, 0.008968126960098743, 0.01501590944826603, 0.0002988689811900258, -0.041315604001283646, -0.10291333496570587, -0.04301709309220314, -0.018684063106775284, 0.03621211275458336, 0.032217107713222504, -0.06259927898645401, 0.04190830886363983, -0.02757027931511402, -0.0014677414437755942, 0.05838208645582199, -0.004964700900018215, -0.014924691990017891, 0.07389931380748749, 0.06691405922174454, -0.034383635967969894, 0.06320928782224655, 0.022281857207417488, -0.02733389101922512, 0.05602983012795448, 0.010769909247756004, 0.025578942149877548, 0.016463225707411766, 0.028094425797462463, -0.013473792001605034, -0.00008381687803193927, -0.007164462003856897, -0.04507813975214958, 0.000058643116062739864, -0.0017206702614203095, 0.05490846186876297 ]
Declan/Breitbart_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- language: code license: mit tags: - Code - GPyT - code generator --- GPyT is a GPT2 model trained from scratch (not fine tuned) on Python code from Github. Overall, it was ~80GB of pure Python code, the current GPyT model is a mere 2 epochs through this data, so it may benefit greatly from continued training and/or fine-tuning. Newlines are replaced by `<N>` Input to the model is code, up to the context length of 1024, with newlines replaced by `<N>` Here's a quick example of using this model: ```py from transformers import AutoTokenizer, AutoModelWithLMHead tokenizer = AutoTokenizer.from_pretrained("Sentdex/GPyT") model = AutoModelWithLMHead.from_pretrained("Sentdex/GPyT") # copy and paste some code in here inp = """import""" newlinechar = "<N>" converted = inp.replace("\n", newlinechar) tokenized = tokenizer.encode(converted, return_tensors='pt') resp = model.generate(tokenized) decoded = tokenizer.decode(resp[0]) reformatted = decoded.replace("<N>","\n") print(reformatted) ``` Should produce: ``` import numpy as np import pytest import pandas as pd<N ``` This model does a ton more than just imports, however. For a bunch of examples and a better understanding of the model's capabilities: https://pythonprogramming.net/GPT-python-code-transformer-model-GPyT/ Considerations: 1. This model is intended for educational and research use only. Do not trust model outputs. 2. Model is highly likely to regurgitate code almost exactly as it saw it. It's up to you to determine licensing if you intend to actually use the generated code. 3. All Python code was blindly pulled from github. This means included code is both Python 2 and 3, among other more subtle differences, such as tabs being 2 spaces in some cases and 4 in others...and more non-homologous things. 4. Along with the above, this means the code generated could wind up doing or suggesting just about anything. Run the generated code at own risk...it could be *anything*
[ -0.013901278376579285, -0.03919447585940361, -0.01976303942501545, 0.046996016055345535, 0.052131593227386475, 0.0514872670173645, 0.002537969034165144, 0.018763920292258263, -0.021627316251397133, 0.05075909569859505, 0.026141485199332237, -0.00020826123363804072, 0.003587248269468546, 0.022301509976387024, -0.024650894105434418, -0.033742792904376984, -0.012409401126205921, -0.026796754449605942, -0.04238663613796234, -0.0178387388586998, 0.004011486656963825, -0.0197584368288517, 0.0008405361440964043, -0.000006006944204273168, -0.013127567246556282, 0.004929845687001944, 0.020238973200321198, 0.003270353889092803, 0.032925501465797424, -0.09446638822555542, -0.04106975719332695, -0.02675134316086769, -0.04502412676811218, -0.010684294626116753, -0.022734101861715317, -0.019427986815571785, 0.0011732708662748337, -0.005944038741290569, 0.014661966823041439, 0.05468354746699333, -0.009560151025652885, 0.026612335816025734, -0.005329132080078125, -0.01954961195588112, 0.05893610790371895, -0.00010472233407199383, -0.026795759797096252, -0.027860354632139206, 0.0285036638379097, 0.009856706485152245, -0.058212049305438995, -0.08046276867389679, -0.04319657385349274, 0.02449047565460205, -0.01850631833076477, -0.020111430436372757, -0.06854256987571716, -0.00955676008015871, 0.06599967181682587, -0.058728501200675964, -0.03675080090761185, 0.027813024818897247, -0.07215545326471329, 0.021306553855538368, 0.014450653456151485, -0.00493987463414669, -0.0034569790586829185, -0.02333488129079342, 0.012386982329189777, 0.00589121924713254, 0.052964646369218826, -0.031689852476119995, 0.04221267253160477, -0.12366119027137756, 0.011945199221372604, -0.008734922856092453, 0.02952858991920948, 0.0072660562582314014, -0.04236793518066406, 0.047822896391153336, 0.028626948595046997, -0.014061474241316319, 0.03390241786837578, 0.00517425499856472, -0.039857227355241776, 0.04026224836707115, -0.02854636311531067, -0.014432120136916637, -0.013094792142510414, 0.059564799070358276, -0.06787063926458359, -0.05489610508084297, -0.033642757683992386, -0.02174520492553711, -0.0406557098031044, 0.008005713112652302, 0.05157437548041344, -0.0126179875805974, 0.0261843279004097, 0.04414473474025726, 0.01975039206445217, 0.027621792629361153, -0.012663125991821289, 0.02816634066402912, 0.028559766709804535, 0.01750711165368557, -0.011095746420323849, -0.04389273002743721, -0.03684968501329422, 0.027442315593361855, 0.028116291388869286, -0.0068169753067195415, -0.02825241908431053, 0.0599268302321434, 0.014956397004425526, -0.01623360626399517, 0.0347101129591465, -0.025278015062212944, -0.03352303057909012, -0.05510540306568146, 0.03698557987809181, 0.009227132424712181, -0.013606332242488861, 0.020091017708182335, -0.043155331164598465, 0.0011122302385047078, -0.057533882558345795, -0.019985122606158257, 0.009495527483522892, 0.02697398141026497, -0.027628418058156967, 0.07330219447612762, 0.03202550485730171, -0.028221433982253075, 0.039842214435338974, 0.017270896583795547, -0.05726790800690651, 0.08038612455129623, 0.03708063066005707, 0.1119697168469429, -0.06804076582193375, -0.03517744317650795, 0.018484998494386673, 0.010380384512245655, -0.02986970730125904, -0.003204947104677558, -0.030998604372143745, -0.04621855914592743, -0.032967936247587204, -0.018276026472449303, 0.07988370209932327, -0.047110382467508316, -0.002023983746767044, 0.031810544431209564, 0.014708509668707848, 0.048524923622608185, -0.04535209760069847, -0.0063853794708848, -0.0018506534397602081, -0.02038745768368244, -0.052368201315402985, 0.017765473574399948, -0.007362909149378538, -0.006586434785276651, -0.011656763032078743, -0.03950792923569679, 0.010486219078302383, 0.09200084209442139, -0.024670841172337532, -0.027403483167290688, -0.038255516439676285, 0.01977202109992504, 0.02666415460407734, 0.0638154074549675, -0.03187383711338043, 0.05405658110976219, 0.03136584162712097, 0.036237023770809174, -0.018053937703371048, 0.06523710489273071, 0.0027982036117464304, -0.044928863644599915, -0.03262396529316902, 0.017435668036341667, -0.011309180408716202, -0.03410854563117027, 0.019173679873347282, 0.022718800231814384, -0.008429599925875664, -0.012598814442753792, -0.02183600142598152, 0.05599767714738846, 0.004327349364757538, -0.008260047063231468, -0.007995182648301125, 0.025036387145519257, -0.024944601580500603, 0.0688236877322197, -0.02704128995537758, -0.010470320470631123, -0.016961123794317245, -0.012045669369399548, 0.003697274485602975, 0.01692233607172966, 0.0668804943561554, 0.046531692147254944, 0.00006833591760369018, 0.09137045592069626, -0.025653064250946045, -0.00791733618825674, -0.04923650622367859, -0.055706094950437546, 0.00846044346690178, 0.031699761748313904, 0.01784486323595047, 0.012915898114442825, 0.010116355493664742, -0.0256491769105196, 0.03215034306049347, 0.05778229236602783, 0.03511667251586914, 0.018807878717780113, -0.01956753432750702, 0.0038473629392683506, 0.039816636592149734, 0.05774495378136635, -0.04438447207212448, -0.04256335273385048, 0.03207142651081085, 0.043618783354759216, -0.026141464710235596, 0.02291352115571499, -0.029400471597909927, 0.00952936802059412, -0.0437949001789093, -0.07012706249952316, 0.019462279975414276, 0.04293544217944145, 0.018149450421333313, 0.01217218954116106, -0.0273184422403574, 0.0007921801297925413, 0.03293343260884285, -0.008895518258213997, 0.001801801030524075, -0.05465179681777954, 0.0055206939578056335, 0.01706533320248127, 0.044338617473840714, -0.035247281193733215, 0.04619939252734184, 0.02384216897189617, 0.003214403986930847, 0.03370622545480728, -0.04660537838935852, 0.01538230013102293, 0.030384181067347527, 0.026804229244589806, -0.025988608598709106, 0.016441866755485535, 0.006700435653328896, 0.025132065638899803, 0.07740915566682816, 0.00042078059050254524, 0.04719104617834091, 0.013023287989199162, 0.05682700127363205, 0.10074932873249054, 0.01649768091738224, 0.007058575749397278, 0.009676087647676468, 0.06586504727602005, 0.013803641311824322, 0.0046988013200461864, 0.04869012534618378, -0.050522707402706146, 0.031214553862810135, -0.018729327246546745, 0.017666678875684738, 0.0006923063774593174, -0.02597910165786743, 0.039825089275836945, 0.02366226725280285, -0.04089357703924179, 0.014539295807480812, -0.015270460397005081, -0.018949871882796288, 0.0011238984297960997, -0.0076385801658034325, -0.017362935468554497, 0.019387897104024887, 0.006598780397325754, 0.015704376623034477, -0.07851359248161316, -0.04792431369423866, -0.030913446098566055, -0.025976410135626793, 0.01465924084186554, -0.10046493262052536, -0.025213483721017838, -0.07401861250400543, -0.011386005207896233, 0.040032099932432175, -0.0009895151015371084, -0.01611783355474472, -0.04012162983417511, 0.008951468393206596, -0.03220772370696068, -0.03269084170460701, -0.06090143322944641, -0.048972178250551224, -0.022717583924531937, -0.08583611994981766, 0.01576526090502739, -0.00677495077252388, -0.01030722912400961, 0.0028470391407608986, -0.006863538641482592, -0.02379651740193367, -0.017009275034070015, 0.06782645732164383, 0.024429624900221825, -0.024805691093206406, -0.04023399576544762, 0.03121108189225197, -0.010253578424453735, 0.02649589814245701, 0.015667468309402466, -0.044751282781362534, 0.0861596167087555, 0.07945512235164642, 0.013809196650981903, 0.007733902893960476, -0.028998173773288727, -0.054547544568777084, -0.06093348190188408, -0.01563303917646408, -0.048252172768116, -0.014210106804966927, -0.005605985876172781, -0.033949896693229675, -0.021342294290661812, -0.021262861788272858, -0.028384452685713768, -0.026341618970036507, 0.03192346543073654, 0.036659687757492065, 0.05004435405135155, 0.05864173546433449, 0.02217387594282627, -0.03416832536458969, -0.0396839901804924, 0.045118723064661026, 0.005910191684961319, -0.0012673728633672, -0.08484449982643127, -0.046517446637153625, 0.05949002131819725, 0.017882751300930977, 0.0018616145243868232, -0.020756911486387253, 0.05827372893691063, 0.0398966446518898, 0.007265408523380756, -0.001985985552892089, -0.0050088814459741116, -0.007646697573363781, -0.030368492007255554, 0.00632491335272789, -0.03827156499028206, -0.025804536417126656, -0.011822613887488842, -0.02810659445822239, 0.03792119771242142, -0.06698044389486313, -0.08832801878452301, -0.0066145057789981365, 0.03732636570930481, 0.038426656275987625, 0.015323517844080925, -0.02491581253707409, -0.0198679156601429, -0.04750075563788414, -0.013647218234837055, 0.02898525819182396, 0.019486648961901665, 0.01044327300041914, 0.042084477841854095, 0.04120699688792229, -0.04594835638999939, 0.04088857024908066, 0.04458342865109444, 0.04497016966342926, 0.0009218044579029083, -0.047828309237957, 0.03514237329363823, -0.01755307987332344, 0.022077038884162903, 0.011089541018009186, -0.038590360432863235, -0.05842062830924988, -0.09030910581350327, -0.007047880906611681, -0.023109547793865204, -0.003052016021683812, -0.02126404270529747, 0.044319797307252884, -0.01859874278306961, -0.01575017347931862, 0.005415094085037708, 0.011811439879238605, 0.06034200266003609, -0.03828662633895874, 0.04087207093834877, 0.006241798400878906, 0.04956768825650215, -0.03776688501238823, -0.0019175371853634715, -0.051291629672050476, -0.009087629616260529, 0.013722948729991913, 0.02889881655573845, 0.037533048540353775, 0.08713727444410324, 0.07643422484397888, 0.016091955825686455, -0.02796337939798832, 0.05473779886960983, 0.03472432866692543, -0.03849845379590988, -0.03980007395148277, -0.010546470992267132, -0.014417184516787529, -0.026016993448138237, 0.023829106241464615, -0.006564573850482702, 0.03299013525247574, 0.02215028926730156, 0.01285597961395979, 0.00014689963427372277, -0.01589328981935978, -0.016840338706970215, -0.03894670307636261, -0.058188099414110184, -0.0497780442237854, -0.006613400764763355, -0.018226293846964836, 0.01637234166264534, 0.03204839676618576, 0.025969138368964195, 0.070733942091465, 0.05556483194231987, -0.021886572241783142, -0.036351535469293594, 0.03716634213924408, 0.03431450575590134, -0.05340418964624405, -0.04843625798821449, -0.04759042710065842, 0.04696790874004364, 0.05263868346810341, -0.0336066298186779, -0.0860297903418541, 0.00987329799681902, 0.027627721428871155, -0.03772618621587753, 0.054887522011995316, 0.0081893065944314, 0.03598242253065109, 0.05591391772031784, -0.0010071787983179092, 0.02265990898013115, -0.023411769419908524, 0.02507012151181698, -0.007921670563519001, 0.024598047137260437, -0.031075848266482353, -0.02762448973953724, -0.05756356939673424, 0.03668443486094475, 0.022201305255293846, 0.043012384325265884, 0.011842293664813042, -0.005052970722317696, -0.048916980624198914, 0.004738633520901203, 0.03819277137517929, -0.03191229701042175, 0.030983826145529747, 0.03915057331323624, 0.04066404700279236, -0.0618436336517334, -0.03255131468176842, -0.022380374372005463, -0.0015011070063337684, 0.03830284625291824, -0.0075738271698355675, -0.028805816546082497, -0.05046859383583069, 0.015137829817831516, -0.022035211324691772, -0.013937112875282764, -0.07415512949228287, 0.020907621830701828, -0.013239488936960697, -0.028363030403852463, 0.040454283356666565, 0.032237447798252106, 0.013114065863192081, 0.04036737605929375, -0.0048105851747095585, 0.011752964928746223, -0.02822010964155197, 0.017527561634778976, -0.0042203268967568874, -0.010088616982102394, -0.02188270539045334, -0.033272095024585724, -0.014692306518554688, -0.030611349269747734, -0.05090833827853203, -0.04714358597993851, -0.024237656965851784, -0.0008033236372284591, 0.005652220919728279, -0.011057529598474503, 0.00038189353654161096, 0.026802077889442444, -0.010841328650712967, -0.03848392516374588, -0.020624931901693344, -0.03133112192153931, -0.07254515588283539, -0.05658063665032387, 0.03758232668042183, 0.010661689564585686, 0.03280777111649513, -0.018360251560807228, 0.014889624901115894, 0.001288393046706915, 0.012667115777730942, 0.0033592728432267904, 0.04063307121396065, -0.020860712975263596, -0.03182919695973396, -0.03753088414669037, 0.012991756200790405, 0.0029565526638180017, -0.010454691015183926, -0.010957900434732437, 0.007092269603163004, 0.030119147151708603, -0.019725710153579712, 0.0028376486152410507, 0.027038875967264175, 0.008428278379142284, -0.0743308886885643, -0.03819584473967552, -0.015022965148091316, -0.060470640659332275, 0.03738503158092499, -0.013023868203163147, -0.034636251628398895, -0.0035857122857123613, 0.050005704164505005, 0.04050916060805321, -0.018935635685920715, -0.030488815158605576, -0.003780884901061654, -0.04268341884016991, 0.025986775755882263, -0.06118883192539215, 0.048021283000707626, -0.04108940437436104, 0.0017191496444866061, -0.02996029518544674, 0.004223286174237728, -0.02927781268954277, 0.0691811665892601, -0.013292912393808365, -0.006477477960288525, -0.013733599334955215, 0.02691970393061638, -0.007200187537819147, 0.059946317225694656, 0.010898323729634285, 0.012747571803629398, -0.03278845176100731, 0.03282378986477852, -0.057952579110860825, -0.004651184193789959, -0.032795313745737076, 0.0008322595385834575, -0.027692394331097603, -0.0396372452378273, -0.0022430340759456158, -0.052738625556230545, 0.042096905410289764, 0.03960350528359413, 0.020095137879252434, -0.0026746587827801704, -0.03130057454109192, 0.011145927011966705, 0.011662882752716541, -0.072867751121521, -0.03610244765877724, -0.02695445343852043, -0.019426805898547173, -0.007468910422176123, 0.039572205394506454, 0.043451275676488876, -0.053795140236616135, -0.037695419043302536, 0.03487560153007507, 0.012898852117359638, 0.017387060448527336, 0.008435825817286968, 0.016225608065724373, 0.04641427472233772, 0.03480161726474762, -0.02498001419007778, 0.003219819162040949, -0.016719048842787743, -0.01510868314653635, 0.0050824652425944805, 0.0011861089151352644, 0.019259020686149597, 0.006412542425096035, -0.038932304829359055, -0.018101977184414864, 0.07369233667850494, 0.048776328563690186, 0.016745002940297127, 0.013422761112451553, -0.026078617200255394, 0.046099357306957245, 0.015173468738794327, -0.03294719383120537, -0.026942050084471703, 0.026193983852863312, -0.04254000633955002, 0.09543091803789139, -1.5757484561618185e-7, 0.003719480475410819, 0.04988783970475197, 0.02570328861474991, 0.0008679313468746841, 0.06471175700426102, -0.025921713560819626, 0.010104241780936718, 0.04842165485024452, -0.03985351696610451, 0.003106336807832122, -0.004106150474399328, 0.052239421755075455, -0.07712536305189133, 0.04801129922270775, 0.03244310989975929, 0.011197651736438274, -0.011106068268418312, -0.033014073967933655, -0.03881054371595383, 0.03040274977684021, -0.06320521235466003, 0.062264323234558105, -0.031176751479506493, -0.06469673663377762, 0.09920581430196762, 0.00726461224257946, -0.09182470291852951, 0.03307090327143669, 0.050147365778684616, 0.0162708330899477, 0.03582063317298889, 0.02414783276617527, -0.0636480525135994, 0.006029325537383556, -0.030191320925951004, 0.03147532418370247, -0.04812808707356453, 0.002744305646046996, 0.006620429456233978, -0.03135478496551514, 0.006109101697802544, 0.037343740463256836, 0.002906569978222251, 0.0034778343979269266, 0.03969382867217064, -0.051897089928388596, -0.038190897554159164, -0.014987821690738201, 0.019079163670539856, -0.032976292073726654, -0.0009490380762144923, -0.019383927807211876, 0.0508611835539341, 0.0006644481909461319, -0.012735094875097275, -0.0021430279593914747, -0.005903981626033783, 0.03847312927246094, -0.06713859736919403, -0.04907291382551193, 0.035572297871112823, -0.007190786302089691, -0.02966601774096489, 0.02360660210251808, -0.00883677788078785, 0.02846541255712509, 0.012268091551959515, -0.00469462713226676, 0.027616532519459724, -0.011319390498101711, -0.01103563979268074, 0.014811967499554157, 0.018542831763625145, 0.046373020857572556, -0.010671863332390785, 0.02275850810110569, 0.01672806590795517, 0.032564014196395874, -0.027318019419908524, -0.03200559690594673, -0.03455503284931183, -0.00888155959546566, -0.048096947371959686, 0.007323357742279768, 0.01931171491742134, -0.06704502552747726, -0.042232077568769455, -0.013479849323630333, -0.033880699425935745, 0.040130726993083954, -0.04731868952512741, 0.0013387278886511922, 0.06486410647630692, -0.017730379477143288, -0.0398268923163414, -0.07773714512586594, -0.01833166368305683, -0.013706997036933899, 0.017018254846334457, 0.030699536204338074, -0.02725011482834816, 0.03394078463315964, -0.035859182476997375, -0.06719835102558136, 0.04799440875649452, 0.025212116539478302, -0.04032444581389427, 0.021165242418646812, 0.03565870225429535, -0.021454202011227608, 0.01584736257791519, 0.011715113185346127, -0.04398971050977707, 0.013639051467180252, 0.004824256058782339, -0.001541794859804213, 0.029345786198973656, 0.030799366533756256, -0.034766726195812225, -0.018526772037148476, -0.06992251425981522, -0.024883553385734558, -0.026451051235198975, -0.006331069394946098, 0.059676870703697205 ]
Declan/CNN_model_v6
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-base__sst2__all-train results: [] --- <!-- 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-v3-base__sst2__all-train This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.6964 - Accuracy: 0.49 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 7 | 0.6964 | 0.49 | | No log | 2.0 | 14 | 0.7010 | 0.49 | | No log | 3.0 | 21 | 0.7031 | 0.49 | | No log | 4.0 | 28 | 0.7054 | 0.49 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.023143019527196884, -0.010824079625308514, -0.02557065710425377, 0.03434770181775093, 0.03132815659046173, 0.038612253963947296, -0.015952231362462044, -0.01311552245169878, -0.05623747780919075, 0.06368027627468109, 0.025880513712763786, -0.03736606240272522, 0.008202029392123222, 0.04595404863357544, -0.023887034505605698, -0.04109532758593559, -0.0002551785728428513, -0.016755713149905205, -0.02443462237715721, -0.003745571942999959, 0.015795832499861717, -0.012059273198246956, -0.006472035776823759, 0.01874072477221489, -0.002970033325254917, 0.01729871891438961, -0.012264798395335674, 0.01774330995976925, 0.028220297768712044, -0.07107552140951157, 0.015124623663723469, -0.03654161095619202, -0.05345936864614487, -0.014807612635195255, -0.01613587513566017, -0.004218114074319601, 0.013337088748812675, 0.016537928953766823, 0.03778036683797836, 0.05529213324189186, 0.0047195362858474255, 0.02918935753405094, -0.002447644481435418, -0.030705541372299194, 0.045511644333601, 0.0031592329032719135, -0.04840943589806557, 0.0019235360668972135, 0.030987253412604332, -0.02007240243256092, -0.06870868057012558, -0.05946789309382439, -0.013187014497816563, 0.028125733137130737, -0.031583357602357864, -0.012737443670630455, -0.047598496079444885, -0.0026488632429391146, 0.06471162289381027, -0.051360782235860825, -0.02825077809393406, 0.0312082190066576, -0.06292828172445297, 0.020173972472548485, 0.0393776036798954, -0.031310636550188065, 0.02351238951086998, -0.03229553997516632, 0.033773235976696014, -0.01363894622772932, 0.06628766655921936, -0.02034260891377926, 0.01471424475312233, -0.0962701067328453, -0.003946105949580669, -0.014915469102561474, 0.026691094040870667, 0.05169248953461647, -0.03022005595266819, 0.06027702987194061, 0.03232820704579353, -0.014624064788222313, 0.04423331841826439, -0.024667788296937943, -0.003595988731831312, 0.028303692117333412, -0.0467044860124588, 0.006138355936855078, 0.02450435981154442, 0.03250398859381676, -0.040529072284698486, -0.021317601203918457, -0.029405126348137856, -0.023189101368188858, -0.014788121916353703, 0.017546752467751503, 0.06187751144170761, 0.0035878969356417656, 0.024887755513191223, 0.024185072630643845, 0.0293075330555439, 0.04059917479753494, -0.02299678511917591, 0.06194036826491356, -0.00018184605869464576, -0.011017142795026302, -0.016559027135372162, -0.024867838248610497, -0.033379241824150085, 0.01630178838968277, 0.026813600212335587, -0.0274131428450346, -0.024382468312978745, 0.04472262039780617, 0.01828683726489544, -0.009140647947788239, 0.059120673686265945, -0.021552465856075287, -0.045930374413728714, -0.04220767691731453, 0.028590725734829903, 0.013533207587897778, -0.027880342677235603, 0.014680003747344017, -0.03615056350827217, -0.01833740621805191, -0.017359331250190735, -0.044468533247709274, -0.004098717123270035, 0.015152127481997013, 0.013618644326925278, 0.0654275193810463, 0.034242697060108185, -0.07208251953125, 0.00947542767971754, 0.011694200336933136, -0.049589432775974274, 0.051795829087495804, 0.018535353243350983, 0.12029243260622025, -0.060805246233940125, -0.0667491927742958, 0.014426776207983494, -0.0024095382541418076, -0.01894613355398178, 0.026048701256513596, 0.0101865129545331, -0.025157159194350243, -0.0020894550252705812, -0.004819856956601143, 0.051407817751169205, -0.05491331219673157, -0.01720447838306427, 0.054902106523513794, -0.014084048569202423, 0.042484674602746964, -0.0511271208524704, -0.028615226969122887, 0.011597604490816593, -0.02433346025645733, -0.021654494106769562, 0.04828706756234169, -0.021283170208334923, 0.005008243024349213, -0.02354603074491024, -0.04849397391080856, 0.0009307054569944739, 0.09588830918073654, -0.00508141377940774, -0.035833656787872314, -0.025484411045908928, 0.029178814962506294, 0.0565895140171051, 0.0540451817214489, -0.026309102773666382, 0.03549627587199211, 0.05391835421323776, 0.038636550307273865, -0.04021979868412018, 0.03803339973092079, 0.02837321348488331, -0.03863394632935524, -0.027412060648202896, 0.021508144214749336, 0.0020530817564576864, -0.04217620939016342, 0.020449575036764145, 0.03283774107694626, 0.015031831339001656, -0.05048628896474838, -0.052089061588048935, 0.04602942615747452, -0.011771153658628464, 0.0006805197335779667, 0.014088884927332401, -0.0015801547560840845, -0.016733380034565926, 0.03966793045401573, -0.013345571234822273, 0.003922175616025925, -0.02356010489165783, -0.022267773747444153, 0.015229112468659878, 0.01296936720609665, 0.040060855448246, 0.04165585711598396, -0.010772633366286755, 0.09097131341695786, -0.03230375424027443, 0.017667492851614952, -0.034722648561000824, -0.056456390768289566, 0.014231594279408455, 0.060580916702747345, 0.05957941338419914, 0.06006702408194542, 0.000034825159673346207, -0.04015814885497093, 0.04850070923566818, 0.05838038772344589, 0.04487283155322075, 0.00207495572976768, -0.020560652017593384, -0.012046520598232746, 0.02018435299396515, 0.059507131576538086, -0.05178326368331909, -0.01900600455701351, 0.0219047162681818, 0.04157745838165283, -0.006174763198941946, 0.027573125436902046, -0.022825291380286217, 0.03180093318223953, -0.04831373691558838, -0.06954339891672134, 0.03855288028717041, 0.021199380978941917, -0.005266168620437384, 0.033647529780864716, 0.00722871208563447, 0.011187365278601646, -0.0008489622268825769, 0.016565237194299698, 0.0018402576679363847, -0.0444033108651638, 0.019809341058135033, 0.012772997841238976, 0.047644905745983124, -0.04415292665362358, 0.03186369687318802, -0.007770986296236515, -0.00017322070198133588, 0.048784829676151276, -0.04697052761912346, 0.015847129747271538, 0.04876263067126274, 0.039664484560489655, -0.039747197180986404, 0.012595940381288528, -0.001112250960431993, 0.028220416978001595, 0.05757715180516243, -0.003018501913174987, 0.055912915617227554, 0.013717937283217907, 0.05438698083162308, 0.08030519634485245, 0.02970414236187935, 0.05141335353255272, 0.02747119776904583, 0.06936221569776535, 0.018380410969257355, -0.012192558497190475, 0.0450352318584919, -0.04755193367600441, 0.016801152378320694, -0.04919740930199623, 0.015220689587295055, -0.03702341020107269, -0.009615463204681873, 0.021448133513331413, 0.00749018881469965, -0.03446366265416145, -0.00901993177831173, -0.015418070368468761, -0.007314261514693499, 0.031877465546131134, -0.0019215070642530918, -0.00579607579857111, 0.004306797403842211, -0.01914234459400177, -0.02604394033551216, -0.07259547710418701, -0.03758350759744644, -0.021271269768476486, -0.021294308826327324, -0.010387576185166836, -0.0887540727853775, 0.006608237978070974, -0.058559272438287735, -0.024474604055285454, 0.03291473537683487, -0.002493654377758503, -0.0012913120444864035, -0.03281017020344734, 0.012442574836313725, -0.05130239203572273, -0.04534076526761055, -0.05803469941020012, -0.07062185555696487, -0.03968192636966705, -0.0744243711233139, 0.02869657427072525, 0.038196563720703125, 0.024562561884522438, -0.002112963004037738, 0.012000693939626217, 0.0064242142252624035, -0.023670298978686333, 0.04255562275648117, 0.05965977534651756, -0.03019307181239128, -0.05303299054503441, 0.025100482627749443, -0.016145329922437668, 0.015348083339631557, 0.018366219475865364, -0.022623414173722267, 0.0920947715640068, 0.06339967995882034, 0.0023127426393330097, 0.013525889255106449, -0.0297071635723114, -0.06364168226718903, -0.05222567543387413, -0.019958501681685448, -0.03186599537730217, 0.0003493109834380448, -0.042030271142721176, -0.04484476149082184, -0.02446882799267769, -0.028948776423931122, 0.013495124876499176, -0.0000809142948128283, 0.017651909962296486, 0.028605105355381966, 0.0487661249935627, 0.03203911706805229, 0.030433256179094315, -0.03491196781396866, -0.0345485620200634, 0.06324291974306107, 0.017704222351312637, 0.003840929828584194, -0.08595737814903259, -0.008663764223456383, 0.02967904321849346, 0.022224964573979378, 0.012198720127344131, -0.021896734833717346, 0.07110624015331268, 0.0030378533992916346, 0.005020023323595524, 0.01345106866210699, -0.009145976975560188, -0.016005121171474457, -0.0044681900180876255, 0.005933939479291439, -0.02194213680922985, -0.04229285195469856, -0.021984197199344635, 0.005297649651765823, 0.04319237172603607, -0.06295095384120941, -0.046191196888685226, -0.031049765646457672, 0.02774093486368656, 0.04630725085735321, 0.0035616562236100435, -0.03917350992560387, -0.0034841960296034813, -0.056337639689445496, -0.016162099316716194, 0.0444720983505249, 0.012284810654819012, 0.011140906251966953, 0.04755659028887749, 0.00968971662223339, -0.03962983191013336, 0.04037786275148392, 0.030184421688318253, 0.07757995277643204, 0.01622690260410309, -0.060556359589099884, 0.004776749759912491, -0.03087957575917244, 0.015351871959865093, -0.008185852319002151, -0.02848408743739128, -0.03338085114955902, -0.09893117845058441, -0.005176154896616936, -0.001035483437590301, -0.007817885838449001, -0.006553931161761284, 0.04626726731657982, 0.018943440169095993, -0.01651782914996147, -0.00005176534250495024, 0.013623923994600773, 0.053142186254262924, -0.023213308304548264, 0.04952244088053703, -0.009416370652616024, -0.00047112785978242755, -0.04721270874142647, 0.018765008077025414, -0.03490980342030525, -0.022594191133975983, -0.0019842791371047497, 0.05265504866838455, -0.00655109528452158, 0.06366361677646637, 0.10194604843854904, 0.021876953542232513, -0.044759076088666916, 0.029543329030275345, 0.0715998038649559, -0.038083091378211975, -0.036501575261354446, 0.0016231137560680509, -0.012005715630948544, -0.018990814685821533, 0.005369459744542837, -0.01570955663919449, 0.04958873614668846, 0.05045383796095848, -0.0036282616201788187, 0.004497448913753033, -0.0037792720831930637, -0.008375003933906555, -0.030445866286754608, -0.0417272225022316, -0.02720746211707592, 0.010775472037494183, -0.025957299396395683, 0.011528241448104382, 0.03748544678092003, 0.013395671732723713, 0.05178050324320793, 0.02078569121658802, -0.032757870852947235, -0.024491487070918083, 0.0358310267329216, 0.008467203937470913, -0.03679235652089119, -0.08092149347066879, -0.025956811383366585, 0.03062032349407673, 0.03728485107421875, -0.024743035435676575, -0.05571246147155762, -0.0020340238697826862, 0.04802998900413513, -0.05673399940133095, 0.05626365914940834, -0.01302979327738285, 0.04020601138472557, 0.04918831214308739, -0.023328280076384544, 0.040152788162231445, -0.022823845967650414, 0.0017231935635209084, 0.007148252334445715, 0.04692086577415466, -0.02229131944477558, -0.03969809412956238, -0.051504384726285934, 0.028130419552326202, 0.038829803466796875, 0.033523377031087875, 0.05217337980866432, -0.03190240263938904, -0.04209984838962555, 0.009910114109516144, 0.048062764108181, -0.059422414749860764, 0.004533136263489723, 0.038964882493019104, 0.03277754783630371, -0.053019601851701736, -0.04064580798149109, -0.025469060987234116, -0.011906838044524193, 0.040721576660871506, 0.003160229418426752, -0.04394589364528656, -0.03999974578619003, 0.03648526966571808, -0.004153958521783352, -0.03153934329748154, -0.061134785413742065, 0.053937412798404694, -0.002974891569465399, -0.006585912313312292, 0.0546465665102005, 0.028922026976943016, 0.036112260073423386, 0.061363011598587036, 0.023889213800430298, 0.007099153008311987, -0.04381416738033295, 0.039767276495695114, -0.03313452750444412, -0.014963092282414436, 0.011041132733225822, -0.046348847448825836, -0.0315360501408577, -0.015446553006768227, -0.03486732766032219, -0.0508541464805603, -0.013691692613065243, 0.011820431798696518, 0.0007032142602838576, -0.009383875876665115, -0.0038408427499234676, 0.048239815980196, -0.00943255890160799, -0.02496923692524433, -0.041325151920318604, -0.02435944974422455, -0.07664214819669724, -0.04980197548866272, 0.030313998460769653, 0.009525252506136894, 0.025467315688729286, 0.035662442445755005, 0.012002862989902496, 0.016897795721888542, 0.01620412990450859, -0.039531394839286804, 0.0046628909185528755, -0.013970451429486275, -0.025053510442376137, -0.013653737492859364, 0.030459992587566376, 0.007845645770430565, 0.013371855951845646, -0.04709269851446152, 0.029677148908376694, 0.008931822143495083, -0.006240550894290209, -0.01920383982360363, 0.003459732746705413, 0.02343154326081276, -0.07316018640995026, -0.03353869542479515, -0.010918688029050827, -0.034999746829271317, 0.028049983084201813, -0.03330222889780998, -0.0417160801589489, -0.0021371238399297, 0.020924037322402, 0.034916285425424576, -0.014742529019713402, -0.024949008598923683, 0.033010318875312805, -0.022563926875591278, 0.02037218026816845, -0.048261936753988266, 0.05070742219686508, -0.040946830064058304, 0.017680522054433823, -0.018807122483849525, 0.016643691807985306, -0.04613324627280235, 0.0473087877035141, -0.021820247173309326, -0.007793912664055824, -0.01897609978914261, 0.03952401503920555, -0.02347119338810444, 0.03436233475804329, 0.004107256419956684, 0.028218673542141914, -0.029393093660473824, 0.06503962725400925, -0.04770641028881073, 0.014039706438779831, -0.016777075827121735, 0.01064380630850792, -0.03235141187906265, 0.007673797197639942, -0.012799307703971863, -0.029231714084744453, 0.010750357061624527, 0.060544583946466446, 0.03551295027136803, 0.018922176212072372, -0.027668805792927742, -0.0221609715372324, 0.019756510853767395, -0.058309007436037064, -0.022548826411366463, -0.019169140607118607, -0.007766461465507746, -0.012784570455551147, 0.058145392686128616, 0.04600314423441887, -0.05027475208044052, -0.06462296843528748, 0.04053280130028725, 0.005893710069358349, -0.0031451075337827206, 0.015889808535575867, 0.024782512336969376, 0.018992191180586815, 0.06424716860055923, -0.031147083267569542, -0.008349000476300716, -0.01699710078537464, -0.044005077332258224, 0.030861932784318924, 0.006047478877007961, 0.01875048503279686, 0.002651787595823407, -0.04759093001484871, -0.02485811710357666, 0.08031640201807022, 0.022740520536899567, 0.015803780406713486, -0.007083693519234657, -0.05009264498949051, 0.04422004520893097, 0.016094913706183434, -0.031010864302515984, 0.004981223959475756, 0.00743988249450922, -0.031750455498695374, 0.06006656214594841, -0.006180745083838701, 0.012177218683063984, 0.04819411039352417, 0.05050383135676384, -0.03200901299715042, 0.07257527112960815, -0.01877857930958271, 0.003753055352717638, 0.05126693844795227, -0.07337842881679535, 0.0016513376031070948, -0.02762317843735218, 0.05950593575835228, -0.07265155017375946, 0.022148529067635536, 0.04663879796862602, 0.010293261148035526, 0.011108968406915665, -0.054688017815351486, -0.04183739796280861, 0.005930246319621801, -0.045850567519664764, 0.08208365738391876, 0.00945319514721632, -0.05470452457666397, 0.06427604705095291, -0.004329454619437456, -0.0543103963136673, 0.04713425040245056, 0.018442349508404732, 0.051911670714616776, 0.038871265947818756, 0.04899642989039421, -0.06270069628953934, 0.009306994266808033, -0.044869646430015564, 0.0070467195473611355, -0.048211436718702316, -0.015225080773234367, 0.04003666713833809, -0.03499177098274231, -0.028016362339258194, 0.029911521822214127, 0.009095086716115475, -0.01766795665025711, 0.05136265605688095, -0.05827614292502403, -0.041442904621362686, 0.003016228321939707, 0.007226023357361555, -0.0424535796046257, 0.013239841908216476, -0.03902570903301239, 0.013299282640218735, 0.02316334843635559, -0.003965653013437986, -0.006225719582289457, -0.022818220779299736, 0.035654518753290176, -0.050293225795030594, -0.04354148358106613, 0.024419743567705154, 0.00326032773591578, -0.022989485412836075, 0.029313629493117332, 0.003960397094488144, 0.013390110805630684, 0.02965327724814415, 0.006398511119186878, 0.016556333750486374, -0.011581109836697578, -0.025830386206507683, 0.018182147294282913, 0.0011589722707867622, 0.028020894154906273, -0.015696220099925995, 0.04620909318327904, 0.02011576108634472, 0.025299817323684692, -0.02383694052696228, -0.01630999706685543, -0.02917568013072014, 0.026528988033533096, -0.029515404254198074, 0.004792491439729929, -0.004581783432513475, -0.05623655021190643, -0.04696359857916832, -0.0029047317802906036, -0.03771038353443146, 0.033145155757665634, -0.060558345168828964, -0.003022243734449148, 0.04280785843729973, -0.01469338033348322, -0.0654517412185669, -0.0959978774189949, -0.023279987275600433, -0.03407105430960655, -0.010836746543645859, 0.04242526367306709, -0.0341666080057621, 0.03347482532262802, -0.03696538135409355, -0.05996491760015488, 0.05452139303088188, 0.04154377430677414, -0.043726541101932526, 0.05055968835949898, 0.04280273616313934, -0.05754421278834343, -0.0005027419538237154, 0.0348927304148674, -0.059125352650880814, 0.0003772811032831669, 0.016325045377016068, 0.014008632861077785, 0.019934242591261864, 0.023818308487534523, -0.061680689454078674, -0.014259979128837585, -0.06293608248233795, -0.041388656944036484, -0.05662786588072777, 0.01250221487134695, 0.07938773930072784 ]
Declan/CNN_model_v7
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-0 results: [] --- <!-- 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-v3-large__sst2__train-16-0 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.9917 - Accuracy: 0.7705 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7001 | 1.0 | 7 | 0.7327 | 0.2857 | | 0.6326 | 2.0 | 14 | 0.6479 | 0.5714 | | 0.5232 | 3.0 | 21 | 0.5714 | 0.5714 | | 0.3313 | 4.0 | 28 | 0.6340 | 0.7143 | | 0.3161 | 5.0 | 35 | 0.6304 | 0.7143 | | 0.0943 | 6.0 | 42 | 0.4719 | 0.8571 | | 0.0593 | 7.0 | 49 | 0.5000 | 0.7143 | | 0.0402 | 8.0 | 56 | 0.3530 | 0.8571 | | 0.0307 | 9.0 | 63 | 0.3499 | 0.8571 | | 0.0033 | 10.0 | 70 | 0.3258 | 0.8571 | | 0.0021 | 11.0 | 77 | 0.3362 | 0.8571 | | 0.0012 | 12.0 | 84 | 0.4591 | 0.8571 | | 0.0036 | 13.0 | 91 | 0.4661 | 0.8571 | | 0.001 | 14.0 | 98 | 0.5084 | 0.8571 | | 0.0017 | 15.0 | 105 | 0.5844 | 0.8571 | | 0.0005 | 16.0 | 112 | 0.6645 | 0.8571 | | 0.002 | 17.0 | 119 | 0.7422 | 0.8571 | | 0.0006 | 18.0 | 126 | 0.7354 | 0.8571 | | 0.0005 | 19.0 | 133 | 0.7265 | 0.8571 | | 0.0005 | 20.0 | 140 | 0.7207 | 0.8571 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.018080078065395355, -0.0034613530151546, -0.020326221361756325, 0.02969472110271454, 0.0349246971309185, 0.019448930397629738, -0.02095148339867592, -0.018035689368844032, -0.05503760278224945, 0.06663151830434799, 0.01240729633718729, -0.03860390931367874, 0.018852394074201584, 0.043415654450654984, -0.02500900812447071, -0.03030766360461712, -0.006953836884349585, -0.015174037776887417, -0.03131910413503647, -0.0023370077833533287, 0.01283783745020628, -0.012591949664056301, -0.021474312990903854, 0.02079276740550995, 0.0027211143169552088, 0.01310733612626791, -0.0013127458514645696, 0.021331623196601868, 0.029542120173573494, -0.06655380129814148, 0.012993402779102325, -0.0392419770359993, -0.05783925577998161, -0.025383487343788147, -0.014557478949427605, -0.00806527491658926, 0.006585565395653248, 0.024588782340288162, 0.035204507410526276, 0.04851442575454712, 0.0064810216426849365, 0.029291963204741478, -0.006184680853039026, -0.023520778864622116, 0.04276401177048683, 0.008716379292309284, -0.05799626186490059, -0.00544474134221673, 0.023741336539387703, -0.021991942077875137, -0.07043614983558655, -0.05291976407170296, -0.007639920338988304, 0.02416299656033516, -0.02510344237089157, -0.01751771755516529, -0.04035898670554161, 0.001358358422294259, 0.06605375558137894, -0.04977097734808922, -0.03063189424574375, 0.024966418743133545, -0.06921839714050293, 0.015237926505506039, 0.04506683722138405, -0.037498801946640015, 0.017804143950343132, -0.0388847291469574, 0.027912646532058716, -0.007800397928804159, 0.06010924279689789, -0.02162526547908783, 0.009555132128298283, -0.0892990380525589, -0.004402289632707834, -0.002489191945642233, 0.028440002351999283, 0.0562986396253109, -0.03856675699353218, 0.06219029054045677, 0.03545411676168442, -0.013733870349824429, 0.04276885837316513, -0.019697044044733047, 0.008248357102274895, 0.032019879668951035, -0.048011843115091324, 0.007272197864949703, 0.027125008404254913, 0.031523991376161575, -0.03886905685067177, -0.028379011899232864, -0.0277616698294878, -0.026204662397503853, -0.020916393026709557, 0.023207776248455048, 0.049292728304862976, -0.0040535395964980125, 0.024867910891771317, 0.015822650864720345, 0.026963714510202408, 0.039879921823740005, -0.024240463972091675, 0.06981007754802704, -0.008444344624876976, -0.014496921561658382, -0.022543055936694145, -0.016023829579353333, -0.03695159777998924, 0.013246794231235981, 0.02179637923836708, -0.030642658472061157, -0.01851261965930462, 0.04448564723134041, 0.009627005085349083, 0.00021793971245642751, 0.06964278221130371, -0.02346806973218918, -0.047029316425323486, -0.048376668244600296, 0.020249176770448685, 0.014840180054306984, -0.030623124912381172, 0.018579818308353424, -0.053609270602464676, -0.010259253904223442, -0.013567367568612099, -0.04478856548666954, -0.004628187045454979, 0.008017001673579216, 0.007608332205563784, 0.06223108246922493, 0.033574268221855164, -0.0851701945066452, 0.0015480932779610157, 0.013481653295457363, -0.04871656000614166, 0.037267833948135376, 0.015651829540729523, 0.12264721095561981, -0.04868858680129051, -0.0734814703464508, 0.009001389145851135, 0.0018967045471072197, -0.01803732104599476, 0.0324944369494915, 0.0037580649368464947, -0.02056286856532097, -0.001997455721721053, -0.007403723895549774, 0.05415324121713638, -0.0579877607524395, -0.01600062847137451, 0.06664325296878815, -0.008619687519967556, 0.05029921978712082, -0.05017438158392906, -0.02722991816699505, 0.011688662692904472, -0.022707579657435417, -0.008021506480872631, 0.03510994091629982, -0.024504652246832848, 0.0015200672205537558, -0.023207467049360275, -0.05117884278297424, 0.0015803556889295578, 0.08817917853593826, 0.0026004668325185776, -0.03715061768889427, -0.02713254652917385, 0.02688942477107048, 0.06031759828329086, 0.055130574852228165, -0.028202004730701447, 0.037545304745435715, 0.049646154046058655, 0.0290329959243536, -0.0440090112388134, 0.04163093492388725, 0.025609055534005165, -0.03566915914416313, -0.03128926828503609, 0.03162243962287903, 0.00871959701180458, -0.05056114122271538, 0.015153891406953335, 0.031088007614016533, 0.023697972297668457, -0.0625295490026474, -0.05375584587454796, 0.048092734068632126, -0.006575393490493298, -0.015594188123941422, 0.011413056403398514, 0.009157874621450901, -0.022045264020562172, 0.031220020726323128, -0.01582838036119938, -0.002731302985921502, -0.024466322734951973, -0.024174878373742104, 0.02234526537358761, 0.007190907374024391, 0.030069630593061447, 0.044994909316301346, -0.013286308385431767, 0.09105894714593887, -0.03608844429254532, 0.015287698246538639, -0.032323531806468964, -0.05936116725206375, 0.010335380211472511, 0.059681568294763565, 0.05309591069817543, 0.05784730240702629, -0.004196696449071169, -0.03796859458088875, 0.05034636706113815, 0.07256970554590225, 0.04683825373649597, 0.0004207317251712084, -0.022911202162504196, -0.014145530760288239, 0.025592150166630745, 0.053369179368019104, -0.04591991752386093, -0.026206882670521736, 0.03361763805150986, 0.043121691793203354, -0.018100323155522346, 0.02306552790105343, -0.023015925660729408, 0.032584190368652344, -0.05073632672429085, -0.0585591159760952, 0.03295646980404854, 0.01950562559068203, -0.002519542584195733, 0.03825094923377037, 0.004328942392021418, 0.010252808220684528, 0.016330018639564514, 0.015074953436851501, 0.009701278991997242, -0.04861912131309509, 0.02992662601172924, 0.016511280089616776, 0.05267899110913277, -0.03805186599493027, 0.03636370599269867, -0.011077125556766987, 0.0006322781555354595, 0.04131527245044708, -0.039463553577661514, 0.027688492089509964, 0.06002892553806305, 0.037958648055791855, -0.0320991612970829, 0.00967553723603487, 0.008209007792174816, 0.02109154313802719, 0.05048706755042076, -0.0004834882274735719, 0.06416917592287064, 0.023828210309147835, 0.0558924674987793, 0.08176524192094803, 0.02638338878750801, 0.04461256042122841, 0.02410898171365261, 0.07441040128469467, 0.014100685715675354, -0.013154531829059124, 0.038006190210580826, -0.04622476175427437, 0.019245058298110962, -0.045318979769945145, 0.013408534228801727, -0.03206522762775421, -0.006600544322282076, 0.02656855806708336, 0.019890088587999344, -0.0358303003013134, -0.010072190314531326, -0.009912081994116306, -0.004663868807256222, 0.027630891650915146, -0.004127085208892822, 0.0005607802886515856, 0.0005340918432921171, -0.018553711473941803, -0.020958490669727325, -0.0602949820458889, -0.03884327411651611, -0.024538902565836906, -0.02013538032770157, -0.021841460838913918, -0.09011630713939667, 0.008891887031495571, -0.0641787052154541, -0.020002584904432297, 0.033131759613752365, 0.003268093103542924, -0.00426328182220459, -0.03467859327793121, 0.011092405766248703, -0.047404125332832336, -0.040887001901865005, -0.05317121744155884, -0.06855401396751404, -0.041308242827653885, -0.07472068071365356, 0.02742297574877739, 0.05012604966759682, 0.03085123933851719, -0.007182521745562553, 0.012659621424973011, 0.015202363952994347, -0.03848039731383324, 0.045373573899269104, 0.053580932319164276, -0.03000863641500473, -0.050489068031311035, 0.02598033845424652, -0.010083546862006187, 0.014649631455540657, 0.000010382077562098857, -0.024970466271042824, 0.08725827932357788, 0.06215374171733856, 0.004727086052298546, 0.00020084306015633047, -0.02363491989672184, -0.06322497129440308, -0.054486941546201706, -0.028060307726264, -0.028416302055120468, 0.0018869061022996902, -0.04038247838616371, -0.039614032953977585, -0.024269888177514076, -0.03434470668435097, 0.019374802708625793, 0.001334922737441957, 0.003485867055132985, 0.01958799920976162, 0.04046246409416199, 0.030328646302223206, 0.03224385529756546, -0.03297596424818039, -0.03860212489962578, 0.0724700465798378, 0.021056126803159714, 0.01651693880558014, -0.07170324772596359, -0.0047522843815386295, 0.02931377850472927, 0.02140103653073311, 0.01864476129412651, -0.022143598645925522, 0.06126829609274864, 0.008054235950112343, 0.0020528368186205626, 0.014655510894954205, -0.015336764045059681, -0.024852663278579712, -0.012625135481357574, 0.006362746469676495, -0.024374427273869514, -0.04225541278719902, -0.008772161789238453, -0.00417525926604867, 0.04163779318332672, -0.06186867132782936, -0.05398987606167793, -0.03296424448490143, 0.024495918303728104, 0.04412919655442238, 0.0024444328155368567, -0.038773249834775925, -0.00811835564672947, -0.057999614626169205, -0.0052499971352517605, 0.047706253826618195, 0.008134212344884872, 0.012381800450384617, 0.045438315719366074, 0.010043591260910034, -0.021490447223186493, 0.05349930003285408, 0.026778552681207657, 0.07130174338817596, 0.014202844351530075, -0.06785008311271667, 0.018201129510998726, -0.018944069743156433, 0.010777712799608707, -0.012594694271683693, -0.02580064907670021, -0.04114226996898651, -0.10555756837129593, 0.00042389132431708276, 0.007513140793889761, -0.00666132103651762, -0.010792073793709278, 0.049051545560359955, 0.013900602236390114, -0.012256879359483719, -0.007647031918168068, 0.005134539678692818, 0.04207107797265053, -0.03723778575658798, 0.03954586014151573, -0.0056632994674146175, -0.011402716860175133, -0.05603377893567085, 0.019260073080658913, -0.04516512528061867, -0.024248933419585228, 0.01342692505568266, 0.047655828297138214, -0.006682948209345341, 0.07080487906932831, 0.09543943405151367, 0.0293391402810812, -0.03371551260352135, 0.03534848615527153, 0.07311755418777466, -0.03098365291953087, -0.04298463463783264, -0.003901116084307432, -0.010114066302776337, -0.008318421430885792, 0.001205151667818427, -0.007985335774719715, 0.04943440854549408, 0.0377451628446579, -0.007037253584712744, -0.00023544866417068988, -0.004733882378786802, -0.007256913464516401, -0.023255066946148872, -0.03907899558544159, -0.02126700058579445, 0.005335430148988962, -0.028124161064624786, 0.01689222641289234, 0.03977692499756813, 0.02118762396275997, 0.050573285669088364, 0.022036634385585785, -0.04519561678171158, -0.018142960965633392, 0.03044925257563591, 0.005637884605675936, -0.0387687012553215, -0.07203810662031174, -0.00788841862231493, 0.042176030576229095, 0.03131314367055893, -0.022086752578616142, -0.056090209633111954, -0.0060692522674798965, 0.06029867008328438, -0.06725206226110458, 0.04495547339320183, -0.010627334006130695, 0.0367765910923481, 0.05514831468462944, -0.02160455659031868, 0.04538443312048912, -0.02550387755036354, 0.010025500319898129, -0.000304776564007625, 0.039746690541505814, -0.01515412051230669, -0.029322681948542595, -0.04943801462650299, 0.02437639981508255, 0.03318825736641884, 0.03245611488819122, 0.0585654117166996, -0.03172517567873001, -0.03420561924576759, 0.0006188743864186108, 0.047129008919000626, -0.06009088084101677, -0.000060993759689154103, 0.03643009066581726, 0.033864475786685944, -0.05563285946846008, -0.032553739845752716, -0.020050518214702606, -0.008764714933931828, 0.042147573083639145, 0.004097563214600086, -0.03735192492604256, -0.04890086129307747, 0.033478498458862305, -0.005506298039108515, -0.0334327407181263, -0.0557251013815403, 0.06058293953537941, -0.0075040338560938835, -0.01030427124351263, 0.03838888183236122, 0.024505188688635826, 0.03136466071009636, 0.06805825233459473, 0.0159529447555542, 0.0017736974405124784, -0.040000736713409424, 0.03966953232884407, -0.03714871034026146, -0.015223963186144829, 0.009337255731225014, -0.04244249314069748, -0.04046138375997543, -0.014916965737938881, -0.03796861320734024, -0.03558947145938873, -0.018411170691251755, 0.01704356074333191, 0.0039583067409694195, -0.01855636201798916, -0.00776720279827714, 0.06014189496636391, -0.0012971232645213604, -0.030713917687535286, -0.031798336654901505, -0.029095210134983063, -0.06783231347799301, -0.05184144526720047, 0.038330331444740295, 0.013783353380858898, 0.015569295734167099, 0.04405510798096657, 0.01435744110494852, 0.00874923262745142, 0.02273576147854328, -0.041687674820423126, 0.016032865270972252, -0.012892288155853748, -0.029040753841400146, -0.017806963995099068, 0.030249502509832382, 0.011047041043639183, 0.02172357216477394, -0.05447908863425255, 0.02898302674293518, 0.001445974106900394, -0.007214645855128765, -0.013365834951400757, 0.012373347766697407, 0.028142660856246948, -0.06890340149402618, -0.031207669526338577, -0.004456718452274799, -0.02848486229777336, 0.029807809740304947, -0.031316474080085754, -0.03353619575500488, -0.006015011575073004, 0.01869976334273815, 0.03360752761363983, -0.01946975663304329, -0.0259227491915226, 0.03226142004132271, -0.019605400040745735, 0.012180105783045292, -0.05205829441547394, 0.058082032948732376, -0.03350936248898506, 0.0188540481030941, -0.023732885718345642, 0.012961968779563904, -0.0379415862262249, 0.043727461248636246, -0.02405434474349022, -0.007955297827720642, -0.008169662207365036, 0.05480404570698738, -0.01479481440037489, 0.03583839535713196, 0.0016724893357604742, 0.03775385394692421, -0.03130146861076355, 0.0677795559167862, -0.03876179829239845, 0.01035157311707735, -0.016492025926709175, 0.0012663309462368488, -0.024320438504219055, 0.011764940805733204, -0.027996443212032318, -0.036197517067193985, 0.015185235999524593, 0.07358361035585403, 0.033574119210243225, 0.028484521433711052, -0.02660166658461094, -0.03116019442677498, 0.014092120341956615, -0.05488960072398186, -0.023756206035614014, -0.009745148941874504, -0.0017975918017327785, -0.015017831698060036, 0.06084803491830826, 0.04224058613181114, -0.060863520950078964, -0.06505415588617325, 0.04647381231188774, -0.004934145137667656, -0.008168468251824379, 0.007808775641024113, 0.022243713960051537, 0.03143039345741272, 0.058472488075494766, -0.03387236222624779, -0.0048667676746845245, -0.02099023014307022, -0.03625145182013512, 0.03368949890136719, 0.010081366635859013, 0.014390316791832447, 0.010660992003977299, -0.05079375207424164, -0.023432474583387375, 0.07009489089250565, 0.02664424665272236, 0.00992302130907774, -0.012510059401392937, -0.039619509130716324, 0.037257540971040726, 0.012146130204200745, -0.04366385191679001, 0.006471958011388779, 0.008080543950200081, -0.02478291466832161, 0.04496873542666435, -0.01295000035315752, 0.01345031801611185, 0.06705567985773087, 0.05173236131668091, -0.03545500710606575, 0.07818140834569931, -0.022449184209108353, 0.002925580134615302, 0.05308380350470543, -0.07954230904579163, 0.00586068257689476, -0.036483798176050186, 0.06685055047273636, -0.06878765672445297, 0.02564525604248047, 0.04673093557357788, 0.0119839608669281, 0.01336909644305706, -0.0543677993118763, -0.03576405718922615, 0.0031275805085897446, -0.046839334070682526, 0.08803481608629227, 0.023738747462630272, -0.05100366473197937, 0.05364437773823738, -0.0009633381268940866, -0.05821885168552399, 0.05027336999773979, 0.02271624282002449, 0.03765891492366791, 0.04339826852083206, 0.04412663355469704, -0.06226283684372902, 0.015190113335847855, -0.042625244706869125, 0.020300405099987984, -0.03748416528105736, -0.021624146029353142, 0.034275785088539124, -0.03465570881962776, -0.030436353757977486, 0.027430040761828423, 0.004197163973003626, -0.021458789706230164, 0.05705631524324417, -0.05902285501360893, -0.04540415480732918, 0.015204869210720062, 0.02570781297981739, -0.04463459551334381, 0.008266262710094452, -0.03342036157846451, 0.0113607756793499, 0.022343438118696213, 0.0016727629117667675, -0.010776667855679989, -0.01819203607738018, 0.03512818366289139, -0.06267394870519638, -0.02846248634159565, 0.022229518741369247, -0.0029418219346553087, -0.01982959918677807, 0.0146053871139884, -0.0016765582840889692, 0.005319437477737665, 0.035322342067956924, -0.001857660710811615, 0.016328243538737297, -0.016766835004091263, -0.02920868992805481, 0.017462152987718582, -0.0006087423535063863, 0.018786665052175522, -0.01579165644943714, 0.03603910654783249, 0.019596513360738754, 0.024007365107536316, -0.014943073503673077, -0.023141993209719658, -0.031349752098321915, 0.02501707710325718, -0.029937146231532097, 0.001439458574168384, -0.014847503043711185, -0.05922621488571167, -0.05257498100399971, -0.011482615023851395, -0.04429635778069496, 0.02914261445403099, -0.06165524572134018, 0.002717392984777689, 0.037841495126485825, -0.012302138842642307, -0.0626029521226883, -0.1115553081035614, -0.021664133295416832, -0.031031491234898567, -0.015768766403198242, 0.03970286250114441, -0.033420927822589874, 0.0379653200507164, -0.04192369803786278, -0.05357556790113449, 0.04936673864722252, 0.027780527248978615, -0.03841051086783409, 0.043364886194467545, 0.04228505119681358, -0.05168118700385094, 0.00291048944927752, 0.04438638314604759, -0.05526280030608177, 0.004540579859167337, 0.013806281611323357, 0.009510304778814316, 0.018008379265666008, 0.023061899468302727, -0.05811305716633797, -0.003817373886704445, -0.059728655964136124, -0.046935074031353, -0.050304707139730453, 0.012777289375662804, 0.07514656335115433 ]
Declan/CNN_model_v8
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-1 results: [] --- <!-- 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-v3-large__sst2__train-16-1 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6804 - Accuracy: 0.5497 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7086 | 1.0 | 7 | 0.7176 | 0.2857 | | 0.6897 | 2.0 | 14 | 0.7057 | 0.2857 | | 0.6491 | 3.0 | 21 | 0.6582 | 0.8571 | | 0.567 | 4.0 | 28 | 0.4480 | 0.8571 | | 0.4304 | 5.0 | 35 | 0.5465 | 0.7143 | | 0.0684 | 6.0 | 42 | 0.5408 | 0.8571 | | 0.0339 | 7.0 | 49 | 0.6501 | 0.8571 | | 0.0082 | 8.0 | 56 | 0.9152 | 0.8571 | | 0.0067 | 9.0 | 63 | 2.5162 | 0.5714 | | 0.0045 | 10.0 | 70 | 1.1136 | 0.8571 | | 0.0012 | 11.0 | 77 | 1.1668 | 0.8571 | | 0.0007 | 12.0 | 84 | 1.2071 | 0.8571 | | 0.0005 | 13.0 | 91 | 1.2310 | 0.8571 | | 0.0006 | 14.0 | 98 | 1.2476 | 0.8571 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.02060598134994507, -0.0044014668092131615, -0.021937085315585136, 0.028567764908075333, 0.03586408868432045, 0.017915159463882446, -0.021051188930869102, -0.016335168853402138, -0.054299671202898026, 0.06734755635261536, 0.011783752590417862, -0.03897900879383087, 0.018241744488477707, 0.047061700373888016, -0.02496250346302986, -0.029285069555044174, -0.005750666372478008, -0.01783890277147293, -0.029314864426851273, -0.005172159522771835, 0.011282602325081825, -0.011756934225559235, -0.02190789394080639, 0.022775709629058838, 0.002548960968852043, 0.009980801492929459, -0.002172554610297084, 0.020076429471373558, 0.029291385784745216, -0.06602077931165695, 0.013165682554244995, -0.03970866650342941, -0.05773761868476868, -0.024419154971837997, -0.013521408662199974, -0.009157061576843262, 0.008566007018089294, 0.023557443171739578, 0.03173578903079033, 0.0474611297249794, 0.009379434399306774, 0.02716648392379284, -0.00705129886046052, -0.024403465911746025, 0.04223620891571045, 0.006070809904485941, -0.060905180871486664, -0.006791588384658098, 0.022122792899608612, -0.022895388305187225, -0.07178498059511185, -0.05495405197143555, -0.004478383809328079, 0.026011012494564056, -0.02277599461376667, -0.02027430385351181, -0.03948768228292465, 0.0002233536943094805, 0.06677477061748505, -0.05095180869102478, -0.032228849828243256, 0.023118505254387856, -0.06930790841579437, 0.01768611930310726, 0.043445292860269547, -0.03666668012738228, 0.019014419987797737, -0.04027257114648819, 0.02722032740712166, -0.006199157331138849, 0.061084944754838943, -0.020307352766394615, 0.009612991474568844, -0.09115435183048248, -0.0045983921736478806, -0.004584555514156818, 0.027475066483020782, 0.05748846009373665, -0.040030092000961304, 0.06380275636911392, 0.0343945249915123, -0.01251602079719305, 0.041929878294467926, -0.020458800718188286, 0.006007862742990255, 0.03232051059603691, -0.04863736405968666, 0.007341243792325258, 0.02632630057632923, 0.031242992728948593, -0.03866557776927948, -0.026999151334166527, -0.025016073137521744, -0.026015859097242355, -0.018624262884259224, 0.024005413055419922, 0.048046551644802094, -0.005922430194914341, 0.024750983342528343, 0.015293325297534466, 0.02711068093776703, 0.03955661877989769, -0.02332654595375061, 0.07072418928146362, -0.008716704323887825, -0.013025310821831226, -0.022883262485265732, -0.015057407319545746, -0.036129701882600784, 0.013148636557161808, 0.0192167516797781, -0.03234202414751053, -0.016126694157719612, 0.04369616135954857, 0.011539680883288383, 0.0011981248389929533, 0.06971750408411026, -0.02373857982456684, -0.04582058638334274, -0.046751342713832855, 0.020899884402751923, 0.01318470947444439, -0.030423350632190704, 0.01772228442132473, -0.05674834921956062, -0.01149723306298256, -0.010493427515029907, -0.043687812983989716, -0.004271885845810175, 0.009352496825158596, 0.006660053040832281, 0.061642151325941086, 0.033628564327955246, -0.08733217418193817, -0.0010237927781417966, 0.01250892411917448, -0.04880818352103233, 0.038092587143182755, 0.016640005633234978, 0.1202019527554512, -0.045881472527980804, -0.0757606029510498, 0.007118315435945988, 0.003436889499425888, -0.017234282568097115, 0.032669395208358765, 0.004167844075709581, -0.01827997900545597, -0.0013430049875751138, -0.008297136053442955, 0.05302825942635536, -0.05616238713264465, -0.016686689108610153, 0.06677152961492538, -0.007304946426302195, 0.04836742579936981, -0.050445619970560074, -0.02805902250111103, 0.00978819839656353, -0.020975502207875252, -0.008771604858338833, 0.03378178924322128, -0.02590680867433548, 0.002741405041888356, -0.022549843415617943, -0.04881675913929939, 0.004547502379864454, 0.08922559767961502, 0.0015876340912654996, -0.036895737051963806, -0.027032990008592606, 0.026339072734117508, 0.05949534475803375, 0.053612563759088516, -0.028494756668806076, 0.035103850066661835, 0.04580702632665634, 0.028579894453287125, -0.04449966922402382, 0.039786890149116516, 0.029199818149209023, -0.03306585177779198, -0.03166719153523445, 0.031353726983070374, 0.009297080338001251, -0.04914642497897148, 0.0149864936247468, 0.030887875705957413, 0.023992419242858887, -0.06118234992027283, -0.05307602137327194, 0.0494086816906929, -0.0056426385417580605, -0.016606338322162628, 0.009593441151082516, 0.010388622991740704, -0.021869154646992683, 0.031153013929724693, -0.016581356525421143, -0.0032455900218337774, -0.026227377355098724, -0.02287914976477623, 0.02492145448923111, 0.007050166372209787, 0.028988422825932503, 0.04570133611559868, -0.012620302848517895, 0.08606062829494476, -0.03823775053024292, 0.015008794143795967, -0.035556767135858536, -0.06074981763958931, 0.009226987138390541, 0.060880597680807114, 0.0565556138753891, 0.05624129995703697, -0.004473867826163769, -0.03838467225432396, 0.04915889725089073, 0.07376591116189957, 0.046699345111846924, 0.0006864662864245474, -0.02494235523045063, -0.015009494498372078, 0.025377169251441956, 0.05263467878103256, -0.04807646945118904, -0.027253955602645874, 0.03414696827530861, 0.04212920367717743, -0.0187756959348917, 0.02373114600777626, -0.02387874573469162, 0.03192271292209625, -0.05085586756467819, -0.06087186187505722, 0.03327638655900955, 0.019525552168488503, -0.002440580865368247, 0.03970145061612129, 0.0020327595993876457, 0.01247592456638813, 0.015859099105000496, 0.014613110572099686, 0.012137032113969326, -0.04776064306497574, 0.03180558979511261, 0.01367616280913353, 0.05363183096051216, -0.037370093166828156, 0.03743181750178337, -0.010513266548514366, -0.002713034162297845, 0.03974534943699837, -0.03872075304389, 0.025808267295360565, 0.061058465391397476, 0.039654720574617386, -0.0319068618118763, 0.01185392402112484, 0.008253883570432663, 0.022094637155532837, 0.05179272219538689, -0.0015506118070334196, 0.061868228018283844, 0.02398308552801609, 0.05521012470126152, 0.08147671073675156, 0.023358548060059547, 0.04385652765631676, 0.024770090356469154, 0.0752592533826828, 0.014682259410619736, -0.013718909583985806, 0.03983912244439125, -0.04638271778821945, 0.021399907767772675, -0.044024158269166946, 0.014559518545866013, -0.032183099538087845, -0.005092318169772625, 0.028338583186268806, 0.019143028184771538, -0.03548522666096687, -0.00903613492846489, -0.010937516577541828, -0.005282989237457514, 0.029410427436232567, -0.007365763187408447, 0.0023825655225664377, 0.0003670479927677661, -0.019881105050444603, -0.020986933261156082, -0.05983886495232582, -0.03676020726561546, -0.024823466315865517, -0.021844714879989624, -0.020028695464134216, -0.09050627052783966, 0.00968595314770937, -0.06443565338850021, -0.01974491961300373, 0.034311991184949875, 0.005392993334680796, -0.002767381723970175, -0.03386865556240082, 0.012653663754463196, -0.04741215333342552, -0.037632063031196594, -0.0544973649084568, -0.06768358498811722, -0.03802879527211189, -0.0777752697467804, 0.026210151612758636, 0.05069310963153839, 0.031135577708482742, -0.004288874100893736, 0.010169499553740025, 0.016235362738370895, -0.03757164999842644, 0.04263683035969734, 0.05484771728515625, -0.026104560121893883, -0.05050455033779144, 0.02616288885474205, -0.011101202107965946, 0.012672732584178448, -0.001461539650335908, -0.026158416643738747, 0.08738069981336594, 0.060142941772937775, 0.00416995445266366, 0.0009359724936075509, -0.02401343546807766, -0.06314337998628616, -0.05281781777739525, -0.029935738071799278, -0.02878689393401146, 0.0007605579448863864, -0.041293878108263016, -0.039502695202827454, -0.024603378027677536, -0.03311317041516304, 0.01755635440349579, -0.000013180828318581916, 0.003714896971359849, 0.021102100610733032, 0.038228344172239304, 0.028975434601306915, 0.030853452160954475, -0.035023801028728485, -0.03751030191779137, 0.07319149374961853, 0.021680742502212524, 0.015086241997778416, -0.07356669753789902, -0.004232063889503479, 0.028932152315974236, 0.02094052918255329, 0.018216365948319435, -0.019875820726156235, 0.06474266201257706, 0.008598843589425087, 0.0033879901748150587, 0.01538211852312088, -0.01644342765212059, -0.021981457248330116, -0.01186311524361372, 0.008130183443427086, -0.02449994720518589, -0.043532758951187134, -0.009382272139191628, -0.005643296521157026, 0.04115397855639458, -0.06046520546078682, -0.052006881684064865, -0.032299697399139404, 0.025493288412690163, 0.042174432426691055, 0.004915983881801367, -0.039800554513931274, -0.006405022460967302, -0.056131355464458466, -0.008009250275790691, 0.04750847816467285, 0.009693617932498455, 0.014906154945492744, 0.046313557773828506, 0.009895416907966137, -0.022685008123517036, 0.04963741824030876, 0.02914414554834366, 0.07335598766803741, 0.012677677907049656, -0.06909187883138657, 0.017831729725003242, -0.01979384385049343, 0.010114365257322788, -0.013468407094478607, -0.025725148618221283, -0.04274076968431473, -0.10497768968343735, 0.0010606182040646672, 0.0052350787445902824, -0.004075225908309221, -0.009830845519900322, 0.05077488347887993, 0.012597926892340183, -0.013423716649413109, -0.006247645244002342, 0.005998584907501936, 0.04372086748480797, -0.038843605667352676, 0.040918175131082535, -0.002819255692884326, -0.010935780592262745, -0.05426416173577309, 0.019289545714855194, -0.04349086061120033, -0.025606440380215645, 0.013450562953948975, 0.04790510609745979, -0.005186561495065689, 0.06969646364450455, 0.09542969614267349, 0.028680820018053055, -0.035271696746349335, 0.0372701920568943, 0.07191900908946991, -0.030526602640748024, -0.04326851665973663, -0.0081453463062644, -0.008944982662796974, -0.00837316270917654, 0.0017237461870536208, -0.006016525439918041, 0.050036925822496414, 0.03619074448943138, -0.005030281376093626, -0.001978351501747966, -0.004499805625528097, -0.008819907903671265, -0.0240212120115757, -0.03836740925908089, -0.020394019782543182, 0.007612863089889288, -0.02755090594291687, 0.014623862691223621, 0.041660480201244354, 0.021619776263833046, 0.050423696637153625, 0.022219279780983925, -0.04386524856090546, -0.017788514494895935, 0.02981634996831417, 0.00665394077077508, -0.03847299888730049, -0.07205820083618164, -0.00900152139365673, 0.043155767023563385, 0.030704841017723083, -0.020138973370194435, -0.05791371688246727, -0.004818185698240995, 0.060761015862226486, -0.06819186359643936, 0.044908519834280014, -0.011086401529610157, 0.03890590742230415, 0.05617420747876167, -0.020812980830669403, 0.04580073058605194, -0.024169184267520905, 0.009801252745091915, 0.0001740440056892112, 0.03956756368279457, -0.014725296758115292, -0.027280857786536217, -0.05122784897685051, 0.02455924265086651, 0.030364636331796646, 0.03345223888754845, 0.05821573734283447, -0.03293555974960327, -0.03403012454509735, -0.0004899216582998633, 0.04739401116967201, -0.060234081000089645, -0.0010424940846860409, 0.037401147186756134, 0.03383580967783928, -0.05544213950634003, -0.03250827267765999, -0.020043956115841866, -0.008539053611457348, 0.04247547686100006, 0.004100647289305925, -0.035955995321273804, -0.046382222324609756, 0.03191559761762619, -0.006818052846938372, -0.03412877023220062, -0.055758800357580185, 0.06005045771598816, -0.00960495788604021, -0.011604798957705498, 0.04037304222583771, 0.026755202561616898, 0.03111828863620758, 0.06788475811481476, 0.016899850219488144, 0.0014356250176206231, -0.03966335952281952, 0.041419174522161484, -0.03650883957743645, -0.016685068607330322, 0.00775025924667716, -0.04476644843816757, -0.04146146401762962, -0.014948555268347263, -0.037932224571704865, -0.035739168524742126, -0.019299549981951714, 0.016223855316638947, 0.004520631395280361, -0.0203720573335886, -0.0050065480172634125, 0.060071125626564026, -0.0024558769073337317, -0.028173714876174927, -0.029953934252262115, -0.028678592294454575, -0.0650397539138794, -0.05082419887185097, 0.036021601408720016, 0.014808899722993374, 0.014970122836530209, 0.04199450463056564, 0.015641693025827408, 0.008543300442397594, 0.022844592109322548, -0.04259929805994034, 0.017239775508642197, -0.013220139779150486, -0.02636241726577282, -0.019313110038638115, 0.029074786230921745, 0.011318430304527283, 0.022129831835627556, -0.05467717722058296, 0.02677379548549652, 0.0010919262422248721, -0.006306259892880917, -0.012548687867820263, 0.013254956342279911, 0.028896423056721687, -0.07031460106372833, -0.03200722485780716, -0.0061162435449659824, -0.027824999764561653, 0.02966492250561714, -0.033037930727005005, -0.03232026472687721, -0.005332217551767826, 0.017536552622914314, 0.033443767577409744, -0.018503662198781967, -0.026358628645539284, 0.03141763061285019, -0.022408343851566315, 0.012307874858379364, -0.05182773619890213, 0.05869850143790245, -0.03213169798254967, 0.015757322311401367, -0.02384338527917862, 0.01178053580224514, -0.03767160326242447, 0.03985723853111267, -0.022795921191573143, -0.007183565758168697, -0.007796084508299828, 0.05319657176733017, -0.016350634396076202, 0.037685129791498184, 0.0023367584217339754, 0.03484439104795456, -0.030755184590816498, 0.06920432299375534, -0.03953151777386665, 0.010957440361380577, -0.0173490047454834, 0.0005461685359477997, -0.022850697860121727, 0.01208367571234703, -0.02861076220870018, -0.03610053285956383, 0.01443889643996954, 0.07379107922315598, 0.03684884309768677, 0.029356976971030235, -0.028268810361623764, -0.029437776654958725, 0.015008112415671349, -0.0539822056889534, -0.025533603504300117, -0.009653621353209019, -0.0004047309630550444, -0.013340353034436703, 0.0609893836081028, 0.04226050525903702, -0.06016618013381958, -0.06382742524147034, 0.04554552957415581, -0.006269529461860657, -0.009007256478071213, 0.007983366958796978, 0.021572763100266457, 0.029850464314222336, 0.05984476953744888, -0.03264683857560158, -0.0036555277183651924, -0.019512001425027847, -0.036644525825977325, 0.033922601491212845, 0.008550313301384449, 0.013285675086081028, 0.009344578720629215, -0.052251920104026794, -0.02495468035340309, 0.07015251368284225, 0.02881118282675743, 0.011489455588161945, -0.012122130021452904, -0.04019938409328461, 0.03579755499958992, 0.012182406149804592, -0.04271867126226425, 0.006977649871259928, 0.010501476004719734, -0.02209991216659546, 0.04597871005535126, -0.013532559387385845, 0.012098371051251888, 0.0670279711484909, 0.05130663514137268, -0.03639956936240196, 0.0799359679222107, -0.022418251261115074, 0.0026236141566187143, 0.05334804579615593, -0.0816793143749237, 0.004791619256138802, -0.0369122140109539, 0.0682142898440361, -0.07107994705438614, 0.026568880304694176, 0.04734881967306137, 0.008122021332383156, 0.013511794619262218, -0.05588007718324661, -0.036926474422216415, 0.0027522516902536154, -0.04294571280479431, 0.08603423833847046, 0.021557942032814026, -0.05196306109428406, 0.053759366273880005, 0.0008870068122632802, -0.05780860409140587, 0.051417481154203415, 0.021247118711471558, 0.039271414279937744, 0.04547819495201111, 0.042442336678504944, -0.06165046989917755, 0.014105004258453846, -0.04450652748346329, 0.02331383526325226, -0.03757378086447716, -0.02470020018517971, 0.03302239999175072, -0.03408663719892502, -0.02955145761370659, 0.02657712809741497, 0.005289571359753609, -0.022913901135325432, 0.055506978183984756, -0.05854135379195213, -0.045404162257909775, 0.013028165325522423, 0.023824216797947884, -0.04654010757803917, 0.006100782658904791, -0.03316596895456314, 0.011515258811414242, 0.02394864521920681, 0.0029778117313981056, -0.010227272287011147, -0.016799375414848328, 0.03506562486290932, -0.06223442777991295, -0.026227260008454323, 0.02310139685869217, -0.0032067634165287018, -0.02111891284584999, 0.01575145684182644, -0.0052920151501894, 0.004762378521263599, 0.03455825522542, 0.00039674638537690043, 0.0148868253454566, -0.015542122535407543, -0.03187303990125656, 0.018368616700172424, 0.000775993918068707, 0.0164624135941267, -0.016381653025746346, 0.034544676542282104, 0.021214080974459648, 0.024477647617459297, -0.013605643063783646, -0.02268759347498417, -0.032193806022405624, 0.025419149547815323, -0.029115477576851845, -0.0012482638703659177, -0.015586252324283123, -0.05795302987098694, -0.055099550634622574, -0.008280621841549873, -0.04529700055718422, 0.028436535969376564, -0.06083761155605316, 0.00221557030454278, 0.036516908556222916, -0.012718459591269493, -0.06248383969068527, -0.11076494306325912, -0.022498641163110733, -0.031450770795345306, -0.01525161974132061, 0.03813837841153145, -0.034250643104314804, 0.038930296897888184, -0.0445200614631176, -0.05121852084994316, 0.05159822478890419, 0.027034616097807884, -0.03943900391459465, 0.04285794124007225, 0.04095805063843727, -0.05351085588335991, 0.002714072586968541, 0.04488980770111084, -0.05738840997219086, 0.0063602980226278305, 0.012456264346837997, 0.011833267286419868, 0.016564592719078064, 0.02163761295378208, -0.060105279088020325, -0.004864394664764404, -0.05992894619703293, -0.04626240208745003, -0.05159510672092438, 0.012844938784837723, 0.07551967352628708 ]
Declan/ChicagoTribune_model_v1
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-2 results: [] --- <!-- 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-v3-large__sst2__train-16-2 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6959 - Accuracy: 0.5008 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7079 | 1.0 | 7 | 0.7361 | 0.2857 | | 0.6815 | 2.0 | 14 | 0.7659 | 0.2857 | | 0.6938 | 3.0 | 21 | 0.7944 | 0.2857 | | 0.4584 | 4.0 | 28 | 1.2441 | 0.2857 | | 0.4949 | 5.0 | 35 | 1.2285 | 0.5714 | | 0.0574 | 6.0 | 42 | 1.7796 | 0.5714 | | 0.0156 | 7.0 | 49 | 2.6027 | 0.5714 | | 0.0051 | 8.0 | 56 | 2.8717 | 0.5714 | | 0.0017 | 9.0 | 63 | 2.8491 | 0.5714 | | 0.0023 | 10.0 | 70 | 1.7149 | 0.7143 | | 0.001 | 11.0 | 77 | 1.1101 | 0.7143 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.021128177642822266, -0.0051623061299324036, -0.02210143581032753, 0.029020147398114204, 0.03791898861527443, 0.01660764403641224, -0.020962147042155266, -0.016792839393019676, -0.053825389593839645, 0.06624802947044373, 0.010779855772852898, -0.037354499101638794, 0.016071196645498276, 0.049030303955078125, -0.02624933049082756, -0.03098265640437603, -0.004250997677445412, -0.01713412255048752, -0.027409706264734268, -0.008857865817844868, 0.009287535212934017, -0.011876415461301804, -0.023706424981355667, 0.024520374834537506, 0.004078851547092199, 0.00758542912080884, -0.0009514591656625271, 0.019648060202598572, 0.027322126552462578, -0.06758388876914978, 0.012530475854873657, -0.04111572355031967, -0.057053592056035995, -0.024239324033260345, -0.013453924097120762, -0.010347803123295307, 0.008797742426395416, 0.02355063334107399, 0.030761193484067917, 0.044778913259506226, 0.009904607199132442, 0.02797922119498253, -0.009663598611950874, -0.024150284007191658, 0.04171145334839821, 0.006562212482094765, -0.060980506241321564, -0.008984523825347424, 0.020239105448126793, -0.022167742252349854, -0.07315291464328766, -0.05690455064177513, -0.00009498240251559764, 0.026125866919755936, -0.020513467490673065, -0.019912460818886757, -0.03943175449967384, 0.0007088860729709268, 0.06608539819717407, -0.05384017154574394, -0.03167489916086197, 0.022595906630158424, -0.06955555826425552, 0.018282456323504448, 0.04378403723239899, -0.0364953875541687, 0.020716454833745956, -0.040158357471227646, 0.026132818311452866, -0.004273003898561001, 0.061425622552633286, -0.021208448335528374, 0.009602212347090244, -0.0914941355586052, -0.004282794427126646, -0.004674744792282581, 0.027261581271886826, 0.05714455246925354, -0.04123155400156975, 0.06465157866477966, 0.03405429422855377, -0.010162734426558018, 0.04000105336308479, -0.021147146821022034, 0.007698648609220982, 0.03268475458025932, -0.048964329063892365, 0.008775473572313786, 0.026827767491340637, 0.032831333577632904, -0.037543896585702896, -0.02621268667280674, -0.025279132649302483, -0.025258276611566544, -0.018350793048739433, 0.024874579161405563, 0.04660078510642052, -0.006586410570889711, 0.02444993145763874, 0.015345080755650997, 0.02696271985769272, 0.037486713379621506, -0.023382827639579773, 0.07259102910757065, -0.007895519025623798, -0.01079240906983614, -0.023939453065395355, -0.01302418950945139, -0.03529652953147888, 0.014090362936258316, 0.01829293929040432, -0.03493138775229454, -0.015049184672534466, 0.04444233328104019, 0.012993598356842995, 0.001921681105159223, 0.07085265964269638, -0.023334380239248276, -0.04589996486902237, -0.043269529938697815, 0.022452831268310547, 0.013093100860714912, -0.0321473591029644, 0.019813530147075653, -0.05943181365728378, -0.011732125654816628, -0.008785118348896503, -0.04421441629528999, -0.0029079027008265257, 0.009155855514109135, 0.005707957316190004, 0.060996051877737045, 0.032318487763404846, -0.08822339028120041, -0.003176794620230794, 0.013170215301215649, -0.049615342170000076, 0.038175228983163834, 0.017881635576486588, 0.11867348104715347, -0.04408293962478638, -0.07645773887634277, 0.004395154770463705, 0.004389326553791761, -0.018554987385869026, 0.0328177772462368, 0.0037375998217612505, -0.018726252019405365, -0.0017863119719550014, -0.010185387916862965, 0.05397544428706169, -0.057651352137327194, -0.01730591617524624, 0.06785193830728531, -0.007474545855075121, 0.04592902213335037, -0.05034584924578667, -0.02846609614789486, 0.007176411338150501, -0.020309723913669586, -0.0069219148717820644, 0.032987333834171295, -0.025090644136071205, 0.0039934865199029446, -0.023274339735507965, -0.04592205956578255, 0.004720018245279789, 0.09000694751739502, 0.000268707110080868, -0.03740157559514046, -0.025877302512526512, 0.027157673612236977, 0.058955345302820206, 0.054281748831272125, -0.028381289914250374, 0.03420025110244751, 0.04417596384882927, 0.028927061706781387, -0.04441506788134575, 0.03907085582613945, 0.03172614425420761, -0.03243657201528549, -0.031550996005535126, 0.03241296112537384, 0.009741993620991707, -0.04902072623372078, 0.014340244233608246, 0.029373236000537872, 0.02336553856730461, -0.06147133186459541, -0.05289950594305992, 0.050782669335603714, -0.0047987052239477634, -0.018746353685855865, 0.00979938730597496, 0.008673707954585552, -0.02188955247402191, 0.033509183675050735, -0.017315644770860672, -0.004237523302435875, -0.02708592265844345, -0.022490831092000008, 0.025442538782954216, 0.004424211569130421, 0.029059002175927162, 0.04718482866883278, -0.01249161921441555, 0.08474202454090118, -0.03819397836923599, 0.015415869653224945, -0.03632983937859535, -0.06343846768140793, 0.005894408095628023, 0.06127678230404854, 0.05680285394191742, 0.054972320795059204, -0.003048670245334506, -0.03869832679629326, 0.04883139953017235, 0.07437258213758469, 0.04676603525876999, 0.0012704299297183752, -0.02536497823894024, -0.0163207296282053, 0.022912804037332535, 0.052957650274038315, -0.048310287296772, -0.028614584356546402, 0.034302398562431335, 0.04188156500458717, -0.021297909319400787, 0.024764152243733406, -0.025730812922120094, 0.03106394037604332, -0.05066058039665222, -0.06021101772785187, 0.0319666750729084, 0.018096886575222015, -0.002987607615068555, 0.03962656855583191, 0.0010574571788311005, 0.012487007305026054, 0.01542752981185913, 0.014879124239087105, 0.013388743624091148, -0.048611678183078766, 0.032749973237514496, 0.012550607323646545, 0.05330779775977135, -0.03748777508735657, 0.037714358419179916, -0.00953274592757225, -0.003844044404104352, 0.03853340446949005, -0.03680502623319626, 0.024056343361735344, 0.06240776181221008, 0.04058210924267769, -0.0318257100880146, 0.011288434267044067, 0.007751517929136753, 0.020380323752760887, 0.050476934760808945, 0.00011134293163195252, 0.06311748176813126, 0.024336673319339752, 0.057506777346134186, 0.07867421954870224, 0.023598097264766693, 0.04227685555815697, 0.02639763243496418, 0.07484497129917145, 0.014847389422357082, -0.014957849867641926, 0.04021387919783592, -0.04662686958909035, 0.022104941308498383, -0.04321794584393501, 0.014970378950238228, -0.03241662308573723, -0.004970654379576445, 0.02901693619787693, 0.01848438009619713, -0.03385182470083237, -0.0076405927538871765, -0.010464710183441639, -0.005294017028063536, 0.031230878084897995, -0.008992554619908333, 0.003944626543670893, -0.001254160306416452, -0.019853318110108376, -0.022246278822422028, -0.059460412710905075, -0.03644444793462753, -0.024406546726822853, -0.02282360941171646, -0.021172352135181427, -0.08959497511386871, 0.009320894256234169, -0.06558999419212341, -0.018902817741036415, 0.033803608268499374, 0.004819513764232397, -0.003164649708196521, -0.03308815509080887, 0.013720870018005371, -0.04820367693901062, -0.03515089675784111, -0.053014811128377914, -0.0665888637304306, -0.03599422797560692, -0.07962466031312943, 0.024382855743169785, 0.05155102163553238, 0.03268905356526375, -0.0028088644612580538, 0.010722216218709946, 0.017538269981741905, -0.03744669631123543, 0.04365331307053566, 0.054522354155778885, -0.024381862953305244, -0.05085253342986107, 0.026649661362171173, -0.012004238553345203, 0.011172642931342125, -0.00037765796878375113, -0.026590459048748016, 0.08645238727331161, 0.05821765959262848, 0.00452844426035881, 0.0011786030372604728, -0.023139890283346176, -0.06311820447444916, -0.0530533604323864, -0.03105800226330757, -0.02781721204519272, 0.0014882489340379834, -0.041733596473932266, -0.03817416727542877, -0.02421574480831623, -0.0360344722867012, 0.017408117651939392, 0.000718988012522459, 0.0031711102928966284, 0.021974295377731323, 0.03596131131052971, 0.02738351933658123, 0.02864493615925312, -0.03692610189318657, -0.034878410398960114, 0.07170210033655167, 0.02042805403470993, 0.015946855768561363, -0.07308775931596756, -0.003225531429052353, 0.02792196348309517, 0.019654110074043274, 0.015535097569227219, -0.017166530713438988, 0.06670152395963669, 0.008616861887276173, 0.005176432430744171, 0.01643388904631138, -0.017787372693419456, -0.019731678068637848, -0.013061277568340302, 0.010779699310660362, -0.024204617366194725, -0.042623404413461685, -0.009941782802343369, -0.007260445971041918, 0.03958668187260628, -0.0592021606862545, -0.0536404550075531, -0.03132111579179764, 0.02610759623348713, 0.04418567940592766, 0.004954881966114044, -0.04052184149622917, -0.006425688974559307, -0.05451933667063713, -0.009115965105593204, 0.04604518786072731, 0.009914993308484554, 0.011978655122220516, 0.04795460030436516, 0.010859689675271511, -0.0230873953551054, 0.048984650522470474, 0.031513761729002, 0.07278504967689514, 0.012859438546001911, -0.0685434564948082, 0.01567714475095272, -0.019527189433574677, 0.010888515040278435, -0.01252093818038702, -0.02589542791247368, -0.04185319319367409, -0.10547622293233871, 0.003207223489880562, 0.004895195364952087, -0.0021264497190713882, -0.009676112793385983, 0.05165163055062294, 0.011724655516445637, -0.012922659516334534, -0.006740259006619453, 0.006642523221671581, 0.044658686965703964, -0.03890393674373627, 0.04115000739693642, -0.0022325695026665926, -0.011000837199389935, -0.05447418987751007, 0.018746765330433846, -0.042984284460544586, -0.025577791035175323, 0.012890595942735672, 0.047687649726867676, -0.005185279063880444, 0.06998369842767715, 0.09497029334306717, 0.029534269124269485, -0.034994855523109436, 0.03848154470324516, 0.07054278254508972, -0.03260616585612297, -0.04372120276093483, -0.011530546471476555, -0.0082384143024683, -0.009011605754494667, 0.001929916674271226, -0.0026572663336992264, 0.0518263503909111, 0.03674440085887909, -0.004429758992046118, -0.0015464967582374811, -0.004097952041774988, -0.008847590535879135, -0.023786239326000214, -0.03664993867278099, -0.02086682617664337, 0.0080617256462574, -0.026098111644387245, 0.012665039859712124, 0.0404197983443737, 0.023904265835881233, 0.051528673619031906, 0.024058077484369278, -0.043281834572553635, -0.01774386316537857, 0.02787395939230919, 0.008136985823512077, -0.03704722970724106, -0.07128273695707321, -0.00964836310595274, 0.04520699381828308, 0.029533766210079193, -0.019010432064533234, -0.057992737740278244, -0.0038488730788230896, 0.06068841740489006, -0.0699213370680809, 0.044726643711328506, -0.011936014518141747, 0.037551943212747574, 0.054845113307237625, -0.01964307390153408, 0.04537783935666084, -0.022723982110619545, 0.00963560864329338, 0.0010747681371867657, 0.03936538100242615, -0.014100363478064537, -0.027478482574224472, -0.052502479404211044, 0.025556053966283798, 0.03046604059636593, 0.032680053263902664, 0.05816062167286873, -0.03193368390202522, -0.03253800794482231, -0.001281888224184513, 0.04705817252397537, -0.06032771244645119, -0.002364112762734294, 0.03669487684965134, 0.03276228532195091, -0.05435354635119438, -0.032598115503787994, -0.02105221152305603, -0.008087381720542908, 0.043351609259843826, 0.004557854495942593, -0.03437779098749161, -0.048399507999420166, 0.032683588564395905, -0.006857526954263449, -0.03310399875044823, -0.05552304908633232, 0.0609513483941555, -0.00973017793148756, -0.011560863815248013, 0.039672497659921646, 0.02483563870191574, 0.03051014430820942, 0.06834832578897476, 0.016658250242471695, 0.0022537822369486094, -0.03889470174908638, 0.04194149374961853, -0.03653808683156967, -0.016869613900780678, 0.006861293222755194, -0.045249901711940765, -0.04238897189497948, -0.011508109048008919, -0.03837582841515541, -0.034825462847948074, -0.021855982020497322, 0.015444754622876644, 0.004721350036561489, -0.019696207717061043, -0.004077068530023098, 0.05991533026099205, -0.0019149687141180038, -0.029164383187890053, -0.02841073088347912, -0.027471428737044334, -0.06320837140083313, -0.050428517162799835, 0.03584635630249977, 0.015398351475596428, 0.014737209305167198, 0.04192832112312317, 0.017038147896528244, 0.007156818639487028, 0.022361187264323235, -0.04375883564352989, 0.017275996506214142, -0.01324552483856678, -0.024289919063448906, -0.01965097337961197, 0.031077027320861816, 0.010880790650844574, 0.021907929331064224, -0.05501319095492363, 0.025794286280870438, 0.0011764130322262645, -0.005357398651540279, -0.011385508812963963, 0.013856267556548119, 0.03115590289235115, -0.069703109562397, -0.03262244537472725, -0.006909349001944065, -0.02727646194398403, 0.030350247398018837, -0.03263493627309799, -0.03076159954071045, -0.004364567808806896, 0.016604585573077202, 0.03306568041443825, -0.01761731505393982, -0.025777794420719147, 0.03222600743174553, -0.024197431281208992, 0.01271543838083744, -0.05177001655101776, 0.05819452181458473, -0.031038455665111542, 0.0161390770226717, -0.0250272024422884, 0.010679707862436771, -0.0367685966193676, 0.03848843276500702, -0.02314760349690914, -0.006243203766644001, -0.008530201390385628, 0.05358603224158287, -0.01539849303662777, 0.03752142935991287, 0.0029083082918077707, 0.03479636833071709, -0.030399532988667488, 0.06853283941745758, -0.03884488344192505, 0.01131608709692955, -0.019083868712186813, 0.0014874528860673308, -0.021733250468969345, 0.01394222117960453, -0.030331455171108246, -0.03440151363611221, 0.015445994213223457, 0.07283727824687958, 0.03660418465733528, 0.028411706909537315, -0.030924012884497643, -0.028424207121133804, 0.016122618690133095, -0.05369739979505539, -0.026929913088679314, -0.00979568436741829, -0.00029506837017834187, -0.013689061626791954, 0.0618162527680397, 0.04366132244467735, -0.05929096043109894, -0.06224486231803894, 0.04483300447463989, -0.00574719300493598, -0.007758620195090771, 0.0077544753439724445, 0.018355147913098335, 0.029037628322839737, 0.06154724583029747, -0.0313294418156147, -0.0038013241719454527, -0.02109958603978157, -0.03505067154765129, 0.034383516758680344, 0.00888407975435257, 0.01147974282503128, 0.008837463334202766, -0.05454500764608383, -0.02538720890879631, 0.06804124265909195, 0.02910672314465046, 0.011067857965826988, -0.01393231563270092, -0.04027050733566284, 0.0343681275844574, 0.012326419353485107, -0.04275483265519142, 0.007821091450750828, 0.010896923020482063, -0.021297531202435493, 0.04549375921487808, -0.016561808064579964, 0.009262427687644958, 0.06674941629171371, 0.051496993750333786, -0.03625759109854698, 0.08134538680315018, -0.0234027449041605, 0.0037629723083227873, 0.052985452115535736, -0.08396495878696442, 0.0046905349008738995, -0.03873603790998459, 0.06952166557312012, -0.07307896763086319, 0.028059097006917, 0.04841498285531998, 0.007610147353261709, 0.014525088481605053, -0.056426506489515305, -0.038812242448329926, 0.0016664353897795081, -0.04166490212082863, 0.08472979068756104, 0.021859869360923767, -0.05145321041345596, 0.05513615906238556, 0.001490078866481781, -0.05573898181319237, 0.05197437107563019, 0.02088758535683155, 0.038776885718107224, 0.044524047523736954, 0.040845680981874466, -0.0598440021276474, 0.014402751810848713, -0.04529967159032822, 0.023771677166223526, -0.0400729663670063, -0.02639956586062908, 0.033398617058992386, -0.03348315507173538, -0.03095138445496559, 0.026319319382309914, 0.0054522366262972355, -0.02358597330749035, 0.05569897219538689, -0.05993562564253807, -0.04624473676085472, 0.013402552343904972, 0.022238949313759804, -0.047103025019168854, 0.005275198258459568, -0.03238815441727638, 0.010456392541527748, 0.024272093549370766, 0.004715148825198412, -0.00923335924744606, -0.015022706240415573, 0.035951755940914154, -0.06109559163451195, -0.024959534406661987, 0.021448716521263123, -0.002781299175694585, -0.021429652348160744, 0.01590363122522831, -0.007536869961768389, 0.0036674742586910725, 0.03422990441322327, 0.0007214542129077017, 0.016039259731769562, -0.014380870386958122, -0.0318039134144783, 0.018243102356791496, 0.002195537555962801, 0.014683867804706097, -0.016091307625174522, 0.03363708406686783, 0.019991490989923477, 0.025178125128149986, -0.01361882220953703, -0.02354932762682438, -0.03174751624464989, 0.026055825874209404, -0.0295267254114151, -0.0016124126268550754, -0.01707310788333416, -0.05780641362071037, -0.05618838220834732, -0.007756248116493225, -0.044546838849782944, 0.028328141197562218, -0.06037229672074318, 0.0022381434682756662, 0.03555615246295929, -0.013248054310679436, -0.06348550319671631, -0.11218254268169403, -0.021636269986629486, -0.03098655492067337, -0.016823355108499527, 0.03868262842297554, -0.034067559987306595, 0.038640398532152176, -0.04484863951802254, -0.0515751987695694, 0.052735865116119385, 0.0271612498909235, -0.03997819870710373, 0.04259195178747177, 0.04254394769668579, -0.05309927836060524, 0.00225711683742702, 0.04484506696462631, -0.05848148465156555, 0.0056600142270326614, 0.01243629027158022, 0.013738731853663921, 0.01445090677589178, 0.02170722931623459, -0.059372685849666595, -0.006448954809457064, -0.059699106961488724, -0.047340862452983856, -0.053037624806165695, 0.011967906728386879, 0.07388528436422348 ]
Declan/ChicagoTribune_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-3 results: [] --- <!-- 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-v3-large__sst2__train-16-3 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6286 - Accuracy: 0.7068 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6955 | 1.0 | 7 | 0.7370 | 0.2857 | | 0.6919 | 2.0 | 14 | 0.6855 | 0.4286 | | 0.6347 | 3.0 | 21 | 0.5872 | 0.7143 | | 0.4016 | 4.0 | 28 | 0.6644 | 0.7143 | | 0.3097 | 5.0 | 35 | 0.5120 | 0.7143 | | 0.0785 | 6.0 | 42 | 0.5845 | 0.7143 | | 0.024 | 7.0 | 49 | 0.6951 | 0.7143 | | 0.0132 | 8.0 | 56 | 0.8972 | 0.7143 | | 0.0037 | 9.0 | 63 | 1.5798 | 0.7143 | | 0.0034 | 10.0 | 70 | 1.5178 | 0.7143 | | 0.003 | 11.0 | 77 | 1.3511 | 0.7143 | | 0.0012 | 12.0 | 84 | 1.1346 | 0.7143 | | 0.0007 | 13.0 | 91 | 0.9752 | 0.7143 | | 0.0008 | 14.0 | 98 | 0.8531 | 0.7143 | | 0.0007 | 15.0 | 105 | 0.8149 | 0.7143 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.02098880335688591, -0.005215882323682308, -0.022779062390327454, 0.02676326595246792, 0.03656275197863579, 0.0187249556183815, -0.02030576579272747, -0.01725028268992901, -0.05474743992090225, 0.06833106279373169, 0.013170482590794563, -0.03798297420144081, 0.016887100413441658, 0.04625936225056648, -0.024908456951379776, -0.029061291366815567, -0.005046669393777847, -0.018798455595970154, -0.028317853808403015, -0.005646733567118645, 0.010676035657525063, -0.010915039107203484, -0.02097180299460888, 0.023075468838214874, 0.002471664920449257, 0.009440521709620953, -0.002702989848330617, 0.020687589421868324, 0.028976693749427795, -0.06688624620437622, 0.012705459259450436, -0.04102949798107147, -0.05736425146460533, -0.02562571130692959, -0.013269803486764431, -0.009983137249946594, 0.010731179267168045, 0.023385975509881973, 0.02975059300661087, 0.048186611384153366, 0.008894788101315498, 0.029280131682753563, -0.005615341942757368, -0.02398991957306862, 0.041903864592313766, 0.006393625866621733, -0.061954520642757416, -0.005772344768047333, 0.022249843925237656, -0.022191699594259262, -0.0711212083697319, -0.055300336331129074, -0.0034292349591851234, 0.02656836062669754, -0.022482728585600853, -0.020509378984570503, -0.03797411918640137, -0.0014800719218328595, 0.0657937228679657, -0.05149497464299202, -0.03228478133678436, 0.023687202483415604, -0.06857472658157349, 0.017535928636789322, 0.04237756505608559, -0.03708136826753616, 0.01937611773610115, -0.04059216007590294, 0.027316071093082428, -0.005764117930084467, 0.06159212067723274, -0.020404892042279243, 0.009148819372057915, -0.09089110791683197, -0.00482393242418766, -0.006025240290910006, 0.02584599144756794, 0.05730939656496048, -0.04005391150712967, 0.06354183703660965, 0.034495383501052856, -0.012022915296256542, 0.04162777587771416, -0.022924086079001427, 0.007536138407886028, 0.03294599428772926, -0.04728123918175697, 0.007366619538515806, 0.026589903980493546, 0.032813917845487595, -0.03609758988022804, -0.02619135193526745, -0.024560248479247093, -0.02575560472905636, -0.019262263551354408, 0.024470003321766853, 0.047464244067668915, -0.006153151858597994, 0.024363752454519272, 0.014501246623694897, 0.02547433041036129, 0.03745298087596893, -0.02536109834909439, 0.07005583494901657, -0.008214912377297878, -0.011949078179895878, -0.02141149342060089, -0.014006096869707108, -0.03594476729631424, 0.014823704026639462, 0.01883898675441742, -0.03296836465597153, -0.017710993066430092, 0.044341374188661575, 0.01379662100225687, 0.0013803355395793915, 0.06834997981786728, -0.023401984944939613, -0.04463808983564377, -0.046734366565942764, 0.02104988321661949, 0.013403041288256645, -0.030053671449422836, 0.018089039251208305, -0.05747867003083229, -0.01132061518728733, -0.010071595199406147, -0.04337306693196297, -0.0058637019246816635, 0.007567981258034706, 0.006722050253301859, 0.06187063828110695, 0.032874319702386856, -0.08662557601928711, -0.0010741612641140819, 0.012297513894736767, -0.04811139777302742, 0.03745420649647713, 0.017428986728191376, 0.12231539934873581, -0.04532262310385704, -0.07675126940011978, 0.005650248844176531, 0.002689070999622345, -0.018194856122136116, 0.033748675137758255, 0.0032297982834279537, -0.018054520711302757, -0.0017904116539284587, -0.009962948970496655, 0.05318081006407738, -0.05647049844264984, -0.015659281983971596, 0.06709396094083786, -0.007028691004961729, 0.04496856778860092, -0.049994807690382004, -0.02730151265859604, 0.008083980530500412, -0.021990478038787842, -0.009248332120478153, 0.03472251072525978, -0.025720085948705673, 0.0016137496568262577, -0.023739390075206757, -0.04810745641589165, 0.0044188727624714375, 0.08831329643726349, 0.00053885777015239, -0.03789959102869034, -0.027002451941370964, 0.027921872213482857, 0.05825253203511238, 0.05356241762638092, -0.028202632442116737, 0.03579798713326454, 0.04523854702711105, 0.027951043099164963, -0.045583829283714294, 0.04029495269060135, 0.03016829304397106, -0.03398686647415161, -0.031395480036735535, 0.030614685267210007, 0.009338975884020329, -0.04871746897697449, 0.015170061029493809, 0.03036431595683098, 0.02383735403418541, -0.06257344782352448, -0.05422636866569519, 0.04810117185115814, -0.003855986287817359, -0.016133861616253853, 0.010021910071372986, 0.009577733464539051, -0.021227236837148666, 0.03125554323196411, -0.016231460496783257, -0.003996243234723806, -0.027717310935258865, -0.02208029478788376, 0.024302178993821144, 0.006636323872953653, 0.028506483882665634, 0.046363331377506256, -0.013391540385782719, 0.08638061583042145, -0.03871442750096321, 0.01734342612326145, -0.033258821815252304, -0.06127147376537323, 0.009913958609104156, 0.061870962381362915, 0.056910477578639984, 0.05616229772567749, -0.00546268792822957, -0.03855150565505028, 0.04902271926403046, 0.07411674410104752, 0.04666135087609291, 0.0011338107287883759, -0.02467249520123005, -0.015293829143047333, 0.02618221938610077, 0.05260525643825531, -0.04859716817736626, -0.027659619227051735, 0.035254981368780136, 0.042142610996961594, -0.019371891394257545, 0.024498701095581055, -0.023859594017267227, 0.032784584909677505, -0.05080258101224899, -0.061475720256567, 0.03291557729244232, 0.020497439429163933, -0.003740802640095353, 0.03875255584716797, -0.000238039021496661, 0.013147499412298203, 0.015962842851877213, 0.014237955212593079, 0.012178400531411171, -0.04875049740076065, 0.03389797359704971, 0.013744269497692585, 0.05350491777062416, -0.03736725449562073, 0.03719289228320122, -0.009893991984426975, -0.002623036503791809, 0.038393232971429825, -0.03932277485728264, 0.024815961718559265, 0.06260096281766891, 0.04170699045062065, -0.031397804617881775, 0.012758814729750156, 0.006565986201167107, 0.02137645147740841, 0.05095333233475685, -0.0010197542142122984, 0.06225516274571419, 0.023575937375426292, 0.05711570382118225, 0.08257976919412613, 0.023220626637339592, 0.043663643300533295, 0.025321483612060547, 0.07529925554990768, 0.015732260420918465, -0.013131455518305302, 0.03953143581748009, -0.04667271301150322, 0.02181483432650566, -0.044538699090480804, 0.013485540635883808, -0.03449453040957451, -0.004197994247078896, 0.02735094539821148, 0.019588781520724297, -0.034713923931121826, -0.00913107581436634, -0.010311168618500233, -0.0048704128712415695, 0.030276622623205185, -0.006255024578422308, 0.0018335620407015085, -0.0001833887945394963, -0.019878963008522987, -0.02302541211247444, -0.059457335621118546, -0.036271966993808746, -0.02634749747812748, -0.02207517810165882, -0.020193466916680336, -0.0893021896481514, 0.009612120687961578, -0.06395583599805832, -0.020124929025769234, 0.03419576212763786, 0.0040153805166482925, -0.0023597318213433027, -0.033116668462753296, 0.01264709047973156, -0.04836161062121391, -0.0384344607591629, -0.054428521543741226, -0.0684768557548523, -0.038193609565496445, -0.07850619405508041, 0.025585491210222244, 0.04791652038693428, 0.03149869665503502, -0.004710889421403408, 0.009506489150226116, 0.017761312425136566, -0.037870217114686966, 0.041464969515800476, 0.05400580167770386, -0.025032175704836845, -0.05071602761745453, 0.02447676658630371, -0.009757304564118385, 0.011600558646023273, -0.00003902984826709144, -0.02641528844833374, 0.08740714937448502, 0.06009676307439804, 0.004116981755942106, 0.0011402260279282928, -0.024215320125222206, -0.0641367956995964, -0.05357836186885834, -0.031487271189689636, -0.02958005666732788, 0.0009811108466237783, -0.04093409329652786, -0.039548609405756, -0.024299418553709984, -0.03498544543981552, 0.0179532952606678, -0.0008020736859180033, 0.0038478539790958166, 0.02125878818333149, 0.040014732629060745, 0.028840666636824608, 0.030466966331005096, -0.03573865815997124, -0.036553528159856796, 0.07267426699399948, 0.022205926477909088, 0.015052895992994308, -0.07283806800842285, -0.005329092498868704, 0.02793937176465988, 0.02086254209280014, 0.017369326204061508, -0.020779985934495926, 0.06423196941614151, 0.00925269816070795, 0.004256978631019592, 0.015069338493049145, -0.016199991106987, -0.02146870270371437, -0.012669602409005165, 0.009963537566363811, -0.024932216852903366, -0.04261761158704758, -0.00726656848564744, -0.004789501428604126, 0.04110213741660118, -0.05959645286202431, -0.05259961262345314, -0.03293173387646675, 0.026502542197704315, 0.04301845654845238, 0.005694593768566847, -0.04042157530784607, -0.005524668842554092, -0.055028922855854034, -0.009160846471786499, 0.047647733241319656, 0.00848859827965498, 0.015016496181488037, 0.04681650176644325, 0.009681837633252144, -0.022981716319918633, 0.04825276881456375, 0.029294727370142937, 0.07350791990756989, 0.01248876377940178, -0.06764838099479675, 0.01702263019979, -0.02111479826271534, 0.010955847799777985, -0.013268332928419113, -0.02609238401055336, -0.04201306775212288, -0.10505931824445724, 0.002728436142206192, 0.005184696521610022, -0.003869986394420266, -0.009458787739276886, 0.05233010649681091, 0.013188154436647892, -0.012008904479444027, -0.007779505103826523, 0.007448216900229454, 0.043015006929636, -0.03822563961148262, 0.042469870299100876, -0.0014468359295278788, -0.012064261361956596, -0.05440707132220268, 0.0189557783305645, -0.041868653148412704, -0.026445267722010612, 0.012963422574102879, 0.0481845885515213, -0.005100052338093519, 0.07134561985731125, 0.0970970168709755, 0.02792610228061676, -0.03446091711521149, 0.037008702754974365, 0.07181327790021896, -0.0303743164986372, -0.04392580687999725, -0.00951754953712225, -0.008830515667796135, -0.007716921623796225, 0.0026030256412923336, -0.0070595648139715195, 0.049511708319187164, 0.037049394100904465, -0.005159430205821991, -0.002056655939668417, -0.003981341607868671, -0.00800017174333334, -0.02327192947268486, -0.037500787526369095, -0.02021835371851921, 0.008047287352383137, -0.026435092091560364, 0.014111876487731934, 0.03995197266340256, 0.020033225417137146, 0.04944334924221039, 0.021741101518273354, -0.04284178465604782, -0.018583055585622787, 0.02953750640153885, 0.007054626010358334, -0.038988497108221054, -0.07303733378648758, -0.007275823503732681, 0.0433100089430809, 0.03076750412583351, -0.02024208754301071, -0.05749483406543732, -0.005800675600767136, 0.06078706309199333, -0.0681532472372055, 0.0448794811964035, -0.011511879973113537, 0.037814024835824966, 0.05657104775309563, -0.021138694137334824, 0.04486881196498871, -0.024686433374881744, 0.009300020523369312, 0.000051425315177766606, 0.03989769518375397, -0.014547155238687992, -0.027711784467101097, -0.051775816828012466, 0.027377886697649956, 0.02989158220589161, 0.03288174793124199, 0.05898425355553627, -0.032580677419900894, -0.034596916288137436, 0.00038398519973270595, 0.04672589153051376, -0.06128234416246414, -0.00033720419742166996, 0.03841625526547432, 0.03378835693001747, -0.05402002111077309, -0.031972408294677734, -0.020468277856707573, -0.00770279997959733, 0.042275313287973404, 0.006010639015585184, -0.03566166013479233, -0.044884271919727325, 0.030812421813607216, -0.0070765963755548, -0.03447433561086655, -0.05411996319890022, 0.06196891516447067, -0.011223831214010715, -0.01031894888728857, 0.041012026369571686, 0.026758801192045212, 0.030744625255465508, 0.06762483716011047, 0.017315024510025978, 0.0017005853587761521, -0.040472302585840225, 0.0402454175055027, -0.03634412959218025, -0.016573887318372726, 0.007887796498835087, -0.04536721110343933, -0.0423196516931057, -0.013942592777311802, -0.03636307269334793, -0.03539569675922394, -0.018166493624448776, 0.016515906900167465, 0.00490635447204113, -0.019180212169885635, -0.002470673294737935, 0.060427043586969376, -0.0013185671996325254, -0.028072528541088104, -0.029255161061882973, -0.02892586961388588, -0.06474419683218002, -0.05222822353243828, 0.03499292582273483, 0.015145097859203815, 0.014887125231325626, 0.041243165731430054, 0.015297082252800465, 0.008084991946816444, 0.022485215216875076, -0.04362249746918678, 0.01534242369234562, -0.014087418094277382, -0.026121877133846283, -0.0190498698502779, 0.029145680367946625, 0.0101796705275774, 0.021884167566895485, -0.05391295999288559, 0.026120569556951523, 0.0009436128893867135, -0.006380805745720863, -0.012027114629745483, 0.011305570602416992, 0.031112579628825188, -0.06776957213878632, -0.03208411484956741, -0.00685640424489975, -0.02818075194954872, 0.02951059862971306, -0.032387085258960724, -0.03292720392346382, -0.00620202487334609, 0.016774173825979233, 0.033205658197402954, -0.01748001016676426, -0.028537007048726082, 0.031893834471702576, -0.022433605045080185, 0.012298405170440674, -0.052370406687259674, 0.058170903474092484, -0.031006095930933952, 0.01605728268623352, -0.024551458656787872, 0.011042959056794643, -0.03808465227484703, 0.03883214294910431, -0.02155459299683571, -0.006935908924788237, -0.007030396722257137, 0.05061723664402962, -0.016009891405701637, 0.03739801421761513, 0.001634376822039485, 0.03465786576271057, -0.03154392167925835, 0.06743443757295609, -0.03847433999180794, 0.010986707173287868, -0.01711321622133255, 0.0011061374098062515, -0.022438574582338333, 0.011652640998363495, -0.02726287953555584, -0.03648247569799423, 0.01588146761059761, 0.07434702664613724, 0.035495199263095856, 0.02912171557545662, -0.029829390347003937, -0.029650073498487473, 0.014849504455924034, -0.05273056402802467, -0.026436563581228256, -0.009603714570403099, 0.0003184484376106411, -0.012356152758002281, 0.06061074882745743, 0.04317011684179306, -0.05876515060663223, -0.06414802372455597, 0.044109877198934555, -0.0045752446167171, -0.008444816805422306, 0.007799962535500526, 0.020225126296281815, 0.028810622170567513, 0.060200124979019165, -0.03349105268716812, -0.0024828126188367605, -0.020466720685362816, -0.03612012788653374, 0.03408208116889, 0.008320147171616554, 0.013671966269612312, 0.009957801550626755, -0.052664536982774734, -0.025936637073755264, 0.07091367989778519, 0.029877303168177605, 0.011673057451844215, -0.013370238244533539, -0.04056471586227417, 0.03640288487076759, 0.013014531694352627, -0.042958226054906845, 0.010172872804105282, 0.009027230553328991, -0.021440116688609123, 0.04507960379123688, -0.013119871728122234, 0.012870640493929386, 0.06718286871910095, 0.05215255916118622, -0.03855203837156296, 0.07904081791639328, -0.022887911647558212, 0.003326384350657463, 0.053064003586769104, -0.08374296873807907, 0.005746209528297186, -0.03888367488980293, 0.06827428936958313, -0.07041259109973907, 0.027286050841212273, 0.04670082777738571, 0.00834919698536396, 0.012816445901989937, -0.056604329496622086, -0.03830016031861305, 0.0029183884616941214, -0.04320460930466652, 0.08569521456956863, 0.02052668109536171, -0.053161103278398514, 0.0534600131213665, 0.00023254257394000888, -0.05786311253905296, 0.050277478992938995, 0.021517662331461906, 0.039571624249219894, 0.04579167068004608, 0.0427471362054348, -0.061739858239889145, 0.013919571414589882, -0.04522544518113136, 0.023348471149802208, -0.03719429671764374, -0.025449248030781746, 0.031587980687618256, -0.03344010189175606, -0.030080342665314674, 0.029054533690214157, 0.0045418464578688145, -0.023707889020442963, 0.05702418461441994, -0.058702293783426285, -0.04588555544614792, 0.013026258908212185, 0.023694615811109543, -0.04666033387184143, 0.004444200079888105, -0.033046748489141464, 0.01170947402715683, 0.024387115612626076, 0.003985331393778324, -0.011495334096252918, -0.01686990261077881, 0.03567977249622345, -0.06074618920683861, -0.02684863843023777, 0.022749656811356544, -0.003705676645040512, -0.021073460578918457, 0.015512418933212757, -0.004789560567587614, 0.0033005194272845984, 0.034222450107336044, 0.001055174390785396, 0.015701277181506157, -0.016987506300210953, -0.03114243410527706, 0.017825935035943985, 0.0010649437317624688, 0.01678827404975891, -0.016044355928897858, 0.032125674188137054, 0.019372617825865746, 0.024839559569954872, -0.013266419060528278, -0.023124825209379196, -0.03166899085044861, 0.02625967748463154, -0.02992500737309456, -0.0012758438242599368, -0.015649359673261642, -0.058803144842386246, -0.05399887263774872, -0.007181286811828613, -0.04564753547310829, 0.02900664508342743, -0.061285991221666336, 0.0017284933710470796, 0.03627651184797287, -0.012368259951472282, -0.06300623714923859, -0.1099417582154274, -0.021431641653180122, -0.03010208159685135, -0.016472794115543365, 0.037942539900541306, -0.03387858718633652, 0.03877568617463112, -0.04514889791607857, -0.05052437260746956, 0.052722107619047165, 0.026813680306077003, -0.03850778192281723, 0.04245902597904205, 0.04319407045841217, -0.05268664285540581, 0.002408056054264307, 0.044115666300058365, -0.05674176290631294, 0.007011177018284798, 0.013529320247471333, 0.012468860484659672, 0.016295483335852623, 0.02145654708147049, -0.06058533117175102, -0.0047723688185215, -0.05933240056037903, -0.045666586607694626, -0.050724197179079056, 0.011681799776852131, 0.07627885043621063 ]
Declan/ChicagoTribune_model_v3
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-4 results: [] --- <!-- 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-v3-large__sst2__train-16-4 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6329 - Accuracy: 0.6392 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6945 | 1.0 | 7 | 0.7381 | 0.2857 | | 0.7072 | 2.0 | 14 | 0.7465 | 0.2857 | | 0.6548 | 3.0 | 21 | 0.7277 | 0.4286 | | 0.5695 | 4.0 | 28 | 0.6738 | 0.5714 | | 0.4615 | 5.0 | 35 | 0.8559 | 0.5714 | | 0.0823 | 6.0 | 42 | 1.0983 | 0.5714 | | 0.0274 | 7.0 | 49 | 1.9937 | 0.5714 | | 0.0106 | 8.0 | 56 | 2.2209 | 0.5714 | | 0.0039 | 9.0 | 63 | 2.2114 | 0.5714 | | 0.0031 | 10.0 | 70 | 2.2808 | 0.5714 | | 0.0013 | 11.0 | 77 | 2.3707 | 0.5714 | | 0.0008 | 12.0 | 84 | 2.4902 | 0.5714 | | 0.0005 | 13.0 | 91 | 2.5208 | 0.5714 | | 0.0007 | 14.0 | 98 | 2.5683 | 0.5714 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.0204191654920578, -0.0038894317112863064, -0.02208879590034485, 0.02928360179066658, 0.036103133112192154, 0.017424313351511955, -0.019882170483469963, -0.018162168562412262, -0.05350293591618538, 0.06633587926626205, 0.012239751406013966, -0.0389677956700325, 0.01640363596379757, 0.046246860176324844, -0.025418702512979507, -0.030559241771697998, -0.006195897702127695, -0.018390968441963196, -0.028555653989315033, -0.0043588983826339245, 0.010045336559414864, -0.011685388162732124, -0.02344943769276142, 0.021149758249521255, 0.003838022705167532, 0.00955641083419323, -0.0022075041197240353, 0.020667752251029015, 0.027574952691793442, -0.06863989681005478, 0.012617339380085468, -0.03943625092506409, -0.057738129049539566, -0.02391207031905651, -0.015192019753158092, -0.008699589408934116, 0.009511060081422329, 0.023934748023748398, 0.03087843395769596, 0.048092301934957504, 0.010194036178290844, 0.02802043780684471, -0.007926101796329021, -0.02477644942700863, 0.042699627578258514, 0.007600379176437855, -0.060533151030540466, -0.005789344199001789, 0.021930046379566193, -0.021117636933922768, -0.07239697873592377, -0.05510362982749939, -0.0030850842595100403, 0.025092437863349915, -0.023994382470846176, -0.020246637985110283, -0.0391169935464859, 0.0019801389425992966, 0.06662791222333908, -0.05164968967437744, -0.03405513986945152, 0.02364773117005825, -0.06987027078866959, 0.01742289960384369, 0.043381184339523315, -0.037061434239149094, 0.01974128559231758, -0.03947355970740318, 0.02622837945818901, -0.006782633252441883, 0.061173927038908005, -0.02019972912967205, 0.009694238193333149, -0.0894894003868103, -0.002695964416489005, -0.004988078027963638, 0.029332581907510757, 0.05610247328877449, -0.04067225381731987, 0.06265634298324585, 0.0359177328646183, -0.013382771983742714, 0.0420939102768898, -0.021239783614873886, 0.008946714922785759, 0.0313902385532856, -0.04846164211630821, 0.007959235459566116, 0.028025558218359947, 0.03285081684589386, -0.036982037127017975, -0.026446498930454254, -0.02513696439564228, -0.026445431634783745, -0.020203478634357452, 0.023401634767651558, 0.04745360463857651, -0.005136419553309679, 0.025197096168994904, 0.015595238655805588, 0.02619357220828533, 0.0383010059595108, -0.02418176271021366, 0.06914181262254715, -0.009601235389709473, -0.012854095548391342, -0.024159865453839302, -0.013976207002997398, -0.035413894802331924, 0.014248807914555073, 0.019612036645412445, -0.033586565405130386, -0.01683448627591133, 0.043993864208459854, 0.011365597136318684, 0.0019268739270046353, 0.07055369764566422, -0.023322638124227524, -0.046356651932001114, -0.045225296169519424, 0.019409039989113808, 0.014234782196581364, -0.031954649835824966, 0.01812378130853176, -0.05625438690185547, -0.010687727481126785, -0.009298251010477543, -0.043283816426992416, -0.002896548481658101, 0.0087583614513278, 0.007141136564314365, 0.06193318963050842, 0.032876089215278625, -0.0882975235581398, -0.000866599497385323, 0.012664505280554295, -0.04639118164777756, 0.03771011903882027, 0.015324885956943035, 0.12036840617656708, -0.046081848442554474, -0.07720362395048141, 0.006742805242538452, 0.003068293444812298, -0.01876256801187992, 0.0316680483520031, 0.0023923630360513926, -0.018303340300917625, -0.0013658545212820172, -0.008727334439754486, 0.053086601197719574, -0.05856401100754738, -0.01331079751253128, 0.06691379100084305, -0.006494819652289152, 0.04764709249138832, -0.05020260065793991, -0.02871980518102646, 0.007898112758994102, -0.02129240892827511, -0.007790112402290106, 0.03404717147350311, -0.025831058621406555, 0.002071780152618885, -0.022201908752322197, -0.04792026802897453, 0.004923897795379162, 0.08782622963190079, 0.002103876555338502, -0.0381007045507431, -0.025737617164850235, 0.027185680344700813, 0.05999534949660301, 0.05520331859588623, -0.027780616655945778, 0.035963162779808044, 0.04452470317482948, 0.028813401237130165, -0.045063938945531845, 0.03903885930776596, 0.030273737385869026, -0.0339631512761116, -0.030736686661839485, 0.03045043535530567, 0.009950326755642891, -0.05037079006433487, 0.015065674670040607, 0.029837939888238907, 0.02390621043741703, -0.0628567561507225, -0.053153906017541885, 0.04857998713850975, -0.0045331004075706005, -0.0157877616584301, 0.009908019565045834, 0.008761131204664707, -0.02072116732597351, 0.03274857625365257, -0.017562201246619225, -0.003036998677998781, -0.027041269466280937, -0.024596460163593292, 0.024192770943045616, 0.007919634692370892, 0.02845926396548748, 0.04781709611415863, -0.012201005592942238, 0.08678898960351944, -0.0386563204228878, 0.015678586438298225, -0.034712594002485275, -0.061083000153303146, 0.009753572754561901, 0.061413541436195374, 0.05530951917171478, 0.05496058240532875, -0.00433172844350338, -0.03777923434972763, 0.05012731999158859, 0.07456301152706146, 0.04712030664086342, 0.0003815479576587677, -0.02369687892496586, -0.015716437250375748, 0.027113817632198334, 0.052135393023490906, -0.04619869217276573, -0.026994209736585617, 0.03424721583724022, 0.04210059344768524, -0.020511377602815628, 0.024011442437767982, -0.024737123399972916, 0.031343936920166016, -0.052612412720918655, -0.060928311198949814, 0.03324887529015541, 0.01751749776303768, -0.0031887812074273825, 0.0389120876789093, 0.0009750578901730478, 0.011735950596630573, 0.01616567000746727, 0.014401201158761978, 0.013609727844595909, -0.04729199782013893, 0.031443800777196884, 0.014613675884902477, 0.05305367335677147, -0.038479648530483246, 0.03619460016489029, -0.010087618604302406, -0.00198508077301085, 0.03898589313030243, -0.03661401942372322, 0.026067188009619713, 0.06174170970916748, 0.040410418063402176, -0.03302660584449768, 0.011009975336492062, 0.007747705094516277, 0.019176224246621132, 0.05165030434727669, -0.0005709899705834687, 0.06109063699841499, 0.02261132374405861, 0.055660467594861984, 0.08238278329372406, 0.024194804951548576, 0.04336969181895256, 0.024077923968434334, 0.07553431391716003, 0.014245969243347645, -0.015379656106233597, 0.038699183613061905, -0.0476505346596241, 0.021019387990236282, -0.044027283787727356, 0.015185996890068054, -0.032543081790208817, -0.00519404886290431, 0.0287786852568388, 0.01709071360528469, -0.03721577674150467, -0.01040951069444418, -0.009317513555288315, -0.004868516698479652, 0.029551543295383453, -0.007744343485683203, 0.002870278200134635, -0.0015808094758540392, -0.020271070301532745, -0.02204001694917679, -0.0598454475402832, -0.03839445859193802, -0.025716552510857582, -0.022845106199383736, -0.020760323852300644, -0.09185999631881714, 0.01011065673083067, -0.06330041587352753, -0.019035350531339645, 0.03476483002305031, 0.0027004783041775227, -0.004442187026143074, -0.033683426678180695, 0.012736042030155659, -0.04808969423174858, -0.037844218313694, -0.05332603305578232, -0.06697212159633636, -0.038086358457803726, -0.07882571220397949, 0.025648433715105057, 0.04934551566839218, 0.031181203201413155, -0.003847056534141302, 0.010825728066265583, 0.017266126349568367, -0.03837281093001366, 0.042218513786792755, 0.05411628633737564, -0.023879865184426308, -0.04897509515285492, 0.02858608588576317, -0.01101311482489109, 0.0130546810105443, 0.000392296293284744, -0.026137767359614372, 0.08679396659135818, 0.06022664159536362, 0.003124184673652053, 0.00020648185454774648, -0.023646337911486626, -0.06422368437051773, -0.05335145816206932, -0.030599314719438553, -0.027297411113977432, 0.001517161843366921, -0.04070092737674713, -0.038855522871017456, -0.02437835931777954, -0.03518790379166603, 0.01828385889530182, -0.0007446439703926444, 0.004020713735371828, 0.020267246291041374, 0.03784845769405365, 0.02963237464427948, 0.030255816876888275, -0.034439168870449066, -0.03792280703783035, 0.07160565257072449, 0.022255415096879005, 0.017105482518672943, -0.071390800178051, -0.003797798417508602, 0.02689121477305889, 0.02019127458333969, 0.01725008524954319, -0.019759785383939743, 0.06494997441768646, 0.009767717681825161, 0.0025342695880681276, 0.014547223225235939, -0.015353528782725334, -0.021996354684233665, -0.012029520235955715, 0.008538358844816685, -0.02542557753622532, -0.042576007544994354, -0.008367673493921757, -0.006214731838554144, 0.04157823696732521, -0.06058689206838608, -0.05318745970726013, -0.033145081251859665, 0.026858042925596237, 0.04469481110572815, 0.00443394435569644, -0.0396307036280632, -0.007194860372692347, -0.05596962198615074, -0.00803997553884983, 0.047504130750894547, 0.01009170338511467, 0.013495365157723427, 0.045286115258932114, 0.008918608538806438, -0.020788148045539856, 0.04899912327528, 0.02965349704027176, 0.07292251288890839, 0.013072819449007511, -0.06751608103513718, 0.017059583216905594, -0.021008701995015144, 0.01047156285494566, -0.01203898061066866, -0.02615741267800331, -0.04135109856724739, -0.10467307269573212, 0.0024644776713103056, 0.006431378424167633, -0.004881894215941429, -0.010712958872318268, 0.051948513835668564, 0.01182427629828453, -0.012930653057992458, -0.007170307449996471, 0.007377998903393745, 0.04164101183414459, -0.03978290408849716, 0.04043130204081535, -0.002412811852991581, -0.01154288649559021, -0.05535297468304634, 0.019795088097453117, -0.04179830849170685, -0.022572100162506104, 0.013195602223277092, 0.04775108024477959, -0.005697541870176792, 0.07061667740345001, 0.09572754055261612, 0.03142550215125084, -0.03434526547789574, 0.03698229789733887, 0.07166856527328491, -0.030846457928419113, -0.041667863726615906, -0.00838430318981409, -0.008972600102424622, -0.00848061591386795, 0.0036217377055436373, -0.005509311333298683, 0.05216699466109276, 0.03734160587191582, -0.006472819950431585, 0.000050144968554377556, -0.0055578723549842834, -0.00993092730641365, -0.022458098828792572, -0.03821045532822609, -0.02096567302942276, 0.006084339693188667, -0.027261631563305855, 0.016597416251897812, 0.0382423996925354, 0.021800752729177475, 0.050454795360565186, 0.020506035536527634, -0.04412924125790596, -0.018740566447377205, 0.028919322416186333, 0.006496966816484928, -0.0380573645234108, -0.07130388170480728, -0.008555143140256405, 0.043728966265916824, 0.029990602284669876, -0.020647333934903145, -0.05802015960216522, -0.00507662957534194, 0.06163319945335388, -0.06857067346572876, 0.04416857287287712, -0.011961467564105988, 0.03773535043001175, 0.05419943481683731, -0.0197366364300251, 0.04721074551343918, -0.023788901045918465, 0.010120769962668419, 0.00017181505972985178, 0.03892800584435463, -0.0156174935400486, -0.02759907953441143, -0.04952681437134743, 0.026594199240207672, 0.030385125428438187, 0.03240789845585823, 0.05767431855201721, -0.03194034472107887, -0.03406844288110733, 0.0008254184504039586, 0.04772663861513138, -0.060751594603061676, -0.0007718707784079015, 0.03672517091035843, 0.03284592926502228, -0.0550505705177784, -0.03324662521481514, -0.01986485719680786, -0.007458924315869808, 0.04285930097103119, 0.005817640572786331, -0.03548864275217056, -0.04651921987533569, 0.03320353105664253, -0.006901686545461416, -0.0325339175760746, -0.05517449602484703, 0.059724096208810806, -0.010440192185342312, -0.011820881627500057, 0.03966640308499336, 0.02274019829928875, 0.02940184809267521, 0.06899988651275635, 0.018334319815039635, 0.0018658408662304282, -0.04012659937143326, 0.040237460285425186, -0.03576713427901268, -0.01420553494244814, 0.007142482325434685, -0.0455172061920166, -0.03982767462730408, -0.013136289082467556, -0.038339026272296906, -0.03488830104470253, -0.018568506464362144, 0.01716982014477253, 0.005198043771088123, -0.02170744352042675, -0.005147714167833328, 0.06154511123895645, -0.0015446414472535253, -0.0286097414791584, -0.030803818255662918, -0.02755041792988777, -0.06416674703359604, -0.05196691304445267, 0.03698123246431351, 0.01442590169608593, 0.016294315457344055, 0.04212271049618721, 0.016253884881734848, 0.009240234270691872, 0.02178039960563183, -0.04297111928462982, 0.016980217769742012, -0.015074212104082108, -0.026473408564925194, -0.018886730074882507, 0.02956509031355381, 0.010057792067527771, 0.022176401689648628, -0.05461136996746063, 0.028439130634069443, 0.0004917951300740242, -0.006548530422151089, -0.012886010110378265, 0.013211378827691078, 0.030588701367378235, -0.06843844801187515, -0.031975578516721725, -0.00646488880738616, -0.028848491609096527, 0.03102295473217964, -0.032452892512083054, -0.03141434118151665, -0.00603901082649827, 0.016987532377243042, 0.032574016600847244, -0.019245045259594917, -0.027814894914627075, 0.03212970122694969, -0.021672314032912254, 0.012385129928588867, -0.05255073681473732, 0.05900457128882408, -0.03212403133511543, 0.015750227496027946, -0.025533178821206093, 0.010358206927776337, -0.03623451292514801, 0.040761228650808334, -0.021313047036528587, -0.007746501360088587, -0.008162337355315685, 0.05284945294260979, -0.014573133550584316, 0.03618217259645462, 0.00297039863653481, 0.035851530730724335, -0.030905425548553467, 0.06878314912319183, -0.037531934678554535, 0.01091767381876707, -0.01818467490375042, 0.00024262747319880873, -0.02385428547859192, 0.013601460494101048, -0.02971685864031315, -0.03587738424539566, 0.0152682950720191, 0.07298296689987183, 0.036623310297727585, 0.027918826788663864, -0.029745040461421013, -0.029576683416962624, 0.014667232520878315, -0.054373279213905334, -0.026506682857871056, -0.009794674813747406, -0.0008144289604388177, -0.01417720690369606, 0.06209488585591316, 0.04201413318514824, -0.061215050518512726, -0.06380578875541687, 0.046013135462999344, -0.006538765504956245, -0.007796982303261757, 0.008485604077577591, 0.019613105803728104, 0.03173287212848663, 0.059632740914821625, -0.03301052376627922, -0.003213921096175909, -0.018144890666007996, -0.03556684032082558, 0.03420611843466759, 0.01004172395914793, 0.01489876490086317, 0.00891247671097517, -0.05242180824279785, -0.024194521829485893, 0.07029522210359573, 0.03034001961350441, 0.010287197306752205, -0.014010179787874222, -0.04143848642706871, 0.036197010427713394, 0.012860625050961971, -0.04452011361718178, 0.008133371360599995, 0.009710433892905712, -0.01979815773665905, 0.04669182002544403, -0.01446301769465208, 0.011417261324822903, 0.06794024258852005, 0.05231389030814171, -0.03620724752545357, 0.07860512286424637, -0.02210945263504982, 0.0031340254936367273, 0.05265818163752556, -0.08362926542758942, 0.005558871664106846, -0.03712129220366478, 0.06915956735610962, -0.0710020363330841, 0.02692273259162903, 0.04737693816423416, 0.009274346753954887, 0.013161364942789078, -0.05450018122792244, -0.038109831511974335, 0.003169095376506448, -0.043408144265413284, 0.08620226383209229, 0.021764330565929413, -0.05307769402861595, 0.05475626885890961, -0.0002172173699364066, -0.05690161883831024, 0.050725262612104416, 0.023154929280281067, 0.038560520857572556, 0.04415951296687126, 0.04141027852892876, -0.06105015426874161, 0.013846802525222301, -0.043029893189668655, 0.022994529455900192, -0.03737042099237442, -0.02473766915500164, 0.03505672514438629, -0.03409173712134361, -0.0315006785094738, 0.027449050918221474, 0.006160520948469639, -0.02381031960248947, 0.0565975084900856, -0.058003950864076614, -0.04561220854520798, 0.01436061505228281, 0.023638060316443443, -0.04641792178153992, 0.0065891193225979805, -0.03494574502110481, 0.012121442705392838, 0.022663146257400513, 0.0023366992827504873, -0.009712081402540207, -0.017151162028312683, 0.03523636609315872, -0.06268840283155441, -0.025938382372260094, 0.021571902558207512, -0.0037208348512649536, -0.02053636498749256, 0.014873022213578224, -0.004293477162718773, 0.001937367836944759, 0.03552727401256561, -0.0011559411650523543, 0.015068409033119678, -0.0170553270727396, -0.030339809134602547, 0.01769213378429413, 0.0010112762684002519, 0.01766033284366131, -0.014782682992517948, 0.035843487828969955, 0.01975698210299015, 0.024696195498108864, -0.015026436187326908, -0.022845039144158363, -0.030711568892002106, 0.02665218897163868, -0.029742207378149033, -0.0003685894189402461, -0.016679098829627037, -0.05830777809023857, -0.05376586318016052, -0.010502208024263382, -0.04598679766058922, 0.027571959421038628, -0.06110137328505516, 0.0034443887416273355, 0.03650328144431114, -0.013486221432685852, -0.06206722930073738, -0.11076807975769043, -0.020701050758361816, -0.03025609627366066, -0.016513599082827568, 0.03806421533226967, -0.03418554365634918, 0.03923003748059273, -0.043127335608005524, -0.05124225839972496, 0.05056740716099739, 0.02628217451274395, -0.03803832083940506, 0.04278101772069931, 0.04314885661005974, -0.05454384535551071, 0.004207100253552198, 0.046619608998298645, -0.05610251426696777, 0.006484529003500938, 0.013297392055392265, 0.012593111954629421, 0.016451237723231316, 0.02135913074016571, -0.05879126489162445, -0.004324494861066341, -0.058694642037153244, -0.04761531949043274, -0.05081819370388985, 0.013247241266071796, 0.07598064839839935 ]
Declan/ChicagoTribune_model_v6
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-7 results: [] --- <!-- 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-v3-large__sst2__train-16-7 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6953 - Accuracy: 0.5063 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6911 | 1.0 | 7 | 0.7455 | 0.2857 | | 0.6844 | 2.0 | 14 | 0.7242 | 0.2857 | | 0.6137 | 3.0 | 21 | 0.7341 | 0.4286 | | 0.3805 | 4.0 | 28 | 1.0217 | 0.4286 | | 0.2201 | 5.0 | 35 | 1.1437 | 0.2857 | | 0.0296 | 6.0 | 42 | 1.5997 | 0.4286 | | 0.0103 | 7.0 | 49 | 2.6835 | 0.4286 | | 0.0046 | 8.0 | 56 | 3.3521 | 0.4286 | | 0.002 | 9.0 | 63 | 3.7846 | 0.4286 | | 0.0017 | 10.0 | 70 | 4.0088 | 0.4286 | | 0.0018 | 11.0 | 77 | 4.1483 | 0.4286 | | 0.0006 | 12.0 | 84 | 4.2235 | 0.4286 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.0189584381878376, -0.004027232062071562, -0.021190140396356583, 0.028570102527737617, 0.03582727909088135, 0.01784047856926918, -0.020568689331412315, -0.01839081011712551, -0.05330309271812439, 0.06646778434515, 0.013793078251183033, -0.03954434022307396, 0.017094139009714127, 0.045709650963544846, -0.023425105959177017, -0.03083297796547413, -0.007473761681467295, -0.01725010760128498, -0.030351391062140465, -0.004008871037513018, 0.012209706008434296, -0.012508408166468143, -0.024195317178964615, 0.020487550646066666, 0.0019750678911805153, 0.01196997333317995, -0.0018211910501122475, 0.02027055062353611, 0.029066719114780426, -0.06705422699451447, 0.012576923705637455, -0.03999948501586914, -0.05754056200385094, -0.02513805218040943, -0.015108422376215458, -0.009040115401148796, 0.007286676671355963, 0.023251714184880257, 0.031718794256448746, 0.04856038838624954, 0.009444530121982098, 0.028407571837306023, -0.007716757711023092, -0.02504093386232853, 0.04211772233247757, 0.007822027429938316, -0.059538040310144424, -0.006886544171720743, 0.023461107164621353, -0.021579090505838394, -0.0710638090968132, -0.05468553304672241, -0.005170454271137714, 0.02386942319571972, -0.02440202608704567, -0.01932678557932377, -0.03974492475390434, -0.000108258260297589, 0.06547538936138153, -0.05007333680987358, -0.031774889677762985, 0.022326691076159477, -0.06848340481519699, 0.017155256122350693, 0.04361777380108833, -0.0370926633477211, 0.019060762599110603, -0.03889382258057594, 0.02762523479759693, -0.008052472025156021, 0.061783112585544586, -0.02144119329750538, 0.008699014782905579, -0.09176626056432724, -0.00338616780936718, -0.004586555529385805, 0.0284409262239933, 0.057098306715488434, -0.04028566926717758, 0.06281968206167221, 0.036028798669576645, -0.01289281714707613, 0.042195435613393784, -0.02033378556370735, 0.007696046493947506, 0.031812552362680435, -0.04815034195780754, 0.007387060206383467, 0.027358293533325195, 0.03250030800700188, -0.03743003308773041, -0.0278033260256052, -0.025033215060830116, -0.02718021720647812, -0.020892146974802017, 0.02391653321683407, 0.0480598509311676, -0.005937878042459488, 0.024470705538988113, 0.015937689691781998, 0.02681674435734749, 0.03947379067540169, -0.023862624540925026, 0.0691932812333107, -0.009562298655509949, -0.012465312145650387, -0.022077573463320732, -0.015291651710867882, -0.03663253039121628, 0.013720670714974403, 0.020758165046572685, -0.032311007380485535, -0.01801258698105812, 0.043159034103155136, 0.011187121272087097, 0.0010154395131394267, 0.06978683918714523, -0.023942487314343452, -0.047579243779182434, -0.047025956213474274, 0.019675232470035553, 0.014538433402776718, -0.03147927299141884, 0.019376516342163086, -0.05553240701556206, -0.010296380147337914, -0.01038869097828865, -0.04371599480509758, -0.004150088410824537, 0.009099352173507214, 0.007374250795692205, 0.061151765286922455, 0.03303650766611099, -0.08760496228933334, -0.00010195454524364322, 0.012804057449102402, -0.04735656455159187, 0.037670791149139404, 0.015371225774288177, 0.12042298167943954, -0.0481841042637825, -0.0760490819811821, 0.008013936690986156, 0.003127377014607191, -0.017175298184156418, 0.03138624131679535, 0.0030534304678440094, -0.019306465983390808, -0.0021466154139488935, -0.008986419066786766, 0.05352811515331268, -0.05792859196662903, -0.015002883970737457, 0.06698241829872131, -0.007867785170674324, 0.04964260384440422, -0.04971887916326523, -0.028580930083990097, 0.009382378309965134, -0.021433331072330475, -0.00796494260430336, 0.03532616049051285, -0.025378506630659103, 0.0020861378870904446, -0.023337677121162415, -0.050285935401916504, 0.0036079352721571922, 0.08802182972431183, 0.0020678008440881968, -0.036736056208610535, -0.026425795629620552, 0.02661219984292984, 0.06135282292962074, 0.054963164031505585, -0.02738420106470585, 0.03563576564192772, 0.04667205736041069, 0.029342005029320717, -0.04271304979920387, 0.0406002402305603, 0.02931313030421734, -0.03488272801041603, -0.03141610324382782, 0.031154977157711983, 0.010648895986378193, -0.05070231854915619, 0.016261370852589607, 0.030777039006352425, 0.024240287020802498, -0.06243324652314186, -0.05319434404373169, 0.0498211644589901, -0.004584251902997494, -0.01587829925119877, 0.010660884901881218, 0.008741576224565506, -0.01934026926755905, 0.031157581135630608, -0.016021154820919037, -0.0029189828783273697, -0.027051137760281563, -0.023312581703066826, 0.025010252371430397, 0.006744556128978729, 0.02936449833214283, 0.04584192484617233, -0.013157671317458153, 0.08694744110107422, -0.03749951347708702, 0.014028560370206833, -0.03355769068002701, -0.05919414013624191, 0.009320437908172607, 0.06092124059796333, 0.05477520450949669, 0.05709728226065636, -0.004607601556926966, -0.03880711644887924, 0.04998772591352463, 0.07345063239336014, 0.04778267443180084, 0.0003181968058925122, -0.024148395285010338, -0.015217902138829231, 0.026921667158603668, 0.053131986409425735, -0.04690514877438545, -0.027419593185186386, 0.033922675997018814, 0.043461382389068604, -0.020422643050551414, 0.02311716228723526, -0.02470114827156067, 0.03065153956413269, -0.051237381994724274, -0.060043491423130035, 0.03352120518684387, 0.018311528488993645, -0.0031216677743941545, 0.038297176361083984, 0.002682371297851205, 0.01147708110511303, 0.017541809007525444, 0.015136543661355972, 0.01136723905801773, -0.04794609546661377, 0.03216632828116417, 0.014748402871191502, 0.05212000384926796, -0.03892084211111069, 0.03797018155455589, -0.009738944470882416, -0.001193013391457498, 0.040642816573381424, -0.03687068447470665, 0.02569233626127243, 0.06134949252009392, 0.03894362226128578, -0.031432896852493286, 0.010877447202801704, 0.008005683310329914, 0.01946098357439041, 0.05130322650074959, -0.001089461613446474, 0.06148876994848251, 0.022662846371531487, 0.05580776929855347, 0.08190524578094482, 0.026495521888136864, 0.043244369328022, 0.02505180984735489, 0.07301032543182373, 0.014328427612781525, -0.013770648278295994, 0.03919979929924011, -0.04743625968694687, 0.02015083096921444, -0.043092288076877594, 0.013813633471727371, -0.031739797443151474, -0.005638145375996828, 0.027249399572610855, 0.018975479528307915, -0.03640822321176529, -0.00987242441624403, -0.010056751780211926, -0.004101418424397707, 0.028725242242217064, -0.005271031521260738, 0.0019395695999264717, -0.000231917918426916, -0.01882988214492798, -0.02057996205985546, -0.05962648615241051, -0.03881717473268509, -0.025515953078866005, -0.022376295179128647, -0.020819183439016342, -0.09184332191944122, 0.00928126648068428, -0.0648435428738594, -0.01977340690791607, 0.03518885001540184, 0.003676564199849963, -0.0030844598077237606, -0.033037710934877396, 0.012100551277399063, -0.04719945415854454, -0.03909629210829735, -0.054328445345163345, -0.06739085912704468, -0.03871643915772438, -0.07746843248605728, 0.026711637154221535, 0.04986858367919922, 0.030640680342912674, -0.003573531983420253, 0.012343780137598515, 0.017583277076482773, -0.03733615577220917, 0.04209081456065178, 0.0540689118206501, -0.02658548578619957, -0.04996282607316971, 0.02691376768052578, -0.010576178319752216, 0.012105069123208523, 0.00004511443694354966, -0.026033004745841026, 0.08726049214601517, 0.061551783233881, 0.003363366238772869, 0.0002430724271107465, -0.022983292117714882, -0.0640048235654831, -0.053842734545469284, -0.028514768928289413, -0.0275157131254673, 0.0022769425995647907, -0.04039163887500763, -0.038729116320610046, -0.02557842992246151, -0.03397420048713684, 0.018611181527376175, 0.0016119071515277028, 0.0032104647252708673, 0.019919686019420624, 0.03884902969002724, 0.03063727170228958, 0.03133318945765495, -0.034314531832933426, -0.03629187494516373, 0.0728648453950882, 0.02172786556184292, 0.014856545254588127, -0.07253795117139816, -0.004957927390933037, 0.027310265228152275, 0.02065219171345234, 0.01789131388068199, -0.020293330773711205, 0.06318990141153336, 0.008787601254880428, 0.002434703754261136, 0.014110907912254333, -0.01689215376973152, -0.023045174777507782, -0.011370413936674595, 0.007395876571536064, -0.02477285824716091, -0.04283875226974487, -0.008400209248065948, -0.005430872552096844, 0.043399062007665634, -0.060955364257097244, -0.05245271325111389, -0.03384001925587654, 0.02647586539387703, 0.0441707968711853, 0.0033791204914450645, -0.039091046899557114, -0.008684043772518635, -0.05623222142457962, -0.007908486761152744, 0.048428792506456375, 0.008891396224498749, 0.014176512137055397, 0.046068862080574036, 0.008967447094619274, -0.020880796015262604, 0.05007554590702057, 0.02936612069606781, 0.07182537764310837, 0.012698578648269176, -0.06724760681390762, 0.017646806314587593, -0.020168093964457512, 0.01114806067198515, -0.012119831517338753, -0.025726279243826866, -0.04162009432911873, -0.10507908463478088, 0.0008959804545156658, 0.006199171766638756, -0.00593325961381197, -0.010690039955079556, 0.05085250735282898, 0.012496878392994404, -0.013231311924755573, -0.0070368461310863495, 0.0065346709452569485, 0.04283497855067253, -0.03871610388159752, 0.039060357958078384, -0.004399291705340147, -0.011502005159854889, -0.05487511679530144, 0.018345249816775322, -0.04229602590203285, -0.02267756313085556, 0.012119951657950878, 0.047009773552417755, -0.00440563028678298, 0.0698963925242424, 0.09424123913049698, 0.031323179602622986, -0.03325185924768448, 0.03582329675555229, 0.07337645441293716, -0.031054209917783737, -0.042396023869514465, -0.0057756477035582066, -0.01058106403797865, -0.008453243412077427, 0.001848305924795568, -0.007733318954706192, 0.050681810826063156, 0.038462020456790924, -0.00661872886121273, -0.002195083536207676, -0.00503980228677392, -0.00916549377143383, -0.023064816370606422, -0.038677867501974106, -0.021425947546958923, 0.006764933932572603, -0.027031483128666878, 0.01757992058992386, 0.039301566779613495, 0.021329820156097412, 0.049506958574056625, 0.021278012543916702, -0.04529920965433121, -0.01877540349960327, 0.028397386893630028, 0.006396267097443342, -0.03855922073125839, -0.07266201823949814, -0.009350149892270565, 0.043697670102119446, 0.03011215291917324, -0.020750368013978004, -0.05759968236088753, -0.005121222697198391, 0.06162450835108757, -0.06702403724193573, 0.04455972835421562, -0.012537802569568157, 0.037775568664073944, 0.054995231330394745, -0.019073694944381714, 0.046295031905174255, -0.023412538692355156, 0.01020688097923994, 0.0008390903822146356, 0.039949316531419754, -0.014649561606347561, -0.02840469591319561, -0.0503687858581543, 0.025563014671206474, 0.031463827937841415, 0.032098691910505295, 0.05746336281299591, -0.03198849409818649, -0.03341216221451759, 0.0009699439397081733, 0.04757848381996155, -0.060528673231601715, -0.0007692768704146147, 0.03635222092270851, 0.03366071358323097, -0.05382245033979416, -0.033531855791807175, -0.019428346306085587, -0.007701511960476637, 0.04209612309932709, 0.0049859387800097466, -0.03478351980447769, -0.04695003852248192, 0.03237984701991081, -0.00612665293738246, -0.034490734338760376, -0.055261801928281784, 0.06090059503912926, -0.00903027318418026, -0.011602887883782387, 0.038962941616773605, 0.024297935888171196, 0.030252112075686455, 0.06948206573724747, 0.01740873046219349, 0.0004710668290499598, -0.04120844602584839, 0.03984774276614189, -0.03533834218978882, -0.016193103045225143, 0.007954228669404984, -0.04511406272649765, -0.040516555309295654, -0.013693363405764103, -0.03886085003614426, -0.035506926476955414, -0.01959390565752983, 0.01671450026333332, 0.004707715939730406, -0.02076948620378971, -0.005358972121030092, 0.05994749814271927, -0.0011037776712328196, -0.029620934277772903, -0.030443476513028145, -0.027825312688946724, -0.06560623645782471, -0.052570510655641556, 0.03582162410020828, 0.014241799712181091, 0.015931561589241028, 0.04269557073712349, 0.014726896770298481, 0.008631558157503605, 0.02255774289369583, -0.04228409752249718, 0.015905411913990974, -0.014259747229516506, -0.027726823464035988, -0.020108859986066818, 0.030636906623840332, 0.010839910246431828, 0.02083388902246952, -0.054292891174554825, 0.027062157168984413, 0.00007371331594185904, -0.005928713362663984, -0.013638250529766083, 0.013118398375809193, 0.02915295772254467, -0.06947578489780426, -0.032873302698135376, -0.005647292360663414, -0.027757227420806885, 0.030627507716417313, -0.03166676685214043, -0.0330142006278038, -0.004346120171248913, 0.018063822761178017, 0.03306437283754349, -0.018858153373003006, -0.027189571410417557, 0.03197404369711876, -0.0219426192343235, 0.012997755780816078, -0.052660319954156876, 0.05837174504995346, -0.03203878179192543, 0.01651098020374775, -0.024353450164198875, 0.01181716937571764, -0.03796086832880974, 0.04256714507937431, -0.022179514169692993, -0.007524419575929642, -0.008457046002149582, 0.05335262417793274, -0.015313699841499329, 0.034760937094688416, 0.0015924909384921193, 0.036804720759391785, -0.03067019023001194, 0.06957078725099564, -0.038503363728523254, 0.010256415233016014, -0.017595993354916573, -0.0007075273897498846, -0.0233868770301342, 0.01257175300270319, -0.02890596352517605, -0.03629394993185997, 0.015518889762461185, 0.07269446551799774, 0.03508215397596359, 0.028174005448818207, -0.02985570579767227, -0.02988600544631481, 0.01523507945239544, -0.05510430410504341, -0.025441674515604973, -0.008551442064344883, -0.001140662468969822, -0.014461367391049862, 0.06268344074487686, 0.042377594858407974, -0.06087752804160118, -0.06441143900156021, 0.04579297825694084, -0.005392423365265131, -0.007743584457784891, 0.00953444093465805, 0.020557260140776634, 0.0312462467700243, 0.06007429584860802, -0.03261254355311394, -0.004860830493271351, -0.020761091262102127, -0.035485729575157166, 0.03320452943444252, 0.00998366717249155, 0.014022302813827991, 0.010085280984640121, -0.052516840398311615, -0.02332639880478382, 0.07068342715501785, 0.029378727078437805, 0.010571694001555443, -0.012498702853918076, -0.04159335047006607, 0.037414003163576126, 0.011341000907123089, -0.04327385127544403, 0.007189515978097916, 0.009350091218948364, -0.021439403295516968, 0.04646418243646622, -0.013492241501808167, 0.011053651571273804, 0.0672605037689209, 0.051092907786369324, -0.034617677330970764, 0.0791403278708458, -0.0222601518034935, 0.0019100315403193235, 0.05249861255288124, -0.081184983253479, 0.0059246099554002285, -0.03806065395474434, 0.06893409788608551, -0.07181140035390854, 0.02757123112678528, 0.04760809242725372, 0.009390071034431458, 0.011489011347293854, -0.054845068603754044, -0.03724244609475136, 0.0024296187330037355, -0.04445270076394081, 0.08664116263389587, 0.021976549178361893, -0.052985433489084244, 0.05442337319254875, 0.0004619515675585717, -0.05692487582564354, 0.05080791190266609, 0.02359931729733944, 0.038179390132427216, 0.044432155787944794, 0.04268211871385574, -0.060628581792116165, 0.013531173579394817, -0.04290543124079704, 0.022352436557412148, -0.0374007448554039, -0.023362865671515465, 0.03376057371497154, -0.03392566740512848, -0.030185705050826073, 0.026048878207802773, 0.005726701579988003, -0.02209831029176712, 0.05729549750685692, -0.058783676475286484, -0.04601260647177696, 0.014411143027245998, 0.02389691211283207, -0.045886099338531494, 0.007052129600197077, -0.033756427466869354, 0.010814916342496872, 0.02265973575413227, 0.002768455073237419, -0.010791361331939697, -0.01694955863058567, 0.033874914050102234, -0.0633331909775734, -0.02631370536983013, 0.022360220551490784, -0.004036230966448784, -0.020081937313079834, 0.013981671072542667, -0.0027018077671527863, 0.002844391856342554, 0.034499820321798325, -0.0015146832447499037, 0.015008681453764439, -0.015437260270118713, -0.03150327503681183, 0.019735733047127724, 0.0007781871827319264, 0.018136940896511078, -0.014344867318868637, 0.03569946810603142, 0.021184703335165977, 0.024893868714571, -0.014958770014345646, -0.02238496020436287, -0.030585750937461853, 0.026258008554577827, -0.029253097251057625, 0.0012543229386210442, -0.017371278256177902, -0.05909762904047966, -0.054037898778915405, -0.00926822517067194, -0.045921776443719864, 0.028581159189343452, -0.06166897341609001, 0.00202512601390481, 0.037218526005744934, -0.013315456919372082, -0.06243157759308815, -0.11164074391126633, -0.021053072065114975, -0.030899282544851303, -0.014815243892371655, 0.038146983832120895, -0.03388529270887375, 0.03998038172721863, -0.04382036626338959, -0.05174002796411514, 0.05098690837621689, 0.027860475704073906, -0.03678785264492035, 0.042798541486263275, 0.042010046541690826, -0.053319040685892105, 0.003526967251673341, 0.044856030493974686, -0.056111376732587814, 0.004462329670786858, 0.011491266079246998, 0.01227632723748684, 0.016426941379904747, 0.02161395363509655, -0.058964990079402924, -0.0036726214457303286, -0.05823066830635071, -0.04648701474070549, -0.04999284818768501, 0.012148195877671242, 0.07629750669002533 ]
Declan/ChicagoTribune_model_v7
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-16-8 results: [] --- <!-- 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-v3-large__sst2__train-16-8 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6915 - Accuracy: 0.6579 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7129 | 1.0 | 7 | 0.7309 | 0.2857 | | 0.6549 | 2.0 | 14 | 0.7316 | 0.4286 | | 0.621 | 3.0 | 21 | 0.7131 | 0.5714 | | 0.3472 | 4.0 | 28 | 0.5703 | 0.4286 | | 0.2041 | 5.0 | 35 | 0.6675 | 0.5714 | | 0.031 | 6.0 | 42 | 1.6750 | 0.5714 | | 0.0141 | 7.0 | 49 | 1.8743 | 0.5714 | | 0.0055 | 8.0 | 56 | 1.1778 | 0.5714 | | 0.0024 | 9.0 | 63 | 1.0699 | 0.5714 | | 0.0019 | 10.0 | 70 | 1.0933 | 0.5714 | | 0.0012 | 11.0 | 77 | 1.1218 | 0.7143 | | 0.0007 | 12.0 | 84 | 1.1468 | 0.7143 | | 0.0006 | 13.0 | 91 | 1.1584 | 0.7143 | | 0.0006 | 14.0 | 98 | 1.3092 | 0.7143 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019763056188821793, -0.003303071018308401, -0.02108706906437874, 0.028559906408190727, 0.035077180713415146, 0.018588384613394737, -0.01936832256615162, -0.019095368683338165, -0.053737979382276535, 0.06656968593597412, 0.013617225922644138, -0.03836449608206749, 0.017798004671931267, 0.04539474844932556, -0.02507195435464382, -0.030079279094934464, -0.006666918750852346, -0.017243076115846634, -0.030666867271065712, -0.004153370391577482, 0.011213711462914944, -0.011872044764459133, -0.022301465272903442, 0.021090688183903694, 0.0033736631739884615, 0.011972970329225063, -0.0015900450525805354, 0.02074829488992691, 0.029230987653136253, -0.06634048372507095, 0.012682531028985977, -0.040140870958566666, -0.05815468356013298, -0.02460363321006298, -0.01468870509415865, -0.0092617841437459, 0.007725327275693417, 0.023534715175628662, 0.03262419253587723, 0.049673888832330704, 0.008459381759166718, 0.029024774208664894, -0.008111411705613136, -0.02443423680961132, 0.042909085750579834, 0.007169251795858145, -0.060020286589860916, -0.006478066090494394, 0.02313302643597126, -0.022319408133625984, -0.07047346979379654, -0.05531837046146393, -0.005393635015934706, 0.024628138169646263, -0.024115463718771935, -0.0186244435608387, -0.03963344544172287, -0.0003090950194746256, 0.06598280370235443, -0.049804188311100006, -0.03162300959229469, 0.02344348467886448, -0.06919403374195099, 0.017043445259332657, 0.04394249990582466, -0.03546617552638054, 0.01853477582335472, -0.039066582918167114, 0.028288722038269043, -0.007849019952118397, 0.061177171766757965, -0.021211056038737297, 0.008751137182116508, -0.09080471843481064, -0.0035916543565690517, -0.0032113438937813044, 0.029008161276578903, 0.05617557466030121, -0.04027809947729111, 0.06279703974723816, 0.03662959486246109, -0.012595972046256065, 0.042867131531238556, -0.020221833139657974, 0.007523960433900356, 0.03093482181429863, -0.04763970896601677, 0.006344320718199015, 0.02661833167076111, 0.03306593745946884, -0.03727784380316734, -0.027709821239113808, -0.02591070719063282, -0.027100136503577232, -0.020503170788288116, 0.023472879081964493, 0.04866492748260498, -0.005980349611490965, 0.024221030995249748, 0.015200699679553509, 0.026529161259531975, 0.03976134955883026, -0.023777734488248825, 0.07067521661520004, -0.008929654024541378, -0.013998390175402164, -0.022013552486896515, -0.01506118755787611, -0.03583231195807457, 0.013914288021624088, 0.021280821412801743, -0.032034773379564285, -0.017512122169137, 0.04468398168683052, 0.01078783068805933, 0.0005879540112800896, 0.06973244249820709, -0.022842692211270332, -0.046788159757852554, -0.04686695337295532, 0.019319020211696625, 0.014120702631771564, -0.03108941949903965, 0.019860409200191498, -0.05491769686341286, -0.009503589011728764, -0.01059342734515667, -0.044260937720537186, -0.005039109382778406, 0.008820523507893085, 0.007667730562388897, 0.061312370002269745, 0.033872418105602264, -0.08805852383375168, -0.00041671021608635783, 0.013188628479838371, -0.048002395778894424, 0.03756443038582802, 0.01436708029359579, 0.12156108021736145, -0.04658599570393562, -0.07464972138404846, 0.008775553666055202, 0.003909803926944733, -0.017752332612872124, 0.0321812704205513, 0.0038154292851686478, -0.018682271242141724, -0.0024198098108172417, -0.008007004857063293, 0.053631268441677094, -0.05789333954453468, -0.014785484410822392, 0.06680785119533539, -0.007128599565476179, 0.04861496761441231, -0.04959006607532501, -0.02889578603208065, 0.00949721410870552, -0.01924828812479973, -0.00854445155709982, 0.03515410050749779, -0.02448171190917492, 0.002427219646051526, -0.022960253059864044, -0.05012928694486618, 0.003168740775436163, 0.08859802037477493, 0.0018727766582742333, -0.03605198860168457, -0.027212971821427345, 0.0278967022895813, 0.0599372498691082, 0.05425170436501503, -0.02746044285595417, 0.036793921142816544, 0.04704783111810684, 0.028516395017504692, -0.04285184666514397, 0.041043661534786224, 0.027360986918210983, -0.03468145802617073, -0.030850883573293686, 0.030812466517090797, 0.010477224364876747, -0.049509450793266296, 0.01527340803295374, 0.030737530440092087, 0.02443893998861313, -0.062024105340242386, -0.05360514298081398, 0.04880806431174278, -0.005565003491938114, -0.01697131060063839, 0.009946616366505623, 0.008407851681113243, -0.021609283983707428, 0.03162342309951782, -0.017146693542599678, -0.00323468167334795, -0.02615179307758808, -0.023940877988934517, 0.023979760706424713, 0.006672290153801441, 0.028410261496901512, 0.0457349494099617, -0.012888981029391289, 0.08901740610599518, -0.03769366070628166, 0.01522043626755476, -0.03489436209201813, -0.058906570076942444, 0.009722798131406307, 0.060890309512615204, 0.05381109192967415, 0.05657603591680527, -0.0045186737552285194, -0.03860059380531311, 0.04916878417134285, 0.07254937291145325, 0.046636372804641724, 0.002119547687470913, -0.02493341825902462, -0.015775557607412338, 0.02643229067325592, 0.05292954295873642, -0.0481814406812191, -0.027601763606071472, 0.033862706273794174, 0.04199604317545891, -0.020586879923939705, 0.023826690390706062, -0.02230171300470829, 0.03200317546725273, -0.051441725343465805, -0.05943697318434715, 0.032811615616083145, 0.018650703132152557, -0.0032072034664452076, 0.03845508396625519, 0.0033280793577432632, 0.01172261219471693, 0.01751125231385231, 0.013953287154436111, 0.010707969777286053, -0.04775117710232735, 0.03246138617396355, 0.0160676222294569, 0.05296517536044121, -0.03845076635479927, 0.03802245482802391, -0.009310396388173103, -0.0004934589960612357, 0.040458228439092636, -0.03816681727766991, 0.026988064870238304, 0.061307359486818314, 0.039895396679639816, -0.032154105603694916, 0.012245583347976208, 0.00756181962788105, 0.020061025395989418, 0.05170789361000061, -0.000759652117267251, 0.06188652664422989, 0.02213371731340885, 0.0562313050031662, 0.08272498100996017, 0.024433385580778122, 0.04321799799799919, 0.02606290578842163, 0.07430807501077652, 0.014157679863274097, -0.014268625527620316, 0.03977867588400841, -0.04678798094391823, 0.02042001113295555, -0.04379305988550186, 0.014498484320938587, -0.03319168835878372, -0.005860921926796436, 0.02875632978975773, 0.018165206536650658, -0.03560558333992958, -0.009589196182787418, -0.0103607764467597, -0.004787791054695845, 0.028192520141601562, -0.005053148604929447, 0.0013346855994313955, -0.0014832629822194576, -0.020158424973487854, -0.022308478131890297, -0.06062430515885353, -0.03747444972395897, -0.02690174989402294, -0.021972866728901863, -0.02182832919061184, -0.09117525070905685, 0.009260564111173153, -0.0647166520357132, -0.02002287656068802, 0.03390359506011009, 0.004680513869971037, -0.00263141468167305, -0.034471966326236725, 0.012830518186092377, -0.04774312674999237, -0.03948918357491493, -0.05337556079030037, -0.06746383756399155, -0.03941795974969864, -0.07653241604566574, 0.027481405064463615, 0.049731362611055374, 0.03188978508114815, -0.005230315960943699, 0.012076450511813164, 0.016169974580407143, -0.03712526336312294, 0.04279584437608719, 0.05538726598024368, -0.027799008414149284, -0.05049235746264458, 0.02683849073946476, -0.009291626513004303, 0.0132726626470685, -0.0020591740030795336, -0.024987364187836647, 0.08689644932746887, 0.06146771460771561, 0.0030975756235420704, 0.000294162193313241, -0.024087004363536835, -0.0637194886803627, -0.05315414071083069, -0.028661511838436127, -0.027420829981565475, 0.0013254472287371755, -0.0402459017932415, -0.03930988535284996, -0.024312587454915047, -0.03377985581755638, 0.018468674272298813, 0.0010353161487728357, 0.002856561681255698, 0.021345017477869987, 0.03928779438138008, 0.029756270349025726, 0.030481521040201187, -0.033248282968997955, -0.03677993640303612, 0.07241450995206833, 0.020034238696098328, 0.01573813334107399, -0.07235027104616165, -0.005325604230165482, 0.027355004101991653, 0.020894967019557953, 0.01797674410045147, -0.020457759499549866, 0.06287600100040436, 0.007967477664351463, 0.003756187157705426, 0.013834681361913681, -0.016078440472483635, -0.02465386874973774, -0.01156768761575222, 0.007913305424153805, -0.023785250261425972, -0.04274877905845642, -0.008667361922562122, -0.004747031722217798, 0.041955940425395966, -0.06175784394145012, -0.05385306850075722, -0.032941464334726334, 0.02694639377295971, 0.04446449875831604, 0.0021144936326891184, -0.03902597352862358, -0.007203538436442614, -0.05647027865052223, -0.006418110802769661, 0.048457566648721695, 0.00838735606521368, 0.013588528148829937, 0.046957194805145264, 0.009288601577281952, -0.020768241956830025, 0.05211220309138298, 0.030205683782696724, 0.07160954177379608, 0.011980690062046051, -0.06728816777467728, 0.017406612634658813, -0.020288774743676186, 0.010054530575871468, -0.01197548396885395, -0.02611764334142208, -0.04095984250307083, -0.10603931546211243, 0.0010318466229364276, 0.0070663332007825375, -0.0051740612834692, -0.011045999825000763, 0.05004202201962471, 0.013165713287889957, -0.013918722979724407, -0.0057028173469007015, 0.005441248882561922, 0.04389103874564171, -0.03893878310918808, 0.04054287075996399, -0.0037186467088758945, -0.011748280376195908, -0.0545225590467453, 0.01933891698718071, -0.04293399676680565, -0.023646414279937744, 0.012806599028408527, 0.04656580835580826, -0.005636757239699364, 0.06936175376176834, 0.09515946358442307, 0.03051791526377201, -0.034270696341991425, 0.03685786575078964, 0.07272300869226456, -0.031155478209257126, -0.04342566430568695, -0.006235496606677771, -0.010524608194828033, -0.00831081997603178, 0.001450304058380425, -0.007903353311121464, 0.05000649392604828, 0.03706018626689911, -0.004636753816157579, -0.0008086616871878505, -0.0052835773676633835, -0.00867971871048212, -0.024282729253172874, -0.03842548280954361, -0.02104709856212139, 0.007201786618679762, -0.02733517624437809, 0.014589541591703892, 0.039906084537506104, 0.02114710584282875, 0.05136285722255707, 0.02268563210964203, -0.04340716823935509, -0.01912158913910389, 0.028760738670825958, 0.006330140866339207, -0.03839927166700363, -0.0725291445851326, -0.007647569291293621, 0.043616414070129395, 0.030161522328853607, -0.020565707236528397, -0.057130616158246994, -0.005291503854095936, 0.06149851158261299, -0.06716593354940414, 0.04440515115857124, -0.011304515413939953, 0.03768877312541008, 0.055904243141412735, -0.019273269921541214, 0.045991502702236176, -0.024600800126791, 0.010018466040492058, -0.00007146627467591316, 0.04043925926089287, -0.015581861138343811, -0.028778817504644394, -0.050142306834459305, 0.02561092935502529, 0.03265352174639702, 0.03257923200726509, 0.05762343481183052, -0.032229676842689514, -0.0326235368847847, 0.0008251406252384186, 0.04820454865694046, -0.059973809868097305, 0.0014519875403493643, 0.03550851717591286, 0.03410515561699867, -0.05458537116646767, -0.03270755335688591, -0.02030995860695839, -0.007784983143210411, 0.04212954267859459, 0.004169275984168053, -0.03535982593894005, -0.04754485562443733, 0.03281991183757782, -0.005281170830130577, -0.03263869509100914, -0.055565036833286285, 0.06140332669019699, -0.009513645432889462, -0.011712384410202503, 0.039201464504003525, 0.024098699912428856, 0.030475903302431107, 0.06832850724458694, 0.01580418273806572, 0.002600891748443246, -0.04140707105398178, 0.041228655725717545, -0.03682710602879524, -0.015160046517848969, 0.00803814735263586, -0.04406273365020752, -0.04084351658821106, -0.013732428662478924, -0.03767731040716171, -0.03512018546462059, -0.018543725833296776, 0.016055390238761902, 0.0044358763843774796, -0.018783774226903915, -0.005356395151466131, 0.060636188834905624, -0.0014720519538968801, -0.029842009767889977, -0.03035329282283783, -0.029465345665812492, -0.0663270577788353, -0.05195499211549759, 0.03519861772656441, 0.013115121982991695, 0.015361127443611622, 0.044064491987228394, 0.015292598865926266, 0.008873374201357365, 0.02257452718913555, -0.041736964136362076, 0.016751717776060104, -0.012664898298680782, -0.02701684460043907, -0.018623875454068184, 0.029648365452885628, 0.010939293541014194, 0.021960290148854256, -0.054908521473407745, 0.0288888867944479, 0.001119314576499164, -0.0064017279073596, -0.012450017035007477, 0.012219731695950031, 0.029435889795422554, -0.07002149522304535, -0.032352056354284286, -0.005331070628017187, -0.02792893908917904, 0.030723294243216515, -0.032202646136283875, -0.032442606985569, -0.005775228142738342, 0.018209436908364296, 0.03335532546043396, -0.018828604370355606, -0.02640629932284355, 0.03262591361999512, -0.020800312981009483, 0.013467514887452126, -0.05418968200683594, 0.05758753418922424, -0.03266569599509239, 0.017864692956209183, -0.024876054376363754, 0.012215467169880867, -0.036452896893024445, 0.04063352942466736, -0.02362806908786297, -0.00823436863720417, -0.009022902697324753, 0.05298200994729996, -0.01575632579624653, 0.035879794508218765, 0.002306536538526416, 0.03646384924650192, -0.030612139031291008, 0.06883004307746887, -0.03845522180199623, 0.01092719379812479, -0.01676577515900135, 0.000028203839974594302, -0.023749882355332375, 0.011586152017116547, -0.028414107859134674, -0.03516383841633797, 0.015099942684173584, 0.07333355396986008, 0.03375734016299248, 0.026885339990258217, -0.027589058503508568, -0.03149470314383507, 0.014749154448509216, -0.054481565952301025, -0.025516293942928314, -0.009524976834654808, -0.0017925011925399303, -0.013818413019180298, 0.06029285117983818, 0.042028624564409256, -0.060887210071086884, -0.06417065858840942, 0.04538433998823166, -0.004442575387656689, -0.008797584101557732, 0.009348397143185139, 0.020789558067917824, 0.030780229717493057, 0.06023164093494415, -0.032198596745729446, -0.004011090844869614, -0.019646715372800827, -0.03597072884440422, 0.03238667547702789, 0.009644772857427597, 0.013467402197420597, 0.00960699561983347, -0.05243324115872383, -0.024617290124297142, 0.07038190215826035, 0.028658617287874222, 0.011526546441018581, -0.012034454382956028, -0.04017465561628342, 0.036991409957408905, 0.011920016258955002, -0.043902479112148285, 0.006926652975380421, 0.009779810905456543, -0.022251378744840622, 0.04537330940365791, -0.013388088904321194, 0.013197539374232292, 0.0669853538274765, 0.052389323711395264, -0.03614971786737442, 0.07940305024385452, -0.022567709907889366, 0.0037116569001227617, 0.05210923030972481, -0.08029019087553024, 0.004496518522500992, -0.03684792295098305, 0.06818331778049469, -0.0700029656291008, 0.02789372019469738, 0.04874949902296066, 0.010124205611646175, 0.013756711035966873, -0.054090023040771484, -0.03643873706459999, 0.003921502735465765, -0.04566314443945885, 0.08749805390834808, 0.022517766803503036, -0.050924647599458694, 0.053741950541734695, 0.00019919226178899407, -0.058130230754613876, 0.049246467649936676, 0.022011226043105125, 0.038726914674043655, 0.044658366590738297, 0.04403330385684967, -0.06093110889196396, 0.014267618767917156, -0.04429786279797554, 0.022214606404304504, -0.03767463564872742, -0.022658590227365494, 0.03427024930715561, -0.033394817262887955, -0.03111807256937027, 0.026462670415639877, 0.005376964807510376, -0.02258325181901455, 0.05648116394877434, -0.05828484147787094, -0.045610811561346054, 0.014821339398622513, 0.025098169222474098, -0.045026037842035294, 0.006945889443159103, -0.033028896898031235, 0.012033511884510517, 0.023580141365528107, 0.0025359690189361572, -0.010293368250131607, -0.017069118097424507, 0.03528046980500221, -0.06323301792144775, -0.026154683902859688, 0.021848538890480995, -0.004178772680461407, -0.020399756729602814, 0.01504602562636137, -0.0029673834796994925, 0.004216684028506279, 0.03488430380821228, -0.0015436419053003192, 0.01577828638255596, -0.016657469794154167, -0.02977510541677475, 0.01882261410355568, 0.0007495463942177594, 0.017026737332344055, -0.016510531306266785, 0.03529028967022896, 0.020304864272475243, 0.024887582287192345, -0.013931471854448318, -0.024097751826047897, -0.031233282759785652, 0.02619168721139431, -0.029643438756465912, 0.0015854232478886843, -0.015485198237001896, -0.059237249195575714, -0.05389699712395668, -0.008070037700235844, -0.04435473307967186, 0.028509726747870445, -0.0606972835958004, 0.0028162756934762, 0.03718670830130577, -0.012511330656707287, -0.06266001611948013, -0.11139591038227081, -0.02366088703274727, -0.03239557147026062, -0.014870059676468372, 0.039153050631284714, -0.033432889729738235, 0.03841549903154373, -0.043848928064107895, -0.05257588252425194, 0.05085575953125954, 0.02804088220000267, -0.038859494030475616, 0.04269370436668396, 0.041860658675432205, -0.053203437477350235, 0.0023308685049414635, 0.04454590752720833, -0.055662427097558975, 0.0066960956901311874, 0.011634531430900097, 0.010544242337346077, 0.01583925634622574, 0.021401865407824516, -0.058294039219617844, -0.0033968372736126184, -0.05823766812682152, -0.045516759157180786, -0.0513242669403553, 0.011429834179580212, 0.07568825036287308 ]
Declan/FoxNews_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-32-1 results: [] --- <!-- 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-v3-large__sst2__train-32-1 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4201 - Accuracy: 0.8759 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7162 | 1.0 | 13 | 0.6832 | 0.5385 | | 0.6561 | 2.0 | 26 | 0.7270 | 0.4615 | | 0.4685 | 3.0 | 39 | 1.0674 | 0.5385 | | 0.2837 | 4.0 | 52 | 1.0841 | 0.5385 | | 0.1129 | 5.0 | 65 | 0.3502 | 0.9231 | | 0.0118 | 6.0 | 78 | 0.4829 | 0.9231 | | 0.0022 | 7.0 | 91 | 0.7430 | 0.8462 | | 0.0007 | 8.0 | 104 | 0.8219 | 0.8462 | | 0.0005 | 9.0 | 117 | 0.8787 | 0.8462 | | 0.0003 | 10.0 | 130 | 0.8713 | 0.8462 | | 0.0003 | 11.0 | 143 | 0.8473 | 0.8462 | | 0.0002 | 12.0 | 156 | 0.8482 | 0.8462 | | 0.0002 | 13.0 | 169 | 0.8494 | 0.8462 | | 0.0002 | 14.0 | 182 | 0.8638 | 0.8462 | | 0.0002 | 15.0 | 195 | 0.8492 | 0.8462 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01919393800199032, -0.004725285805761814, -0.021909238770604134, 0.029193026944994926, 0.0376315712928772, 0.019416362047195435, -0.021059218794107437, -0.018929997459053993, -0.05196067690849304, 0.06502228230237961, 0.014072049409151077, -0.03823041170835495, 0.01694965548813343, 0.04378719627857208, -0.025151720270514488, -0.030352827161550522, -0.005610766354948282, -0.01853305846452713, -0.029584132134914398, -0.0031982306391000748, 0.012486707419157028, -0.011174026876688004, -0.021801035851240158, 0.021321527659893036, 0.0012780969263985753, 0.012872685678303242, -0.0034661723766475916, 0.02255367860198021, 0.02947073057293892, -0.06582187861204147, 0.015137070789933205, -0.03886939957737923, -0.05700019374489784, -0.02435930445790291, -0.014566734433174133, -0.008860163390636444, 0.008579816669225693, 0.023409269750118256, 0.03298946097493172, 0.04858868569135666, 0.006761479657143354, 0.030285323038697243, -0.005005653481930494, -0.0236983485519886, 0.04127158597111702, 0.005858641117811203, -0.05982078239321709, -0.006742439232766628, 0.023620480671525, -0.02054542303085327, -0.07059437781572342, -0.053865253925323486, -0.006214526481926441, 0.02479792758822441, -0.024086667224764824, -0.018763529136776924, -0.03836526721715927, -0.0012282622046768665, 0.06474367529153824, -0.05133097618818283, -0.032503485679626465, 0.022411329671740532, -0.06703290343284607, 0.016374683007597923, 0.04466390237212181, -0.04003772512078285, 0.018598567694425583, -0.0376480408012867, 0.028508048504590988, -0.006907847244292498, 0.06251522153615952, -0.02223828248679638, 0.008388250134885311, -0.09196191281080246, -0.0030773854814469814, -0.004073440562933683, 0.02841345965862274, 0.05590719357132912, -0.03933582454919815, 0.06368525326251984, 0.036046359688043594, -0.01231495663523674, 0.04253324493765831, -0.021165236830711365, 0.007525414694100618, 0.03330836072564125, -0.04850417748093605, 0.007535197772085667, 0.029316183179616928, 0.03188735619187355, -0.03756580129265785, -0.02754949778318405, -0.02562124654650688, -0.02623322606086731, -0.019147008657455444, 0.025753546506166458, 0.04868629202246666, -0.0066793872974812984, 0.02373751997947693, 0.014332138001918793, 0.024801157414913177, 0.038993339985609055, -0.025365212932229042, 0.06914819031953812, -0.008893092162907124, -0.013384900987148285, -0.021695641800761223, -0.014604104682803154, -0.03812896087765694, 0.012491969391703606, 0.020643580704927444, -0.03268186002969742, -0.019368231296539307, 0.04447087645530701, 0.009350568056106567, -0.0005014583584852517, 0.06864262372255325, -0.024369588121771812, -0.04810100048780441, -0.05008431524038315, 0.019916122779250145, 0.013989887200295925, -0.029958147555589676, 0.017877306789159775, -0.05431884154677391, -0.010816402733325958, -0.011645817197859287, -0.04522550851106644, -0.004530107136815786, 0.007763863541185856, 0.00725275045260787, 0.06060703843832016, 0.03230704367160797, -0.08536896854639053, 0.0012150346301496029, 0.012461571954190731, -0.04847671464085579, 0.03537049889564514, 0.01503765769302845, 0.12461179494857788, -0.04785234108567238, -0.07456803321838379, 0.00781179778277874, 0.0023773531429469585, -0.016015242785215378, 0.03349343314766884, 0.005515951197594404, -0.019486116245388985, -0.000628781970590353, -0.009324618615210056, 0.05476813390851021, -0.05798383057117462, -0.016635585576295853, 0.06762859970331192, -0.00696786493062973, 0.050685398280620575, -0.04968080297112465, -0.02677742764353752, 0.010098613798618317, -0.025121377781033516, -0.009065071120858192, 0.03673635795712471, -0.02391742542386055, 0.0005406754789873958, -0.023256981745362282, -0.05286285653710365, 0.004931492730975151, 0.08947613090276718, 0.0018982375040650368, -0.03622228652238846, -0.026690978556871414, 0.028320545330643654, 0.059946514666080475, 0.05499221757054329, -0.027023116126656532, 0.03794864937663078, 0.04875839501619339, 0.02973896637558937, -0.04408564046025276, 0.03947899863123894, 0.02786753885447979, -0.034692589193582535, -0.031245524063706398, 0.03125301003456116, 0.010306296870112419, -0.050828512758016586, 0.01614317297935486, 0.03021741658449173, 0.024877922609448433, -0.06176091730594635, -0.05301787331700325, 0.0476427860558033, -0.005552882794290781, -0.015273645520210266, 0.012564130127429962, 0.009349590167403221, -0.020612655207514763, 0.031790830194950104, -0.016711965203285217, -0.004636511206626892, -0.027497446164488792, -0.023691441863775253, 0.024286625906825066, 0.008494466543197632, 0.029964629560709, 0.045022476464509964, -0.014163087122142315, 0.08910012245178223, -0.03766225650906563, 0.017141899093985558, -0.03049755096435547, -0.05892600491642952, 0.011467876844108105, 0.060492172837257385, 0.05335076153278351, 0.05715234950184822, -0.0062014879658818245, -0.04007626697421074, 0.049975134432315826, 0.07271917164325714, 0.050175849348306656, 0.0012709592701867223, -0.021783767268061638, -0.014092152938246727, 0.02696450985968113, 0.052976593375205994, -0.046683114022016525, -0.02814016304910183, 0.03326325863599777, 0.04422159492969513, -0.019353298470377922, 0.02449241280555725, -0.024585265666246414, 0.03137395158410072, -0.05065985769033432, -0.05957584083080292, 0.03317556530237198, 0.01956792362034321, -0.0033885552547872066, 0.03886014595627785, 0.0035764318890869617, 0.011734548024833202, 0.01831904798746109, 0.016092492267489433, 0.00994307640939951, -0.048577163368463516, 0.031100448220968246, 0.01708015240728855, 0.05251769348978996, -0.0392710343003273, 0.03730665147304535, -0.011379956267774105, -0.0007509510614909232, 0.03869110718369484, -0.03860906511545181, 0.02625764161348343, 0.06134476140141487, 0.03888307884335518, -0.03125603869557381, 0.012027726508677006, 0.008935170248150826, 0.02145378291606903, 0.05075005814433098, -0.0013453855644911528, 0.06061292439699173, 0.022838104516267776, 0.057238318026065826, 0.08233028650283813, 0.026649262756109238, 0.04525430500507355, 0.024209599941968918, 0.07419396936893463, 0.01574697159230709, -0.011510987766087055, 0.038063861429691315, -0.04655275121331215, 0.021092545241117477, -0.04524446651339531, 0.013468108139932156, -0.030189141631126404, -0.00700478907674551, 0.026130780577659607, 0.020845837891101837, -0.035164933651685715, -0.010499215684831142, -0.011868475936353207, -0.003869887674227357, 0.029540639370679855, -0.003817782737314701, 0.002366207540035248, 0.0031039544846862555, -0.01931067183613777, -0.022021165117621422, -0.0605449378490448, -0.0394262857735157, -0.024626249447464943, -0.019377119839191437, -0.019501637667417526, -0.08910514414310455, 0.008366826921701431, -0.06559707969427109, -0.018947307020425797, 0.037882812321186066, 0.003982720896601677, -0.0004549666482489556, -0.033537741750478745, 0.01166930515319109, -0.04703526198863983, -0.03932682052254677, -0.054958589375019073, -0.06702734529972076, -0.039052195847034454, -0.07497461885213852, 0.026871317997574806, 0.049348101019859314, 0.03023221157491207, -0.006297918502241373, 0.010547877289354801, 0.01597326062619686, -0.037565216422080994, 0.04278623312711716, 0.05468478053808212, -0.028043784201145172, -0.04958176985383034, 0.02521453984081745, -0.010466532781720161, 0.012176943011581898, 0.0013751320075243711, -0.024982614442706108, 0.08811985701322556, 0.062728151679039, 0.003719266736879945, 0.0013520437059924006, -0.023672908544540405, -0.06418706476688385, -0.05533033609390259, -0.028904935345053673, -0.028798425570130348, 0.0021850455086678267, -0.03987840190529823, -0.03989306464791298, -0.02436893992125988, -0.03331248089671135, 0.017345966771245003, -0.0019607492722570896, 0.0023283192422240973, 0.020636316388845444, 0.04072355479001999, 0.03108758106827736, 0.03139346465468407, -0.03667725995182991, -0.03701185807585716, 0.07304849475622177, 0.022770971059799194, 0.015570046380162239, -0.07226067036390305, -0.005143621936440468, 0.027261340990662575, 0.0243447944521904, 0.017270108684897423, -0.021805869415402412, 0.06112146005034447, 0.008781015872955322, 0.0043130796402692795, 0.01501714438199997, -0.017433706670999527, -0.022441575303673744, -0.011955579742789268, 0.009124522097408772, -0.02594231441617012, -0.0420432910323143, -0.006655902601778507, -0.003219683188945055, 0.0443701334297657, -0.059462547302246094, -0.05373106151819229, -0.033823247998952866, 0.02185080386698246, 0.044196903705596924, 0.006321462336927652, -0.03971308842301369, -0.009466282092034817, -0.05665431544184685, -0.007968222722411156, 0.04885423555970192, 0.0075063020922243595, 0.01451936922967434, 0.04571778327226639, 0.009336364455521107, -0.019704854115843773, 0.04986695572733879, 0.02539336308836937, 0.07391280680894852, 0.014240823686122894, -0.06708729267120361, 0.019986620172858238, -0.01875271089375019, 0.012137132696807384, -0.009793964214622974, -0.024815361946821213, -0.04149632900953293, -0.10553836077451706, 0.0008414764888584614, 0.004781801253557205, -0.006645523011684418, -0.009647931903600693, 0.050780996680259705, 0.014940914697945118, -0.010869939811527729, -0.0068158661015331745, 0.0074966466054320335, 0.04356922581791878, -0.03509402275085449, 0.04101818427443504, -0.0051128980703651905, -0.013828311115503311, -0.05326763167977333, 0.019296277314424515, -0.044062476605176926, -0.0236262958496809, 0.01316917221993208, 0.04733330011367798, -0.004658880643546581, 0.0699169933795929, 0.09664859622716904, 0.02941979467868805, -0.033150218427181244, 0.03502967208623886, 0.07374890148639679, -0.03026948869228363, -0.0431593656539917, -0.006030248943716288, -0.01110280491411686, -0.007602268364280462, 0.0019351751543581486, -0.009135073982179165, 0.048904210329055786, 0.04009927436709404, -0.006663197185844183, -0.0015691575827077031, -0.005136736202985048, -0.009021195583045483, -0.02287907712161541, -0.03825611248612404, -0.019768236204981804, 0.005905717145651579, -0.027258558198809624, 0.016792157664895058, 0.03958847373723984, 0.019581593573093414, 0.048062216490507126, 0.021924277767539024, -0.04245652258396149, -0.01951322890818119, 0.03060399740934372, 0.004506665747612715, -0.04018069803714752, -0.07368791103363037, -0.005554421339184046, 0.04372537136077881, 0.030947037041187286, -0.02151656523346901, -0.05775177478790283, -0.005609906744211912, 0.059808939695358276, -0.06674366444349289, 0.044000498950481415, -0.010801284573972225, 0.03729778155684471, 0.05359189584851265, -0.01942451298236847, 0.04550836235284805, -0.024329746142029762, 0.007860889658331871, 0.0010165106505155563, 0.03996631130576134, -0.015511405654251575, -0.028494330123066902, -0.050240930169820786, 0.025912834331393242, 0.03365769982337952, 0.031452469527721405, 0.05903252586722374, -0.03178974241018295, -0.03360092639923096, 0.00015136973524931818, 0.04822805896401405, -0.06107450649142265, -0.0012999800965189934, 0.036082714796066284, 0.0346231535077095, -0.0548177994787693, -0.03217701613903046, -0.01958956941962242, -0.008238527923822403, 0.04232737421989441, 0.004259511828422546, -0.03390565514564514, -0.04766320437192917, 0.030111417174339294, -0.006072775926440954, -0.03430573269724846, -0.05405723676085472, 0.059382546693086624, -0.007517031393945217, -0.009914538823068142, 0.03962317854166031, 0.024761326611042023, 0.03208663687109947, 0.06866644322872162, 0.018771015107631683, 0.002521238289773464, -0.04135703667998314, 0.03785300254821777, -0.03442103788256645, -0.014910763129591942, 0.009253349155187607, -0.04338907077908516, -0.04067761078476906, -0.01541613694280386, -0.03591369837522507, -0.03449006378650665, -0.016031906008720398, 0.016390366479754448, 0.004774022847414017, -0.017170634120702744, -0.00495362700894475, 0.05777645483613014, -0.00021366945293266326, -0.0297563336789608, -0.030895905569195747, -0.0293381717056036, -0.06456676125526428, -0.053546641021966934, 0.03684147447347641, 0.013869351707398891, 0.014794050715863705, 0.04202768951654434, 0.014263453893363476, 0.009093044325709343, 0.023147886618971825, -0.043411362916231155, 0.015294923447072506, -0.013088611885905266, -0.029086915776133537, -0.019755085930228233, 0.029624180868268013, 0.010178628377616405, 0.021600499749183655, -0.05147409811615944, 0.027244383469223976, 0.0005274452269077301, -0.00620241230353713, -0.014546622522175312, 0.012534474954009056, 0.02669414132833481, -0.06795758754014969, -0.030930599197745323, -0.0064200847409665585, -0.026254819706082344, 0.030532583594322205, -0.033259741961956024, -0.03535357490181923, -0.004728835076093674, 0.01753465086221695, 0.034147463738918304, -0.018231196328997612, -0.027419982478022575, 0.031088484451174736, -0.02181830443441868, 0.011377782560884953, -0.053483691066503525, 0.05866442993283272, -0.03406165540218353, 0.019305463880300522, -0.02508162148296833, 0.012376220896840096, -0.03940551355481148, 0.042900461703538895, -0.021358346566557884, -0.004926003981381655, -0.009132320992648602, 0.05157730355858803, -0.01687369868159294, 0.033948201686143875, -0.0001690095232333988, 0.036664776504039764, -0.030570223927497864, 0.06930283457040787, -0.03911609947681427, 0.011600058525800705, -0.015662724152207375, 0.0010630598990246654, -0.02508949302136898, 0.011442160233855247, -0.026854651048779488, -0.03707888722419739, 0.015855692327022552, 0.07410777360200882, 0.03459620848298073, 0.028192434459924698, -0.030965743586421013, -0.028593799099326134, 0.014734633266925812, -0.055570729076862335, -0.02506157010793686, -0.010770486667752266, -0.0006503416807390749, -0.014957334846258163, 0.06243528425693512, 0.04259292036294937, -0.059914350509643555, -0.063841313123703, 0.04568789526820183, -0.004533866420388222, -0.007560135331004858, 0.00700957840308547, 0.021656515076756477, 0.02926449663937092, 0.06210778281092644, -0.0326894074678421, -0.004789551254361868, -0.02162138931453228, -0.033999547362327576, 0.034792959690093994, 0.010049917735159397, 0.014376737177371979, 0.010626512579619884, -0.0519581139087677, -0.022892652079463005, 0.06903956085443497, 0.029040468856692314, 0.011157098226249218, -0.011988535523414612, -0.041554491966962814, 0.03870987519621849, 0.012297732755541801, -0.04182804375886917, 0.006762593984603882, 0.008516645058989525, -0.022937750443816185, 0.045558344572782516, -0.011599156074225903, 0.014321534894406796, 0.06697997450828552, 0.053023532032966614, -0.035759087651968, 0.07822688668966293, -0.01986289769411087, 0.003012704895809293, 0.053143080323934555, -0.08093854784965515, 0.006352906581014395, -0.03627694025635719, 0.06697306036949158, -0.06913585215806961, 0.027491306886076927, 0.046674784272909164, 0.01104032713919878, 0.011053607799112797, -0.05571092665195465, -0.037350330501794815, 0.0027043891604989767, -0.04419633001089096, 0.08725350350141525, 0.021528398618102074, -0.05381070822477341, 0.05303134769201279, 0.0006475159898400307, -0.05672616511583328, 0.05154816061258316, 0.022707046940922737, 0.03960810601711273, 0.042585402727127075, 0.04387810826301575, -0.06280189752578735, 0.015024233609437943, -0.04327888414263725, 0.02184438705444336, -0.03616767376661301, -0.021072397008538246, 0.0321468748152256, -0.03220541402697563, -0.03132752701640129, 0.026128077879548073, 0.0052060335874557495, -0.022069482132792473, 0.0566132515668869, -0.05719294771552086, -0.04462207108736038, 0.01573013886809349, 0.02405954711139202, -0.04509606957435608, 0.0061445822939276695, -0.034195538610219955, 0.011916082352399826, 0.023689400404691696, 0.0024711163714528084, -0.009778938256204128, -0.01824844256043434, 0.0347764752805233, -0.06106482818722725, -0.029412124305963516, 0.02343069016933441, -0.004159759264439344, -0.020290689542889595, 0.0120916198939085, -0.0022133539896458387, 0.0027211743872612715, 0.03490038588643074, -0.0009095234563574195, 0.014497468248009682, -0.015889763832092285, -0.03152770921587944, 0.015219232998788357, 0.00004874173100688495, 0.019721204414963722, -0.015608277171850204, 0.0362115278840065, 0.020287025719881058, 0.024674713611602783, -0.016454225406050682, -0.023166337981820107, -0.031085332855582237, 0.024914367124438286, -0.027534829452633858, 0.0016415744321420789, -0.016739647835493088, -0.05786937475204468, -0.0529538169503212, -0.009405710734426975, -0.04707523062825203, 0.03048047423362732, -0.061635781079530716, 0.0020559600088745356, 0.0372619703412056, -0.012457807548344135, -0.06357625126838684, -0.11014705896377563, -0.021275946870446205, -0.02884257398545742, -0.016445225104689598, 0.03669824078679085, -0.03266721963882446, 0.038137286901474, -0.043439194560050964, -0.052833862602710724, 0.05222626402974129, 0.02756991982460022, -0.036888737231492996, 0.04611360281705856, 0.042614296078681946, -0.05196955054998398, 0.0036678023170679808, 0.0442454069852829, -0.055781662464141846, 0.005480628460645676, 0.012389449402689934, 0.012588217854499817, 0.017975302413105965, 0.020467743277549744, -0.059599146246910095, -0.003866136074066162, -0.061267077922821045, -0.045830342918634415, -0.04976404458284378, 0.012226196937263012, 0.07677607983350754 ]
Declan/FoxNews_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-0 results: [] --- <!-- 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-v3-large__sst2__train-8-0 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7088 - Accuracy: 0.5008 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6705 | 1.0 | 3 | 0.7961 | 0.25 | | 0.6571 | 2.0 | 6 | 0.8092 | 0.25 | | 0.7043 | 3.0 | 9 | 0.7977 | 0.25 | | 0.6207 | 4.0 | 12 | 0.8478 | 0.25 | | 0.5181 | 5.0 | 15 | 0.9782 | 0.25 | | 0.4136 | 6.0 | 18 | 1.3151 | 0.25 | | 0.3702 | 7.0 | 21 | 1.8633 | 0.25 | | 0.338 | 8.0 | 24 | 2.2119 | 0.25 | | 0.2812 | 9.0 | 27 | 2.3058 | 0.25 | | 0.2563 | 10.0 | 30 | 2.3353 | 0.25 | | 0.2132 | 11.0 | 33 | 2.5921 | 0.25 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019383490085601807, -0.004667272325605154, -0.019437575712800026, 0.02864612638950348, 0.033982448279857635, 0.019669614732265472, -0.02037990652024746, -0.020162023603916168, -0.05327817052602768, 0.06660740822553635, 0.012425526976585388, -0.03900893032550812, 0.019656533375382423, 0.045762594789266586, -0.02404521219432354, -0.030405551195144653, -0.00738980108872056, -0.01743873953819275, -0.027739716693758965, -0.006622066721320152, 0.009878057055175304, -0.013186410069465637, -0.02217019721865654, 0.021979570388793945, 0.003471856703981757, 0.011761453002691269, -0.0014938763342797756, 0.022354425862431526, 0.028471315279603004, -0.06555972993373871, 0.013933515176177025, -0.04037334769964218, -0.059729062020778656, -0.024076832458376884, -0.014720311388373375, -0.00910861138254404, 0.007964453659951687, 0.0233317818492651, 0.032409168779850006, 0.04984217509627342, 0.007880623452365398, 0.030210455879569054, -0.0058205085806548595, -0.027860060334205627, 0.040937189012765884, 0.007600347977131605, -0.060118407011032104, -0.006774806883186102, 0.02310767024755478, -0.02193896844983101, -0.06808757036924362, -0.05635285750031471, -0.005531129892915487, 0.024296334013342857, -0.022381534799933434, -0.017956286668777466, -0.04100903868675232, 0.0005920315161347389, 0.06584672629833221, -0.0498676560819149, -0.03205610066652298, 0.02280927263200283, -0.06970670819282532, 0.01733880676329136, 0.04417667165398598, -0.03575878217816353, 0.017728332430124283, -0.03946575149893761, 0.029622064903378487, -0.008311668410897255, 0.06099415943026543, -0.022759130224585533, 0.009497268125414848, -0.09202717989683151, -0.00229914509691298, -0.0031517555471509695, 0.02848871983587742, 0.05378427356481552, -0.040101777762174606, 0.06305065006017685, 0.03711880370974541, -0.013729843311011791, 0.042616792023181915, -0.017293989658355713, 0.007825775071978569, 0.029695790261030197, -0.04761739820241928, 0.006089725997298956, 0.029441332444548607, 0.031501758843660355, -0.0355539433658123, -0.02673620544373989, -0.024759266525506973, -0.025736486539244652, -0.019006218761205673, 0.02434765174984932, 0.04801495000720024, -0.007986882701516151, 0.022641997784376144, 0.01618296653032303, 0.026506278663873672, 0.03875347599387169, -0.024897072464227676, 0.07254228740930557, -0.011242768727242947, -0.012800371274352074, -0.021830758079886436, -0.014615820720791817, -0.03417088836431503, 0.011856403201818466, 0.02178153209388256, -0.032122377306222916, -0.017808837816119194, 0.04587217792868614, 0.01068208459764719, -0.00027106874040327966, 0.06950269639492035, -0.022928668186068535, -0.04622325301170349, -0.04950905218720436, 0.019293582066893578, 0.014689336530864239, -0.030772434547543526, 0.02098432183265686, -0.054887402802705765, -0.00974352192133665, -0.012388299219310284, -0.04541875422000885, -0.005849400535225868, 0.008839063346385956, 0.006489843595772982, 0.05991469696164131, 0.03170306235551834, -0.08648759126663208, 0.0008293534629046917, 0.010348474606871605, -0.046579208225011826, 0.03714781254529953, 0.013054079376161098, 0.12208624929189682, -0.04642828181385994, -0.07279826700687408, 0.008043777197599411, 0.00553755322471261, -0.01788674294948578, 0.03217094764113426, 0.004658637102693319, -0.0165045578032732, -0.000863215362187475, -0.008436380885541439, 0.05269115790724754, -0.05829048901796341, -0.013715263456106186, 0.0668695718050003, -0.006024567876011133, 0.05058952420949936, -0.04945927485823631, -0.029381942003965378, 0.008625306189060211, -0.021563682705163956, -0.008855623193085194, 0.03558956831693649, -0.02366781234741211, 0.003405357478186488, -0.02356611378490925, -0.05052349716424942, 0.004232265055179596, 0.0883345827460289, 0.002921561012044549, -0.03674967586994171, -0.027330370619893074, 0.02804291620850563, 0.05867917835712433, 0.05417604371905327, -0.027079276740550995, 0.03606190159916878, 0.047924671322107315, 0.028810810297727585, -0.041490040719509125, 0.04092859849333763, 0.026766013354063034, -0.033717215061187744, -0.032144442200660706, 0.032930418848991394, 0.010831587016582489, -0.050691306591033936, 0.017038434743881226, 0.029993295669555664, 0.023586558178067207, -0.0633024126291275, -0.05357765033841133, 0.05107728764414787, -0.0031220943201333284, -0.016566695645451546, 0.009447176940739155, 0.008846072480082512, -0.02097807265818119, 0.03291724622249603, -0.016461681574583054, -0.0033523617312312126, -0.0270472913980484, -0.024426283314824104, 0.024608297273516655, 0.006167780142277479, 0.029259368777275085, 0.04606252908706665, -0.012369778007268906, 0.09098444133996964, -0.037799883633852005, 0.014293981716036797, -0.0347108356654644, -0.05961655080318451, 0.009207651019096375, 0.06129344925284386, 0.053216416388750076, 0.054682523012161255, -0.007007170468568802, -0.03816129267215729, 0.0485229566693306, 0.07209394872188568, 0.04879887402057648, 0.0009061883902177215, -0.026551613584160805, -0.01604493521153927, 0.028279053047299385, 0.05274925380945206, -0.04875684902071953, -0.02671855129301548, 0.03378628194332123, 0.04231581091880798, -0.021323220804333687, 0.023830831050872803, -0.020902492105960846, 0.031179530546069145, -0.050077930092811584, -0.058348700404167175, 0.03385457023978233, 0.01988093927502632, -0.004031596705317497, 0.03856407850980759, 0.00421476736664772, 0.011532353237271309, 0.016808900982141495, 0.01445502694696188, 0.009172547608613968, -0.04699653014540672, 0.033569712191820145, 0.015487213619053364, 0.053346119821071625, -0.038868170231580734, 0.03788407891988754, -0.009273950010538101, -0.00015134325076360255, 0.04110328108072281, -0.03860807791352272, 0.02665349282324314, 0.06258376687765121, 0.040046073496341705, -0.03282687067985535, 0.010770443826913834, 0.0068013910204172134, 0.01815933734178543, 0.050357989966869354, -0.002026253379881382, 0.06146448105573654, 0.02263948880136013, 0.05631142482161522, 0.08249921351671219, 0.024770954623818398, 0.04360669106245041, 0.025045037269592285, 0.07488375902175903, 0.014689255505800247, -0.014021794311702251, 0.03913748264312744, -0.04671796038746834, 0.02079210989177227, -0.044792260974645615, 0.01464042253792286, -0.03121132217347622, -0.006964398082345724, 0.030507918447256088, 0.01580965891480446, -0.03695225715637207, -0.007812890224158764, -0.010143937543034554, -0.004837193060666323, 0.02861199900507927, -0.004124013241380453, 0.0010145754786208272, -0.0005772546282969415, -0.020165102556347847, -0.02310560829937458, -0.06106370687484741, -0.03847479820251465, -0.026919519528746605, -0.021996300667524338, -0.02246083691716194, -0.09095834940671921, 0.01184404268860817, -0.06470153480768204, -0.0195892546325922, 0.035105664283037186, 0.005291631445288658, -0.003216720884665847, -0.03590846434235573, 0.011732005514204502, -0.04842141643166542, -0.03999081626534462, -0.05344312638044357, -0.06555477529764175, -0.040989600121974945, -0.07934194058179855, 0.028579704463481903, 0.04994114488363266, 0.03193832188844681, -0.005235178396105766, 0.012329615652561188, 0.016553040593862534, -0.03830484300851822, 0.04240228608250618, 0.05587690323591232, -0.027355778962373734, -0.04912424832582474, 0.02604527585208416, -0.00985718984156847, 0.011928806081414223, -0.002133285626769066, -0.024428797885775566, 0.08863626420497894, 0.06072913482785225, 0.0015543109038844705, -0.00018847748287953436, -0.022479470819234848, -0.06266343593597412, -0.050906918942928314, -0.02768532745540142, -0.025831304490566254, 0.003328504739329219, -0.039525434374809265, -0.0395047627389431, -0.024209948256611824, -0.03190100938081741, 0.018123112618923187, 0.0011888380395248532, 0.0016226294683292508, 0.021960265934467316, 0.03673625737428665, 0.029627816751599312, 0.030842341482639313, -0.03384445235133171, -0.03546881675720215, 0.07326575368642807, 0.02132495492696762, 0.01608997955918312, -0.07214277237653732, -0.004222224000841379, 0.02647147700190544, 0.02298261970281601, 0.017808515578508377, -0.018718164414167404, 0.061985623091459274, 0.008770386688411236, 0.0013769296929240227, 0.013294815085828304, -0.018427588045597076, -0.024306247010827065, -0.013471046462655067, 0.006785605568438768, -0.026000846177339554, -0.04191130772233009, -0.009900370612740517, -0.006111017893999815, 0.04238400235772133, -0.0617992989718914, -0.054603371769189835, -0.03386369347572327, 0.027463387697935104, 0.04577387869358063, 0.004429221153259277, -0.03866393491625786, -0.006313704419881105, -0.057258084416389465, -0.006729734130203724, 0.049171265214681625, 0.009297870099544525, 0.013847574591636658, 0.04701278358697891, 0.009754466824233532, -0.02024085633456707, 0.04940858483314514, 0.03132278844714165, 0.06975614279508591, 0.01139545813202858, -0.06772682070732117, 0.018666334450244904, -0.017610281705856323, 0.009105353616178036, -0.013219962827861309, -0.027220044285058975, -0.041707731783390045, -0.10678791254758835, 0.003001834498718381, 0.005253135226666927, -0.007969566620886326, -0.010327992960810661, 0.04911705106496811, 0.011927858926355839, -0.011863220483064651, -0.00417238799855113, 0.005885678343474865, 0.04446473717689514, -0.040095001459121704, 0.04237126559019089, -0.002940053353086114, -0.014396042563021183, -0.05370436981320381, 0.019892707467079163, -0.043246254324913025, -0.02401411533355713, 0.013023661449551582, 0.04455976188182831, -0.003286955412477255, 0.07026330381631851, 0.0946602001786232, 0.03360716253519058, -0.035864636301994324, 0.03652650862932205, 0.07325302809476852, -0.030067451298236847, -0.042600423097610474, -0.005377247463911772, -0.013709867373108864, -0.008198468945920467, 0.00028414136613719165, -0.010061951354146004, 0.04791323095560074, 0.03720971569418907, -0.0044525437988340855, -0.0023582656867802143, -0.004768330603837967, -0.009125981479883194, -0.024131260812282562, -0.04133386164903641, -0.02050311677157879, 0.007552187889814377, -0.02535155788064003, 0.015599689446389675, 0.041365835815668106, 0.023537015542387962, 0.051289524883031845, 0.024437030777335167, -0.04281330108642578, -0.019187230616807938, 0.029737964272499084, 0.004708469845354557, -0.038800980895757675, -0.07311950623989105, -0.007110332604497671, 0.04533647000789642, 0.029785031452775, -0.022049270570278168, -0.05816489830613136, -0.005898020695894957, 0.06234099343419075, -0.06706424057483673, 0.04141819849610329, -0.012987791560590267, 0.03762371465563774, 0.05436223745346069, -0.019080467522144318, 0.04768604040145874, -0.024009816348552704, 0.009686945006251335, -0.0007399829919449985, 0.041561782360076904, -0.016645746305584908, -0.028882650658488274, -0.05094980075955391, 0.026296958327293396, 0.03392636403441429, 0.03323700278997421, 0.056124843657016754, -0.03235229477286339, -0.03190121054649353, 0.0005946320598013699, 0.04937344789505005, -0.05960329994559288, 0.0008731394773349166, 0.03474404290318489, 0.03344203159213066, -0.054102230817079544, -0.031766463071107864, -0.018943030387163162, -0.011714056134223938, 0.04211507365107536, 0.003968344535678625, -0.03302193805575371, -0.048339199274778366, 0.03273883834481239, -0.004821529146283865, -0.03155152499675751, -0.054880451411008835, 0.06199931725859642, -0.008774242363870144, -0.009930643253028393, 0.03927779197692871, 0.026236437261104584, 0.03019135445356369, 0.06941186636686325, 0.014438680373132229, 0.001721040578559041, -0.04045010358095169, 0.040942128747701645, -0.03566194325685501, -0.015333274379372597, 0.008283816277980804, -0.04503641650080681, -0.04146644100546837, -0.014224205166101456, -0.03722590580582619, -0.03372824564576149, -0.017002327367663383, 0.016937656328082085, 0.0037615704350173473, -0.0191847812384367, -0.00510275037959218, 0.059006694704294205, -0.0018645283998921514, -0.030094562098383904, -0.029564250260591507, -0.028328122571110725, -0.06580570340156555, -0.05146484822034836, 0.03585609421133995, 0.013969971798360348, 0.016547037288546562, 0.04285578429698944, 0.016447613015770912, 0.006925666704773903, 0.020866351202130318, -0.04079188406467438, 0.018743392080068588, -0.011031746864318848, -0.027199747040867805, -0.018582701683044434, 0.03116421215236187, 0.012088816612958908, 0.020526472479104996, -0.053825415670871735, 0.028744474053382874, 0.002343302359804511, -0.006882447749376297, -0.01275282260030508, 0.011982999742031097, 0.029368042945861816, -0.0702584981918335, -0.033220067620277405, -0.00533411605283618, -0.02854708954691887, 0.0292055606842041, -0.03313392773270607, -0.03210977092385292, -0.007706875912845135, 0.0175713412463665, 0.03345426172018051, -0.01863306388258934, -0.02570165880024433, 0.03152894601225853, -0.020305156707763672, 0.012251838110387325, -0.055448759347200394, 0.05958205461502075, -0.03264855220913887, 0.018067916855216026, -0.02639845758676529, 0.012541454285383224, -0.03814460709691048, 0.04175715148448944, -0.023812733590602875, -0.007216018158942461, -0.008120136335492134, 0.05514831840991974, -0.015075823292136192, 0.033365294337272644, 0.000777857901994139, 0.03658684343099594, -0.03140285611152649, 0.06831292808055878, -0.03756103292107582, 0.009443359449505806, -0.014347824268043041, 0.0006447015912272036, -0.024024568498134613, 0.013445638120174408, -0.028244100511074066, -0.034060288220644, 0.016291465610265732, 0.0750553235411644, 0.03141947090625763, 0.026139885187149048, -0.029736541211605072, -0.03084412030875683, 0.010983462445437908, -0.05412052571773529, -0.026455476880073547, -0.008574077859520912, -0.003121468471363187, -0.016171369701623917, 0.0633855015039444, 0.04349662736058235, -0.06006994470953941, -0.06368700414896011, 0.04318753257393837, -0.003330799052491784, -0.008617205545306206, 0.010789956897497177, 0.018651627004146576, 0.03141804412007332, 0.0606117881834507, -0.030996082350611687, -0.004507299978286028, -0.01955767162144184, -0.03411067649722099, 0.032159678637981415, 0.009437249973416328, 0.012105217203497887, 0.0105293532833457, -0.05298241227865219, -0.023481884971261024, 0.06642663478851318, 0.02683327905833721, 0.011078108102083206, -0.010495235212147236, -0.04063254967331886, 0.03821786493062973, 0.010671357624232769, -0.04370461776852608, 0.005505693610757589, 0.010939902625977993, -0.021169248968362808, 0.04585522040724754, -0.012978746555745602, 0.012777015566825867, 0.0675688087940216, 0.051765356212854385, -0.03578221797943115, 0.07860702276229858, -0.02163652330636978, 0.0037721050903201103, 0.050409674644470215, -0.08046171814203262, 0.0030693772714585066, -0.0347258523106575, 0.0676838755607605, -0.07076558470726013, 0.026816261932253838, 0.049786776304244995, 0.01056605763733387, 0.012636843137443066, -0.05574040859937668, -0.03588015213608742, 0.0008525427547283471, -0.043700236827135086, 0.08545158058404922, 0.022243164479732513, -0.052633337676525116, 0.05297679081559181, 0.0014039120869711041, -0.056539151817560196, 0.05053986608982086, 0.02378339134156704, 0.03933804854750633, 0.04272899031639099, 0.044684890657663345, -0.060274817049503326, 0.01513554248958826, -0.04576554521918297, 0.022145718336105347, -0.03827868402004242, -0.02118430659174919, 0.03272732347249985, -0.030281756073236465, -0.031134100630879402, 0.024612171575427055, 0.007184962276369333, -0.023243647068738937, 0.05759042128920555, -0.06091051176190376, -0.04440704360604286, 0.01661599986255169, 0.02593696117401123, -0.04280466213822365, 0.007917617447674274, -0.032826174050569534, 0.011353867128491402, 0.022785505279898643, 0.003036729758605361, -0.010248047299683094, -0.019555335864424706, 0.03626794368028641, -0.061942581087350845, -0.026026329025626183, 0.020640872418880463, -0.003061234252527356, -0.022033540531992912, 0.014976590871810913, -0.0026252050884068012, 0.0031542840879410505, 0.03483662009239197, -0.002279671374708414, 0.01589164510369301, -0.019159959629178047, -0.028710713610053062, 0.017945541068911552, 0.00026368116959929466, 0.01740984059870243, -0.017337197437882423, 0.0339755043387413, 0.019576361402869225, 0.025573480874300003, -0.01595436967909336, -0.026037391275167465, -0.031056495383381844, 0.027590816840529442, -0.026499789208173752, 0.0032171844504773617, -0.016137907281517982, -0.0606912299990654, -0.05169151350855827, -0.007435143925249577, -0.044880226254463196, 0.029653586447238922, -0.06341418623924255, 0.003399496665224433, 0.03828682005405426, -0.011239640414714813, -0.06290556490421295, -0.11122798919677734, -0.02223314344882965, -0.030765965580940247, -0.017013130709528923, 0.03815559297800064, -0.03479376062750816, 0.03717147558927536, -0.04323456063866615, -0.05236309766769409, 0.05151791870594025, 0.02612684667110443, -0.03886653855443001, 0.04366978630423546, 0.041145842522382736, -0.05262768641114235, 0.0014487199950963259, 0.042600009590387344, -0.05836086720228195, 0.006380952894687653, 0.012177822180092335, 0.010683325119316578, 0.01372881606221199, 0.020685432478785515, -0.05642762407660484, -0.002967596286907792, -0.06033734977245331, -0.043817680329084396, -0.049727052450180054, 0.011013944633305073, 0.07812287658452988 ]
Declan/FoxNews_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-1 results: [] --- <!-- 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-v3-large__sst2__train-8-1 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7020 - Accuracy: 0.5008 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6773 | 1.0 | 3 | 0.7822 | 0.25 | | 0.6587 | 2.0 | 6 | 0.8033 | 0.25 | | 0.693 | 3.0 | 9 | 0.8101 | 0.25 | | 0.5979 | 4.0 | 12 | 1.1235 | 0.25 | | 0.4095 | 5.0 | 15 | 1.3563 | 0.25 | | 0.2836 | 6.0 | 18 | 1.5325 | 0.5 | | 0.1627 | 7.0 | 21 | 1.7786 | 0.25 | | 0.0956 | 8.0 | 24 | 2.0067 | 0.5 | | 0.0535 | 9.0 | 27 | 2.3351 | 0.5 | | 0.0315 | 10.0 | 30 | 2.6204 | 0.5 | | 0.0182 | 11.0 | 33 | 2.8483 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019470838829874992, -0.0036451572086662054, -0.01977192610502243, 0.027588719502091408, 0.03515946865081787, 0.019776739180088043, -0.02018287591636181, -0.02038445509970188, -0.052912477403879166, 0.06648651510477066, 0.011525826528668404, -0.038972944021224976, 0.02070089615881443, 0.04521232098340988, -0.02647276222705841, -0.029935648664832115, -0.0075543769635260105, -0.016680888831615448, -0.027293508872389793, -0.005758460611104965, 0.009886164218187332, -0.01260355208069086, -0.022554095834493637, 0.02161058969795704, 0.0028426561038941145, 0.012593469582498074, -0.0010058808838948607, 0.022189103066921234, 0.029608644545078278, -0.06560960412025452, 0.014080327935516834, -0.04024609550833702, -0.05990465730428696, -0.023491784930229187, -0.014275997877120972, -0.008136442862451077, 0.008204231970012188, 0.023917142301797867, 0.03247418254613876, 0.05127489194273949, 0.00785851664841175, 0.0294013861566782, -0.006586411967873573, -0.02794634737074375, 0.039542458951473236, 0.00772448256611824, -0.05853349715471268, -0.006084171123802662, 0.022442346438765526, -0.021911494433879852, -0.06943190097808838, -0.05591825395822525, -0.004569652024656534, 0.02546975202858448, -0.022888492792844772, -0.01926473155617714, -0.0402439720928669, 0.0014624202158302069, 0.06660719960927963, -0.04974645376205444, -0.03223544359207153, 0.023779692128300667, -0.06819380074739456, 0.01771199144423008, 0.04280352219939232, -0.035784054547548294, 0.018615707755088806, -0.04003787040710449, 0.029229912906885147, -0.007387510035187006, 0.06129927560687065, -0.022230226546525955, 0.008940529078245163, -0.09213609993457794, -0.0036794436164200306, -0.00232406216673553, 0.029776165261864662, 0.054308559745550156, -0.03930783271789551, 0.0639059767127037, 0.03739210218191147, -0.01334435772150755, 0.04301762208342552, -0.01828976906836033, 0.007954026572406292, 0.029152579605579376, -0.04776902124285698, 0.0060703447088599205, 0.028819801285862923, 0.03147181496024132, -0.03574841096997261, -0.025511816143989563, -0.02580425515770912, -0.025652799755334854, -0.019728004932403564, 0.025601916015148163, 0.0484519861638546, -0.007425892166793346, 0.023239169269800186, 0.0160213652998209, 0.02735954523086548, 0.03893012925982475, -0.02448580414056778, 0.07211262732744217, -0.010975982062518597, -0.012759324163198471, -0.022618992254137993, -0.01454673707485199, -0.03509631007909775, 0.010437514632940292, 0.022429438307881355, -0.03076605498790741, -0.01754581369459629, 0.0456564761698246, 0.010433876886963844, -0.0011198371648788452, 0.0688188448548317, -0.023456206545233727, -0.04485644772648811, -0.049070458859205246, 0.01966819167137146, 0.0143373878672719, -0.030745849013328552, 0.019705580547451973, -0.05488908663392067, -0.00915734376758337, -0.011337237432599068, -0.04559909179806709, -0.006482874043285847, 0.008116427809000015, 0.0074849543161690235, 0.059805262833833694, 0.03108641877770424, -0.08785168826580048, 0.00027391925686970353, 0.009770099073648453, -0.047084372490644455, 0.03846272826194763, 0.012272609397768974, 0.12043105065822601, -0.0470617339015007, -0.07352471351623535, 0.008617345243692398, 0.005758520681411028, -0.017684154212474823, 0.0327228382229805, 0.0053919171914458275, -0.016855502501130104, -0.00022758962586522102, -0.0077706435695290565, 0.052134763449430466, -0.05841179937124252, -0.014525085687637329, 0.06723678112030029, -0.004732976201921701, 0.050069618970155716, -0.049799542874097824, -0.031000502407550812, 0.00833955779671669, -0.02000853419303894, -0.0090444665402174, 0.03565320745110512, -0.02455625683069229, 0.0034313977230340242, -0.02149238996207714, -0.05151773989200592, 0.0036797127686440945, 0.08829517662525177, 0.0011917873052880168, -0.0363963358104229, -0.0280475951731205, 0.028452705591917038, 0.05850466340780258, 0.05323316156864166, -0.026842352002859116, 0.035654254257678986, 0.04819737374782562, 0.02850722335278988, -0.0423528291285038, 0.04120891913771629, 0.027340766042470932, -0.033605895936489105, -0.0318269319832325, 0.03242487087845802, 0.011264855042099953, -0.05127164348959923, 0.01655297726392746, 0.02997862733900547, 0.02423001080751419, -0.06234360486268997, -0.05457141622900963, 0.049944307655096054, -0.003917712718248367, -0.015562358312308788, 0.008884461596608162, 0.008482901379466057, -0.021671373397111893, 0.03306945785880089, -0.017328105866909027, -0.0027866382151842117, -0.027244990691542625, -0.024264821782708168, 0.024496572092175484, 0.0056251781061291695, 0.02867107279598713, 0.045589379966259, -0.012948394753038883, 0.09013281762599945, -0.037672415375709534, 0.015502654016017914, -0.03500440716743469, -0.059294693171978, 0.011357934214174747, 0.0611235685646534, 0.054042112082242966, 0.0550650991499424, -0.007275843061506748, -0.039070844650268555, 0.04755149781703949, 0.07132378965616226, 0.04809297248721123, 0.0013623017584905028, -0.025536948814988136, -0.015570913441479206, 0.027916058897972107, 0.051687438040971756, -0.04884178936481476, -0.027403568848967552, 0.03385542333126068, 0.042463935911655426, -0.020528297871351242, 0.024146543815732002, -0.020920559763908386, 0.03210144490003586, -0.049766745418310165, -0.05719076842069626, 0.03346135467290878, 0.02010887861251831, -0.003930875565856695, 0.03845508024096489, 0.004341259598731995, 0.011753898113965988, 0.01669292524456978, 0.015152755193412304, 0.008106031455099583, -0.046702850610017776, 0.0331159345805645, 0.014632156118750572, 0.05333096161484718, -0.039036910980939865, 0.03773604705929756, -0.009935260750353336, -0.0003157600876875222, 0.041363198310136795, -0.038385551422834396, 0.02714519016444683, 0.0625058263540268, 0.03885306790471077, -0.03374123200774193, 0.010080347768962383, 0.007307283114641905, 0.018584270030260086, 0.04867596551775932, -0.0030545475892722607, 0.06183668226003647, 0.02094373106956482, 0.05686451494693756, 0.0833217203617096, 0.02625669352710247, 0.04286681488156319, 0.025866562500596046, 0.07437426596879959, 0.015784448012709618, -0.014690659940242767, 0.03997393697500229, -0.04682664945721626, 0.020678022876381874, -0.04457709193229675, 0.01592394709587097, -0.030348312109708786, -0.007206794340163469, 0.031282734125852585, 0.016147585585713387, -0.03610652685165405, -0.007958709262311459, -0.009949726983904839, -0.006107995752245188, 0.028590910136699677, -0.005390515550971031, 0.0021127096842974424, -0.0008711708360351622, -0.020427584648132324, -0.023636704310774803, -0.06119551509618759, -0.03788874298334122, -0.02792949043214321, -0.021746383979916573, -0.022618070244789124, -0.09180273115634918, 0.0106124272570014, -0.06456274539232254, -0.020888427272439003, 0.03550870344042778, 0.005708322860300541, -0.002956134034320712, -0.03735148161649704, 0.011186196468770504, -0.0485406331717968, -0.039710693061351776, -0.05336732789874077, -0.06650800257921219, -0.041071899235248566, -0.07841320335865021, 0.028465427458286285, 0.050456561148166656, 0.031786199659109116, -0.0052689420990645885, 0.012117276899516582, 0.01448044739663601, -0.03796602413058281, 0.04236080124974251, 0.056211505085229874, -0.028783075511455536, -0.04980195313692093, 0.027467168867588043, -0.010308893397450447, 0.012102050706744194, -0.0012824410805478692, -0.02544783055782318, 0.08892767876386642, 0.06032688170671463, 0.0027769433800131083, -0.0007818672456778586, -0.02365807630121708, -0.06386387348175049, -0.05274652689695358, -0.026817727833986282, -0.02548261359333992, 0.0035272492095828056, -0.03855681046843529, -0.03810466453433037, -0.02501402236521244, -0.03160885348916054, 0.016799163073301315, 0.0007008849061094224, 0.003204221138730645, 0.02122689224779606, 0.03520263358950615, 0.028997305780649185, 0.03031020052731037, -0.03419207036495209, -0.03604499623179436, 0.0722866952419281, 0.02073555439710617, 0.015995120629668236, -0.07279738038778305, -0.005177473649382591, 0.025769421830773354, 0.02315322495996952, 0.018541116267442703, -0.018352258950471878, 0.06297213584184647, 0.008627405390143394, 0.00275210989639163, 0.014781295321881771, -0.01848454587161541, -0.02319435589015484, -0.01312909834086895, 0.007088856305927038, -0.024862684309482574, -0.042727429419755936, -0.010252512991428375, -0.006274344399571419, 0.04281505197286606, -0.0613812655210495, -0.05460785701870918, -0.0329485721886158, 0.02731485664844513, 0.0467301681637764, 0.0046798354014754295, -0.037236809730529785, -0.006989088375121355, -0.05863085761666298, -0.006822025869041681, 0.0486794151365757, 0.009019608609378338, 0.01357137132436037, 0.04665012285113335, 0.009042173624038696, -0.020487282425165176, 0.050251349806785583, 0.031222831457853317, 0.06914044916629791, 0.011669295839965343, -0.07023285329341888, 0.018159929662942886, -0.01796354167163372, 0.009615803137421608, -0.01445365697145462, -0.02757609635591507, -0.04090866446495056, -0.10670913010835648, 0.003496885998174548, 0.006347651593387127, -0.007642632815986872, -0.0088473130017519, 0.04907966032624245, 0.012247486039996147, -0.012380450032651424, -0.003336212132126093, 0.006152711343020201, 0.045446719974279404, -0.03956779092550278, 0.041558872908353806, -0.004163213074207306, -0.0134059963747859, -0.0535983182489872, 0.019366631284356117, -0.04331193119287491, -0.023643020540475845, 0.012848710641264915, 0.04443240165710449, -0.003110357327386737, 0.07007010281085968, 0.09464386105537415, 0.03273561969399452, -0.03544860705733299, 0.036872997879981995, 0.07341332733631134, -0.03117518313229084, -0.043999262154102325, -0.005532972514629364, -0.012648905627429485, -0.00785953737795353, 0.0005858793156221509, -0.009686779230833054, 0.047645386308431625, 0.03748421370983124, -0.004362611565738916, 0.00018951442325487733, -0.0045278132893145084, -0.008789917454123497, -0.024790648370981216, -0.04172297939658165, -0.022352108731865883, 0.007597899530082941, -0.025356844067573547, 0.01426269207149744, 0.04264051839709282, 0.023506782948970795, 0.05192989856004715, 0.024868516251444817, -0.04213635250926018, -0.019266460090875626, 0.02959562838077545, 0.00550867198035121, -0.03768579661846161, -0.07385213673114777, -0.007550003472715616, 0.04423373192548752, 0.02936078980565071, -0.021900644525885582, -0.05723521113395691, -0.006580278743058443, 0.06390757858753204, -0.06754645705223083, 0.04159434512257576, -0.012134833261370659, 0.03940971940755844, 0.05435807630419731, -0.018205175176262856, 0.04802177473902702, -0.023311907425522804, 0.009699349291622639, 0.00030632366542704403, 0.04015888273715973, -0.01748243160545826, -0.028183624148368835, -0.05199212208390236, 0.026319192722439766, 0.03348688781261444, 0.03276534378528595, 0.056139376014471054, -0.031746115535497665, -0.031080404296517372, -0.0006409917259588838, 0.04841269552707672, -0.059901248663663864, 0.0007834986899979413, 0.03389245271682739, 0.0340881310403347, -0.05354636162519455, -0.03198520839214325, -0.018907222896814346, -0.011711129918694496, 0.04125599563121796, 0.003139347303658724, -0.032824475318193436, -0.0469047836959362, 0.034062813967466354, -0.003002241952344775, -0.03157804161310196, -0.05498717725276947, 0.0624736063182354, -0.008528710342943668, -0.011211448349058628, 0.03899909928441048, 0.0276397205889225, 0.030637726187705994, 0.06900700181722641, 0.0154101038351655, 0.002521169139072299, -0.040903717279434204, 0.04146435856819153, -0.036358464509248734, -0.01556326262652874, 0.007493000477552414, -0.04494353383779526, -0.04174543172121048, -0.015267579816281796, -0.0366954505443573, -0.034133750945329666, -0.01818520948290825, 0.017146924510598183, 0.0037192695308476686, -0.018078919500112534, -0.005186823662370443, 0.05914410948753357, -0.0008871897007338703, -0.029574261978268623, -0.029889633879065514, -0.028494548052549362, -0.065948486328125, -0.051075175404548645, 0.03583080321550369, 0.013196815736591816, 0.016168905422091484, 0.04146848991513252, 0.01608807034790516, 0.006456056144088507, 0.020815756171941757, -0.04115278273820877, 0.018910493701696396, -0.011937462724745274, -0.02741294726729393, -0.018627077341079712, 0.030783994123339653, 0.011060557328164577, 0.020847517997026443, -0.05302201956510544, 0.0284911897033453, 0.0039976187981665134, -0.006036311388015747, -0.013029081746935844, 0.011943644843995571, 0.02821977250277996, -0.0709998831152916, -0.0339825414121151, -0.005905512720346451, -0.027827667072415352, 0.02986002527177334, -0.032923828810453415, -0.032140519469976425, -0.007584033999592066, 0.01797223463654518, 0.03248124197125435, -0.017932936549186707, -0.02450772188603878, 0.03159542381763458, -0.02023189328610897, 0.012028167955577374, -0.054637085646390915, 0.05799002945423126, -0.033794790506362915, 0.017427677288651466, -0.02714417688548565, 0.013601118698716164, -0.038492489606142044, 0.04213136062026024, -0.024278715252876282, -0.0076775397174060345, -0.008774198591709137, 0.05518891289830208, -0.015904806554317474, 0.034357696771621704, 0.0013452819548547268, 0.0347953736782074, -0.030784359201788902, 0.0694507360458374, -0.036816682666540146, 0.01056443341076374, -0.014982491731643677, 0.0013938933843746781, -0.02343900501728058, 0.013307446613907814, -0.02793288230895996, -0.033585041761398315, 0.016369197517633438, 0.07382678985595703, 0.030814673751592636, 0.026775836944580078, -0.0278055127710104, -0.03036843240261078, 0.011847610585391521, -0.05452347174286842, -0.027537746354937553, -0.00908955279737711, -0.0031830458901822567, -0.015159002505242825, 0.06316361576318741, 0.0432317890226841, -0.05993878096342087, -0.06372147053480148, 0.04335618391633034, -0.002565125934779644, -0.008161582052707672, 0.010904735885560513, 0.018956860527396202, 0.030504260212183, 0.061612069606781006, -0.029041605070233345, -0.005126088857650757, -0.019282255321741104, -0.03522302210330963, 0.033359263092279434, 0.009516270831227303, 0.012420323677361012, 0.009637708775699139, -0.052663654088974, -0.023364601656794548, 0.06687429547309875, 0.026593763381242752, 0.012114397250115871, -0.01114240288734436, -0.04087444394826889, 0.03801582753658295, 0.009880735538899899, -0.04298492521047592, 0.00518161291256547, 0.011400807648897171, -0.02107149362564087, 0.04555799439549446, -0.012986443005502224, 0.013049849309027195, 0.0671568214893341, 0.05185287073254585, -0.03477438911795616, 0.07892584800720215, -0.021171778440475464, 0.0043894159607589245, 0.05106862261891365, -0.08001759648323059, 0.0035466114059090614, -0.03455062583088875, 0.06743829697370529, -0.07037460058927536, 0.02709118463099003, 0.05026787519454956, 0.009840866550803185, 0.013271109201014042, -0.05456012487411499, -0.03787141665816307, 0.002399497665464878, -0.04346764460206032, 0.08634758740663528, 0.022196097299456596, -0.0520695336163044, 0.053495731204748154, 0.000601940555498004, -0.05620235577225685, 0.05041017010807991, 0.023153871297836304, 0.039909809827804565, 0.042881790548563004, 0.04491843655705452, -0.05891462787985802, 0.014344364404678345, -0.04491199180483818, 0.02273385412991047, -0.03858941048383713, -0.02190816029906273, 0.03230942413210869, -0.03074364736676216, -0.031685229390859604, 0.024739593267440796, 0.007443774491548538, -0.02426084131002426, 0.05834611877799034, -0.05960109829902649, -0.045805640518665314, 0.016769777983427048, 0.02472260408103466, -0.04341435804963112, 0.007846783846616745, -0.03417285531759262, 0.011573380790650845, 0.02111806906759739, 0.00412071542814374, -0.009272823110222816, -0.018657036125659943, 0.0355723612010479, -0.061117786914110184, -0.0258824173361063, 0.021773457527160645, -0.003164330730214715, -0.020901402458548546, 0.01615956239402294, -0.002530427882447839, 0.004479280207306147, 0.03374910354614258, -0.001155395177192986, 0.016173362731933594, -0.019003530964255333, -0.028586724773049355, 0.019362319260835648, 0.000010379702871432528, 0.01717495732009411, -0.017524154856801033, 0.03392067551612854, 0.019336970522999763, 0.02466435916721821, -0.015887264162302017, -0.025999369099736214, -0.032095711678266525, 0.026199713349342346, -0.02617940865457058, 0.003013120498508215, -0.015940004959702492, -0.05993809923529625, -0.051927223801612854, -0.00618013134226203, -0.04550040885806084, 0.029354367405176163, -0.06309156119823456, 0.00289171258918941, 0.038348279893398285, -0.011110227555036545, -0.06323982030153275, -0.11154895275831223, -0.023260626941919327, -0.03140028193593025, -0.016729773953557014, 0.038356754928827286, -0.03444238752126694, 0.03718649223446846, -0.04377381131052971, -0.05353137105703354, 0.05156479403376579, 0.02602733112871647, -0.0398092120885849, 0.04371922090649605, 0.04105941578745842, -0.052584223449230194, 0.00003619120252551511, 0.042270857840776443, -0.057638976722955704, 0.007552760187536478, 0.012572056613862514, 0.010863401927053928, 0.013462801463901997, 0.020339617505669594, -0.05662877857685089, -0.003362892661243677, -0.05985160171985626, -0.04408236965537071, -0.05087430775165558, 0.011604764498770237, 0.07733941078186035 ]
Declan/FoxNews_model_v8
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-3 results: [] --- <!-- 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-v3-large__sst2__train-8-3 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6421 - Accuracy: 0.6310 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6696 | 1.0 | 3 | 0.7917 | 0.25 | | 0.6436 | 2.0 | 6 | 0.8107 | 0.25 | | 0.6923 | 3.0 | 9 | 0.8302 | 0.25 | | 0.5051 | 4.0 | 12 | 0.9828 | 0.25 | | 0.3688 | 5.0 | 15 | 0.7402 | 0.25 | | 0.2671 | 6.0 | 18 | 0.5820 | 0.75 | | 0.1935 | 7.0 | 21 | 0.8356 | 0.5 | | 0.0815 | 8.0 | 24 | 1.0431 | 0.25 | | 0.0591 | 9.0 | 27 | 0.9679 | 0.75 | | 0.0276 | 10.0 | 30 | 1.0659 | 0.75 | | 0.0175 | 11.0 | 33 | 0.9689 | 0.75 | | 0.0152 | 12.0 | 36 | 0.8820 | 0.75 | | 0.006 | 13.0 | 39 | 0.8337 | 0.75 | | 0.0041 | 14.0 | 42 | 0.7650 | 0.75 | | 0.0036 | 15.0 | 45 | 0.6960 | 0.75 | | 0.0034 | 16.0 | 48 | 0.6548 | 0.75 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019826458767056465, -0.0047433446161448956, -0.021264251321554184, 0.026772260665893555, 0.034785471856594086, 0.02086367830634117, -0.019308853894472122, -0.01966225355863571, -0.05357740446925163, 0.06693984568119049, 0.011374510824680328, -0.03935838118195534, 0.01830057054758072, 0.04338892921805382, -0.026198046281933784, -0.030692612752318382, -0.006036289036273956, -0.01784673146903515, -0.025675391778349876, -0.005124126095324755, 0.011580810882151127, -0.009933230467140675, -0.02117377147078514, 0.02159907855093479, 0.0013968010898679495, 0.011059473268687725, -0.0033957622945308685, 0.024658717215061188, 0.02878645434975624, -0.06691335886716843, 0.013969361782073975, -0.04038550332188606, -0.06178528442978859, -0.024520110338926315, -0.014485095627605915, -0.010129207745194435, 0.009090468287467957, 0.02301904931664467, 0.029766496270895004, 0.05283217132091522, 0.008899927139282227, 0.03088700957596302, -0.0037823072634637356, -0.02849426679313183, 0.03923593834042549, 0.0083165243268013, -0.060190338641405106, -0.004768641199916601, 0.023963909596204758, -0.02190454490482807, -0.06848600506782532, -0.056225504726171494, -0.004009922966361046, 0.02483101561665535, -0.024681877344846725, -0.018730629235506058, -0.039611220359802246, -0.00029300132882781327, 0.06591141223907471, -0.049505285918712616, -0.03256763145327568, 0.025018179789185524, -0.06650666147470474, 0.017975687980651855, 0.041227661073207855, -0.035663530230522156, 0.018222656100988388, -0.04043382406234741, 0.02925032749772072, -0.008667956106364727, 0.061066705733537674, -0.021628811955451965, 0.009037552401423454, -0.09152866899967194, -0.0027710478752851486, -0.0029085660353302956, 0.029129935428500175, 0.05439627543091774, -0.040209922939538956, 0.06398966908454895, 0.03568146377801895, -0.014693787321448326, 0.04255218431353569, -0.020045245066285133, 0.008986195549368858, 0.028454307466745377, -0.04617420956492424, 0.005111050792038441, 0.029514005407691002, 0.03242754936218262, -0.032263923436403275, -0.02457055263221264, -0.025576991960406303, -0.02432836964726448, -0.01885262504220009, 0.024676859378814697, 0.04837730899453163, -0.006803378462791443, 0.024168819189071655, 0.015876105055212975, 0.024487143382430077, 0.03835470974445343, -0.026500068604946136, 0.07082828879356384, -0.010442354716360569, -0.011741173453629017, -0.020537514239549637, -0.01415710523724556, -0.03408659249544144, 0.011704523116350174, 0.022468872368335724, -0.03155986964702606, -0.019795222207903862, 0.04505103453993797, 0.012463065795600414, -0.0011768753174692392, 0.06880001723766327, -0.023380184546113014, -0.04523664340376854, -0.04937901720404625, 0.018285149708390236, 0.013931142166256905, -0.031447362154722214, 0.01988186500966549, -0.05468335002660751, -0.00944783166050911, -0.010816794820129871, -0.04590170830488205, -0.007127001881599426, 0.006319917272776365, 0.00852977205067873, 0.06082439422607422, 0.03022526390850544, -0.08727823942899704, 0.00008185303886421025, 0.009078449569642544, -0.04509805142879486, 0.03738652169704437, 0.011670252308249474, 0.12382358312606812, -0.046669844537973404, -0.07509157806634903, 0.007817686535418034, 0.005860091187059879, -0.018235232681035995, 0.03343178704380989, 0.0044299704022705555, -0.0168171226978302, 0.0007870701374486089, -0.009297401644289494, 0.05233391374349594, -0.058980055153369904, -0.013741624541580677, 0.06705471128225327, -0.004786049481481314, 0.04744437336921692, -0.0490952804684639, -0.029761334881186485, 0.008176104165613651, -0.023518279194831848, -0.008600066415965557, 0.037115998566150665, -0.024200672283768654, 0.0036436410155147314, -0.02306300401687622, -0.05133359879255295, 0.0033772417809814215, 0.08615748584270477, 0.000278313149465248, -0.03745928406715393, -0.02928512543439865, 0.029665488749742508, 0.05724501237273216, 0.05218038707971573, -0.026382798328995705, 0.036701500415802, 0.046828825026750565, 0.028019726276397705, -0.04316280409693718, 0.04099366068840027, 0.026515042409300804, -0.03369227051734924, -0.031897518783807755, 0.03204139322042465, 0.010956746526062489, -0.05033586919307709, 0.017153216525912285, 0.028900621458888054, 0.023361144587397575, -0.06412702053785324, -0.055087968707084656, 0.048579949885606766, -0.002485648263245821, -0.014930003322660923, 0.010775642469525337, 0.008345570415258408, -0.02167016826570034, 0.03203774616122246, -0.017230231314897537, -0.003160822903737426, -0.02948576956987381, -0.023081818595528603, 0.02432515099644661, 0.006515251472592354, 0.028958747163414955, 0.04605831950902939, -0.013250835239887238, 0.0893009603023529, -0.03842467442154884, 0.017782263457775116, -0.033735182136297226, -0.06070656329393387, 0.011831652373075485, 0.06213942542672157, 0.05293070524930954, 0.055197909474372864, -0.009227624163031578, -0.03856756538152695, 0.04708525538444519, 0.0717448815703392, 0.04879200831055641, 0.0023231052327901125, -0.025457143783569336, -0.014987433329224586, 0.02835088223218918, 0.05008654668927193, -0.04802772402763367, -0.029290292412042618, 0.03489282354712486, 0.04289558157324791, -0.020241940394043922, 0.025580735877156258, -0.021596761420369148, 0.032188113778829575, -0.05147194489836693, -0.05916609242558479, 0.03208937868475914, 0.020394928753376007, -0.004341681953519583, 0.0369795523583889, 0.0031418048311024904, 0.014434076845645905, 0.017731888219714165, 0.016009874641895294, 0.007881412282586098, -0.047431450337171555, 0.0340372771024704, 0.015687914565205574, 0.052460405975580215, -0.037983886897563934, 0.03684338554739952, -0.011049828492105007, -0.0010227980092167854, 0.040423113852739334, -0.03939778357744217, 0.02591133676469326, 0.06483161449432373, 0.04054221510887146, -0.0345519483089447, 0.01115568820387125, 0.006248006597161293, 0.017423437908291817, 0.04910027235746384, -0.0029159141704440117, 0.061682481318712234, 0.020030729472637177, 0.0590616874396801, 0.08647725731134415, 0.025803793221712112, 0.04270227998495102, 0.02708841674029827, 0.07660729438066483, 0.01684059575200081, -0.012871531769633293, 0.03950626403093338, -0.0468895398080349, 0.02114923857152462, -0.04585568606853485, 0.014010246843099594, -0.03155180439352989, -0.006779276765882969, 0.027666620910167694, 0.016873976215720177, -0.03608916699886322, -0.007266032509505749, -0.010625568218529224, -0.005421875976026058, 0.02867141366004944, -0.004516499117016792, 0.0013612584443762898, 0.0008813757449388504, -0.02086513862013817, -0.025848424062132835, -0.06046381592750549, -0.03863106667995453, -0.028703244403004646, -0.021647529676556587, -0.022896382957696915, -0.08944782614707947, 0.010587475262582302, -0.06379542499780655, -0.01986060105264187, 0.036207713186740875, 0.0035512750037014484, -0.003204944310709834, -0.03728494048118591, 0.01130490843206644, -0.04958567023277283, -0.04021117836236954, -0.05366289243102074, -0.06623605638742447, -0.04234590753912926, -0.07918915897607803, 0.028261054307222366, 0.04836703836917877, 0.029924705624580383, -0.005976783577352762, 0.011022726073861122, 0.014181998558342457, -0.036567144095897675, 0.04183850437402725, 0.05653173848986626, -0.02646034210920334, -0.047469612210989, 0.02588898316025734, -0.008761279284954071, 0.011243743821978569, -0.0004819502355530858, -0.025915173813700676, 0.08941666036844254, 0.05943746864795685, 0.0013096064794808626, -0.0004922321531921625, -0.02300485223531723, -0.06545104831457138, -0.052411336451768875, -0.028913304209709167, -0.02548537217080593, 0.002895174315199256, -0.03859914466738701, -0.039829712361097336, -0.02363109216094017, -0.03249022737145424, 0.017066791653633118, -0.0013573371106758714, 0.0019915523007512093, 0.022398071363568306, 0.0372052900493145, 0.028880542144179344, 0.03070659190416336, -0.03542907163500786, -0.035236090421676636, 0.07182753831148148, 0.02280181273818016, 0.016525067389011383, -0.07309309393167496, -0.005129709839820862, 0.024563267827033997, 0.02389446273446083, 0.017634838819503784, -0.01983853243291378, 0.06193576008081436, 0.010661229491233826, 0.0032438253983855247, 0.014617537148296833, -0.01723993569612503, -0.023337671533226967, -0.012961026281118393, 0.010428120382130146, -0.026313040405511856, -0.04207379370927811, -0.007409277372062206, -0.0036499211564660072, 0.04272853583097458, -0.06124560162425041, -0.054152585566043854, -0.03376659005880356, 0.026530945673584938, 0.04548739641904831, 0.006308374460786581, -0.03925001621246338, -0.006719771306961775, -0.05758095905184746, -0.007186914794147015, 0.049934785813093185, 0.007164565846323967, 0.01341705396771431, 0.045984573662281036, 0.010137817822396755, -0.01968553103506565, 0.04771522060036659, 0.030681254342198372, 0.06850216537714005, 0.011565814726054668, -0.06842515617609024, 0.01914302259683609, -0.017951956018805504, 0.011387729085981846, -0.014570197090506554, -0.026540042832493782, -0.040037963539361954, -0.10662603378295898, 0.0033666985109448433, 0.005563720129430294, -0.009901006706058979, -0.007925144396722317, 0.05198787897825241, 0.011680866591632366, -0.009794888086616993, -0.005045206751674414, 0.006517130881547928, 0.04158922657370567, -0.038538575172424316, 0.04416042938828468, -0.0024941093288362026, -0.014311961829662323, -0.05531186982989311, 0.020252283662557602, -0.042209506034851074, -0.025100482627749443, 0.012363823130726814, 0.044395264238119125, -0.003977568820118904, 0.07142750918865204, 0.09606330841779709, 0.032195232808589935, -0.03477255627512932, 0.0363074354827404, 0.07311734557151794, -0.02937149628996849, -0.04378621280193329, -0.00459323963150382, -0.01292568352073431, -0.007297302596271038, 0.003670312697067857, -0.011125120334327221, 0.04629131034016609, 0.03975735604763031, -0.003567115403711796, -0.0007364489138126373, -0.004649759735912085, -0.009380029514431953, -0.025199957191944122, -0.04062455892562866, -0.02189772017300129, 0.00850226916372776, -0.023176558315753937, 0.01488533616065979, 0.04021459445357323, 0.023013051599264145, 0.05088342726230621, 0.024629471823573112, -0.041300926357507706, -0.01804295741021633, 0.030365630984306335, 0.005361144430935383, -0.03786179795861244, -0.07374858111143112, -0.0040639895014464855, 0.04570336639881134, 0.028256254270672798, -0.022742046043276787, -0.05782504379749298, -0.008801387622952461, 0.06175681948661804, -0.06607384979724884, 0.03948261961340904, -0.009962903335690498, 0.03657592833042145, 0.05439448729157448, -0.019571511074900627, 0.046906985342502594, -0.025842949748039246, 0.010798136703670025, -0.0002959830453619361, 0.04246221482753754, -0.018924696370959282, -0.0278608500957489, -0.051597706973552704, 0.02855062298476696, 0.03240521624684334, 0.03213588893413544, 0.057270657271146774, -0.03217080980539322, -0.032521091401576996, 0.0001409896503901109, 0.049315664917230606, -0.05989933758974075, -0.000028049020329490304, 0.03579340875148773, 0.03419999033212662, -0.05424779653549194, -0.03243165463209152, -0.018626736477017403, -0.01266130805015564, 0.04209544509649277, 0.004204814322292805, -0.03363342210650444, -0.04476769268512726, 0.032383523881435394, -0.003313462482765317, -0.0313357375562191, -0.053581371903419495, 0.06354402005672455, -0.008614795282483101, -0.010783005505800247, 0.03988765552639961, 0.0272308811545372, 0.029546799138188362, 0.06922393292188644, 0.0166858471930027, 0.0015256312908604741, -0.04132884368300438, 0.039351142942905426, -0.03491879627108574, -0.014996984042227268, 0.009655231609940529, -0.04613692685961723, -0.0424308180809021, -0.014949817210435867, -0.03504554554820061, -0.03288249671459198, -0.01764398068189621, 0.016759561374783516, 0.0044155605137348175, -0.018191268667578697, -0.0029515880160033703, 0.05968084558844566, 0.00039752537850290537, -0.029776591807603836, -0.03008735366165638, -0.02763320691883564, -0.06358661502599716, -0.053671546280384064, 0.03631933778524399, 0.014864951372146606, 0.01519785262644291, 0.04171745106577873, 0.014855913817882538, 0.008093485608696938, 0.020517900586128235, -0.040837500244379044, 0.01961023174226284, -0.012568939477205276, -0.02727142721414566, -0.017300117760896683, 0.02950407564640045, 0.010118715465068817, 0.01931474171578884, -0.05032894015312195, 0.027985570952296257, 0.0022104084491729736, -0.008516521193087101, -0.011824407614767551, 0.010265454649925232, 0.029554611071944237, -0.06770581007003784, -0.03249888867139816, -0.005900953430682421, -0.027528230100870132, 0.03111961856484413, -0.03254522755742073, -0.03336988389492035, -0.009726587682962418, 0.016998011618852615, 0.03269856050610542, -0.016175663098692894, -0.028056759387254715, 0.0334385447204113, -0.01986107788980007, 0.011771508492529392, -0.05551520362496376, 0.05773093178868294, -0.03389960527420044, 0.01762286014854908, -0.02723034843802452, 0.013184742070734501, -0.037617068737745285, 0.04087987542152405, -0.022781822830438614, -0.007243496365845203, -0.006660720333456993, 0.05391998589038849, -0.0162233654409647, 0.03295246139168739, 0.0003170469426549971, 0.035821057856082916, -0.031323786824941635, 0.06698194146156311, -0.0365569144487381, 0.008482219651341438, -0.013725158758461475, 0.0012064744951203465, -0.024998418986797333, 0.013284594751894474, -0.026298655197024345, -0.03448706120252609, 0.016548417508602142, 0.07430080324411392, 0.029680587351322174, 0.02597043104469776, -0.03208552673459053, -0.03024963289499283, 0.011911283247172832, -0.052841443568468094, -0.02812049351632595, -0.008310561999678612, -0.003144387621432543, -0.014388942159712315, 0.06379379332065582, 0.04397894814610481, -0.05891953408718109, -0.06372727453708649, 0.041808247566223145, -0.00019471778068691492, -0.008484072051942348, 0.012230596505105495, 0.016382981091737747, 0.030275285243988037, 0.06066334247589111, -0.030292661860585213, -0.005114719271659851, -0.01982230879366398, -0.0335705392062664, 0.03237662464380264, 0.00897426251322031, 0.013074798509478569, 0.009514419361948967, -0.05432993546128273, -0.02208276093006134, 0.06818877905607224, 0.026010112836956978, 0.01023184321820736, -0.012153183110058308, -0.04173796996474266, 0.03908292576670647, 0.01257622241973877, -0.04427610710263252, 0.009217524901032448, 0.010117844678461552, -0.02144441567361355, 0.04531244933605194, -0.012013019062578678, 0.013379376381635666, 0.0671447291970253, 0.05313209444284439, -0.03792807459831238, 0.07759995758533478, -0.021640196442604065, 0.005179151892662048, 0.05055461823940277, -0.08167434483766556, 0.004532611463218927, -0.03755372390151024, 0.06931314617395401, -0.07010409235954285, 0.026856599375605583, 0.0485425740480423, 0.009926341474056244, 0.011864077299833298, -0.05449157580733299, -0.03926542401313782, 0.00385119765996933, -0.043094996362924576, 0.08643095940351486, 0.022949732840061188, -0.05419134348630905, 0.053793951869010925, -0.0015862295404076576, -0.056433405727148056, 0.05008898302912712, 0.025165066123008728, 0.040008772164583206, 0.04319090396165848, 0.04564294219017029, -0.06156229227781296, 0.013820596970617771, -0.04573618993163109, 0.0236191563308239, -0.03599455580115318, -0.021692272275686264, 0.030844252556562424, -0.029511872678995132, -0.03264316916465759, 0.02783026546239853, 0.006514269858598709, -0.024320252239704132, 0.059309642761945724, -0.05927792564034462, -0.04592970386147499, 0.017054332420229912, 0.024157444015145302, -0.04386128857731819, 0.0054149748757481575, -0.033813782036304474, 0.012877298519015312, 0.021950991824269295, 0.004300902131944895, -0.010366019792854786, -0.020775722339749336, 0.03697501868009567, -0.0611569918692112, -0.026557419449090958, 0.02040010504424572, -0.0038164271973073483, -0.02120797149837017, 0.013906734064221382, -0.0009845169261097908, 0.0028988977428525686, 0.03508949279785156, -0.0009834934026002884, 0.016753587871789932, -0.02121231146156788, -0.02899506688117981, 0.01877528801560402, 0.0005246236105449498, 0.018148351460695267, -0.017185164615511894, 0.03294891491532326, 0.01677948236465454, 0.02274496853351593, -0.016402902081608772, -0.026869922876358032, -0.03069913387298584, 0.026312097907066345, -0.027119304984807968, 0.0007237282698042691, -0.015791654586791992, -0.061397720128297806, -0.05136493220925331, -0.006073645316064358, -0.04642127826809883, 0.029888134449720383, -0.06462495028972626, 0.0030563559848815203, 0.03848829120397568, -0.010921266861259937, -0.06316778808832169, -0.1088687852025032, -0.020517444238066673, -0.03067641146481037, -0.016776422038674355, 0.03841489180922508, -0.03401719778776169, 0.03611055389046669, -0.04273832589387894, -0.05247848108410835, 0.052556876093149185, 0.026903916150331497, -0.03880677372217178, 0.04344745725393295, 0.0439002588391304, -0.05312787741422653, -0.00004925075700157322, 0.04018039256334305, -0.057670921087265015, 0.008056140504777431, 0.012795123271644115, 0.012344364076852798, 0.013654007576406002, 0.020838892087340355, -0.056066252291202545, -0.00203540432266891, -0.06076068431138992, -0.0440102219581604, -0.049429185688495636, 0.010653983801603317, 0.07821571826934814 ]
Declan/HuffPost_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-5 results: [] --- <!-- 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-v3-large__sst2__train-8-5 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.3078 - Accuracy: 0.6930 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6813 | 1.0 | 3 | 0.7842 | 0.25 | | 0.6617 | 2.0 | 6 | 0.7968 | 0.25 | | 0.6945 | 3.0 | 9 | 0.7746 | 0.25 | | 0.5967 | 4.0 | 12 | 0.7557 | 0.25 | | 0.4824 | 5.0 | 15 | 0.6920 | 0.25 | | 0.3037 | 6.0 | 18 | 0.6958 | 0.5 | | 0.2329 | 7.0 | 21 | 0.6736 | 0.5 | | 0.1441 | 8.0 | 24 | 0.3749 | 1.0 | | 0.0875 | 9.0 | 27 | 0.3263 | 0.75 | | 0.0655 | 10.0 | 30 | 0.3525 | 0.75 | | 0.0373 | 11.0 | 33 | 0.1993 | 1.0 | | 0.0173 | 12.0 | 36 | 0.1396 | 1.0 | | 0.0147 | 13.0 | 39 | 0.0655 | 1.0 | | 0.0084 | 14.0 | 42 | 0.0343 | 1.0 | | 0.0049 | 15.0 | 45 | 0.0225 | 1.0 | | 0.004 | 16.0 | 48 | 0.0167 | 1.0 | | 0.003 | 17.0 | 51 | 0.0134 | 1.0 | | 0.0027 | 18.0 | 54 | 0.0114 | 1.0 | | 0.002 | 19.0 | 57 | 0.0104 | 1.0 | | 0.0015 | 20.0 | 60 | 0.0099 | 1.0 | | 0.0014 | 21.0 | 63 | 0.0095 | 1.0 | | 0.0013 | 22.0 | 66 | 0.0095 | 1.0 | | 0.0012 | 23.0 | 69 | 0.0091 | 1.0 | | 0.0011 | 24.0 | 72 | 0.0085 | 1.0 | | 0.0009 | 25.0 | 75 | 0.0081 | 1.0 | | 0.001 | 26.0 | 78 | 0.0077 | 1.0 | | 0.0008 | 27.0 | 81 | 0.0074 | 1.0 | | 0.0009 | 28.0 | 84 | 0.0071 | 1.0 | | 0.0007 | 29.0 | 87 | 0.0068 | 1.0 | | 0.0008 | 30.0 | 90 | 0.0064 | 1.0 | | 0.0007 | 31.0 | 93 | 0.0062 | 1.0 | | 0.0007 | 32.0 | 96 | 0.0059 | 1.0 | | 0.0007 | 33.0 | 99 | 0.0056 | 1.0 | | 0.0005 | 34.0 | 102 | 0.0054 | 1.0 | | 0.0006 | 35.0 | 105 | 0.0053 | 1.0 | | 0.0008 | 36.0 | 108 | 0.0051 | 1.0 | | 0.0007 | 37.0 | 111 | 0.0050 | 1.0 | | 0.0007 | 38.0 | 114 | 0.0049 | 1.0 | | 0.0006 | 39.0 | 117 | 0.0048 | 1.0 | | 0.0005 | 40.0 | 120 | 0.0048 | 1.0 | | 0.0005 | 41.0 | 123 | 0.0048 | 1.0 | | 0.0005 | 42.0 | 126 | 0.0047 | 1.0 | | 0.0005 | 43.0 | 129 | 0.0047 | 1.0 | | 0.0005 | 44.0 | 132 | 0.0047 | 1.0 | | 0.0006 | 45.0 | 135 | 0.0047 | 1.0 | | 0.0005 | 46.0 | 138 | 0.0047 | 1.0 | | 0.0005 | 47.0 | 141 | 0.0047 | 1.0 | | 0.0006 | 48.0 | 144 | 0.0047 | 1.0 | | 0.0005 | 49.0 | 147 | 0.0047 | 1.0 | | 0.0005 | 50.0 | 150 | 0.0047 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.018050070852041245, -0.0032354015856981277, -0.017321176826953888, 0.025638548657298088, 0.03371870890259743, 0.018920352682471275, -0.022227594628930092, -0.02039249800145626, -0.053993724286556244, 0.0653175339102745, 0.013505435548722744, -0.04005134850740433, 0.017487678676843643, 0.04520099610090256, -0.025835493579506874, -0.03022869862616062, -0.006315180100500584, -0.017307428643107414, -0.027851175516843796, -0.004585288930684328, 0.011108692735433578, -0.012502270750701427, -0.02306135930120945, 0.020327674224972725, 0.0036763360258191824, 0.012807848863303661, 0.0017820671200752258, 0.022316094487905502, 0.028297049924731255, -0.06718911230564117, 0.015163756906986237, -0.04152185842394829, -0.05989573523402214, -0.025436455383896828, -0.013768978416919708, -0.007163748145103455, 0.007731172721832991, 0.022685296833515167, 0.03182531148195267, 0.051474615931510925, 0.008989306166768074, 0.031804610043764114, -0.008580169640481472, -0.027242498472332954, 0.03946707397699356, 0.007908760569989681, -0.05848156660795212, -0.006693379022181034, 0.0245001632720232, -0.021640384569764137, -0.07012461125850677, -0.05654492229223251, -0.005333383567631245, 0.02442314103245735, -0.026051517575979233, -0.01993372105062008, -0.04224555939435959, 0.002564665162935853, 0.06478400528430939, -0.05036778748035431, -0.03347643092274666, 0.02343735098838806, -0.06912460923194885, 0.01799553632736206, 0.04133258014917374, -0.03527893126010895, 0.017463956028223038, -0.038543377071619034, 0.028494389727711678, -0.0076828147284686565, 0.05965009704232216, -0.020873771980404854, 0.007929550483822823, -0.0907258465886116, -0.003748456947505474, -0.003083154559135437, 0.0278293676674366, 0.05553434044122696, -0.04034356400370598, 0.061948634684085846, 0.03819150850176811, -0.014689796604216099, 0.04285391420125961, -0.020743170753121376, 0.009308788925409317, 0.028223799541592598, -0.0457608625292778, 0.005348431412130594, 0.02759838104248047, 0.03168154135346413, -0.03527253493666649, -0.025325920432806015, -0.0238381028175354, -0.025632916018366814, -0.021248823031783104, 0.023141173645853996, 0.04766390845179558, -0.008049363270401955, 0.022780414670705795, 0.015185363590717316, 0.02848629653453827, 0.039269234985113144, -0.023500638082623482, 0.07181845605373383, -0.011577422730624676, -0.012246193364262581, -0.021063176915049553, -0.015402782708406448, -0.035486605018377304, 0.014513754285871983, 0.020496435463428497, -0.03167428821325302, -0.019537536427378654, 0.045403771102428436, 0.009639747440814972, 0.0008468240848742425, 0.06878360360860825, -0.023313306272029877, -0.044568948447704315, -0.04564829170703888, 0.019834628328680992, 0.015049311332404613, -0.029728323221206665, 0.01915839873254299, -0.05330592021346092, -0.009221464395523071, -0.012840929441154003, -0.04598736763000488, -0.006325397174805403, 0.008772687055170536, 0.0074821216985583305, 0.06203866004943848, 0.03212001919746399, -0.08728167414665222, 0.0006767506711184978, 0.01011520903557539, -0.045101966708898544, 0.03841794654726982, 0.0122136315330863, 0.12185285240411758, -0.04574167728424072, -0.07517798990011215, 0.009479079395532608, 0.005254923831671476, -0.019316593185067177, 0.032512117177248, 0.00348280998878181, -0.018094347789883614, -0.00048439213423989713, -0.00891542062163353, 0.05266979709267616, -0.05653823912143707, -0.012596921995282173, 0.06565888226032257, -0.0043770913034677505, 0.048780348151922226, -0.04747595638036728, -0.029210681095719337, 0.008003524504601955, -0.02180469036102295, -0.007397748995572329, 0.03493601083755493, -0.025413209572434425, 0.0006855207611806691, -0.0234413780272007, -0.050859931856393814, 0.005064540077000856, 0.08566588163375854, 0.0008729556575417519, -0.03692333400249481, -0.028892794623970985, 0.026420416310429573, 0.05930783972144127, 0.05400412529706955, -0.026753446087241173, 0.03698614239692688, 0.047958213835954666, 0.030906133353710175, -0.04179033637046814, 0.041939880698919296, 0.02765401266515255, -0.033180709928274155, -0.030779270455241203, 0.032134588807821274, 0.012580083683133125, -0.05051786080002785, 0.017372360453009605, 0.031992487609386444, 0.02474992536008358, -0.06163392215967178, -0.052226562052965164, 0.049307506531476974, -0.005500600207597017, -0.013536716811358929, 0.007655099034309387, 0.008598405867815018, -0.021086303517222404, 0.031498052179813385, -0.016552474349737167, -0.000328809634083882, -0.027012020349502563, -0.023615675047039986, 0.02467677928507328, 0.006496920250356197, 0.029004573822021484, 0.0459027998149395, -0.012637819163501263, 0.08994954824447632, -0.039801158010959625, 0.01560378447175026, -0.035133324563503265, -0.058163393288850784, 0.010511277243494987, 0.06323954463005066, 0.05403364822268486, 0.0541701503098011, -0.008210849016904831, -0.038236960768699646, 0.048350412398576736, 0.07076013088226318, 0.047872286289930344, -0.000753530184738338, -0.026157749816775322, -0.014602460898458958, 0.029122546315193176, 0.05303774029016495, -0.04914980009198189, -0.025931373238563538, 0.033589962869882584, 0.043157368898391724, -0.021222244948148727, 0.023717280477285385, -0.02046223357319832, 0.03150069713592529, -0.05227840691804886, -0.057193707674741745, 0.03347708657383919, 0.01934107020497322, -0.0046025789342820644, 0.03643151372671127, 0.002359857317060232, 0.01154582854360342, 0.016312772408127785, 0.014064803719520569, 0.008513220585882664, -0.047158196568489075, 0.032427139580249786, 0.01505554374307394, 0.05338894948363304, -0.03934847563505173, 0.0390029139816761, -0.01378141064196825, 0.0004702713049482554, 0.041883181780576706, -0.03805749490857124, 0.025010528042912483, 0.06166067346930504, 0.038535311818122864, -0.033406633883714676, 0.011052679270505905, 0.007565620355308056, 0.018795499578118324, 0.048880625516176224, -0.0019574386533349752, 0.06318233162164688, 0.019783703610301018, 0.05505945533514023, 0.08333320170640945, 0.026519134640693665, 0.043869100511074066, 0.025061648339033127, 0.07401540875434875, 0.016172731295228004, -0.013105783611536026, 0.040901124477386475, -0.04934632033109665, 0.01819399744272232, -0.04441051557660103, 0.014853917062282562, -0.0333893708884716, -0.0064464593306183815, 0.028623951599001884, 0.01802845671772957, -0.03713712468743324, -0.009833201766014099, -0.008540857583284378, -0.004559486638754606, 0.028160516172647476, -0.006232907064259052, 0.000009868605047813617, 0.00003664353062049486, -0.018905144184827805, -0.022551454603672028, -0.06001146137714386, -0.03756490349769592, -0.029750049114227295, -0.02189202792942524, -0.020914452150464058, -0.0934969112277031, 0.009342986159026623, -0.06450244784355164, -0.02224133536219597, 0.03426037356257439, 0.004909689072519541, -0.0035126768052577972, -0.035747457295656204, 0.010867225006222725, -0.047921158373355865, -0.0407828614115715, -0.05542323365807533, -0.06709039956331253, -0.04187532514333725, -0.07980627566576004, 0.029552791267633438, 0.04867204278707504, 0.032520558685064316, -0.004661031067371368, 0.01270822249352932, 0.015418637543916702, -0.0389983169734478, 0.04327646270394325, 0.05406259000301361, -0.03018094412982464, -0.05044738948345184, 0.02747521921992302, -0.008446353487670422, 0.01090872474014759, 0.000924385676626116, -0.024149276316165924, 0.0893247053027153, 0.06076158583164215, 0.0022425588686019182, 0.0017322549829259515, -0.02161949872970581, -0.06363163143396378, -0.05313507840037346, -0.026855766773223877, -0.024713318794965744, 0.0018399035325273871, -0.03786718472838402, -0.038315724581480026, -0.02511531487107277, -0.03338288143277168, 0.017890503630042076, 0.0015900407452136278, 0.002204133430495858, 0.020921524614095688, 0.037927377969026566, 0.030873341485857964, 0.03143305331468582, -0.03297904506325722, -0.035957884043455124, 0.07113838940858841, 0.02407795749604702, 0.014159026555716991, -0.07251305133104324, -0.005896419286727905, 0.02547013759613037, 0.021664854139089584, 0.018659034743905067, -0.018879374489188194, 0.062445275485515594, 0.006957872770726681, 0.0007853858405724168, 0.014615974389016628, -0.017384177073836327, -0.023195717483758926, -0.014284217730164528, 0.006718140095472336, -0.023870011791586876, -0.042904071509838104, -0.010586288757622242, -0.0050793723203241825, 0.042189739644527435, -0.05919517204165459, -0.056610994040966034, -0.03387542814016342, 0.027605339884757996, 0.04540911316871643, 0.0038482476957142353, -0.038067176938056946, -0.008296393789350986, -0.059258751571178436, -0.006041257176548243, 0.049963921308517456, 0.009672148153185844, 0.013820987194776535, 0.045850720256567, 0.008224430494010448, -0.01978529803454876, 0.0512213297188282, 0.028629949316382408, 0.06718813627958298, 0.0124112069606781, -0.06824865937232971, 0.018782828003168106, -0.02002849616110325, 0.009212134405970573, -0.014153603464365005, -0.028018712997436523, -0.04147594794631004, -0.10635779052972794, 0.0009570297552272677, 0.007844011299312115, -0.007348685525357723, -0.009221548214554787, 0.049853742122650146, 0.011405644938349724, -0.012581045739352703, -0.006207584869116545, 0.005594206973910332, 0.04395129531621933, -0.040339402854442596, 0.041248492896556854, -0.004052620381116867, -0.011618447490036488, -0.05418163165450096, 0.019812999293208122, -0.040332481265068054, -0.02225125953555107, 0.011629648506641388, 0.0442647822201252, -0.00216302159242332, 0.0715014711022377, 0.0931728258728981, 0.0327925980091095, -0.035428326576948166, 0.03626525029540062, 0.07586763799190521, -0.030149662867188454, -0.042011842131614685, -0.005500405561178923, -0.013145890086889267, -0.007393455598503351, 0.0017525076400488615, -0.011345872655510902, 0.04782344773411751, 0.038662541657686234, -0.004770731553435326, -0.00033231047564186156, -0.004183020908385515, -0.00918511487543583, -0.02340017445385456, -0.04072609916329384, -0.02164354920387268, 0.007321239449083805, -0.026975290849804878, 0.01671399176120758, 0.03932329639792442, 0.02333441562950611, 0.051089800894260406, 0.021549345925450325, -0.04393496736884117, -0.018220052123069763, 0.027666492387652397, 0.005854325369000435, -0.03730988875031471, -0.07381553202867508, -0.007011608220636845, 0.04247862100601196, 0.030003024265170097, -0.023381875827908516, -0.05786209553480148, -0.005279629956930876, 0.06496169418096542, -0.06675543636083603, 0.042726512998342514, -0.013020367361605167, 0.03855705261230469, 0.053933367133140564, -0.01722061075270176, 0.047649383544921875, -0.02418002486228943, 0.010999600403010845, -0.0014616061234846711, 0.03899431601166725, -0.01805093139410019, -0.027776170521974564, -0.05184560269117355, 0.028020357713103294, 0.0319039411842823, 0.03256538510322571, 0.05685090646147728, -0.03106635995209217, -0.0344693623483181, 0.0012305229902267456, 0.047135207802057266, -0.05993315950036049, 0.001814334886148572, 0.03598325327038765, 0.03391164168715477, -0.052990805357694626, -0.03257116675376892, -0.017888113856315613, -0.010033175349235535, 0.04320730268955231, 0.005603923927992582, -0.03448622301220894, -0.04549127817153931, 0.03370458632707596, -0.0037958661559969187, -0.032505057752132416, -0.055221229791641235, 0.059611111879348755, -0.01052742637693882, -0.011211728677153587, 0.03940347582101822, 0.02562500536441803, 0.028483174741268158, 0.07000020891427994, 0.015696456655859947, 0.0014725362416356802, -0.04178725183010101, 0.04257616400718689, -0.03462812304496765, -0.013705006800591946, 0.008381325751543045, -0.04506365954875946, -0.04020681232213974, -0.013529282994568348, -0.03797553479671478, -0.03441951423883438, -0.018771782517433167, 0.017617691308259964, 0.00453356746584177, -0.01935054175555706, -0.0035147767048329115, 0.05962475389242172, -0.001681071356870234, -0.030216334387660027, -0.029824813827872276, -0.02652079053223133, -0.06607259809970856, -0.052383556962013245, 0.03488289564847946, 0.014888727106153965, 0.018473949283361435, 0.04215504974126816, 0.01520844828337431, 0.008771087042987347, 0.01995392143726349, -0.04016659036278725, 0.01767568476498127, -0.01332848984748125, -0.027634821832180023, -0.018448390066623688, 0.02983221784234047, 0.010967480950057507, 0.021897366270422935, -0.0512571781873703, 0.02937762439250946, 0.004059166647493839, -0.004457629751414061, -0.013054008595645428, 0.010690120048820972, 0.030018771067261696, -0.06864321231842041, -0.03371543064713478, -0.005756080150604248, -0.02766069397330284, 0.029704244807362556, -0.034302499145269394, -0.033105384558439255, -0.006716929376125336, 0.016800658777356148, 0.03229484707117081, -0.019888434559106827, -0.025478577241301537, 0.03193925693631172, -0.018916364759206772, 0.011972205713391304, -0.053056225180625916, 0.05947912856936455, -0.031001368537545204, 0.016879763454198837, -0.027841737493872643, 0.0104505131021142, -0.038263868540525436, 0.04432503134012222, -0.023208988830447197, -0.00988453347235918, -0.008575641550123692, 0.054416730999946594, -0.014379424042999744, 0.035465437918901443, 0.002784021431580186, 0.03527069464325905, -0.03220435231924057, 0.06926575303077698, -0.03735547885298729, 0.010587460361421108, -0.01564878784120083, 0.0021546497009694576, -0.024165920913219452, 0.01318350899964571, -0.026551229879260063, -0.035935696214437485, 0.016524020582437515, 0.07355331629514694, 0.03134996071457863, 0.027851179242134094, -0.028891105204820633, -0.030669990926980972, 0.011020599864423275, -0.05520114675164223, -0.028795119374990463, -0.0074124205857515335, -0.0038654657546430826, -0.016456833109259605, 0.06149379909038544, 0.04378935694694519, -0.05972440168261528, -0.06387428194284439, 0.0428251251578331, -0.002488490426912904, -0.00723798805847764, 0.01137599442154169, 0.019517047330737114, 0.031186379492282867, 0.06018215790390968, -0.03259313479065895, -0.0027746758423745632, -0.018118472769856453, -0.03371622413396835, 0.03491802513599396, 0.00999948289245367, 0.015476202592253685, 0.009686273522675037, -0.05246701464056969, -0.02325850911438465, 0.0672193318605423, 0.027155136689543724, 0.01057263184338808, -0.012551713734865189, -0.04179884120821953, 0.037600379437208176, 0.012708316557109356, -0.04400064796209335, 0.0075131552293896675, 0.011406217701733112, -0.021449247375130653, 0.04508967325091362, -0.01294131949543953, 0.01418648287653923, 0.06893272697925568, 0.05245699733495712, -0.034543585032224655, 0.07964391261339188, -0.022318381816148758, 0.0026559988036751747, 0.05051850900053978, -0.08002076297998428, 0.00583097618073225, -0.03634471073746681, 0.06906163692474365, -0.0701790377497673, 0.026784170418977737, 0.047207921743392944, 0.012163784354925156, 0.01120933797210455, -0.053795456886291504, -0.04039999097585678, 0.002159709809347987, -0.0449417382478714, 0.08686549216508865, 0.021759768947958946, -0.055501118302345276, 0.0538632906973362, 0.00026718879234977067, -0.05751579999923706, 0.04922870546579361, 0.023615656420588493, 0.0396384671330452, 0.042958375066518784, 0.04396853968501091, -0.06011263653635979, 0.015241394750773907, -0.04319552332162857, 0.02278469316661358, -0.040133554488420486, -0.023000137880444527, 0.03276927396655083, -0.03235925734043121, -0.03234891593456268, 0.027507420629262924, 0.006010831333696842, -0.023424578830599785, 0.06010185927152634, -0.05994086340069771, -0.04491334408521652, 0.01584671437740326, 0.022024866193532944, -0.04356188699603081, 0.006647281348705292, -0.03353944793343544, 0.012600368820130825, 0.021263642236590385, 0.0018141648033633828, -0.011746971867978573, -0.01939750276505947, 0.03614553064107895, -0.062051285058259964, -0.026939457282423973, 0.019676052033901215, -0.0032972032204270363, -0.022464344277977943, 0.014896947890520096, -0.0011548185721039772, 0.0027260519564151764, 0.033449191600084305, -0.0018578603630885482, 0.01814502291381359, -0.019075457006692886, -0.02799547091126442, 0.01876477338373661, 0.0015212401049211621, 0.016259077936410904, -0.01671018823981285, 0.036322709172964096, 0.019069256260991096, 0.023119058459997177, -0.015622026287019253, -0.02309872768819332, -0.031357284635305405, 0.028042467311024666, -0.02741091139614582, 0.002268372103571892, -0.01716737449169159, -0.060813095420598984, -0.051309984177351, -0.009973296895623207, -0.04568568617105484, 0.029837314039468765, -0.06381425261497498, 0.0027654189616441727, 0.03933389112353325, -0.01119014248251915, -0.06230352446436882, -0.11195145547389984, -0.01962168514728546, -0.03197348490357399, -0.016711512580513954, 0.039249055087566376, -0.036111608147621155, 0.038226060569286346, -0.042524825781583786, -0.05359682813286781, 0.05095897614955902, 0.02490285038948059, -0.03739745169878006, 0.04236743599176407, 0.042064666748046875, -0.05147310346364975, 0.002340984297916293, 0.042299218475818634, -0.057696640491485596, 0.00619765929877758, 0.013164605014026165, 0.010918949730694294, 0.015599647536873817, 0.0194788109511137, -0.056604914367198944, -0.004713111091405153, -0.060335922986269, -0.043979667127132416, -0.048914261162281036, 0.011648734100162983, 0.07850761711597443 ]
Declan/HuffPost_model_v3
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-6 results: [] --- <!-- 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-v3-large__sst2__train-8-6 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.4331 - Accuracy: 0.7106 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6486 | 1.0 | 3 | 0.7901 | 0.25 | | 0.6418 | 2.0 | 6 | 0.9259 | 0.25 | | 0.6169 | 3.0 | 9 | 1.0574 | 0.25 | | 0.5639 | 4.0 | 12 | 1.1372 | 0.25 | | 0.4562 | 5.0 | 15 | 0.6090 | 0.5 | | 0.3105 | 6.0 | 18 | 0.4435 | 1.0 | | 0.2303 | 7.0 | 21 | 0.2804 | 1.0 | | 0.1388 | 8.0 | 24 | 0.2205 | 1.0 | | 0.0918 | 9.0 | 27 | 0.1282 | 1.0 | | 0.0447 | 10.0 | 30 | 0.0643 | 1.0 | | 0.0297 | 11.0 | 33 | 0.0361 | 1.0 | | 0.0159 | 12.0 | 36 | 0.0211 | 1.0 | | 0.0102 | 13.0 | 39 | 0.0155 | 1.0 | | 0.0061 | 14.0 | 42 | 0.0158 | 1.0 | | 0.0049 | 15.0 | 45 | 0.0189 | 1.0 | | 0.0035 | 16.0 | 48 | 0.0254 | 1.0 | | 0.0027 | 17.0 | 51 | 0.0305 | 1.0 | | 0.0021 | 18.0 | 54 | 0.0287 | 1.0 | | 0.0016 | 19.0 | 57 | 0.0215 | 1.0 | | 0.0016 | 20.0 | 60 | 0.0163 | 1.0 | | 0.0014 | 21.0 | 63 | 0.0138 | 1.0 | | 0.0015 | 22.0 | 66 | 0.0131 | 1.0 | | 0.001 | 23.0 | 69 | 0.0132 | 1.0 | | 0.0014 | 24.0 | 72 | 0.0126 | 1.0 | | 0.0011 | 25.0 | 75 | 0.0125 | 1.0 | | 0.001 | 26.0 | 78 | 0.0119 | 1.0 | | 0.0008 | 27.0 | 81 | 0.0110 | 1.0 | | 0.0007 | 28.0 | 84 | 0.0106 | 1.0 | | 0.0008 | 29.0 | 87 | 0.0095 | 1.0 | | 0.0009 | 30.0 | 90 | 0.0089 | 1.0 | | 0.0008 | 31.0 | 93 | 0.0083 | 1.0 | | 0.0007 | 32.0 | 96 | 0.0075 | 1.0 | | 0.0008 | 33.0 | 99 | 0.0066 | 1.0 | | 0.0006 | 34.0 | 102 | 0.0059 | 1.0 | | 0.0007 | 35.0 | 105 | 0.0054 | 1.0 | | 0.0008 | 36.0 | 108 | 0.0051 | 1.0 | | 0.0007 | 37.0 | 111 | 0.0049 | 1.0 | | 0.0007 | 38.0 | 114 | 0.0047 | 1.0 | | 0.0006 | 39.0 | 117 | 0.0045 | 1.0 | | 0.0006 | 40.0 | 120 | 0.0046 | 1.0 | | 0.0005 | 41.0 | 123 | 0.0045 | 1.0 | | 0.0006 | 42.0 | 126 | 0.0044 | 1.0 | | 0.0006 | 43.0 | 129 | 0.0043 | 1.0 | | 0.0006 | 44.0 | 132 | 0.0044 | 1.0 | | 0.0005 | 45.0 | 135 | 0.0045 | 1.0 | | 0.0006 | 46.0 | 138 | 0.0043 | 1.0 | | 0.0006 | 47.0 | 141 | 0.0043 | 1.0 | | 0.0006 | 48.0 | 144 | 0.0041 | 1.0 | | 0.0007 | 49.0 | 147 | 0.0042 | 1.0 | | 0.0005 | 50.0 | 150 | 0.0042 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.02027762122452259, -0.0039443145506083965, -0.017605774104595184, 0.026388656347990036, 0.03299321234226227, 0.017700882628560066, -0.021136268973350525, -0.01966937817633152, -0.05461626127362251, 0.06619668006896973, 0.01048762071877718, -0.04042334109544754, 0.01883896067738533, 0.04401601105928421, -0.025217143818736076, -0.02971983328461647, -0.005659840069711208, -0.016709573566913605, -0.02945125289261341, -0.0038951740134507418, 0.011473950929939747, -0.013114090077579021, -0.02313724346458912, 0.018884219229221344, 0.002444362733513117, 0.011982380412518978, -0.0011727274395525455, 0.01947675086557865, 0.029826238751411438, -0.06678556650876999, 0.014694932848215103, -0.040965985506772995, -0.05913891643285751, -0.024339335039258003, -0.013521351851522923, -0.008346973918378353, 0.007315733470022678, 0.022959889844059944, 0.03235463425517082, 0.051514483988285065, 0.009944194927811623, 0.030760401859879494, -0.007592322770506144, -0.026478968560695648, 0.038981981575489044, 0.007887770421802998, -0.059064481407403946, -0.005613598506897688, 0.023111466318368912, -0.021554866805672646, -0.07125195115804672, -0.05509992688894272, -0.005389443598687649, 0.02326810546219349, -0.024553880095481873, -0.018526073545217514, -0.03898683562874794, 0.0005691284313797951, 0.06667141616344452, -0.05000966787338257, -0.03186419978737831, 0.024852748960256577, -0.06804412603378296, 0.016457300633192062, 0.0408281572163105, -0.035226255655288696, 0.018940353766083717, -0.04059580713510513, 0.028053589165210724, -0.008692355826497078, 0.060754723846912384, -0.020592354238033295, 0.00804986897855997, -0.09154918044805527, -0.005507121793925762, -0.0028578336350619793, 0.028272582218050957, 0.05615765228867531, -0.0389825664460659, 0.06214636564254761, 0.036073558032512665, -0.012759029865264893, 0.04311450198292732, -0.01995590515434742, 0.008940611034631729, 0.02962644025683403, -0.046786289662122726, 0.007029035594314337, 0.02671801671385765, 0.031951140612363815, -0.03716060519218445, -0.02756364271044731, -0.025417650118470192, -0.0265632513910532, -0.020940525457262993, 0.024003317579627037, 0.04717491194605827, -0.006034343969076872, 0.024525923654437065, 0.01710214465856552, 0.028371380642056465, 0.03891903907060623, -0.023776665329933167, 0.06992138177156448, -0.009988204576075077, -0.014490172266960144, -0.020601166412234306, -0.015866030007600784, -0.03557421639561653, 0.01282432395964861, 0.021409735083580017, -0.030926277860999107, -0.019234970211982727, 0.04428887367248535, 0.008867405354976654, -0.0007861311314627528, 0.06776748597621918, -0.022784175351262093, -0.04464544355869293, -0.04874900355935097, 0.020021867007017136, 0.01583286188542843, -0.029477421194314957, 0.020737919956445694, -0.055189743638038635, -0.009681827388703823, -0.011703798547387123, -0.04653336480259895, -0.00716438889503479, 0.007726708427071571, 0.009668051265180111, 0.06374563276767731, 0.03165188431739807, -0.0862264484167099, 0.0009106051293201745, 0.011175698600709438, -0.04633448272943497, 0.0382809154689312, 0.013128435239195824, 0.1219940036535263, -0.04738949239253998, -0.07363403588533401, 0.008769765496253967, 0.005513005889952183, -0.018052732571959496, 0.0330723337829113, 0.002918657846748829, -0.018643636256456375, -0.002037461381405592, -0.00828835554420948, 0.05284573882818222, -0.05761310085654259, -0.01554450299590826, 0.06591302901506424, -0.006576454266905785, 0.04930130019783974, -0.04747142270207405, -0.029384644702076912, 0.009834840893745422, -0.02162490226328373, -0.009105980396270752, 0.0364457406103611, -0.02604592964053154, 0.0010388673981651664, -0.021418219432234764, -0.049401506781578064, 0.002932274714112282, 0.08776823431253433, 0.0011211448581889272, -0.035643063485622406, -0.028939371928572655, 0.028585145249962807, 0.05916311964392662, 0.05147762969136238, -0.026949536055326462, 0.03784181550145149, 0.04946298524737358, 0.02952231466770172, -0.042925432324409485, 0.04161130264401436, 0.02454102411866188, -0.033910349011421204, -0.03235744312405586, 0.03309701383113861, 0.010311565361917019, -0.049233365803956985, 0.01887982338666916, 0.030367398634552956, 0.02377566508948803, -0.06348272413015366, -0.05363871902227402, 0.04815525934100151, -0.006396171171218157, -0.014365247450768948, 0.010189066641032696, 0.008387114852666855, -0.021867303177714348, 0.03215276449918747, -0.016341108828783035, -0.0023194001987576485, -0.02798672392964363, -0.024670805782079697, 0.02520616725087166, 0.005886720027774572, 0.029691750183701515, 0.04570317268371582, -0.012943039648234844, 0.08996298909187317, -0.03867765888571739, 0.013356124050915241, -0.03326406702399254, -0.05899866670370102, 0.012897717766463757, 0.06314060091972351, 0.05313471704721451, 0.05602963641285896, -0.007189386058598757, -0.03764549270272255, 0.04680490493774414, 0.07136914134025574, 0.04789198189973831, -0.0018172371201217175, -0.026800652965903282, -0.01476365141570568, 0.028780942782759666, 0.05215425416827202, -0.04883868247270584, -0.025601277127861977, 0.03443816676735878, 0.043066296726465225, -0.019923975691199303, 0.02323228307068348, -0.022102607414126396, 0.030840054154396057, -0.05120569095015526, -0.05902808532118797, 0.033229414373636246, 0.019786184653639793, -0.004718785174190998, 0.03649779036641121, 0.0047366986982524395, 0.010710693895816803, 0.016205674037337303, 0.015045859850943089, 0.008914090692996979, -0.0474507212638855, 0.031881239265203476, 0.01444634236395359, 0.052932363003492355, -0.03750859946012497, 0.038073621690273285, -0.011973964981734753, 0.000848114606924355, 0.042304132133722305, -0.040036700665950775, 0.02680891565978527, 0.06140344962477684, 0.038920335471630096, -0.032614339143037796, 0.012021418660879135, 0.005738382693380117, 0.01863093115389347, 0.04887915030121803, -0.0010594784980639815, 0.06392013281583786, 0.020324258133769035, 0.057529840618371964, 0.08229807764291763, 0.02596484124660492, 0.04449218884110451, 0.024437183514237404, 0.07321398705244064, 0.016325823962688446, -0.011787144467234612, 0.040739599615335464, -0.04790434613823891, 0.01932687871158123, -0.045644890516996384, 0.013450132682919502, -0.03211425989866257, -0.006648404989391565, 0.028321901336312294, 0.017428789287805557, -0.03648253157734871, -0.010277810506522655, -0.007829096168279648, -0.0045804958790540695, 0.027828030288219452, -0.005138962995260954, -0.0014245124766603112, 0.0008253271225839853, -0.017397677525877953, -0.02303723618388176, -0.06069640815258026, -0.0375235453248024, -0.027010420337319374, -0.021743224933743477, -0.02132202498614788, -0.0918952003121376, 0.012077227234840393, -0.06396929174661636, -0.021095380187034607, 0.03277072310447693, 0.0029528953600674868, -0.004332985263317823, -0.035472288727760315, 0.01246606558561325, -0.0474555641412735, -0.04085227847099304, -0.05404220148921013, -0.06925458461046219, -0.04224419221282005, -0.07810922712087631, 0.027913231402635574, 0.04864644259214401, 0.03148560971021652, -0.005448082461953163, 0.014077969826757908, 0.0161394402384758, -0.0371939092874527, 0.04325702786445618, 0.05463957041501999, -0.027889875695109367, -0.04896782711148262, 0.025816695764660835, -0.010771273635327816, 0.01363216619938612, -0.0002317673497600481, -0.024856295436620712, 0.09095943719148636, 0.06035809591412544, 0.0019470398547127843, -0.0010080923093482852, -0.024953294545412064, -0.06490762531757355, -0.05204593762755394, -0.02617017738521099, -0.026291459798812866, 0.0010523084783926606, -0.03817762807011604, -0.03897226229310036, -0.02496793307363987, -0.03171222656965256, 0.020116139203310013, 0.0019406976643949747, 0.0033381120301783085, 0.021935228258371353, 0.038942039012908936, 0.031870100647211075, 0.0317615270614624, -0.03289274126291275, -0.03549443930387497, 0.07121559232473373, 0.02300909347832203, 0.014658690430223942, -0.07306988537311554, -0.004733133129775524, 0.0268546212464571, 0.02067866362631321, 0.018641535192728043, -0.021117744967341423, 0.06259521842002869, 0.007936465553939342, 0.001688308664597571, 0.015023795887827873, -0.016292551532387733, -0.023668894544243813, -0.013902933336794376, 0.0066655282862484455, -0.022919021546840668, -0.04281271994113922, -0.00875681359320879, -0.004551139194518328, 0.041734226047992706, -0.05971704050898552, -0.05453823506832123, -0.032994870096445084, 0.02767290361225605, 0.04516427218914032, 0.00419581588357687, -0.039229098707437515, -0.0063219135627150536, -0.05830778554081917, -0.005835761781781912, 0.048252031207084656, 0.008509786799550056, 0.012112727388739586, 0.04717026650905609, 0.010011452250182629, -0.022259481251239777, 0.04906739294528961, 0.028750622645020485, 0.06889335811138153, 0.012142045423388481, -0.06836334615945816, 0.01889622211456299, -0.019415803253650665, 0.011039402335882187, -0.014140509068965912, -0.025986112654209137, -0.04035807400941849, -0.10580890625715256, 0.0013860935578122735, 0.0057558040134608746, -0.007542972918599844, -0.011083019897341728, 0.051524825394153595, 0.012790749780833721, -0.014394588768482208, -0.0055290707387030125, 0.005558571312576532, 0.04247100278735161, -0.04045490920543671, 0.04086550697684288, -0.004775629378855228, -0.010774582624435425, -0.056551724672317505, 0.018027111887931824, -0.042665548622608185, -0.024366548284888268, 0.013209580443799496, 0.045088063925504684, -0.005061251111328602, 0.07235365360975266, 0.09442999958992004, 0.03224159777164459, -0.03584088385105133, 0.03558460623025894, 0.07439789921045303, -0.031137190759181976, -0.0418926477432251, -0.005033412016928196, -0.01299418043345213, -0.009311369620263577, 0.0016340879956260324, -0.01059606671333313, 0.04808146506547928, 0.037655118852853775, -0.004508917685598135, -0.001405040267854929, -0.0049563078209757805, -0.009313440881669521, -0.023410947993397713, -0.04074098914861679, -0.022453702986240387, 0.0069816638715565205, -0.027018504217267036, 0.016877098008990288, 0.04098818078637123, 0.022658152505755424, 0.050313375890254974, 0.02214738354086876, -0.0440797321498394, -0.01706080511212349, 0.02714681625366211, 0.0066074710339307785, -0.037163764238357544, -0.07335785776376724, -0.007356559857726097, 0.04227631166577339, 0.029316315427422523, -0.02309725433588028, -0.05723387748003006, -0.0054741851054131985, 0.062370989471673965, -0.06696218252182007, 0.042621418833732605, -0.012169340625405312, 0.03847765177488327, 0.05519481375813484, -0.018996654078364372, 0.04636208713054657, -0.024920420721173286, 0.01021777093410492, -0.001101469504646957, 0.039988841861486435, -0.017254386097192764, -0.028582384809851646, -0.05153853818774223, 0.026171909645199776, 0.03231000900268555, 0.0328996479511261, 0.05700602009892464, -0.030976977199316025, -0.03441591188311577, -0.00023988141037989408, 0.047674406319856644, -0.05999857932329178, -0.001281046075746417, 0.03469187021255493, 0.03477943316102028, -0.0538749173283577, -0.034112051129341125, -0.019658546894788742, -0.011054044589400291, 0.04073667898774147, 0.004164812155067921, -0.0344233475625515, -0.04552597925066948, 0.032368313521146774, -0.005013494286686182, -0.032932523638010025, -0.056793212890625, 0.06186801195144653, -0.008662630803883076, -0.010166103020310402, 0.03867652267217636, 0.027079179883003235, 0.028728650882840157, 0.06958940625190735, 0.015379081480205059, 0.001834734808653593, -0.04045010358095169, 0.04134474694728851, -0.036278869956731796, -0.01590219885110855, 0.00963510386645794, -0.04436764121055603, -0.03983326256275177, -0.013809001073241234, -0.03748470917344093, -0.03487890958786011, -0.0188748799264431, 0.018137115985155106, 0.004805452656000853, -0.019634706899523735, -0.0047283475287258625, 0.05969182401895523, -0.0018172906711697578, -0.028975913301110268, -0.030292078852653503, -0.026423292234539986, -0.06713544577360153, -0.05297113582491875, 0.03567960858345032, 0.014720053412020206, 0.016010794788599014, 0.041974663734436035, 0.014836316928267479, 0.007703185081481934, 0.020916903391480446, -0.03989250957965851, 0.017877032980322838, -0.01369524747133255, -0.028049912303686142, -0.017099332064390182, 0.029911229386925697, 0.0105348601937294, 0.01905299350619316, -0.051485929638147354, 0.027272680774331093, 0.0025192750617861748, -0.006447202991694212, -0.01256700698286295, 0.011437080800533295, 0.029688654467463493, -0.06755556911230087, -0.03211477771401405, -0.00568692060187459, -0.029016606509685516, 0.029562555253505707, -0.031215857714414597, -0.0316702164709568, -0.006630807649344206, 0.01741531863808632, 0.03423614799976349, -0.018796958029270172, -0.02524443157017231, 0.03145769238471985, -0.01962253451347351, 0.011729329824447632, -0.053697917610406876, 0.059576328843832016, -0.03359248861670494, 0.01738794520497322, -0.02667246386408806, 0.010918042622506618, -0.03962824493646622, 0.04331224039196968, -0.022952109575271606, -0.008786058984696865, -0.008129632100462914, 0.05290704220533371, -0.015835708007216454, 0.035796452313661575, 0.0036249677650630474, 0.03679141774773598, -0.032688289880752563, 0.07080791145563126, -0.03866858780384064, 0.010356645099818707, -0.015367590822279453, 0.0025988819543272257, -0.024387333542108536, 0.012737088836729527, -0.026509270071983337, -0.035651177167892456, 0.01614830084145069, 0.07340696454048157, 0.030978545546531677, 0.027268264442682266, -0.02778211608529091, -0.031939562410116196, 0.011638120748102665, -0.054318610578775406, -0.026534005999565125, -0.0075684101320803165, -0.004987224005162716, -0.01589025743305683, 0.06361439824104309, 0.04533468931913376, -0.05919026583433151, -0.06476150453090668, 0.046091314405202866, -0.0025815139524638653, -0.007287316955626011, 0.010585684329271317, 0.019640443846583366, 0.03083924762904644, 0.05899638682603836, -0.03286685422062874, -0.00444863410666585, -0.019133638590574265, -0.035201773047447205, 0.03189951926469803, 0.007878074422478676, 0.013471397571265697, 0.010773152112960815, -0.05249118059873581, -0.02392655983567238, 0.06819166988134384, 0.02658146061003208, 0.010728015564382076, -0.012719736434519291, -0.04042695090174675, 0.037100233137607574, 0.012896633706986904, -0.04427202045917511, 0.006227601785212755, 0.01007534097880125, -0.022598616778850555, 0.04352223128080368, -0.013051936402916908, 0.01331768836826086, 0.06866276264190674, 0.051256708800792694, -0.03454047068953514, 0.07935453951358795, -0.023784440010786057, 0.002949153073132038, 0.05096382275223732, -0.08127700537443161, 0.0028941233176738024, -0.03768203780055046, 0.06749958544969559, -0.07066263258457184, 0.026938732713460922, 0.04755185917019844, 0.009997325018048286, 0.01174438837915659, -0.05504436418414116, -0.039679478853940964, 0.00303914793767035, -0.045358795672655106, 0.08695591241121292, 0.02200157567858696, -0.05428966134786606, 0.05349581316113472, -0.0004895076854154468, -0.056529395282268524, 0.050504013895988464, 0.023013614118099213, 0.039537541568279266, 0.04273441433906555, 0.044271018356084824, -0.06053619459271431, 0.014234138652682304, -0.04411237686872482, 0.022165045142173767, -0.03808264806866646, -0.02227843552827835, 0.03155585005879402, -0.03268883749842644, -0.030535988509655, 0.026850100606679916, 0.007357278373092413, -0.020515432581305504, 0.05891309678554535, -0.05912242829799652, -0.04820134863257408, 0.015354999341070652, 0.023043978959321976, -0.04397035762667656, 0.006644131150096655, -0.03211792930960655, 0.010924805887043476, 0.021713698282837868, 0.0013621407561004162, -0.011399105191230774, -0.02096136100590229, 0.036508578807115555, -0.06335051357746124, -0.02732558362185955, 0.019967615604400635, -0.0037015164270997047, -0.021175608038902283, 0.012888673692941666, 0.0001186517474707216, 0.004659235943108797, 0.0334508903324604, -0.000033976913982769474, 0.016731902956962585, -0.018369292840361595, -0.028529172763228416, 0.019070424139499664, -0.0006811131606809795, 0.019369017332792282, -0.01542625017464161, 0.03605793043971062, 0.019406327977776527, 0.022738752886652946, -0.014697846956551075, -0.023378748446702957, -0.030598526820540428, 0.02709147334098816, -0.027436211705207825, 0.00015327103028539568, -0.01654273457825184, -0.06224661320447922, -0.05161307379603386, -0.00984338391572237, -0.04464032128453255, 0.03038988821208477, -0.06312039494514465, 0.003612583503127098, 0.039501968771219254, -0.013447407633066177, -0.06276270002126694, -0.11167863756418228, -0.01867368258535862, -0.031014390289783478, -0.016573380678892136, 0.03888087347149849, -0.033931829035282135, 0.038871001452207565, -0.043178293853998184, -0.05292246490716934, 0.04850134626030922, 0.026928843930363655, -0.03723170608282089, 0.04204913601279259, 0.042482517659664154, -0.05096341669559479, 0.002535165287554264, 0.04174860939383507, -0.057621538639068604, 0.004944709129631519, 0.012051442638039589, 0.010596060194075108, 0.016603324562311172, 0.02076137624680996, -0.05733056738972664, -0.003271570196375251, -0.061077311635017395, -0.04382682591676712, -0.049123845994472504, 0.012546701356768608, 0.07775687426328659 ]
Declan/HuffPost_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-7 results: [] --- <!-- 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-v3-large__sst2__train-8-7 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7037 - Accuracy: 0.5008 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6864 | 1.0 | 3 | 0.7800 | 0.25 | | 0.6483 | 2.0 | 6 | 0.8067 | 0.25 | | 0.6028 | 3.0 | 9 | 0.8500 | 0.25 | | 0.4086 | 4.0 | 12 | 1.0661 | 0.25 | | 0.2923 | 5.0 | 15 | 1.2302 | 0.25 | | 0.2059 | 6.0 | 18 | 1.0312 | 0.5 | | 0.1238 | 7.0 | 21 | 1.1271 | 0.5 | | 0.0711 | 8.0 | 24 | 1.3100 | 0.5 | | 0.0453 | 9.0 | 27 | 1.4208 | 0.5 | | 0.0198 | 10.0 | 30 | 1.5988 | 0.5 | | 0.0135 | 11.0 | 33 | 1.9174 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019675735384225845, -0.003499578218907118, -0.0192865002900362, 0.027318088337779045, 0.03402843698859215, 0.019368618726730347, -0.020643284544348717, -0.018440255895256996, -0.054393868893384933, 0.06629122793674469, 0.011457657441496849, -0.04017763212323189, 0.01940174773335457, 0.04517502337694168, -0.02426442690193653, -0.030696919187903404, -0.007494705729186535, -0.016898803412914276, -0.02971612475812435, -0.003791612107306719, 0.011901475489139557, -0.013362711295485497, -0.024179494008421898, 0.02024383470416069, 0.003315531648695469, 0.01276643667370081, -0.0003284882113803178, 0.02000892534852028, 0.029335444793105125, -0.06618060171604156, 0.014119853265583515, -0.04005058854818344, -0.060197312384843826, -0.024715503677725792, -0.013149470090866089, -0.0072317891754209995, 0.006039539352059364, 0.023445123806595802, 0.03204520046710968, 0.05102713033556938, 0.008670920506119728, 0.030624018982052803, -0.007931300438940525, -0.026762891560792923, 0.04036164656281471, 0.008537942543625832, -0.0582006461918354, -0.005624840036034584, 0.02421082928776741, -0.02191772311925888, -0.07003752887248993, -0.05634934827685356, -0.006557125132530928, 0.023560957983136177, -0.024204108864068985, -0.018396204337477684, -0.04162454977631569, 0.0012410476338118315, 0.06592206656932831, -0.04936598613858223, -0.032120563089847565, 0.025238901376724243, -0.06879561394453049, 0.016391223296523094, 0.04275340214371681, -0.03540867194533348, 0.01710154116153717, -0.04038529470562935, 0.028030069544911385, -0.008839976042509079, 0.06065366417169571, -0.021608375012874603, 0.009673046879470348, -0.09235233813524246, -0.0029300625901669264, -0.002500704489648342, 0.02867794781923294, 0.05483151972293854, -0.039734236896038055, 0.06256090849637985, 0.03557545319199562, -0.014941954985260963, 0.0433846190571785, -0.01967165619134903, 0.008246062323451042, 0.02876739203929901, -0.04669531434774399, 0.006441367324441671, 0.02790132537484169, 0.031568318605422974, -0.036246202886104584, -0.02659144438803196, -0.024254756048321724, -0.02619551122188568, -0.021498922258615494, 0.023502834141254425, 0.04817170649766922, -0.008053131401538849, 0.02275925874710083, 0.016344884410500526, 0.0263306125998497, 0.039303116500377655, -0.024900207296013832, 0.07067778706550598, -0.011166784912347794, -0.012480056844651699, -0.021952832117676735, -0.01500400248914957, -0.03513748198747635, 0.01327240839600563, 0.021610690280795097, -0.030719442293047905, -0.01823379099369049, 0.044311754405498505, 0.009565653279423714, -0.00019460021576378495, 0.06835547089576721, -0.022874262183904648, -0.045333996415138245, -0.048054613173007965, 0.01910531334578991, 0.015395518392324448, -0.0309712253510952, 0.021261079236865044, -0.055153120309114456, -0.009109358303248882, -0.011574911884963512, -0.04551706090569496, -0.005882877390831709, 0.008253541775047779, 0.008983599953353405, 0.06130214408040047, 0.03236408159136772, -0.08803022652864456, 0.0013871461851522326, 0.010796871967613697, -0.04467348754405975, 0.038030121475458145, 0.012875963933765888, 0.12011242657899857, -0.048220206052064896, -0.07363811135292053, 0.009631439112126827, 0.004767823964357376, -0.018420042470097542, 0.03160993009805679, 0.004000541754066944, -0.017143921926617622, -0.0028268981259316206, -0.008317114785313606, 0.051942408084869385, -0.05761917680501938, -0.013402020558714867, 0.06695032119750977, -0.005524949170649052, 0.049965981394052505, -0.0488649345934391, -0.03102140501141548, 0.01050582341849804, -0.020948119461536407, -0.009344138205051422, 0.03531217575073242, -0.024994539096951485, 0.0026274975389242172, -0.021831829100847244, -0.05106033384799957, 0.001627254649065435, 0.08692865073680878, 0.0019316042307764292, -0.0364607572555542, -0.028203563764691353, 0.026418235152959824, 0.060843534767627716, 0.0532253198325634, -0.027009764686226845, 0.034843068569898605, 0.04825098067522049, 0.0301168505102396, -0.04162558540701866, 0.04153265431523323, 0.026993533596396446, -0.03360835462808609, -0.03242695331573486, 0.03145414590835571, 0.010689361952245235, -0.0507454015314579, 0.01838366873562336, 0.030336987227201462, 0.02372359111905098, -0.0627753958106041, -0.05405384674668312, 0.05036197230219841, -0.00476031145080924, -0.015902871266007423, 0.009697946719825268, 0.00790313072502613, -0.020697856321930885, 0.03304090350866318, -0.016104603186249733, -0.0025297338142991066, -0.02777153253555298, -0.0255294069647789, 0.02554616518318653, 0.0056419069878757, 0.029681427404284477, 0.04615350440144539, -0.011607250198721886, 0.09000217169523239, -0.037138283252716064, 0.012561294250190258, -0.034808121621608734, -0.05864344537258148, 0.010180761106312275, 0.06290720403194427, 0.05369877070188522, 0.05609007179737091, -0.007151401601731777, -0.038103003054857254, 0.0482952855527401, 0.07083480805158615, 0.04804448410868645, 0.0008292493293993175, -0.025593435391783714, -0.014784525148570538, 0.02813040092587471, 0.052567850798368454, -0.04811805114150047, -0.027850573882460594, 0.03389892354607582, 0.04265627637505531, -0.022412864491343498, 0.024174196645617485, -0.021573077887296677, 0.031167779117822647, -0.05003903806209564, -0.05883762985467911, 0.034126605838537216, 0.019752316176891327, -0.003814062802121043, 0.037483666092157364, 0.00424579530954361, 0.011279975064098835, 0.017261110246181488, 0.014575746841728687, 0.0073768142610788345, -0.047046858817338943, 0.031202096492052078, 0.014904842711985111, 0.05291619151830673, -0.03943448141217232, 0.038106922060251236, -0.010090455412864685, 0.0013097058981657028, 0.042375512421131134, -0.037414584308862686, 0.027606578543782234, 0.061046235263347626, 0.03866313025355339, -0.03273266553878784, 0.010693216696381569, 0.006722609978169203, 0.01733292080461979, 0.04948281869292259, -0.0019388573709875345, 0.0623633973300457, 0.021365992724895477, 0.05658545717597008, 0.08207804709672928, 0.0266509298235178, 0.04323207959532738, 0.02522282488644123, 0.07327631860971451, 0.01495690643787384, -0.013915596529841423, 0.04031167924404144, -0.048164695501327515, 0.020119909197092056, -0.043848536908626556, 0.014222473837435246, -0.03120218589901924, -0.006953530013561249, 0.028047872707247734, 0.016808640211820602, -0.03801630809903145, -0.009034142829477787, -0.008056553080677986, -0.0034824602771550417, 0.028749341145157814, -0.004556227009743452, 0.0014485630672425032, -0.000878011342138052, -0.019737081602215767, -0.022466957569122314, -0.0599936917424202, -0.038957979530096054, -0.028131704777479172, -0.023242199793457985, -0.02195698954164982, -0.09212099760770798, 0.009795394726097584, -0.06413593888282776, -0.020045025274157524, 0.0336037203669548, 0.0027103277388960123, -0.0033147018402814865, -0.0352330207824707, 0.01184053160250187, -0.048563916236162186, -0.04154745861887932, -0.054823361337184906, -0.06766048818826675, -0.041796211153268814, -0.07827584445476532, 0.028906961902976036, 0.04913444072008133, 0.02933812141418457, -0.0035113152116537094, 0.012394976802170277, 0.015377761796116829, -0.03825244680047035, 0.04264811798930168, 0.055475760251283646, -0.028838763013482094, -0.04953448101878166, 0.026982707902789116, -0.010544762015342712, 0.012529472820460796, -0.000852256896905601, -0.02482980489730835, 0.08838396519422531, 0.061019424349069595, 0.00243427068926394, 0.0007926631951704621, -0.022979281842708588, -0.06437777727842331, -0.05222708731889725, -0.026639975607395172, -0.02559761516749859, 0.002545950934290886, -0.038875848054885864, -0.038468506187200546, -0.02592351660132408, -0.03284575045108795, 0.01963065005838871, 0.0022350596264004707, 0.0024386956356465816, 0.020528560504317284, 0.03624417632818222, 0.03038853406906128, 0.03172219172120094, -0.032592348754405975, -0.03556939586997032, 0.07145657390356064, 0.02210225537419319, 0.015399492345750332, -0.0730133056640625, -0.004448126070201397, 0.02573540061712265, 0.02151765301823616, 0.017805203795433044, -0.02016417495906353, 0.06339279562234879, 0.009321536868810654, 0.0016786131309345365, 0.013488274067640305, -0.016475040465593338, -0.02362087368965149, -0.012452792376279831, 0.00656867166981101, -0.023435380309820175, -0.042844317853450775, -0.00992507953196764, -0.005058622919023037, 0.042610831558704376, -0.06105915084481239, -0.0551031269133091, -0.034070540219545364, 0.027740254998207092, 0.045515622943639755, 0.003742336295545101, -0.03814610466361046, -0.007217246573418379, -0.05795961618423462, -0.006356156896799803, 0.04841136187314987, 0.008609551005065441, 0.013393422588706017, 0.045532144606113434, 0.008232061751186848, -0.0213199220597744, 0.05047178640961647, 0.030631761997938156, 0.0688512846827507, 0.011596892029047012, -0.0683344379067421, 0.017774783074855804, -0.019245687872171402, 0.009730955585837364, -0.013980653136968613, -0.027642419561743736, -0.04108291491866112, -0.10621120780706406, 0.0021911365911364555, 0.006398561876267195, -0.007350550498813391, -0.01024116575717926, 0.04940761998295784, 0.011789285577833652, -0.013688591308891773, -0.005883993115276098, 0.00496189808472991, 0.0430108904838562, -0.038800086826086044, 0.040623102337121964, -0.005083143245428801, -0.011161749251186848, -0.05530739948153496, 0.01757724955677986, -0.041699640452861786, -0.021434305235743523, 0.012233045883476734, 0.04499449580907822, -0.003704403294250369, 0.06931603699922562, 0.09369578212499619, 0.03363100066781044, -0.034445248544216156, 0.03530512750148773, 0.07279735803604126, -0.031947240233421326, -0.04223352298140526, -0.003570227650925517, -0.012595917098224163, -0.008484969846904278, 0.0010757840937003493, -0.010397188365459442, 0.049694787710905075, 0.03853975981473923, -0.005806182976812124, -0.0014239177107810974, -0.005135163199156523, -0.010319987311959267, -0.024548731744289398, -0.03965793922543526, -0.021798625588417053, 0.006752415094524622, -0.02595803141593933, 0.01738445647060871, 0.041284430772066116, 0.02306736260652542, 0.05182161554694176, 0.021849755197763443, -0.04405375197529793, -0.01853671856224537, 0.029606040567159653, 0.005049609579145908, -0.03751789778470993, -0.07342276722192764, -0.007136947009712458, 0.04367150366306305, 0.030540911480784416, -0.022698551416397095, -0.05764750391244888, -0.005619907286018133, 0.0626184493303299, -0.06545320153236389, 0.04312155023217201, -0.012915870174765587, 0.03925345093011856, 0.053999580442905426, -0.01770721562206745, 0.047116104513406754, -0.02416939288377762, 0.010382763110101223, -0.00029639987042173743, 0.04048101603984833, -0.01663152687251568, -0.029044704511761665, -0.05132003873586655, 0.025249965488910675, 0.03340672701597214, 0.032811932265758514, 0.05629166215658188, -0.03258364647626877, -0.03233259171247482, 0.0004934918833896518, 0.048033565282821655, -0.06012506037950516, 0.0002046043664449826, 0.0339546725153923, 0.03397398814558983, -0.05400397628545761, -0.034223731607198715, -0.018835144117474556, -0.010880704037845135, 0.04206608235836029, 0.003944905009120703, -0.03384114056825638, -0.04656088352203369, 0.03353434056043625, -0.0042904275469481945, -0.032181266695261, -0.055040325969457626, 0.06179327517747879, -0.0093102240934968, -0.011480491608381271, 0.03877386078238487, 0.02549014240503311, 0.02963303029537201, 0.06976424157619476, 0.015836413949728012, 0.001089181867428124, -0.04003361985087395, 0.04138720780611038, -0.035336997359991074, -0.015791578218340874, 0.00881972722709179, -0.04426240921020508, -0.04120064899325371, -0.01445991825312376, -0.03952678665518761, -0.035179175436496735, -0.019006434828042984, 0.017943594604730606, 0.004288702737540007, -0.020355088636279106, -0.005501023028045893, 0.05968734622001648, -0.0015533925034105778, -0.03015046939253807, -0.030322812497615814, -0.02593548409640789, -0.06592933088541031, -0.05215705186128616, 0.03431227430701256, 0.013130093924701214, 0.015737812966108322, 0.043942105025053024, 0.014817972667515278, 0.007910354994237423, 0.021798867732286453, -0.0413062684237957, 0.0179508775472641, -0.012374629266560078, -0.028089119121432304, -0.01821264624595642, 0.03059016540646553, 0.01152693573385477, 0.019697412848472595, -0.05333716422319412, 0.027281569316983223, 0.0018720164662227035, -0.006223216652870178, -0.012707180343568325, 0.011904125101864338, 0.028776921331882477, -0.07073196768760681, -0.03467223793268204, -0.005663846619427204, -0.0280388742685318, 0.030822835862636566, -0.032251205295324326, -0.03258452191948891, -0.005824755877256393, 0.018949298188090324, 0.033360015600919724, -0.01899712346494198, -0.025629926472902298, 0.03212908282876015, -0.020137924700975418, 0.011343064717948437, -0.05380910634994507, 0.059567585587501526, -0.03370584920048714, 0.01735217496752739, -0.025210846215486526, 0.011798768304288387, -0.03857237473130226, 0.04326590523123741, -0.023149700835347176, -0.00832813885062933, -0.007262311410158873, 0.0540192611515522, -0.01630629412829876, 0.034190837293863297, 0.0033634440042078495, 0.03589869663119316, -0.03076491691172123, 0.06949149817228317, -0.038994140923023224, 0.010368116199970245, -0.014346275478601456, 0.00002197534922743216, -0.02338228188455105, 0.013825603760778904, -0.02744182012975216, -0.035118378698825836, 0.013877280056476593, 0.07351168245077133, 0.03050924651324749, 0.026970816776156425, -0.02871450036764145, -0.03146910294890404, 0.011728300713002682, -0.05530089884996414, -0.025736773386597633, -0.006847784388810396, -0.0038042322266846895, -0.016684798523783684, 0.06364783644676208, 0.0434965044260025, -0.06009965017437935, -0.06515590846538544, 0.04630082845687866, -0.0018468174384906888, -0.00740754185244441, 0.011691809631884098, 0.02002985030412674, 0.0313199944794178, 0.06108293682336807, -0.030578717589378357, -0.004290345124900341, -0.019241727888584137, -0.03448113426566124, 0.03218766674399376, 0.010640501976013184, 0.013020985759794712, 0.010408568195998669, -0.052549563348293304, -0.02270342968404293, 0.06915868818759918, 0.026784060522913933, 0.010465229861438274, -0.012183352373540401, -0.0410921648144722, 0.03706520050764084, 0.011769738048315048, -0.04449741169810295, 0.006823666859418154, 0.01055447943508625, -0.021383989602327347, 0.04474996402859688, -0.013733925297856331, 0.0135811110958457, 0.06855587661266327, 0.05142194777727127, -0.03411463275551796, 0.07839401811361313, -0.02136159874498844, 0.0020649440120905638, 0.05034661293029785, -0.08036114275455475, 0.003962860908359289, -0.03638618811964989, 0.06853559613227844, -0.07124880701303482, 0.02729717642068863, 0.04819579795002937, 0.010998467914760113, 0.01134590432047844, -0.05500991269946098, -0.03775733709335327, 0.0035309800878167152, -0.04581437259912491, 0.08622702956199646, 0.022960104048252106, -0.053564947098493576, 0.05414876341819763, 0.00048320216592401266, -0.057696301490068436, 0.049962472170591354, 0.02320045791566372, 0.03794129565358162, 0.04336456209421158, 0.044536225497722626, -0.06001706048846245, 0.014009498991072178, -0.043676745146512985, 0.022645749151706696, -0.03923478722572327, -0.022311566397547722, 0.03357508406043053, -0.03248455375432968, -0.0306504238396883, 0.02551996149122715, 0.0066446647979319096, -0.022041967138648033, 0.05813821405172348, -0.05910256505012512, -0.0454692468047142, 0.016480103135108948, 0.024787046015262604, -0.04439104348421097, 0.007839354686439037, -0.03306420519948006, 0.010064946487545967, 0.021529627963900566, 0.0030132096726447344, -0.010664254426956177, -0.01973710209131241, 0.036065008491277695, -0.06348183751106262, -0.02636253647506237, 0.019823677837848663, -0.0034420269075781107, -0.01994228921830654, 0.014152178540825844, -0.0005907557788304985, 0.003782578743994236, 0.03349923714995384, -0.001728742034174502, 0.01590346358716488, -0.018025841563940048, -0.028454933315515518, 0.01886666938662529, 0.0005420698435045779, 0.018670665100216866, -0.01657876744866371, 0.036348819732666016, 0.019564827904105186, 0.024797257035970688, -0.014424102380871773, -0.024196814745664597, -0.032145991921424866, 0.026772920042276382, -0.02721594274044037, 0.002371762413531542, -0.017523758113384247, -0.06160606071352959, -0.05124508589506149, -0.008572397753596306, -0.04504134878516197, 0.029369600117206573, -0.06342767924070358, 0.00270354887470603, 0.03908778354525566, -0.01260584220290184, -0.06245569884777069, -0.11290004104375839, -0.020378056913614273, -0.031039290130138397, -0.015432517044246197, 0.039081472903490067, -0.033669307827949524, 0.03874506428837776, -0.04341855272650719, -0.052457913756370544, 0.05059975013136864, 0.027135074138641357, -0.0379423126578331, 0.04325716942548752, 0.042962320148944855, -0.05239780619740486, 0.0027156027499586344, 0.04214200749993324, -0.05721590295433998, 0.005722392350435257, 0.01114016305655241, 0.011233753524720669, 0.014953182078897953, 0.02096746116876602, -0.05690979212522507, -0.0034404911566525698, -0.05907873436808586, -0.043975718319416046, -0.04929311200976372, 0.011225397698581219, 0.07747691124677658 ]
Declan/HuffPost_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-8 results: [] --- <!-- 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-v3-large__sst2__train-8-8 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7414 - Accuracy: 0.5623 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6597 | 1.0 | 3 | 0.7716 | 0.25 | | 0.6376 | 2.0 | 6 | 0.7802 | 0.25 | | 0.5857 | 3.0 | 9 | 0.6625 | 0.75 | | 0.4024 | 4.0 | 12 | 0.5195 | 0.75 | | 0.2635 | 5.0 | 15 | 0.4222 | 1.0 | | 0.1714 | 6.0 | 18 | 0.4410 | 0.5 | | 0.1267 | 7.0 | 21 | 0.7773 | 0.75 | | 0.0582 | 8.0 | 24 | 0.9070 | 0.75 | | 0.0374 | 9.0 | 27 | 0.9539 | 0.75 | | 0.0204 | 10.0 | 30 | 1.0507 | 0.75 | | 0.012 | 11.0 | 33 | 1.2802 | 0.5 | | 0.0086 | 12.0 | 36 | 1.4272 | 0.5 | | 0.0049 | 13.0 | 39 | 1.4803 | 0.5 | | 0.0039 | 14.0 | 42 | 1.4912 | 0.5 | | 0.0031 | 15.0 | 45 | 1.5231 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.019375229254364967, -0.004247448872774839, -0.01960723102092743, 0.028211016207933426, 0.033965472131967545, 0.020442252978682518, -0.01975858584046364, -0.01964443549513817, -0.053100332617759705, 0.06666655838489532, 0.011738148517906666, -0.03864056244492531, 0.0196903757750988, 0.046240437775850296, -0.024124527350068092, -0.030022617429494858, -0.007549426052719355, -0.016629574820399284, -0.026957442983984947, -0.005740914959460497, 0.010846290737390518, -0.013550656847655773, -0.021877354010939598, 0.021228095516562462, 0.00291853747330606, 0.012558682821691036, -0.0019210311584174633, 0.021666783839464188, 0.02961668372154236, -0.06599713116884232, 0.014460896141827106, -0.039963360875844955, -0.05904173105955124, -0.023598963394761086, -0.013586103916168213, -0.009905973449349403, 0.007597585208714008, 0.022862425073981285, 0.03192165121436119, 0.05074891820549965, 0.00892779789865017, 0.030106933787465096, -0.006760942749679089, -0.027521666139364243, 0.04019596800208092, 0.006278870161622763, -0.059553809463977814, -0.007171706296503544, 0.02297850325703621, -0.021262504160404205, -0.06857302784919739, -0.05515046417713165, -0.005141319707036018, 0.025127461180090904, -0.02299613691866398, -0.01948629878461361, -0.040335286408662796, 0.0009266036795452237, 0.06679796427488327, -0.049963727593421936, -0.032156649976968765, 0.022745003923773766, -0.06912031024694443, 0.017419608309864998, 0.042981892824172974, -0.03638656064867973, 0.018863407894968987, -0.03941519185900688, 0.02880493737757206, -0.008317066356539726, 0.06136244162917137, -0.022164765745401382, 0.009127994999289513, -0.09188384562730789, -0.003420965513214469, -0.003307122038677335, 0.02911345101892948, 0.05410663038492203, -0.039965659379959106, 0.06289234012365341, 0.0376492403447628, -0.012731378898024559, 0.04166930541396141, -0.019281141459941864, 0.0088837631046772, 0.03022030182182789, -0.04804631322622299, 0.006022817455232143, 0.028865838423371315, 0.03047277219593525, -0.03555874153971672, -0.026288779452443123, -0.024224871769547462, -0.024378295987844467, -0.019340278580784798, 0.024267880246043205, 0.0480174757540226, -0.007629240397363901, 0.024390950798988342, 0.015939507633447647, 0.026538986712694168, 0.03806930407881737, -0.025710808113217354, 0.07144851982593536, -0.012016456574201584, -0.013111642561852932, -0.022718388587236404, -0.0149765620008111, -0.03459899127483368, 0.011501721106469631, 0.021988943219184875, -0.03154437243938446, -0.018334886059165, 0.043926823884248734, 0.01016458310186863, 0.00014158528938423842, 0.06930705159902573, -0.023389073088765144, -0.04602587968111038, -0.048078130930662155, 0.01937185600399971, 0.0142288189381361, -0.029783369973301888, 0.019489388912916183, -0.05560659244656563, -0.009864849038422108, -0.011445646174252033, -0.04585659131407738, -0.006354224402457476, 0.008553857915103436, 0.007305285893380642, 0.06063307449221611, 0.032579205930233, -0.0881134644150734, -0.000052177019824739546, 0.01175784133374691, -0.04720427840948105, 0.03761862590909004, 0.012988405302166939, 0.12163755297660828, -0.04785339534282684, -0.07534278184175491, 0.008790108375251293, 0.005810323171317577, -0.017977990210056305, 0.031719546765089035, 0.005201379302889109, -0.0167330801486969, -0.0018302625976502895, -0.008228110149502754, 0.05282729119062424, -0.05913665518164635, -0.01396589819341898, 0.06727290153503418, -0.005887156818062067, 0.049426231533288956, -0.0492122583091259, -0.02997901663184166, 0.008954733610153198, -0.02101668156683445, -0.007881547324359417, 0.0359613411128521, -0.02419954165816307, 0.0026846479158848524, -0.02347319759428501, -0.050557784736156464, 0.003940175287425518, 0.08817201107740402, 0.0020454041659832, -0.03603357449173927, -0.027472909539937973, 0.029407531023025513, 0.057674895972013474, 0.05324282497167587, -0.02760435827076435, 0.036285605281591415, 0.04754484444856644, 0.029559366405010223, -0.04303445667028427, 0.040820445865392685, 0.027374789118766785, -0.033718012273311615, -0.03208673372864723, 0.03228859230875969, 0.011018266901373863, -0.05141669511795044, 0.016721853986382484, 0.030870752409100533, 0.023242764174938202, -0.06317836046218872, -0.05378872528672218, 0.0500325970351696, -0.003574799280613661, -0.015284799039363861, 0.008785229176282883, 0.008484501391649246, -0.020706769078969955, 0.03210568055510521, -0.01735946722328663, -0.003052524058148265, -0.027500636875629425, -0.02457195334136486, 0.02409817837178707, 0.005792108830064535, 0.02861396037042141, 0.046561967581510544, -0.01243576779961586, 0.0891069695353508, -0.03797489404678345, 0.014491063542664051, -0.0352516695857048, -0.059401512145996094, 0.010006687603890896, 0.06142193824052811, 0.05280255526304245, 0.055814485996961594, -0.006994777359068394, -0.03904828801751137, 0.04808767884969711, 0.07156415283679962, 0.048944249749183655, 0.0006257672212086618, -0.026026038452982903, -0.015154508873820305, 0.026153897866606712, 0.05196080356836319, -0.04815175384283066, -0.026740897446870804, 0.03368981182575226, 0.04337514564394951, -0.021634943783283234, 0.02440810762345791, -0.022974232211709023, 0.030766228213906288, -0.049881815910339355, -0.05854083225131035, 0.033231668174266815, 0.020773030817508698, -0.0035445932298898697, 0.03827780857682228, 0.00416176114231348, 0.010924698784947395, 0.01654462330043316, 0.015172028914093971, 0.010527974925935268, -0.04705304652452469, 0.03151650354266167, 0.015847723931074142, 0.05334561690688133, -0.03975503146648407, 0.03784281015396118, -0.010961699299514294, 0.0007075748289935291, 0.04154954105615616, -0.038129422813653946, 0.027940111234784126, 0.0638401135802269, 0.03851443901658058, -0.031989097595214844, 0.010340471751987934, 0.0074583664536476135, 0.017599044367671013, 0.05003410205245018, -0.001540360739454627, 0.06227268651127815, 0.021393820643424988, 0.05719245970249176, 0.08282836526632309, 0.026525534689426422, 0.042998768389225006, 0.02555534429848194, 0.0742713138461113, 0.01609441079199314, -0.014598207548260689, 0.03956597298383713, -0.04685460031032562, 0.02036675438284874, -0.0448923222720623, 0.013896849937736988, -0.0334894172847271, -0.007511740084737539, 0.030865894630551338, 0.016923457384109497, -0.03652770444750786, -0.008686576038599014, -0.009663241915404797, -0.004953784868121147, 0.02847115695476532, -0.00527070090174675, 0.0005090963677503169, -0.0005886913277208805, -0.019740106537938118, -0.022974589839577675, -0.06132935732603073, -0.038179147988557816, -0.027219807729125023, -0.021544434130191803, -0.022343086078763008, -0.09177958965301514, 0.010779228992760181, -0.0637565478682518, -0.01977497525513172, 0.03573179244995117, 0.00479381438344717, -0.0025560196954756975, -0.036311082541942596, 0.011560291983187199, -0.048153094947338104, -0.039266057312488556, -0.053583841770887375, -0.06638248264789581, -0.040619783103466034, -0.07846434414386749, 0.02695038542151451, 0.0504586435854435, 0.031241005286574364, -0.005490124691277742, 0.01172181311994791, 0.015598796308040619, -0.03815624490380287, 0.04258626699447632, 0.05510975793004036, -0.028132593259215355, -0.049118783324956894, 0.026222316548228264, -0.010011808946728706, 0.011776837520301342, -0.001618679496459663, -0.023859748616814613, 0.08861855417490005, 0.06073916703462601, 0.003101177280768752, -0.000520417932420969, -0.023937299847602844, -0.06294486671686172, -0.050893597304821014, -0.028319714590907097, -0.02602660469710827, 0.003683660412207246, -0.03919092193245888, -0.03951078653335571, -0.023990564048290253, -0.030533434823155403, 0.017187610268592834, 0.001980002038180828, 0.0027602657210081816, 0.02166549675166607, 0.036781273782253265, 0.030134117230772972, 0.03168139606714249, -0.03437463566660881, -0.03566412627696991, 0.07371889054775238, 0.02203281968832016, 0.014783569611608982, -0.07367964088916779, -0.004640301689505577, 0.025928035378456116, 0.02220872975885868, 0.01881404221057892, -0.01908114366233349, 0.06348554790019989, 0.00867367535829544, 0.0026941518299281597, 0.01470382884144783, -0.017578760161995888, -0.023505089804530144, -0.014215672388672829, 0.007860719226300716, -0.025635290890932083, -0.042563244700431824, -0.010365262627601624, -0.005791740957647562, 0.04309578984975815, -0.06170961633324623, -0.05411151796579361, -0.034224122762680054, 0.027210688218474388, 0.04657778888940811, 0.004071233328431845, -0.038963980972766876, -0.0077655129134655, -0.0577826201915741, -0.005960044451057911, 0.04900854080915451, 0.009168406017124653, 0.013470190577208996, 0.04695550352334976, 0.009115271270275116, -0.018939202651381493, 0.048315975815057755, 0.03101789578795433, 0.06984670460224152, 0.012157629244029522, -0.0684601366519928, 0.018976779654622078, -0.0193390604108572, 0.010702310130000114, -0.013881085440516472, -0.02664492093026638, -0.04231547564268112, -0.10633636265993118, 0.0027309090364724398, 0.004617020953446627, -0.007641325704753399, -0.010996703989803791, 0.05014675855636597, 0.012423516251146793, -0.012968279421329498, -0.003953898791223764, 0.006431685294955969, 0.04490382969379425, -0.03942836448550224, 0.042033787816762924, -0.0036986356135457754, -0.013453911989927292, -0.053391505032777786, 0.02105385810136795, -0.04278859123587608, -0.02395167574286461, 0.01294061541557312, 0.04483671858906746, -0.0035697089042514563, 0.06943069398403168, 0.09375473111867905, 0.03249740228056908, -0.03501639515161514, 0.03634432330727577, 0.07309591770172119, -0.03091047890484333, -0.041883934289216995, -0.00573029275983572, -0.012176443822681904, -0.008295075967907906, 0.00020444633264560252, -0.010730787180364132, 0.04838530346751213, 0.03745191916823387, -0.004059579689055681, -0.0011018483201041818, -0.005510005168616772, -0.008917703293263912, -0.024984976276755333, -0.04104243591427803, -0.021746383979916573, 0.007059659343212843, -0.025213317945599556, 0.0168028362095356, 0.04211495816707611, 0.02252172864973545, 0.051604676991701126, 0.023661546409130096, -0.043198201805353165, -0.01839527301490307, 0.030495144426822662, 0.005040170159190893, -0.03870443254709244, -0.07425405085086823, -0.006327824201434851, 0.0443405844271183, 0.029450075700879097, -0.02074584923684597, -0.05778959020972252, -0.006569051183760166, 0.06172905117273331, -0.06728225201368332, 0.04250974953174591, -0.011404603719711304, 0.03827754035592079, 0.05389861389994621, -0.019329281523823738, 0.04759380966424942, -0.023977849632501602, 0.009699162095785141, 0.0002582638990134001, 0.04056522995233536, -0.017588043585419655, -0.028447231277823448, -0.05108164623379707, 0.026549268513917923, 0.03283710405230522, 0.032534755766391754, 0.05708758905529976, -0.03291215002536774, -0.03189506754279137, 0.0002233117411378771, 0.04996270686388016, -0.05951752886176109, -0.0000572218959860038, 0.03453066945075989, 0.03444107994437218, -0.054853834211826324, -0.03219995275139809, -0.018929723650217056, -0.010794992558658123, 0.04145566746592522, 0.00511052506044507, -0.0341717004776001, -0.048010747879743576, 0.03282364830374718, -0.005617219023406506, -0.03131169080734253, -0.05492023751139641, 0.06132829561829567, -0.00723873870447278, -0.010573186911642551, 0.038986917585134506, 0.02531120553612709, 0.030650293454527855, 0.06917034834623337, 0.015906356275081635, 0.0004804717318620533, -0.040318116545677185, 0.04064089432358742, -0.03516700863838196, -0.015915563330054283, 0.008920437656342983, -0.04492482542991638, -0.041936568915843964, -0.01373982336372137, -0.037114955484867096, -0.034461718052625656, -0.01566167175769806, 0.017238197848200798, 0.00403359392657876, -0.01875258982181549, -0.004863175563514233, 0.05914280191063881, -0.0006426399340853095, -0.029645755887031555, -0.02981244958937168, -0.027443911880254745, -0.06618358939886093, -0.051308754831552505, 0.035315580666065216, 0.014073897153139114, 0.0166540015488863, 0.04234520345926285, 0.016421044245362282, 0.007548097521066666, 0.021410541608929634, -0.041635483503341675, 0.017822332680225372, -0.011970490217208862, -0.027734730392694473, -0.01757480762898922, 0.029709748923778534, 0.011770354583859444, 0.019541801884770393, -0.054355137050151825, 0.02809741534292698, 0.0019303520675748587, -0.006833294872194529, -0.013698327355086803, 0.01234392262995243, 0.02960418350994587, -0.0695936381816864, -0.03254874423146248, -0.006110446527600288, -0.027764780446887016, 0.030488435178995132, -0.03324485942721367, -0.03226856887340546, -0.00725145498290658, 0.018328575417399406, 0.03394030034542084, -0.01958274655044079, -0.025019856169819832, 0.03125346451997757, -0.020604003220796585, 0.011846613138914108, -0.05398739501833916, 0.059006668627262115, -0.03319001942873001, 0.01708531752228737, -0.026285776868462563, 0.01193124707788229, -0.039570402354002, 0.042166851460933685, -0.02353273145854473, -0.008410322479903698, -0.008669888600707054, 0.05545808747410774, -0.015158247202634811, 0.03314027562737465, 0.0005803677486255765, 0.03620167076587677, -0.03137155622243881, 0.0692785233259201, -0.03788264840841293, 0.01039135828614235, -0.015257148072123528, 0.0012042695889249444, -0.022720392793416977, 0.012774785980582237, -0.02746763452887535, -0.03501420468091965, 0.016682734712958336, 0.0749591737985611, 0.03137735649943352, 0.027213916182518005, -0.027979373931884766, -0.030230587348341942, 0.012072735466063023, -0.05456163361668587, -0.02644738368690014, -0.00882713869214058, -0.003419056534767151, -0.014470506459474564, 0.06360248476266861, 0.043561819940805435, -0.0605165995657444, -0.06389966607093811, 0.045391570776700974, -0.0028010776732116938, -0.007996790111064911, 0.009431418962776661, 0.019021904096007347, 0.03135031834244728, 0.06051744893193245, -0.03080746904015541, -0.005200264975428581, -0.019661229103803635, -0.03463329002261162, 0.03278713673353195, 0.00965834315866232, 0.012260445393621922, 0.010338522493839264, -0.05288807302713394, -0.024551359936594963, 0.06643514335155487, 0.026969552040100098, 0.010712355375289917, -0.011235551908612251, -0.04016439989209175, 0.037923235446214676, 0.010923190042376518, -0.042301245033741, 0.005904536694288254, 0.010194900445640087, -0.02010146528482437, 0.0469084158539772, -0.01244929526001215, 0.012164062820374966, 0.06740540266036987, 0.05191091448068619, -0.03451038524508476, 0.07835853099822998, -0.022072970867156982, 0.0035272622480988503, 0.050940241664648056, -0.08087243139743805, 0.003688926575705409, -0.03456580638885498, 0.06737543642520905, -0.07128036022186279, 0.027496572583913803, 0.049261726438999176, 0.011527270078659058, 0.012862944975495338, -0.05467662587761879, -0.036075763404369354, 0.0014672154793515801, -0.04391792044043541, 0.08578241616487503, 0.021466614678502083, -0.053781863301992416, 0.053796034306287766, 0.0006550419493578374, -0.05562390759587288, 0.050649870187044144, 0.023301508277654648, 0.03970629721879959, 0.04274946451187134, 0.044726088643074036, -0.05977489426732063, 0.014796486124396324, -0.04591125622391701, 0.020888205617666245, -0.0376959890127182, -0.02229323238134384, 0.03383570536971092, -0.03164425119757652, -0.030533168464899063, 0.025640830397605896, 0.005870133172720671, -0.023427968844771385, 0.0578145831823349, -0.05830991268157959, -0.045397739857435226, 0.01661994867026806, 0.024614429101347923, -0.04388156160712242, 0.008116696029901505, -0.03298412263393402, 0.011995126493275166, 0.022093316540122032, 0.002519567497074604, -0.01047189999371767, -0.019434142857789993, 0.035275015980005264, -0.060738686472177505, -0.026365047320723534, 0.020204823464155197, -0.00376891135238111, -0.021574219688773155, 0.015439813956618309, -0.002060210332274437, 0.0026951103936880827, 0.03444133326411247, -0.0006939359591342509, 0.01622788980603218, -0.018437402322888374, -0.0290346872061491, 0.018841218203306198, 0.0011477172374725342, 0.017171012237668037, -0.017217742279171944, 0.03432250767946243, 0.019682712852954865, 0.025363381952047348, -0.01527796033769846, -0.024507973343133926, -0.031018557026982307, 0.027694473043084145, -0.026758791878819466, 0.0024924182798713446, -0.016994059085845947, -0.05975969135761261, -0.052033256739377975, -0.006772008258849382, -0.045281752943992615, 0.029870541766285896, -0.06355544924736023, 0.0025923626963049173, 0.038769304752349854, -0.01250699907541275, -0.06306224316358566, -0.10995569825172424, -0.021035930141806602, -0.031832754611968994, -0.015969563275575638, 0.038159213960170746, -0.03464481979608536, 0.03702491894364357, -0.04416096955537796, -0.05260861665010452, 0.05153306946158409, 0.027425697073340416, -0.03795911371707916, 0.04354315251111984, 0.040505632758140564, -0.05253671109676361, 0.0005317557952366769, 0.04237920790910721, -0.05803497135639191, 0.006675048731267452, 0.012156507931649685, 0.01144509855657816, 0.014525230973958969, 0.019558269530534744, -0.05793462693691254, -0.0031549851410090923, -0.05982864648103714, -0.04306323826313019, -0.05024144425988197, 0.01102196704596281, 0.07737255096435547 ]
Declan/HuffPost_model_v6
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- license: mit tags: - generated_from_trainer metrics: - accuracy model-index: - name: deberta-v3-large__sst2__train-8-9 results: [] --- <!-- 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-v3-large__sst2__train-8-9 This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6013 - Accuracy: 0.7210 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6757 | 1.0 | 3 | 0.7810 | 0.25 | | 0.6506 | 2.0 | 6 | 0.8102 | 0.25 | | 0.6463 | 3.0 | 9 | 0.8313 | 0.25 | | 0.5813 | 4.0 | 12 | 0.8858 | 0.25 | | 0.4635 | 5.0 | 15 | 0.8220 | 0.25 | | 0.3992 | 6.0 | 18 | 0.7226 | 0.5 | | 0.3281 | 7.0 | 21 | 0.6707 | 0.75 | | 0.2276 | 8.0 | 24 | 0.7515 | 0.75 | | 0.1674 | 9.0 | 27 | 0.6971 | 0.75 | | 0.0873 | 10.0 | 30 | 0.5419 | 0.75 | | 0.0525 | 11.0 | 33 | 0.5025 | 0.75 | | 0.0286 | 12.0 | 36 | 0.5229 | 0.75 | | 0.0149 | 13.0 | 39 | 0.5660 | 0.75 | | 0.0082 | 14.0 | 42 | 0.6954 | 0.75 | | 0.006 | 15.0 | 45 | 0.8649 | 0.75 | | 0.0043 | 16.0 | 48 | 1.0011 | 0.75 | | 0.0035 | 17.0 | 51 | 1.0909 | 0.75 | | 0.0021 | 18.0 | 54 | 1.1615 | 0.75 | | 0.0017 | 19.0 | 57 | 1.2147 | 0.75 | | 0.0013 | 20.0 | 60 | 1.2585 | 0.75 | | 0.0016 | 21.0 | 63 | 1.2917 | 0.75 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.018069973215460777, -0.00440544169396162, -0.019548095762729645, 0.028310883790254593, 0.03335051238536835, 0.019650166854262352, -0.02128724753856659, -0.017952876165509224, -0.053898949176073074, 0.0664396807551384, 0.01104671135544777, -0.03991969674825668, 0.01750662736594677, 0.04411907494068146, -0.02374034747481346, -0.03100970759987831, -0.008337941020727158, -0.017675574868917465, -0.028352612629532814, -0.0033704189117997885, 0.011730218306183815, -0.012968880124390125, -0.023038350045681, 0.019900759682059288, 0.0022951781284064054, 0.011870202608406544, -0.0020108898170292377, 0.021015385165810585, 0.02993832528591156, -0.0681229904294014, 0.013736069202423096, -0.03954019397497177, -0.06016276031732559, -0.023790771141648293, -0.014394864439964294, -0.008136965334415436, 0.008462275378406048, 0.023581689223647118, 0.03179759159684181, 0.05038074776530266, 0.009099682793021202, 0.03165924921631813, -0.00792462658137083, -0.026151278987526894, 0.03995898738503456, 0.00845630094408989, -0.05918930843472481, -0.005914656445384026, 0.02444818802177906, -0.022581253200769424, -0.07096759229898453, -0.055166419595479965, -0.0061790309846401215, 0.024229060858488083, -0.024439917877316475, -0.01807831972837448, -0.041590720415115356, 0.002505582058802247, 0.06576673686504364, -0.04908335953950882, -0.03209453448653221, 0.02556944079697132, -0.0691886767745018, 0.016881337389349937, 0.042349833995103836, -0.03581522777676582, 0.017284177243709564, -0.038512397557497025, 0.028410010039806366, -0.008823037147521973, 0.06231234595179558, -0.02084379456937313, 0.00908995047211647, -0.08997475355863571, -0.003581417491659522, -0.001840191544033587, 0.029614081606268883, 0.05520307645201683, -0.038544196635484695, 0.06186103820800781, 0.03531861677765846, -0.013486930169165134, 0.04169401526451111, -0.018518870696425438, 0.009073212742805481, 0.029851822182536125, -0.04738086089491844, 0.005761194974184036, 0.02753392793238163, 0.03098090924322605, -0.03555065393447876, -0.025788361206650734, -0.025386687368154526, -0.024450145661830902, -0.021606840193271637, 0.022839244455099106, 0.0482286773622036, -0.005605190061032772, 0.02459600381553173, 0.016883855685591698, 0.02687869593501091, 0.039317596703767776, -0.023967335000634193, 0.07057308405637741, -0.011333710514008999, -0.014814097434282303, -0.02245604619383812, -0.01614782027900219, -0.03468454256653786, 0.01302498858422041, 0.02123652957379818, -0.03117772564291954, -0.01931910216808319, 0.04560481756925583, 0.009523282758891582, -0.00015517175779677927, 0.06942757964134216, -0.022511396557092667, -0.04501320794224739, -0.048677049577236176, 0.01817239262163639, 0.014616447500884533, -0.031261760741472244, 0.02063618041574955, -0.05486150458455086, -0.010565130971372128, -0.012203466147184372, -0.04392864927649498, -0.006043525878340006, 0.00817061960697174, 0.006553206127136946, 0.06147649884223938, 0.03286304324865341, -0.08657270669937134, 0.0016167312860488892, 0.009904652833938599, -0.04445010423660278, 0.03716276213526726, 0.01258301641792059, 0.12204574048519135, -0.04697635769844055, -0.07449156790971756, 0.009934556670486927, 0.004844455048441887, -0.01693575084209442, 0.03213098645210266, 0.0041505699045956135, -0.01840098761022091, -0.0007187743321992457, -0.007672321517020464, 0.05283927917480469, -0.057116150856018066, -0.014582773670554161, 0.06645189970731735, -0.005028244573622942, 0.050233762711286545, -0.04921925440430641, -0.030194608494639397, 0.00976542942225933, -0.023402763530611992, -0.008652721531689167, 0.0362212099134922, -0.025020215660333633, 0.0017017694190144539, -0.021520312875509262, -0.051674336194992065, 0.0028250396717339754, 0.0871458649635315, 0.0027770011220127344, -0.036040205508470535, -0.02767808362841606, 0.028613632544875145, 0.05850696563720703, 0.05312494561076164, -0.026255464181303978, 0.035946041345596313, 0.047666456550359726, 0.02942465990781784, -0.04194759950041771, 0.04054882377386093, 0.026611002162098885, -0.034716811031103134, -0.03297850489616394, 0.032314904034137726, 0.00925779715180397, -0.050294023007154465, 0.018335992470383644, 0.029978062957525253, 0.022289589047431946, -0.0613761767745018, -0.05366292968392372, 0.047630857676267624, -0.004171709530055523, -0.01568371057510376, 0.0089555773884058, 0.008270453661680222, -0.020901083946228027, 0.031643036752939224, -0.01651567965745926, -0.002287350594997406, -0.02895570918917656, -0.02486151084303856, 0.024199437350034714, 0.006612896919250488, 0.030653702095150948, 0.04665809124708176, -0.012180018238723278, 0.09179595857858658, -0.03813547268509865, 0.014154951088130474, -0.034230899065732956, -0.05905254930257797, 0.012437532655894756, 0.06068186089396477, 0.05334475636482239, 0.05453655496239662, -0.006040080916136503, -0.03809145838022232, 0.047402311116456985, 0.07082733511924744, 0.047616563737392426, 0.0015239028725773096, -0.025380702689290047, -0.01452411338686943, 0.028491126373410225, 0.052177999168634415, -0.04747411608695984, -0.026588790118694305, 0.03317286819219589, 0.04358762130141258, -0.021376676857471466, 0.023534297943115234, -0.021829085424542427, 0.03116421215236187, -0.051241178065538406, -0.060119662433862686, 0.03335726633667946, 0.01923598162829876, -0.004372723866254091, 0.036820948123931885, 0.004328206647187471, 0.012227875180542469, 0.01801520399749279, 0.015181913040578365, 0.008476562798023224, -0.04777899757027626, 0.031037040054798126, 0.01532709039747715, 0.052730951458215714, -0.03988351300358772, 0.037992753088474274, -0.01168137602508068, 0.0020780088379979134, 0.04200925678014755, -0.03807706758379936, 0.027244258671998978, 0.060910336673259735, 0.03866347670555115, -0.03264598920941353, 0.011009919457137585, 0.008223563432693481, 0.01689576543867588, 0.04986528307199478, -0.0014761831844225526, 0.06105555593967438, 0.020268844440579414, 0.055487118661403656, 0.08283793181180954, 0.02584219165146351, 0.04271715506911278, 0.02451510541141033, 0.07340836524963379, 0.014161885716021061, -0.01356270257383585, 0.03894190862774849, -0.04984647035598755, 0.02103380486369133, -0.04534086585044861, 0.01596495881676674, -0.0306971687823534, -0.00705166207626462, 0.029365573078393936, 0.0173968356102705, -0.038027964532375336, -0.009105700999498367, -0.00947635993361473, -0.005165117792785168, 0.02684309333562851, -0.005286825820803642, 0.0011345657985657454, 0.0005739465123042464, -0.019110629335045815, -0.022818196564912796, -0.06137900799512863, -0.039167895913124084, -0.027404215186834335, -0.022272687405347824, -0.022684603929519653, -0.09122870117425919, 0.01021254900842905, -0.06389137357473373, -0.019465463235974312, 0.03446391224861145, 0.0042928303591907024, -0.00428276089951396, -0.0358002595603466, 0.0108657106757164, -0.049405232071876526, -0.039670638740062714, -0.05363599956035614, -0.06767354160547256, -0.04106435179710388, -0.07755155861377716, 0.029359368607401848, 0.04950728267431259, 0.029195820912718773, -0.0047757807187736034, 0.012109184637665749, 0.015338115394115448, -0.03869890049099922, 0.04308592528104782, 0.05733374133706093, -0.027313100174069405, -0.049191754311323166, 0.02676829695701599, -0.010407458059489727, 0.013832303695380688, -0.0010246246820315719, -0.02489759959280491, 0.08928576111793518, 0.06027762219309807, 0.003303822595626116, -0.00005971249993308447, -0.024386761710047722, -0.063434898853302, -0.053282689303159714, -0.027269279584288597, -0.024651089683175087, 0.0016868503298610449, -0.03787672892212868, -0.039239369332790375, -0.023145772516727448, -0.03218592703342438, 0.019262397661805153, 0.0019220557296648622, 0.0038251089863479137, 0.020912690088152885, 0.037751223891973495, 0.030363528057932854, 0.031783346086740494, -0.03328508883714676, -0.038004547357559204, 0.07078269869089127, 0.02069682441651821, 0.016726844012737274, -0.07399473339319229, -0.005439420696347952, 0.026898451149463654, 0.02188238501548767, 0.019316943362355232, -0.02191755175590515, 0.06302451342344284, 0.007773882709443569, 0.0030725758988410234, 0.015155338682234287, -0.016910774633288383, -0.023360131308436394, -0.01456295233219862, 0.007286228239536285, -0.024715326726436615, -0.04292559623718262, -0.00867039617151022, -0.004169762600213289, 0.042695581912994385, -0.060741037130355835, -0.05539519712328911, -0.03419787809252739, 0.02744746021926403, 0.044315457344055176, 0.004089843016117811, -0.0375744067132473, -0.00849891547113657, -0.05898076668381691, -0.006553127896040678, 0.04902634769678116, 0.00866882037371397, 0.012740012258291245, 0.046172283589839935, 0.0077425227500498295, -0.019678030163049698, 0.04946519434452057, 0.03022337332367897, 0.06932204961776733, 0.012416579760611057, -0.06947983056306839, 0.01722041890025139, -0.01987728849053383, 0.00887854490429163, -0.01280701532959938, -0.026377825066447258, -0.04036634415388107, -0.10609127581119537, 0.00018027510668616742, 0.005515796132385731, -0.008019429631531239, -0.008699262514710426, 0.04834246262907982, 0.013549593277275562, -0.012605438008904457, -0.005530997645109892, 0.005675399675965309, 0.04211944714188576, -0.038525789976119995, 0.04073619842529297, -0.005250863265246153, -0.01176431868225336, -0.05448513105511665, 0.01914098858833313, -0.042284682393074036, -0.022557059302926064, 0.012135626748204231, 0.04660317674279213, -0.004726042505353689, 0.069562628865242, 0.0945301428437233, 0.03256990388035774, -0.035726260393857956, 0.03559384122490883, 0.07445777952671051, -0.03251592442393303, -0.041288215667009354, -0.0038828111719340086, -0.013134137727320194, -0.00871226191520691, 0.002511468715965748, -0.010548294521868229, 0.04911812022328377, 0.03718899190425873, -0.00460849329829216, 0.00009845993190538138, -0.006614037323743105, -0.010263663716614246, -0.02504979446530342, -0.039405807852745056, -0.02056301385164261, 0.007169398479163647, -0.026090050116181374, 0.01601114310324192, 0.039860744029283524, 0.02352948486804962, 0.05131746456027031, 0.023863045498728752, -0.04465997964143753, -0.018879050388932228, 0.029516790062189102, 0.005422381218522787, -0.03813464194536209, -0.07329952716827393, -0.006286847870796919, 0.043638940900564194, 0.030351625755429268, -0.02440219186246395, -0.05850076302886009, -0.005288885906338692, 0.061652909964323044, -0.06638410687446594, 0.04116996377706528, -0.011920868419110775, 0.039211709052324295, 0.05478835478425026, -0.019004760310053825, 0.04924354702234268, -0.023305855691432953, 0.010837174952030182, 0.000060076985391788185, 0.0414409264922142, -0.01809435337781906, -0.028270194306969643, -0.049242567270994186, 0.02558884024620056, 0.03297002613544464, 0.03251978009939194, 0.05665037781000137, -0.0323394238948822, -0.03275522217154503, 0.0008340685744769871, 0.0493202768266201, -0.05916930362582207, 0.00041107780998572707, 0.034672483801841736, 0.03472892567515373, -0.0541115365922451, -0.03270028531551361, -0.017493998631834984, -0.01172972097992897, 0.04188618063926697, 0.0038771682884544134, -0.034353118389844894, -0.04741412028670311, 0.0340101383626461, -0.003877409268170595, -0.03222185745835304, -0.05382067710161209, 0.06176493689417839, -0.009265090338885784, -0.010338646359741688, 0.03987631946802139, 0.025597689673304558, 0.029339183121919632, 0.0692892074584961, 0.016139289364218712, 0.0012127018999308348, -0.04047428444027901, 0.040406420826911926, -0.036225825548172, -0.013720434159040451, 0.009701021015644073, -0.04598672315478325, -0.03983297944068909, -0.01464858092367649, -0.03856409341096878, -0.03531302139163017, -0.01772172749042511, 0.01732134446501732, 0.004771541338413954, -0.018820440396666527, -0.005562652833759785, 0.06010250002145767, -0.002947333501651883, -0.02969747595489025, -0.030516302213072777, -0.027033664286136627, -0.06603112816810608, -0.05171699449419975, 0.03694310784339905, 0.014136130921542645, 0.0175168476998806, 0.042989131063222885, 0.015659837052226067, 0.008888314478099346, 0.021805575117468834, -0.041087809950113297, 0.019840843975543976, -0.012604796327650547, -0.029131298884749413, -0.019436920061707497, 0.030084658414125443, 0.01158007513731718, 0.020356714725494385, -0.054431524127721786, 0.028359035030007362, 0.002152153756469488, -0.008309576660394669, -0.011667436920106411, 0.011612982489168644, 0.030181998386979103, -0.06868403404951096, -0.031175008043646812, -0.006240880582481623, -0.02920588105916977, 0.030093740671873093, -0.03280756622552872, -0.03256440535187721, -0.007850476540625095, 0.0184322502464056, 0.03236529603600502, -0.02013511396944523, -0.026792634278535843, 0.031595733016729355, -0.01968422345817089, 0.0122919250279665, -0.05375484749674797, 0.0589279904961586, -0.03312869369983673, 0.015757450833916664, -0.026021454483270645, 0.012377806939184666, -0.03922572359442711, 0.044065214693546295, -0.0221361443400383, -0.008611992001533508, -0.007760146167129278, 0.053823716938495636, -0.016200672835111618, 0.03549719974398613, 0.001682876143604517, 0.0369550958275795, -0.030803702771663666, 0.06789907068014145, -0.038039740175008774, 0.010217995382845402, -0.013554881326854229, 0.0015168648678809404, -0.024011576548218727, 0.015503513626754284, -0.026282379403710365, -0.035269394516944885, 0.014544297009706497, 0.07410161197185516, 0.03170393779873848, 0.027555830776691437, -0.02937455102801323, -0.030434582382440567, 0.011167573742568493, -0.05509905889630318, -0.026664698496460915, -0.006653797812759876, -0.003219176083803177, -0.015807069838047028, 0.0632404163479805, 0.04361039772629738, -0.05968790501356125, -0.06386110186576843, 0.04507065191864967, -0.003155367448925972, -0.006291130557656288, 0.00865124724805355, 0.020805973559617996, 0.030937843024730682, 0.060665346682071686, -0.031614288687705994, -0.004934345837682486, -0.018987886607646942, -0.03423803672194481, 0.03268624097108841, 0.009544732049107552, 0.01450391300022602, 0.010279199108481407, -0.052274879068136215, -0.023741228505969048, 0.06814548373222351, 0.02718069776892662, 0.011401446536183357, -0.012079344131052494, -0.03992948308587074, 0.03769782930612564, 0.011385966092348099, -0.04329931363463402, 0.006208427716046572, 0.009740791283547878, -0.02137119509279728, 0.04618469625711441, -0.012562724761664867, 0.01401531882584095, 0.06810303032398224, 0.05225400626659393, -0.033353645354509354, 0.07991690933704376, -0.022025806829333305, 0.0030012247152626514, 0.05090784281492233, -0.08077089488506317, 0.004027248360216618, -0.03510468453168869, 0.0679422989487648, -0.07120204716920853, 0.026939602568745613, 0.04897479712963104, 0.011837296187877655, 0.011876816861331463, -0.054185256361961365, -0.03845617547631264, 0.003162089269608259, -0.04568479582667351, 0.08713200688362122, 0.023493783548474312, -0.05414768308401108, 0.05314578115940094, -0.0006122635095380247, -0.05805996432900429, 0.05005870386958122, 0.02418234944343567, 0.038019608706235886, 0.04356647655367851, 0.04514136165380478, -0.06021786853671074, 0.015439767390489578, -0.04251881688833237, 0.02309122309088707, -0.038074664771556854, -0.021642034873366356, 0.0333033986389637, -0.03234009072184563, -0.030503645539283752, 0.025610370561480522, 0.005966367200016975, -0.023186026141047478, 0.05916175618767738, -0.05943985655903816, -0.04513309523463249, 0.01730780489742756, 0.025074979290366173, -0.043890561908483505, 0.00640083709731698, -0.03284701704978943, 0.012013551779091358, 0.021398501470685005, 0.003506409004330635, -0.010897858068346977, -0.018605832010507584, 0.03573044762015343, -0.06324111670255661, -0.0270152036100626, 0.02069915272295475, -0.004645621869713068, -0.01903037168085575, 0.014856575056910515, 0.0003368626057635993, 0.005569859407842159, 0.03334978595376015, -0.002077068667858839, 0.015617123804986477, -0.020245566964149475, -0.02940615639090538, 0.01648864522576332, -0.0005930443294346333, 0.01858869567513466, -0.015633415430784225, 0.03552522137761116, 0.020326456055045128, 0.023554829880595207, -0.015532218851149082, -0.025197826325893402, -0.03126336261630058, 0.02589777484536171, -0.02708548866212368, 0.0015469416975975037, -0.01566288433969021, -0.06045082211494446, -0.05158819630742073, -0.008525185286998749, -0.045394301414489746, 0.02962835319340229, -0.06561587005853653, 0.003520323196426034, 0.039364952594041824, -0.011802171356976032, -0.06349845230579376, -0.11100316792726517, -0.02054346725344658, -0.030097289010882378, -0.01621265523135662, 0.03938857838511467, -0.03394235670566559, 0.03875795379281044, -0.04280015453696251, -0.05139970779418945, 0.049469295889139175, 0.02617166005074978, -0.03954329341650009, 0.042513225227594376, 0.04371625557541847, -0.05163821578025818, 0.0033563042525202036, 0.042669836431741714, -0.056193411350250244, 0.007477091159671545, 0.011769811622798443, 0.010324620641767979, 0.01555828657001257, 0.01989479549229145, -0.058429401367902756, -0.0028298813849687576, -0.05952601507306099, -0.04533880576491356, -0.05039576441049576, 0.013002442196011543, 0.07748889923095703 ]
Declan/NPR_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-1 results: [] --- <!-- 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__hate_speech_offensive__train-16-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0424 - Accuracy: 0.5355 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0989 | 1.0 | 10 | 1.1049 | 0.1 | | 1.0641 | 2.0 | 20 | 1.0768 | 0.3 | | 0.9742 | 3.0 | 30 | 1.0430 | 0.4 | | 0.8765 | 4.0 | 40 | 1.0058 | 0.4 | | 0.6979 | 5.0 | 50 | 0.8488 | 0.7 | | 0.563 | 6.0 | 60 | 0.7221 | 0.7 | | 0.4135 | 7.0 | 70 | 0.6587 | 0.8 | | 0.2509 | 8.0 | 80 | 0.5577 | 0.7 | | 0.0943 | 9.0 | 90 | 0.5840 | 0.7 | | 0.0541 | 10.0 | 100 | 0.6959 | 0.7 | | 0.0362 | 11.0 | 110 | 0.6884 | 0.6 | | 0.0254 | 12.0 | 120 | 0.9263 | 0.6 | | 0.0184 | 13.0 | 130 | 0.7992 | 0.6 | | 0.0172 | 14.0 | 140 | 0.7351 | 0.6 | | 0.0131 | 15.0 | 150 | 0.7664 | 0.6 | | 0.0117 | 16.0 | 160 | 0.8262 | 0.6 | | 0.0101 | 17.0 | 170 | 0.8839 | 0.6 | | 0.0089 | 18.0 | 180 | 0.9018 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.010133960284292698, 0.029644489288330078, -0.03599930927157402, 0.05198006331920624, 0.04797954857349396, 0.028264500200748444, -0.012334625236690044, -0.019072391092777252, -0.05457805469632149, 0.06051391735672951, 0.01415752712637186, -0.03078923374414444, 0.021657492965459824, 0.03856869786977768, -0.03380848094820976, -0.03638899326324463, -0.021066587418317795, -0.012550304643809795, -0.042487598955631256, 0.003687586635351181, 0.003140469314530492, -0.012279556132853031, -0.015622102655470371, 0.016240915283560753, -0.01394930761307478, 0.03714488074183464, -0.012071442790329456, 0.02144264243543148, 0.024608930572867393, -0.05588115006685257, 0.010831835679709911, -0.02477882243692875, -0.03829318284988403, 0.004567903932183981, -0.026958443224430084, -0.005447725765407085, 0.003840512363240123, 0.02300312928855419, 0.04009012505412102, 0.03717411309480667, 0.013913304544985294, 0.003837633179500699, -0.008711646310985088, -0.018401339650154114, 0.058454446494579315, -0.010164556093513966, -0.046248696744441986, -0.011072739027440548, 0.02323785051703453, -0.041933465749025345, -0.06365389376878738, -0.05166754126548767, -0.017186779528856277, 0.028456151485443115, -0.010776982642710209, -0.014405425637960434, -0.057479675859212875, 0.01824883744120598, 0.0628976970911026, -0.04108121618628502, -0.030558684840798378, 0.001299451687373221, -0.0633997991681099, -0.0026660761795938015, 0.023389147594571114, -0.027942605316638947, 0.0029978244565427303, -0.04591722786426544, 0.01724397949874401, -0.01860218495130539, 0.05489252507686615, -0.01983698084950447, 0.02796892635524273, -0.07089066505432129, -0.022990256547927856, -0.02085689827799797, 0.057521045207977295, 0.06951431930065155, -0.027675369754433632, 0.06095285341143608, 0.02329782396554947, 0.018776187673211098, 0.033220935612916946, -0.025285592302680016, 0.025399891659617424, 0.02866138145327568, -0.05695134401321411, 0.005699458532035351, 0.005417564883828163, 0.03722791001200676, -0.03201654925942421, -0.03831825777888298, -0.011817511171102524, -0.031527914106845856, -0.012978660874068737, 0.01571744494140148, 0.007138181943446398, 0.003592213150113821, 0.049240149557590485, 0.021754520013928413, 0.042724885046482086, 0.03624587506055832, -0.03722349926829338, 0.05711958929896355, -0.01885266788303852, 0.0066642300225794315, -0.001783029641956091, -0.022152595221996307, -0.04291924089193344, 0.01961570233106613, 0.028222234919667244, -0.01811750791966915, -0.036871060729026794, 0.0383383072912693, 0.0012260652147233486, 0.01628793217241764, 0.06451815366744995, -0.03049812838435173, -0.03981289640069008, -0.02293764427304268, 0.007616331335157156, 0.007149076089262962, -0.0026069877203553915, 0.012376900762319565, -0.06797651201486588, -0.014703203924000263, -0.030648205429315567, -0.044790588319301605, -0.028326435014605522, 0.03018297255039215, 0.013161958195269108, 0.06927428394556046, 0.025690298527479172, -0.06180811673402786, -0.003214114811271429, 0.02171344868838787, -0.05437064915895462, 0.04196813702583313, 0.02614123746752739, 0.10790050029754639, -0.06296972930431366, -0.06507136672735214, -0.005497242324054241, -0.01692483201622963, -0.0433221161365509, 0.01709115505218506, 0.011318239383399487, -0.011403441429138184, -0.009669516235589981, -0.0002906735462602228, 0.05070250481367111, -0.0430145263671875, -0.0221769530326128, 0.06776977330446243, -0.008652040734887123, 0.03153499960899353, -0.06154121458530426, -0.014258118346333504, 0.01082252524793148, -0.02401779778301716, -0.02722439542412758, 0.02589135617017746, -0.024811236187815666, -0.025630684569478035, -0.01883397437632084, -0.029992876574397087, 0.010066373273730278, 0.07284706085920334, -0.005123900715261698, -0.03292733058333397, -0.029310103505849838, 0.02452986128628254, 0.03204914182424545, 0.025600263848900795, -0.029019130393862724, 0.01748790219426155, 0.062083836644887924, 0.02532857656478882, -0.036447495222091675, 0.05208631604909897, 0.013377424329519272, -0.02577224001288414, -0.02683975361287594, 0.021024497225880623, 0.009386086836457253, -0.050557930022478104, 0.044682685285806656, 0.01309267058968544, 0.0031505681108683348, -0.05490974709391594, -0.04487558454275131, 0.04036712273955345, -0.009474468417465687, -0.01055521983653307, 0.027595611289143562, 0.014515863731503487, -0.026065776124596596, 0.042916782200336456, -0.022211574018001556, 0.00004362464460427873, -0.042918793857097626, -0.014590772800147533, -0.0053068166598677635, -0.029046397656202316, 0.014401759020984173, 0.043727174401283264, -0.002505580196157098, 0.07231418043375015, -0.023386169224977493, 0.011231881566345692, -0.057187288999557495, -0.03880874812602997, 0.009630118496716022, 0.0663280263543129, 0.06358034908771515, 0.0396314300596714, 0.006840404588729143, -0.044393278658390045, 0.03496189042925835, 0.07493170350790024, 0.04521685838699341, 0.0019073591101914644, -0.03594401478767395, -0.018154647201299667, 0.04732410982251167, 0.05292034149169922, -0.049741704016923904, -0.02510397881269455, 0.00468400726094842, 0.037751153111457825, -0.012045498937368393, 0.007574522867798805, -0.02973359264433384, 0.03534478694200516, -0.058501411229372025, -0.050038814544677734, 0.0409962460398674, 0.04175557941198349, 0.007111061830073595, 0.03051467426121235, 0.024072572588920593, 0.014340417459607124, 0.041373975574970245, 0.022382043302059174, 0.016973285004496574, -0.055728305131196976, 0.01912163943052292, -0.0050095063634216785, 0.05037200078368187, -0.04635652154684067, 0.039527181535959244, -0.012892943806946278, -0.0010308553464710712, 0.03704474866390228, -0.0275795366615057, 0.04983135685324669, 0.04811158776283264, 0.018398571759462357, -0.037008874118328094, 0.02172209322452545, -0.011357820592820644, 0.02978971228003502, 0.022128550335764885, 0.0022645413409918547, 0.08318968862295151, 0.010322325862944126, 0.04607329145073891, 0.09698563069105148, 0.03207444027066231, 0.026360103860497475, 0.012498556636273861, 0.042759090662002563, 0.0201104823499918, -0.022091127932071686, 0.0608261302113533, -0.052982229739427567, 0.04054666683077812, -0.049264147877693176, 0.007046753540635109, -0.02046593837440014, -0.025090426206588745, 0.052331387996673584, 0.03359498828649521, -0.034267935901880264, 0.004422989208251238, 0.0066472613252699375, -0.01622025854885578, 0.0390116423368454, -0.015519465319812298, 0.008227533660829067, -0.008043338544666767, -0.042312540113925934, -0.0009233169257640839, -0.07615239173173904, -0.032824981957674026, -0.007184214424341917, -0.02888709492981434, -0.021229764446616173, -0.09508442133665085, -0.02488929033279419, -0.05989999324083328, -0.008797956630587578, 0.02836129069328308, 0.01038252655416727, -0.023446569219231606, -0.02934383600950241, 0.01988036558032036, -0.05169694870710373, -0.041219521313905716, -0.037968479096889496, -0.06520014256238937, -0.04178004339337349, -0.07670868188142776, 0.04196948930621147, 0.047447122633457184, 0.012257424183189869, -0.0039419676177203655, 0.011378861963748932, 0.016077715903520584, -0.023923436179757118, 0.017360486090183258, 0.06199361011385918, -0.03934084251523018, -0.06783083081245422, 0.0077500129118561745, -0.002394987503066659, 0.0056405747309327126, 0.029667742550373077, -0.04399998486042023, 0.09540064632892609, 0.0856265276670456, 0.008819716051220894, 0.035701002925634384, -0.004045434296131134, -0.05703815817832947, -0.04748542979359627, -0.03586309775710106, -0.05132757127285004, -0.022004898637533188, -0.04417179897427559, -0.06164522469043732, -0.030898217111825943, -0.03911999985575676, -0.004892419558018446, 0.0028212901670485735, 0.02111254446208477, 0.01300844457000494, 0.0349179208278656, 0.01889498345553875, 0.03180967643857002, -0.022318676114082336, -0.0465596467256546, 0.055497217923402786, -0.012822768650949001, 0.018287453800439835, -0.08818981051445007, 0.0027366357389837503, 0.029946448281407356, -0.0020284068305045366, 0.02002379298210144, -0.024073563516139984, 0.06589040905237198, 0.004030166193842888, 0.006379945669323206, 0.006950222421437502, -0.008702341467142105, 0.0015506288036704063, -0.011059877462685108, -0.013609828427433968, 0.006489679682999849, -0.03508303686976433, -0.02489073947072029, -0.01980551704764366, 0.03841600567102432, -0.04803488403558731, -0.046481505036354065, -0.02746734395623207, 0.044275205582380295, 0.05369903892278671, -0.008801119402050972, -0.05211091786623001, -0.012965193018317223, -0.05447034537792206, -0.010243264026939869, 0.013640107586979866, 0.001607420388609171, 0.007514274679124355, 0.02708103135228157, 0.01765548624098301, -0.01265927217900753, 0.005175028927624226, 0.05820906162261963, 0.07376288622617722, 0.0133111122995615, -0.08199108392000198, -0.0012904655886813998, -0.013724032789468765, 0.01611444726586342, -0.01896865852177143, -0.025536667555570602, -0.02333162911236286, -0.10936032235622406, -0.027461128309369087, -0.0013473383150994778, 0.003734112251549959, -0.019387517124414444, 0.03967767581343651, -0.006013238802552223, -0.0107211172580719, 0.0006233248859643936, 0.013826769776642323, 0.0449339784681797, -0.01984972506761551, 0.03879121318459511, -0.01655587926506996, 0.0075902570970356464, -0.054339732974767685, 0.03771538659930229, -0.037078142166137695, -0.04359686002135277, 0.008872946724295616, 0.062239643186330795, -0.007100190035998821, 0.07137171924114227, 0.06927613914012909, 0.04864507168531418, -0.05616186186671257, 0.020868239924311638, 0.07886721193790436, -0.026160800829529762, -0.03741030767560005, -0.004811030346900225, -0.005014389753341675, -0.02153843082487583, 0.020767638459801674, -0.022547144442796707, 0.055580634623765945, 0.03499753028154373, 0.00871309544891119, -0.010250176303088665, -0.017025301232933998, -0.005177412182092667, -0.022887302562594414, -0.05602973327040672, -0.034128639847040176, -0.0018567016813904047, -0.03342930227518082, 0.02300555817782879, 0.025890644639730453, 0.033801205456256866, 0.06139761209487915, 0.012898457236588001, -0.04979333654046059, -0.004220953676849604, 0.01623617298901081, 0.021207381039857864, -0.030984928831458092, -0.07168850302696228, -0.04877353459596634, 0.03418276086449623, 0.049294743686914444, -0.021342840045690536, -0.06881975382566452, 0.025482548400759697, 0.04753567650914192, -0.04186373949050903, 0.05238950625061989, -0.02119312807917595, 0.05448871850967407, 0.04865502193570137, -0.01230517029762268, 0.0382915660738945, -0.015530267730355263, -0.006567360833287239, 0.0015763971023261547, 0.041258130222558975, -0.01161525771021843, -0.025366730988025665, -0.05249326303601265, 0.023567013442516327, 0.04364871233701706, 0.035158440470695496, 0.0398918054997921, -0.040695831179618835, -0.027393074706196785, 0.02463749796152115, 0.02407871186733246, -0.047114185988903046, -0.015725543722510338, 0.043790146708488464, 0.0384044386446476, -0.04135100916028023, -0.027762971818447113, -0.028907667845487595, 0.007990950718522072, 0.032053686678409576, 0.0016264742007479072, -0.02443022094666958, -0.03061734139919281, 0.047295670956373215, -0.027821315452456474, -0.03601916879415512, -0.0744476467370987, 0.027120264247059822, -0.006095935124903917, -0.03582531958818436, 0.05040046572685242, 0.023040039464831352, 0.02731853537261486, 0.0719333067536354, 0.014194309711456299, 0.006208374164998531, -0.04374764859676361, 0.0490434356033802, -0.018890969455242157, -0.011657719500362873, -0.0015787739539518952, -0.04105699434876442, -0.025134947150945663, -0.012160505168139935, -0.04936983063817024, -0.030840272083878517, -0.021515099331736565, 0.023750316351652145, -0.004135853610932827, -0.00793470535427332, -0.002505366923287511, 0.039598725736141205, -0.004232341889292002, -0.03585584834218025, -0.03813505545258522, -0.015851538628339767, -0.06220589950680733, -0.05499448627233505, -0.0038866805844008923, 0.014882744289934635, 0.03337070718407631, 0.035569798201322556, 0.019400866702198982, 0.014309026300907135, 0.00776950316503644, -0.02046588622033596, 0.015222562476992607, 0.020038587972521782, -0.04863046854734421, -0.02594107575714588, 0.035069968551397324, 0.0133336391299963, 0.028732895851135254, -0.029564835131168365, 0.04633219540119171, 0.01158743817359209, -0.014337508007884026, -0.035204507410526276, 0.020787224173545837, 0.03595604747533798, -0.07726293802261353, -0.05555016174912453, -0.013580127619206905, -0.027624431997537613, 0.03217116370797157, -0.020516883581876755, -0.0012866455363109708, 0.028305307030677795, 0.005671926308423281, 0.03627123683691025, -0.0273897647857666, -0.020586388185620308, 0.03603953495621681, -0.005050080828368664, 0.03712180629372597, -0.038995422422885895, 0.055491119623184204, -0.03188440948724747, 0.01475940179079771, -0.0204786267131567, -0.0038836179301142693, -0.05035395547747612, 0.028849421069025993, -0.01246572658419609, -0.023186732083559036, -0.0011553862132132053, 0.03150311857461929, -0.008128493092954159, 0.0158114954829216, -0.018518157303333282, 0.02041579596698284, -0.03439529612660408, 0.07349138706922531, -0.03940972685813904, 0.021772729232907295, -0.052655670791864395, 0.023207802325487137, -0.007198857143521309, 0.015698213130235672, -0.0030967644415795803, -0.019833939149975777, 0.04835986718535423, 0.03833150491118431, 0.03143799677491188, 0.040024496614933014, -0.003878236748278141, -0.008516412228345871, -0.0022629988379776478, -0.06267974525690079, -0.01843382976949215, 0.01079803891479969, 0.02497108280658722, -0.013784532435238361, 0.048911202698946, 0.02717568539083004, -0.060972731560468674, -0.07778540998697281, 0.026303909718990326, 0.026232441887259483, 0.010301271453499794, 0.020417289808392525, 0.027366263791918755, 0.02244766801595688, 0.03859192132949829, -0.009915710426867008, -0.0251862071454525, -0.00998508557677269, -0.06070032715797424, 0.021220585331320763, -0.005936164874583483, 0.01570979692041874, 0.02995499037206173, -0.04810267314314842, -0.03499318286776543, 0.04113292321562767, 0.02823641337454319, 0.010194025933742523, -0.006698600482195616, -0.06008036062121391, 0.020439807325601578, -0.005281075369566679, -0.041375160217285156, 0.023002756759524345, -0.0036891198251396418, -0.02158256620168686, 0.054862312972545624, 0.004028289578855038, -0.00009563222556607798, 0.04928511753678322, 0.002977999160066247, -0.022163953632116318, 0.06197822466492653, -0.04127826169133186, -0.0045972042717039585, 0.04946481063961983, -0.06600377708673477, -0.008948251605033875, -0.06147945299744606, 0.06989052891731262, -0.07159734517335892, 0.035887282341718674, 0.06509289890527725, -0.012635310180485249, 0.028877565637230873, -0.06196892634034157, -0.06155208870768547, 0.012535549700260162, -0.03370679169893265, 0.05725052207708359, 0.015539800748229027, -0.05787631496787071, 0.05785813182592392, 0.0230243057012558, -0.050725728273391724, 0.02239387296140194, 0.039688847959041595, 0.037469469010829926, 0.019619934260845184, 0.040728405117988586, -0.04314568638801575, -0.028380190953612328, -0.04679133743047714, 0.011647064238786697, -0.0608067661523819, -0.0132898623123765, 0.00824656430631876, -0.017817238345742226, -0.006056333426386118, 0.029438195750117302, -0.02124880626797676, -0.01762823574244976, 0.04238763824105263, -0.0480964370071888, -0.04605112597346306, -0.006498311180621386, -0.0030550872907042503, -0.0504329651594162, -0.013598434627056122, -0.029706578701734543, -0.004366202745586634, 0.011052657850086689, 0.004735839553177357, -0.019335700199007988, -0.025470081716775894, 0.018253246322274208, -0.039730582386255264, -0.03579409420490265, 0.05325787886977196, -0.01629582978785038, -0.0216277614235878, 0.032559458166360855, 0.02577359415590763, 0.0014253526460379362, 0.026799237355589867, -0.01470677275210619, 0.03224882110953331, -0.05699344724416733, -0.029196059331297874, 0.025973664596676826, 0.003875784808769822, 0.017510097473859787, 0.010036892257630825, 0.020565403625369072, 0.05667799711227417, 0.027769645676016808, 0.008669504895806313, -0.038498103618621826, -0.03951296955347061, 0.0232393741607666, -0.04378516972064972, 0.018084624782204628, 0.0014336570166051388, -0.046513281762599945, -0.02008456364274025, -0.000472904066555202, -0.03257838264107704, 0.04768490418791771, -0.056465715169906616, -0.0072582317516207695, 0.051222894340753555, -0.03071989305317402, -0.05815735459327698, -0.08681073039770126, -0.018638500943779945, -0.04739929363131523, 0.004457079339772463, 0.04627566039562225, -0.036938752979040146, 0.03887251392006874, -0.04943186044692993, -0.03421390801668167, 0.03290554881095886, 0.05321131646633148, -0.05963509902358055, 0.05825788155198097, 0.05217745527625084, -0.06595275551080704, 0.009482321329414845, 0.006873453967273235, -0.04780779406428337, -0.027699267491698265, 0.028805717825889587, 0.0002573327219579369, 0.02659117802977562, 0.029630426317453384, -0.05207264795899391, -0.022451216354966164, -0.07128124684095383, -0.029787689447402954, -0.07215830683708191, 0.007012471091002226, 0.049329306930303574 ]
Declan/NewYorkPost_model_v1
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-5 results: [] --- <!-- 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__hate_speech_offensive__train-16-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.9907 - Accuracy: 0.49 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0941 | 1.0 | 10 | 1.1287 | 0.2 | | 1.0481 | 2.0 | 20 | 1.1136 | 0.2 | | 0.9498 | 3.0 | 30 | 1.1200 | 0.2 | | 0.8157 | 4.0 | 40 | 1.0771 | 0.2 | | 0.65 | 5.0 | 50 | 0.9733 | 0.4 | | 0.5021 | 6.0 | 60 | 1.0626 | 0.4 | | 0.3358 | 7.0 | 70 | 1.0787 | 0.4 | | 0.2017 | 8.0 | 80 | 1.3183 | 0.4 | | 0.088 | 9.0 | 90 | 1.2204 | 0.5 | | 0.0527 | 10.0 | 100 | 1.6892 | 0.4 | | 0.0337 | 11.0 | 110 | 1.6967 | 0.5 | | 0.0238 | 12.0 | 120 | 1.5436 | 0.5 | | 0.0183 | 13.0 | 130 | 1.7447 | 0.4 | | 0.0159 | 14.0 | 140 | 1.8999 | 0.4 | | 0.014 | 15.0 | 150 | 1.9004 | 0.4 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008627600967884064, 0.029424477368593216, -0.03541348874568939, 0.0518316850066185, 0.04733073711395264, 0.028888387605547905, -0.013798398897051811, -0.01928146369755268, -0.05549408867955208, 0.06077813729643822, 0.015241573564708233, -0.031717512756586075, 0.020847799256443977, 0.03821651637554169, -0.03373012691736221, -0.03681296110153198, -0.021250639110803604, -0.011936293914914131, -0.04245566204190254, 0.0030254428274929523, 0.002263440750539303, -0.013373332098126411, -0.016271688044071198, 0.015816515311598778, -0.014128828421235085, 0.03818425536155701, -0.01205233670771122, 0.022242721170186996, 0.025143491104245186, -0.0562138557434082, 0.011690021492540836, -0.025349682196974754, -0.03806150332093239, 0.00394037552177906, -0.027447259053587914, -0.005192202050238848, 0.0033110540825873613, 0.02231702208518982, 0.0409998893737793, 0.037657324224710464, 0.013316605240106583, 0.004808700643479824, -0.008719423785805702, -0.017521560192108154, 0.05946826934814453, -0.008402545936405659, -0.04599246382713318, -0.010914216749370098, 0.024191124364733696, -0.04212496057152748, -0.06256160140037537, -0.05127871036529541, -0.01817256398499012, 0.02868085354566574, -0.01165457908064127, -0.01432409230619669, -0.058953169733285904, 0.01870201900601387, 0.06281948834657669, -0.040664106607437134, -0.03058645874261856, 0.0007012681453488767, -0.062935009598732, -0.003550369990989566, 0.02387036196887493, -0.028141288086771965, 0.00227037793956697, -0.04518955200910568, 0.017948858439922333, -0.01861959882080555, 0.05375794321298599, -0.020206494256854057, 0.028147581964731216, -0.06982959061861038, -0.022916316986083984, -0.02039405144751072, 0.05755322426557541, 0.06975945830345154, -0.02795279398560524, 0.06005149334669113, 0.023574411869049072, 0.017302727326750755, 0.03380575031042099, -0.02635759674012661, 0.025948164984583855, 0.028423815965652466, -0.05628586187958717, 0.005176561418920755, 0.005960544105619192, 0.036982517689466476, -0.0318356528878212, -0.03776418790221214, -0.011893507093191147, -0.03116009198129177, -0.013895020820200443, 0.0153507050126791, 0.008378452621400356, 0.0033372400794178247, 0.0489930622279644, 0.022396517917513847, 0.04239239543676376, 0.03705264627933502, -0.03616774082183838, 0.056868258863687515, -0.019506910815835, 0.007095549255609512, -0.0007459655753336847, -0.022926071658730507, -0.04275137186050415, 0.020792517811059952, 0.029085690155625343, -0.017391562461853027, -0.03707205876708031, 0.038589753210544586, 0.0017140310956165195, 0.016468442976474762, 0.06425969302654266, -0.030346067622303963, -0.040506087243556976, -0.022845633327960968, 0.006856636144220829, 0.006536890286952257, -0.0019425747450441122, 0.011658999137580395, -0.06671711802482605, -0.014362107962369919, -0.031570471823215485, -0.04509635642170906, -0.029118334874510765, 0.03044644370675087, 0.012479756958782673, 0.06812987476587296, 0.02601928822696209, -0.06169687956571579, -0.002808663994073868, 0.021251419559121132, -0.05493439733982086, 0.041710417717695236, 0.026071589440107346, 0.1081559881567955, -0.0626644715666771, -0.06454864889383316, -0.004833573941141367, -0.017681768164038658, -0.04379381239414215, 0.015728941187262535, 0.011472801677882671, -0.010603994131088257, -0.00928109884262085, 0.0003104607167188078, 0.05145738273859024, -0.0425589419901371, -0.020088404417037964, 0.06698863953351974, -0.00964486226439476, 0.03264166787266731, -0.06024618446826935, -0.013508818112313747, 0.010409313254058361, -0.025434881448745728, -0.027031920850276947, 0.02717605046927929, -0.024877415969967842, -0.026108495891094208, -0.01997528038918972, -0.03029162809252739, 0.011287910863757133, 0.07222254574298859, -0.00378250889480114, -0.03309294581413269, -0.02952953800559044, 0.023418385535478592, 0.03240349143743515, 0.02604331262409687, -0.028855735436081886, 0.017984740436077118, 0.06277014315128326, 0.024884836748242378, -0.035962752997875214, 0.05308685451745987, 0.012821663171052933, -0.026157544925808907, -0.026650866493582726, 0.02156194858253002, 0.009598071686923504, -0.051291078329086304, 0.04567992314696312, 0.014624128118157387, 0.0033842192497104406, -0.054703544825315475, -0.04439900070428848, 0.04085766151547432, -0.010442283004522324, -0.009314511902630329, 0.02659480832517147, 0.014860004186630249, -0.025536498054862022, 0.04297808185219765, -0.02193216048181057, 0.0009283365216106176, -0.042888838797807693, -0.014579921960830688, -0.005729820113629103, -0.02878575772047043, 0.01446727104485035, 0.04372499883174896, -0.0024009053595364094, 0.07354319840669632, -0.024432338774204254, 0.011466548778116703, -0.05790321156382561, -0.03823227435350418, 0.009602288715541363, 0.06616052240133286, 0.062098775058984756, 0.0399211160838604, 0.006270106881856918, -0.04454795643687248, 0.035701487213373184, 0.07495155185461044, 0.04620785638689995, 0.0007594850612804294, -0.03555842489004135, -0.01755685731768608, 0.04765176773071289, 0.052256710827350616, -0.04955080524086952, -0.024535302072763443, 0.004051783587783575, 0.03826162591576576, -0.011890781112015247, 0.007573588285595179, -0.028778618201613426, 0.0347672663629055, -0.057897914201021194, -0.04888734221458435, 0.04053470492362976, 0.0406460203230381, 0.008183500729501247, 0.029911601915955544, 0.02313828468322754, 0.014546246267855167, 0.041137415915727615, 0.02209591493010521, 0.016098644584417343, -0.056693729013204575, 0.018620263785123825, -0.003078441834077239, 0.04937437176704407, -0.047030676156282425, 0.03931696340441704, -0.014005346223711967, -0.0004996395437046885, 0.037631381303071976, -0.027197005227208138, 0.04879969358444214, 0.047089096158742905, 0.01726880483329296, -0.037144824862480164, 0.021311108022928238, -0.01091654784977436, 0.029592683538794518, 0.022170910611748695, 0.002008788986131549, 0.08292724192142487, 0.010495685040950775, 0.045355066657066345, 0.09779578447341919, 0.03300851583480835, 0.026004387065768242, 0.011919776909053326, 0.04321448132395744, 0.020748144015669823, -0.021246938034892082, 0.061258453875780106, -0.053948402404785156, 0.039728254079818726, -0.05017438530921936, 0.008060113526880741, -0.021390993148088455, -0.02513917163014412, 0.05165205895900726, 0.033282261341810226, -0.034120120108127594, 0.003272142494097352, 0.006409275811165571, -0.015882059931755066, 0.039009299129247665, -0.014826647937297821, 0.008413750678300858, -0.007433719467371702, -0.04261161759495735, -0.0010591126047074795, -0.07635588198900223, -0.03287362679839134, -0.0071907080709934235, -0.02807258442044258, -0.020586464554071426, -0.09528042376041412, -0.025155458599328995, -0.05964447557926178, -0.009049976244568825, 0.02867681346833706, 0.010276742279529572, -0.0233567226678133, -0.02976820059120655, 0.01914863847196102, -0.051973480731248856, -0.04173622280359268, -0.03896312415599823, -0.06416048109531403, -0.041618622839450836, -0.07651161402463913, 0.04288965463638306, 0.04740963503718376, 0.012396622449159622, -0.004808235913515091, 0.012694047763943672, 0.016010146588087082, -0.024340203031897545, 0.017553355544805527, 0.05993650481104851, -0.04049106314778328, -0.06883521378040314, 0.007607152219861746, -0.0015627604443579912, 0.005933183245360851, 0.03113476000726223, -0.042678747326135635, 0.09459302574396133, 0.08667688816785812, 0.009025557897984982, 0.03665094077587128, -0.002459034090861678, -0.05639547482132912, -0.04733806848526001, -0.035368166863918304, -0.05066240578889847, -0.02162068337202072, -0.04424217343330383, -0.06125020608305931, -0.03084184043109417, -0.03969408571720123, -0.0043877470307052135, 0.0025724750012159348, 0.021145367994904518, 0.013453985564410686, 0.035761866718530655, 0.018885673955082893, 0.03309067338705063, -0.021682215854525566, -0.04606131836771965, 0.05563654750585556, -0.011699504218995571, 0.01764964871108532, -0.08860751241445541, 0.0021299817599356174, 0.029592914506793022, -0.0011703998316079378, 0.020731600001454353, -0.02447841688990593, 0.06565813720226288, 0.0038647144101560116, 0.0054529276676476, 0.006107032764703035, -0.00873372983187437, 0.0017487312434241176, -0.011273656040430069, -0.015229694545269012, 0.006383269559592009, -0.03530186042189598, -0.026136955246329308, -0.019590849056839943, 0.038575537502765656, -0.04821474105119705, -0.0471152700483799, -0.027979718521237373, 0.04391664266586304, 0.053062718361616135, -0.00948812160640955, -0.05228124186396599, -0.013918564654886723, -0.054959170520305634, -0.009265454486012459, 0.013718179427087307, 0.0017966445302590728, 0.006917377933859825, 0.02663448266685009, 0.016987746581435204, -0.011694978922605515, 0.005025016143918037, 0.057164087891578674, 0.07258698344230652, 0.013978728093206882, -0.08152167499065399, -0.0004546981072053313, -0.014854637905955315, 0.015573656186461449, -0.01839795522391796, -0.0256634633988142, -0.023305412381887436, -0.10842966288328171, -0.028154024854302406, -0.00044724749750457704, 0.0028143555391579866, -0.01922033354640007, 0.03927113115787506, -0.005502146203070879, -0.01125665195286274, -0.00045473422505892813, 0.014061921276152134, 0.04551917314529419, -0.020017124712467194, 0.03997088596224785, -0.016778605058789253, 0.008858077228069305, -0.05415244773030281, 0.03805985674262047, -0.03696618601679802, -0.04253029078245163, 0.008627458475530148, 0.06185169517993927, -0.007103508338332176, 0.07203076779842377, 0.06951075047254562, 0.048784613609313965, -0.05633626878261566, 0.0210754182189703, 0.08040520548820496, -0.02549469657242298, -0.037440549582242966, -0.0036889133043587208, -0.0060574086382985115, -0.02203208953142166, 0.021007800474762917, -0.024238882586359978, 0.05553387477993965, 0.034968625754117966, 0.007410822436213493, -0.009679785929620266, -0.01649405062198639, -0.004318165127187967, -0.022839082404971123, -0.056738194078207016, -0.03440079838037491, -0.002028269460424781, -0.033647459000349045, 0.02449759654700756, 0.024038905277848244, 0.03292998671531677, 0.061396315693855286, 0.012110913172364235, -0.050103895366191864, -0.004520513117313385, 0.015580841340124607, 0.020836511626839638, -0.031015682965517044, -0.07193073630332947, -0.048975564539432526, 0.03336670622229576, 0.05021573230624199, -0.021335192024707794, -0.06926118582487106, 0.024710791185498238, 0.04826587811112404, -0.04226744547486305, 0.05232851579785347, -0.022118227556347847, 0.05430685356259346, 0.04786903038620949, -0.011990497820079327, 0.038465466350317, -0.015606616623699665, -0.0065492200665175915, 0.001792958821170032, 0.0409456267952919, -0.01246512308716774, -0.024871809408068657, -0.051772553473711014, 0.023759454488754272, 0.04328761249780655, 0.03359531983733177, 0.03986016660928726, -0.04006863012909889, -0.028297536075115204, 0.02551923505961895, 0.023506565019488335, -0.047534551471471786, -0.015990862622857094, 0.04473903402686119, 0.038800716400146484, -0.04041125997900963, -0.027753399685025215, -0.028773851692676544, 0.008412555791437626, 0.03226233273744583, 0.0030782753601670265, -0.025105541571974754, -0.03051343560218811, 0.0476011261343956, -0.028007591143250465, -0.03604031354188919, -0.07440026849508286, 0.026788825169205666, -0.006418386474251747, -0.03551024943590164, 0.05072380229830742, 0.022728491574525833, 0.026685187593102455, 0.07166293263435364, 0.013796534389257431, 0.005122958682477474, -0.04422112926840782, 0.04887979105114937, -0.017378879711031914, -0.011194207705557346, -0.0022636116482317448, -0.041231244802474976, -0.024791063740849495, -0.01118209958076477, -0.049543146044015884, -0.03136252611875534, -0.020679811015725136, 0.02405499294400215, -0.005187255796045065, -0.007329407148063183, -0.0027280093636363745, 0.040529754012823105, -0.004654401447623968, -0.036832816898822784, -0.038825999945402145, -0.015228375792503357, -0.06378937512636185, -0.05445956811308861, -0.003751813666895032, 0.014748679473996162, 0.0351029671728611, 0.0356186144053936, 0.019057530909776688, 0.01485153753310442, 0.007397780194878578, -0.020796632394194603, 0.01577148586511612, 0.019422506913542747, -0.049300968647003174, -0.02578839100897312, 0.03436597064137459, 0.013859405182301998, 0.029439235106110573, -0.029807712882757187, 0.04691287875175476, 0.011305928230285645, -0.01468953862786293, -0.03584975749254227, 0.020290136337280273, 0.035339102149009705, -0.07657933235168457, -0.05665101110935211, -0.014164512045681477, -0.027316229417920113, 0.032229598611593246, -0.021854540333151817, -0.001669340650551021, 0.027944976463913918, 0.006043124012649059, 0.03566204756498337, -0.02944604866206646, -0.02017180249094963, 0.03613473102450371, -0.0046367887407541275, 0.03671955317258835, -0.03854009136557579, 0.055733997374773026, -0.031093081459403038, 0.015158578753471375, -0.02113303914666176, -0.0040629166178405285, -0.050519589334726334, 0.030349712818861008, -0.01298708189278841, -0.02434193156659603, -0.0017618482233956456, 0.03245294466614723, -0.007072052452713251, 0.015489800833165646, -0.019350018352270126, 0.02114827372133732, -0.03468802571296692, 0.07349450141191483, -0.039648011326789856, 0.02184804156422615, -0.052428726106882095, 0.023736298084259033, -0.006749826483428478, 0.01503278873860836, -0.0033041920978575945, -0.02100163698196411, 0.04837469384074211, 0.038137659430503845, 0.031155938282608986, 0.04035203158855438, -0.003996763378381729, -0.00769900344312191, -0.0024549521040171385, -0.06269539892673492, -0.018889624625444412, 0.01142839528620243, 0.025441624224185944, -0.014852524735033512, 0.048618461936712265, 0.02653062716126442, -0.06077302619814873, -0.07793902605772018, 0.02607693336904049, 0.02609124220907688, 0.00992379616945982, 0.020012106746435165, 0.028073418885469437, 0.023046473041176796, 0.038293275982141495, -0.010296320542693138, -0.0246086735278368, -0.008245146833360195, -0.059947311878204346, 0.02177063748240471, -0.004383026622235775, 0.01726718246936798, 0.02987521141767502, -0.04786819592118263, -0.034898266196250916, 0.04140675440430641, 0.027378268539905548, 0.009585975669324398, -0.006208511535078287, -0.061542436480522156, 0.020770367234945297, -0.004937839228659868, -0.04162362590432167, 0.022883540019392967, -0.003840204095467925, -0.02160276286303997, 0.054649922996759415, 0.004036768805235624, -0.00017680310702417046, 0.050294429063797, 0.00328896869905293, -0.021850621327757835, 0.062194183468818665, -0.04108508303761482, -0.005006755236536264, 0.04819107428193092, -0.06531626731157303, -0.008074137382209301, -0.06078079715371132, 0.06970369070768356, -0.0714072659611702, 0.03494825214147568, 0.06573495268821716, -0.010936839506030083, 0.02814421057701111, -0.06173859164118767, -0.061813682317733765, 0.01125070545822382, -0.034101489931344986, 0.0571935698390007, 0.016236526891589165, -0.05879174545407295, 0.05707056447863579, 0.023162594065070152, -0.050643257796764374, 0.021949654445052147, 0.041196152567863464, 0.03733419254422188, 0.01973211020231247, 0.04123344272375107, -0.043690189719200134, -0.027101878076791763, -0.0457996167242527, 0.010188817977905273, -0.060573481023311615, -0.012011575512588024, 0.009616168215870857, -0.018453946337103844, -0.006401693914085627, 0.029729804024100304, -0.022094691172242165, -0.017276879400014877, 0.04346007481217384, -0.048201411962509155, -0.045080989599227905, -0.006264669820666313, -0.0034202239476144314, -0.049803633242845535, -0.01325366273522377, -0.02997661754488945, -0.002966779749840498, 0.010872513987123966, 0.0033271180000156164, -0.019590944051742554, -0.025038644671440125, 0.01785505935549736, -0.03996897488832474, -0.036415837705135345, 0.05272211506962776, -0.016363296657800674, -0.022856244817376137, 0.03286317363381386, 0.025901062414050102, -0.00018368040036875755, 0.02736285887658596, -0.014844449236989021, 0.033732347190380096, -0.057400744408369064, -0.027868296951055527, 0.02578766830265522, 0.004293670412153006, 0.017674872651696205, 0.010059400461614132, 0.02115744911134243, 0.055668096989393234, 0.027271637693047523, 0.00834052637219429, -0.03841200843453407, -0.03843489661812782, 0.023693978786468506, -0.042984772473573685, 0.019045453518629074, 0.0011452382896095514, -0.047485895454883575, -0.01916150376200676, -0.0020612208172678947, -0.03190331906080246, 0.04820441082119942, -0.05692053213715553, -0.007439626380801201, 0.05189799517393112, -0.02993079088628292, -0.05683572217822075, -0.08641399443149567, -0.018101312220096588, -0.048753771930933, 0.004775021690875292, 0.04682651534676552, -0.03811502084136009, 0.03780918940901756, -0.04920627176761627, -0.03547711297869682, 0.031999509781599045, 0.05374377965927124, -0.05816526338458061, 0.059003714472055435, 0.051227789372205734, -0.06502088159322739, 0.009621444158256054, 0.007186957634985447, -0.04821024462580681, -0.027550403028726578, 0.028850050643086433, -0.0005273550632409751, 0.025855636224150658, 0.029628649353981018, -0.05203022435307503, -0.022909224033355713, -0.07045400142669678, -0.02994121052324772, -0.07104736566543579, 0.007093135733157396, 0.04993411526083946 ]
Declan/NewYorkTimes_model_v1
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-6 results: [] --- <!-- 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__hate_speech_offensive__train-16-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8331 - Accuracy: 0.625 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0881 | 1.0 | 10 | 1.1248 | 0.1 | | 1.0586 | 2.0 | 20 | 1.1162 | 0.2 | | 0.9834 | 3.0 | 30 | 1.1199 | 0.3 | | 0.9271 | 4.0 | 40 | 1.0740 | 0.3 | | 0.7663 | 5.0 | 50 | 1.0183 | 0.5 | | 0.6042 | 6.0 | 60 | 1.0259 | 0.5 | | 0.4482 | 7.0 | 70 | 0.8699 | 0.7 | | 0.3072 | 8.0 | 80 | 1.0615 | 0.5 | | 0.1458 | 9.0 | 90 | 1.0164 | 0.5 | | 0.0838 | 10.0 | 100 | 1.0620 | 0.5 | | 0.055 | 11.0 | 110 | 1.1829 | 0.5 | | 0.0347 | 12.0 | 120 | 1.2815 | 0.4 | | 0.0244 | 13.0 | 130 | 1.2607 | 0.6 | | 0.0213 | 14.0 | 140 | 1.3695 | 0.5 | | 0.0169 | 15.0 | 150 | 1.4397 | 0.5 | | 0.0141 | 16.0 | 160 | 1.4388 | 0.6 | | 0.0122 | 17.0 | 170 | 1.4242 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009408966638147831, 0.03023962862789631, -0.03611430525779724, 0.05190439894795418, 0.04768834635615349, 0.02854427695274353, -0.012690920382738113, -0.019730864092707634, -0.055389177054166794, 0.060449495911598206, 0.014660520479083061, -0.03178326413035393, 0.021758444607257843, 0.03772658854722977, -0.033601630479097366, -0.036566562950611115, -0.020619988441467285, -0.01112563256174326, -0.04233987256884575, 0.004143574740737677, 0.002123393351212144, -0.013914244249463081, -0.015759563073515892, 0.014550560154020786, -0.014588410966098309, 0.03767375648021698, -0.012376314029097557, 0.021856307983398438, 0.025295639410614967, -0.056494250893592834, 0.012023286893963814, -0.02510947175323963, -0.03779158741235733, 0.00422494625672698, -0.027226410806179047, -0.004982836544513702, 0.0032770736142992973, 0.022768937051296234, 0.041307032108306885, 0.03783909231424332, 0.013019802048802376, 0.004498994909226894, -0.0073055122047662735, -0.018125588074326515, 0.059050071984529495, -0.008678555488586426, -0.04575783759355545, -0.010868038050830364, 0.02382276952266693, -0.042192842811346054, -0.06261792778968811, -0.0509234294295311, -0.017674120143055916, 0.027934249490499496, -0.010843454860150814, -0.013605624437332153, -0.0579574815928936, 0.018351787701249123, 0.0629236027598381, -0.039976172149181366, -0.029316887259483337, 0.0008858948131091893, -0.06205328553915024, -0.003358956892043352, 0.024364110082387924, -0.02766532264649868, 0.003037877846509218, -0.04589872434735298, 0.017428357154130936, -0.0192195326089859, 0.053855955600738525, -0.020679064095020294, 0.027678662911057472, -0.07060299068689346, -0.023569341748952866, -0.020663650706410408, 0.05857178196310997, 0.06958284229040146, -0.02712271362543106, 0.060324281454086304, 0.02358422800898552, 0.01843460462987423, 0.03356708213686943, -0.025760753080248833, 0.026502182707190514, 0.02889207750558853, -0.05657828599214554, 0.0052837287075817585, 0.006271054968237877, 0.03685251623392105, -0.0318332277238369, -0.03873336315155029, -0.0128658227622509, -0.031845953315496445, -0.013075527735054493, 0.01632154919207096, 0.007957994006574154, 0.003650516737252474, 0.049874842166900635, 0.02342059649527073, 0.04318881779909134, 0.035979609936475754, -0.03689964860677719, 0.05680285021662712, -0.018883956596255302, 0.00617759395390749, -0.00018910660583060235, -0.02301041968166828, -0.042357079684734344, 0.02023177593946457, 0.028955664485692978, -0.017835475504398346, -0.037327803671360016, 0.038795456290245056, 0.0006910861702635884, 0.015792720019817352, 0.06424146145582199, -0.02980385720729828, -0.04080197215080261, -0.024252397939562798, 0.006950036622583866, 0.007246776949614286, -0.0020299707539379597, 0.012750254943966866, -0.06704271584749222, -0.014671334996819496, -0.0312582328915596, -0.04475606232881546, -0.028930913656949997, 0.030453814193606377, 0.01387446466833353, 0.06928063184022903, 0.025258846580982208, -0.062119852751493454, -0.0020861460361629725, 0.022259457036852837, -0.054897669702768326, 0.04221254959702492, 0.025291671976447105, 0.1090627908706665, -0.06433536112308502, -0.0641355812549591, -0.0051224371418356895, -0.017102202400565147, -0.04340296983718872, 0.016395926475524902, 0.011499432846903801, -0.011685997247695923, -0.009979982860386372, 0.00006254153413465247, 0.051764413714408875, -0.04306289926171303, -0.02136882022023201, 0.06721848994493484, -0.009540087543427944, 0.032432787120342255, -0.061062611639499664, -0.013783218339085579, 0.01082336064428091, -0.024568645283579826, -0.028617389500141144, 0.02853734977543354, -0.025093406438827515, -0.02655540406703949, -0.0193636454641819, -0.030192390084266663, 0.00991269201040268, 0.07241448014974594, -0.004304537083953619, -0.032693348824977875, -0.029178477823734283, 0.024563239887356758, 0.03195049241185188, 0.02537512592971325, -0.02902378886938095, 0.0189479049295187, 0.06351690739393234, 0.02487524040043354, -0.03651246055960655, 0.05233466252684593, 0.011344604194164276, -0.026144709438085556, -0.027058888226747513, 0.0220323596149683, 0.008750717155635357, -0.05074687674641609, 0.04605341702699661, 0.013754429295659065, 0.0023062294349074364, -0.05524078384041786, -0.04556428641080856, 0.039773572236299515, -0.010310567915439606, -0.008579669520258904, 0.02845120057463646, 0.015078002586960793, -0.025542188435792923, 0.04257234185934067, -0.021197929978370667, 0.00012918683933094144, -0.042472563683986664, -0.015620168298482895, -0.0058164712972939014, -0.028648382052779198, 0.014876086264848709, 0.04404473677277565, -0.0026908577419817448, 0.07302795350551605, -0.023939114063978195, 0.010446805506944656, -0.05698772147297859, -0.038134537637233734, 0.010360097512602806, 0.0661533772945404, 0.06163763999938965, 0.03999320790171623, 0.006100057158619165, -0.04539046436548233, 0.035273127257823944, 0.07434730976819992, 0.045957863330841064, 0.00036076901596970856, -0.03565369173884392, -0.017405886203050613, 0.04790224879980087, 0.05195607990026474, -0.04920465126633644, -0.0242571160197258, 0.003971228841692209, 0.03845204412937164, -0.011511987075209618, 0.007742749061435461, -0.029774218797683716, 0.03454447537660599, -0.057726603001356125, -0.0488901287317276, 0.04001571238040924, 0.04162866994738579, 0.00729550514370203, 0.030182667076587677, 0.02436726912856102, 0.01331344060599804, 0.04099367558956146, 0.022654008120298386, 0.016032857820391655, -0.0568934828042984, 0.018095295876264572, -0.003758847713470459, 0.049487706273794174, -0.0472879596054554, 0.039616093039512634, -0.013338886201381683, -0.0001452441356377676, 0.037552788853645325, -0.027472615242004395, 0.049754902720451355, 0.04833223298192024, 0.01744098588824272, -0.03688143938779831, 0.02155793458223343, -0.011952954344451427, 0.030007444322109222, 0.021270735189318657, 0.002221827395260334, 0.08328359574079514, 0.01039869524538517, 0.04655807837843895, 0.09711439907550812, 0.033335112035274506, 0.026302620768547058, 0.012328751385211945, 0.04273957014083862, 0.021075230091810226, -0.020723652094602585, 0.06042644381523132, -0.053477585315704346, 0.039845291525125504, -0.050308067351579666, 0.006869366858154535, -0.02117869257926941, -0.025435542687773705, 0.05261692777276039, 0.032910872250795364, -0.03346908837556839, 0.003481860039755702, 0.007037835661321878, -0.0156868863850832, 0.03869121894240379, -0.014875282533466816, 0.0081675099208951, -0.00799075048416853, -0.04152289405465126, -0.001955863554030657, -0.0765707790851593, -0.03372076526284218, -0.007049642503261566, -0.028618955984711647, -0.020192239433526993, -0.09519775211811066, -0.024310827255249023, -0.05994346737861633, -0.00904910173267126, 0.028636595234274864, 0.009543824009597301, -0.023531846702098846, -0.03038073144853115, 0.019127728417515755, -0.05080871284008026, -0.04245544224977493, -0.03833034634590149, -0.06396661698818207, -0.04230178892612457, -0.07575958967208862, 0.042403995990753174, 0.04714994877576828, 0.011320533230900764, -0.005532617215067148, 0.013144132681190968, 0.015973087400197983, -0.02370557002723217, 0.018195444718003273, 0.06008950248360634, -0.04035308212041855, -0.06852729618549347, 0.0072109391912817955, -0.0021131422836333513, 0.0064728958532214165, 0.030577952042222023, -0.043565019965171814, 0.09539122879505157, 0.08657047897577286, 0.008344565518200397, 0.035722583532333374, -0.0035548326559364796, -0.05690675228834152, -0.04779237508773804, -0.034509774297475815, -0.05158357694745064, -0.021639607846736908, -0.043696265667676926, -0.06162010133266449, -0.03072764351963997, -0.039432089775800705, -0.004141333047300577, 0.002052953001111746, 0.021119028329849243, 0.012723098509013653, 0.03570292517542839, 0.018659677356481552, 0.032845743000507355, -0.021273044869303703, -0.04577511548995972, 0.054656289517879486, -0.012108134105801582, 0.01780831813812256, -0.0879044458270073, 0.00181683455593884, 0.029716582968831062, -0.0014819527277722955, 0.020288774743676186, -0.024501722306013107, 0.06578049808740616, 0.004264996387064457, 0.005708569195121527, 0.007149271667003632, -0.00818781740963459, 0.0011199495056644082, -0.011655316688120365, -0.01425168290734291, 0.006789377890527248, -0.03473681956529617, -0.02589176408946514, -0.01947633922100067, 0.03825758770108223, -0.04843243584036827, -0.046569451689720154, -0.02726496197283268, 0.04420512542128563, 0.053948599845170975, -0.009175876155495644, -0.052449993789196014, -0.012926178984344006, -0.05464693903923035, -0.009944766759872437, 0.013212805613875389, 0.0011899835662916303, 0.006290885619819164, 0.026805857196450233, 0.01689397543668747, -0.012001493945717812, 0.004326408263295889, 0.057131435722112656, 0.07310939580202103, 0.01366616040468216, -0.08183883130550385, -0.0013241843553259969, -0.014283575117588043, 0.016735058277845383, -0.01876951940357685, -0.024916160851716995, -0.022421812638640404, -0.1085992157459259, -0.029005417600274086, -0.0003860332362819463, 0.002388677792623639, -0.019005650654435158, 0.03841221332550049, -0.005271370988339186, -0.010906757786870003, -0.0003073604602832347, 0.014185480773448944, 0.04529080539941788, -0.019405066967010498, 0.0400739461183548, -0.017460212111473083, 0.008320048451423645, -0.05515674874186516, 0.03718523681163788, -0.03860168904066086, -0.04382887855172157, 0.008806183934211731, 0.061188604682683945, -0.008047875016927719, 0.0718328207731247, 0.06931988894939423, 0.048688579350709915, -0.056183815002441406, 0.020427264273166656, 0.07990992069244385, -0.025803523138165474, -0.03631450608372688, -0.0038866072427481413, -0.005709060002118349, -0.022020449861884117, 0.020441802218556404, -0.024349424988031387, 0.055643822997808456, 0.035155247896909714, 0.007288068532943726, -0.009152157232165337, -0.01745764911174774, -0.004103736020624638, -0.023266281932592392, -0.0574171356856823, -0.03488845378160477, -0.0022826646454632282, -0.03349336236715317, 0.024374945089221, 0.02503793314099312, 0.0318683423101902, 0.0612933449447155, 0.012306968681514263, -0.04992043972015381, -0.004259068984538317, 0.015890158712863922, 0.020550886169075966, -0.031092830002307892, -0.07169800996780396, -0.04905012995004654, 0.03344445303082466, 0.04963788762688637, -0.02113966830074787, -0.06926136463880539, 0.02438073232769966, 0.04723423719406128, -0.04213929921388626, 0.052736904472112656, -0.022401850670576096, 0.054148487746715546, 0.04867326468229294, -0.01236311998218298, 0.03853749856352806, -0.01594642922282219, -0.00699213333427906, 0.00231453450396657, 0.04101572185754776, -0.012346778996288776, -0.025642316788434982, -0.05171460285782814, 0.023996615782380104, 0.04437168315052986, 0.03379172459244728, 0.039261121302843094, -0.03976593539118767, -0.027828343212604523, 0.024423733353614807, 0.02395164594054222, -0.04662374034523964, -0.01688871532678604, 0.04385123774409294, 0.03848665952682495, -0.04085784777998924, -0.027657365426421165, -0.02932688221335411, 0.007409554440528154, 0.031630996614694595, 0.0015187424141913652, -0.025204481557011604, -0.030783001333475113, 0.04701729491353035, -0.02760527841746807, -0.03629792854189873, -0.07531203329563141, 0.02743029035627842, -0.005382288713008165, -0.035818472504615784, 0.049821097403764725, 0.023314442485570908, 0.02715431898832321, 0.07200590521097183, 0.013472416438162327, 0.005587073974311352, -0.043506599962711334, 0.04810798913240433, -0.018417196348309517, -0.011577183380723, -0.0015330614987760782, -0.0415542870759964, -0.024641312658786774, -0.010918972082436085, -0.0492677167057991, -0.031077593564987183, -0.021221347153186798, 0.024181684479117393, -0.005116102285683155, -0.0073686749674379826, -0.002870954340323806, 0.03940127417445183, -0.004634625744074583, -0.03634081408381462, -0.0392104908823967, -0.016114667057991028, -0.06310809403657913, -0.05450159311294556, -0.003897065995261073, 0.014843118377029896, 0.033768340945243835, 0.035653889179229736, 0.0196247361600399, 0.013971194624900818, 0.007717540487647057, -0.020391009747982025, 0.014919470995664597, 0.019964635372161865, -0.04923184588551521, -0.024801958352327347, 0.034826356917619705, 0.013139471411705017, 0.02877209149301052, -0.02882568910717964, 0.046226583421230316, 0.010840105824172497, -0.014683112502098083, -0.03598141670227051, 0.021185962483286858, 0.03488415479660034, -0.07609113305807114, -0.055338189005851746, -0.014424300752580166, -0.02742987871170044, 0.03275337815284729, -0.02017458714544773, -0.0012900172732770443, 0.0276511088013649, 0.005920688156038523, 0.03613486513495445, -0.027794135734438896, -0.020113162696361542, 0.03688112646341324, -0.005494144279509783, 0.03684838116168976, -0.03928443044424057, 0.055190615355968475, -0.0321245938539505, 0.016346123069524765, -0.020940514281392097, -0.004045507404953241, -0.050780151039361954, 0.030069267377257347, -0.013357709161937237, -0.023653782904148102, -0.0016264639561995864, 0.03222191706299782, -0.007652609143406153, 0.015002118423581123, -0.019142137840390205, 0.021413154900074005, -0.03508380800485611, 0.07362569123506546, -0.03880154713988304, 0.022055279463529587, -0.052535634487867355, 0.024262571707367897, -0.007834206335246563, 0.015242479741573334, -0.0025078938342630863, -0.019665881991386414, 0.049317311495542526, 0.03844817727804184, 0.03033634088933468, 0.04037223011255264, -0.003143353620544076, -0.008404855616390705, -0.0020418926142156124, -0.06278935074806213, -0.018458746373653412, 0.01067366637289524, 0.025223420932888985, -0.014057016000151634, 0.04947308823466301, 0.026705123484134674, -0.061226118355989456, -0.07790889590978622, 0.026498690247535706, 0.026955343782901764, 0.010321862064301968, 0.0204611923545599, 0.02744336985051632, 0.022301094606518745, 0.03814403712749481, -0.009602015838027, -0.02583422139286995, -0.009642628021538258, -0.06056073307991028, 0.02118878811597824, -0.0052313245832920074, 0.016589393839240074, 0.0298113115131855, -0.04742901399731636, -0.03493531048297882, 0.0413307286798954, 0.027465185150504112, 0.010188852436840534, -0.006707111839205027, -0.06067034229636192, 0.020090635865926743, -0.005374681204557419, -0.040217939764261246, 0.022674845531582832, -0.003955052234232426, -0.02199615351855755, 0.054545242339372635, 0.004561280831694603, -0.0005907846498303115, 0.049215905368328094, 0.0033583976328372955, -0.021960685029625893, 0.06255700439214706, -0.041881002485752106, -0.004204894416034222, 0.048123013228178024, -0.06603642553091049, -0.009048296138644218, -0.06195182725787163, 0.06915250420570374, -0.07134928554296494, 0.03556573763489723, 0.06534474343061447, -0.011697324924170971, 0.02876140922307968, -0.06234072893857956, -0.061994507908821106, 0.01224572490900755, -0.03423605114221573, 0.057074613869190216, 0.015743479132652283, -0.058028195053339005, 0.05729806795716286, 0.02266726829111576, -0.04994159936904907, 0.02138458751142025, 0.04055098816752434, 0.037987954914569855, 0.019585611298680305, 0.04182944819331169, -0.0430566631257534, -0.027952207252383232, -0.04564671590924263, 0.010185427963733673, -0.059552617371082306, -0.011426934041082859, 0.009189276956021786, -0.017744190990924835, -0.00630951626226306, 0.0303906612098217, -0.021325740963220596, -0.016553128138184547, 0.04346379637718201, -0.047852009534835815, -0.0471985787153244, -0.006476858630776405, -0.003557834541425109, -0.04973974823951721, -0.013057205826044083, -0.03006204031407833, -0.003975498490035534, 0.010098889470100403, 0.0033556658308953047, -0.01899128593504429, -0.02500869333744049, 0.018220236524939537, -0.03923704847693443, -0.03694238141179085, 0.05237091705203056, -0.01678796485066414, -0.021797096356749535, 0.032105084508657455, 0.02617761492729187, 0.00006600702909054235, 0.027238594368100166, -0.01445776503533125, 0.03282998874783516, -0.05629339814186096, -0.028659438714385033, 0.02601233497262001, 0.0031932692509144545, 0.01917129009962082, 0.010546350851655006, 0.021217795088887215, 0.056161362677812576, 0.027323255315423012, 0.008623319678008556, -0.03852125257253647, -0.038445357233285904, 0.023037053644657135, -0.04290308803319931, 0.018391115590929985, 0.0016678073443472385, -0.04731612652540207, -0.0185089074075222, -0.001900075818412006, -0.032337844371795654, 0.048286423087120056, -0.0570250079035759, -0.007166949566453695, 0.051827214658260345, -0.030376724898815155, -0.057958465069532394, -0.0869092345237732, -0.01736316829919815, -0.04742729291319847, 0.0044195037335157394, 0.046453025192022324, -0.03694562241435051, 0.03809867799282074, -0.049385324120521545, -0.0352080836892128, 0.03160639852285385, 0.054038673639297485, -0.058543611317873, 0.05952668562531471, 0.051433321088552475, -0.06471812725067139, 0.00876244530081749, 0.006509838625788689, -0.04830183833837509, -0.027997586876153946, 0.029151754453778267, -0.00029041373636573553, 0.026509642601013184, 0.029498200863599777, -0.05153752863407135, -0.02195061184465885, -0.07103254646062851, -0.03010973520576954, -0.07131115347146988, 0.006626933813095093, 0.04985994100570679 ]
Declan/NewYorkTimes_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-7 results: [] --- <!-- 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__hate_speech_offensive__train-16-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.9011 - Accuracy: 0.578 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0968 | 1.0 | 10 | 1.1309 | 0.0 | | 1.0709 | 2.0 | 20 | 1.1237 | 0.1 | | 0.9929 | 3.0 | 30 | 1.1254 | 0.1 | | 0.878 | 4.0 | 40 | 1.1206 | 0.5 | | 0.7409 | 5.0 | 50 | 1.0831 | 0.1 | | 0.5663 | 6.0 | 60 | 0.9830 | 0.6 | | 0.4105 | 7.0 | 70 | 0.9919 | 0.5 | | 0.2912 | 8.0 | 80 | 1.0472 | 0.6 | | 0.1013 | 9.0 | 90 | 1.1617 | 0.4 | | 0.0611 | 10.0 | 100 | 1.2789 | 0.6 | | 0.039 | 11.0 | 110 | 1.4091 | 0.4 | | 0.0272 | 12.0 | 120 | 1.4974 | 0.4 | | 0.0189 | 13.0 | 130 | 1.4845 | 0.5 | | 0.018 | 14.0 | 140 | 1.4924 | 0.5 | | 0.0131 | 15.0 | 150 | 1.5206 | 0.6 | | 0.0116 | 16.0 | 160 | 1.5858 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008884183131158352, 0.02968345396220684, -0.0363704189658165, 0.05248422548174858, 0.04814615845680237, 0.028847569599747658, -0.012211605906486511, -0.01955525390803814, -0.055267687886953354, 0.060684796422719955, 0.015154541470110416, -0.031500428915023804, 0.0224062018096447, 0.03750276565551758, -0.033707402646541595, -0.03704776614904404, -0.021230380982160568, -0.0112041300162673, -0.042465414851903915, 0.0044644358567893505, 0.0029377129394561052, -0.014000969007611275, -0.016622520983219147, 0.01504197996109724, -0.014290868304669857, 0.038168877363204956, -0.01240377314388752, 0.022262368351221085, 0.02521066553890705, -0.05557361990213394, 0.012138674966990948, -0.025134209543466568, -0.03841812163591385, 0.003981814719736576, -0.027534961700439453, -0.003864933969452977, 0.002831309800967574, 0.023577339947223663, 0.040846314281225204, 0.03770529478788376, 0.013050633482635021, 0.005205167457461357, -0.007992842234671116, -0.01847473531961441, 0.059019386768341064, -0.008115606382489204, -0.045118484646081924, -0.01060938648879528, 0.024149322882294655, -0.042889032512903214, -0.06230108067393303, -0.051599543541669846, -0.018474649637937546, 0.02841777913272381, -0.010673212818801403, -0.01350338477641344, -0.05897071212530136, 0.019078122451901436, 0.06316791474819183, -0.03953281044960022, -0.0292211901396513, 0.0012670604046434164, -0.06277775764465332, -0.003345338860526681, 0.024601764976978302, -0.027842720970511436, 0.0029240050353109837, -0.04599323868751526, 0.017655247822403908, -0.018953396007418633, 0.05477225035429001, -0.021119331941008568, 0.028652513399720192, -0.07131584733724594, -0.02366756647825241, -0.02033413201570511, 0.058724116533994675, 0.06884980946779251, -0.02721305377781391, 0.061250023543834686, 0.023205449804663658, 0.01827058009803295, 0.033910397440195084, -0.026103796437382698, 0.026053614914417267, 0.028338685631752014, -0.05644794553518295, 0.005108849611133337, 0.0060995095409452915, 0.03687500208616257, -0.03177688270807266, -0.03797382488846779, -0.012733399868011475, -0.03146319463849068, -0.014194278977811337, 0.015896057710051537, 0.00831114873290062, 0.002859093016013503, 0.04872401803731918, 0.02284126728773117, 0.042380720376968384, 0.036239322274923325, -0.03732895478606224, 0.057028885930776596, -0.019226809963583946, 0.006967370864003897, -0.0013697772519662976, -0.02271445281803608, -0.04262286424636841, 0.02078848145902157, 0.028791924938559532, -0.0178593210875988, -0.03743536397814751, 0.03861338272690773, 0.001411442062817514, 0.015404491685330868, 0.06439623981714249, -0.029685087502002716, -0.04015355929732323, -0.023711150512099266, 0.006932712625712156, 0.007405098993331194, -0.002684183418750763, 0.013168537989258766, -0.06707103550434113, -0.013840881176292896, -0.03159976750612259, -0.04476799815893173, -0.028461840003728867, 0.029536861926317215, 0.013033146969974041, 0.06844232231378555, 0.025588475167751312, -0.0618755966424942, -0.0027166595682501793, 0.022115152329206467, -0.05457283928990364, 0.042052485048770905, 0.026202227920293808, 0.10757552087306976, -0.06429965049028397, -0.06358090788125992, -0.004914046265184879, -0.016821036115288734, -0.043353818356990814, 0.015783289447426796, 0.01183113269507885, -0.010582538321614265, -0.009930845350027084, 0.0006537247681990266, 0.0508597232401371, -0.042961735278367996, -0.020763201639056206, 0.0673702135682106, -0.009393894113600254, 0.032443832606077194, -0.06102396920323372, -0.01455279253423214, 0.010710874572396278, -0.02415236458182335, -0.027551045641303062, 0.02786152809858322, -0.024219276383519173, -0.025106409564614296, -0.019343145191669464, -0.030702007934451103, 0.009714425541460514, 0.07227201014757156, -0.004174815956503153, -0.03355586156249046, -0.029240911826491356, 0.02412329986691475, 0.03233620896935463, 0.025927238166332245, -0.02867239899933338, 0.017859041690826416, 0.06299516558647156, 0.025061463937163353, -0.03552115336060524, 0.05264938622713089, 0.012321125715970993, -0.026210792362689972, -0.02692798711359501, 0.02138330787420273, 0.009201722219586372, -0.05142612382769585, 0.04559934511780739, 0.01419313158839941, 0.0024376886431127787, -0.054792679846286774, -0.045664310455322266, 0.04130607470870018, -0.009704544208943844, -0.009634682908654213, 0.027789460495114326, 0.014447030611336231, -0.024668829515576363, 0.04265811666846275, -0.02203262411057949, 0.0008036820800043643, -0.042562637478113174, -0.014701265841722488, -0.004990029614418745, -0.028949230909347534, 0.015280570834875107, 0.0438753217458725, -0.0023929551243782043, 0.07353093475103378, -0.023515181615948677, 0.010419569909572601, -0.05667147412896156, -0.0379730761051178, 0.009493096731603146, 0.06593234837055206, 0.06234781816601753, 0.040203969925642014, 0.006041975691914558, -0.04580514132976532, 0.0361725352704525, 0.07455543428659439, 0.045373257249593735, 0.0014802911318838596, -0.03510220721364021, -0.017372263595461845, 0.04768078029155731, 0.052398573607206345, -0.04861879721283913, -0.024799956008791924, 0.004472311120480299, 0.03852016106247902, -0.012074217200279236, 0.007931578904390335, -0.02866964228451252, 0.034758348017930984, -0.0569629967212677, -0.049399618059396744, 0.040548279881477356, 0.04125669226050377, 0.00734806340187788, 0.02993963100016117, 0.0242339875549078, 0.013702977448701859, 0.04143790900707245, 0.022407125681638718, 0.015339537523686886, -0.05689588561654091, 0.018082939088344574, -0.003954024985432625, 0.049351342022418976, -0.04724381864070892, 0.03918616473674774, -0.013213030993938446, 0.0005690160323865712, 0.03819979354739189, -0.02677302248775959, 0.05000804737210274, 0.04746529459953308, 0.017298035323619843, -0.03725029155611992, 0.021266670897603035, -0.011465645395219326, 0.029506122693419456, 0.02195136621594429, 0.00199123308993876, 0.08323080092668533, 0.010745402425527573, 0.045660316944122314, 0.09641522914171219, 0.034130096435546875, 0.02602299116551876, 0.012445054948329926, 0.0420624315738678, 0.02058246359229088, -0.02162879891693592, 0.06048649176955223, -0.05397294461727142, 0.04038723185658455, -0.049946632236242294, 0.006981497630476952, -0.0203805323690176, -0.025245260447263718, 0.05145414546132088, 0.03244854509830475, -0.03404879942536354, 0.00373680517077446, 0.0065417601726949215, -0.015108056366443634, 0.039091724902391434, -0.01462058536708355, 0.0089555773884058, -0.007737338077276945, -0.042211201041936874, -0.001268826425075531, -0.07621143013238907, -0.03300705924630165, -0.007284564431756735, -0.02882188931107521, -0.020284101366996765, -0.09569396078586578, -0.025170719251036644, -0.059199556708335876, -0.008931596763432026, 0.02878906950354576, 0.009580867365002632, -0.023717038333415985, -0.029806213453412056, 0.019056683406233788, -0.05151395872235298, -0.04253579303622246, -0.038735125213861465, -0.06383980810642242, -0.042042966932058334, -0.07664971798658371, 0.04229830205440521, 0.046900294721126556, 0.011223634704947472, -0.0045624226331710815, 0.012468187138438225, 0.01585622876882553, -0.023828456178307533, 0.018061425536870956, 0.060512930154800415, -0.041348107159137726, -0.06850258260965347, 0.00740357069298625, -0.001971398014575243, 0.006322415545582771, 0.030518917366862297, -0.04366331174969673, 0.09491681307554245, 0.08638699352741241, 0.00838982593268156, 0.036017898470163345, -0.0035699354484677315, -0.05677004158496857, -0.04798845946788788, -0.03417449817061424, -0.05072611942887306, -0.020892160013318062, -0.04414164274930954, -0.06068418547511101, -0.030874809250235558, -0.03978602960705757, -0.0042128050699830055, 0.002826993353664875, 0.02155138924717903, 0.01200487744063139, 0.03523905947804451, 0.018584007397294044, 0.033035703003406525, -0.021029410883784294, -0.04520106315612793, 0.0555700920522213, -0.012865771539509296, 0.01825583726167679, -0.08806890994310379, 0.0017696848371997476, 0.029853619635105133, -0.0009341133991256356, 0.020609144121408463, -0.02396029606461525, 0.066182941198349, 0.004196269437670708, 0.005233104340732098, 0.006690364796668291, -0.008581471629440784, 0.0009679509093984962, -0.010990655981004238, -0.014525685459375381, 0.006078633945435286, -0.03513261303305626, -0.02572190947830677, -0.02064908854663372, 0.03832639381289482, -0.048871252685785294, -0.04647986963391304, -0.027961384505033493, 0.04432859644293785, 0.054332830011844635, -0.00903785228729248, -0.05198296904563904, -0.013257795013487339, -0.054859478026628494, -0.009950537234544754, 0.013245385140180588, 0.0013292605290189385, 0.006686060223728418, 0.026612678542733192, 0.016324365511536598, -0.012115253135561943, 0.005422990769147873, 0.05695256218314171, 0.07244366407394409, 0.014042607508599758, -0.08202885836362839, -0.00075358065078035, -0.014472050592303276, 0.01608182117342949, -0.019262000918388367, -0.0257274117320776, -0.023275582119822502, -0.10911061614751816, -0.028144830837845802, -0.000042164607293671, 0.002777268411591649, -0.018687855452299118, 0.03868331387639046, -0.006022684741765261, -0.011061052791774273, 0.00005592379966401495, 0.013250111602246761, 0.04537329077720642, -0.019309626892209053, 0.039853453636169434, -0.018122218549251556, 0.008926976472139359, -0.05452528968453407, 0.03691947087645531, -0.03779131546616554, -0.04271872341632843, 0.008406915701925755, 0.06193844601511955, -0.007366950158029795, 0.0715290904045105, 0.06966681778430939, 0.0493607297539711, -0.05617920309305191, 0.02054949291050434, 0.07890604436397552, -0.025779828429222107, -0.036795370280742645, -0.0036694847512990236, -0.00634373165667057, -0.021681010723114014, 0.020282018929719925, -0.024421952664852142, 0.05580529570579529, 0.03525770455598831, 0.0073036798276007175, -0.008821866475045681, -0.01661142334342003, -0.005192799028009176, -0.023501727730035782, -0.05711394548416138, -0.034182459115982056, -0.002130712615326047, -0.032895781099796295, 0.02437378279864788, 0.02519729733467102, 0.03252615034580231, 0.06114083155989647, 0.012323925271630287, -0.050090670585632324, -0.004352941177785397, 0.016970738768577576, 0.02079542726278305, -0.03144962713122368, -0.07196574658155441, -0.048980046063661575, 0.0339403972029686, 0.049907952547073364, -0.021591667085886, -0.06978391110897064, 0.02445504628121853, 0.047671131789684296, -0.04134378209710121, 0.05287070572376251, -0.022507334128022194, 0.054360292851924896, 0.04853370785713196, -0.011523970402777195, 0.03804340213537216, -0.015722597017884254, -0.006645725574344397, 0.00268808682449162, 0.040524620562791824, -0.012530293315649033, -0.02523857168853283, -0.0519840233027935, 0.023538261651992798, 0.044107045978307724, 0.03415955230593681, 0.03974251076579094, -0.03962399810552597, -0.026935597881674767, 0.02477153018116951, 0.023723149672150612, -0.047018323093652725, -0.01655208319425583, 0.043602991849184036, 0.03874142840504646, -0.04068702086806297, -0.028343677520751953, -0.02901565656065941, 0.008148583583533764, 0.032597556710243225, 0.001202251180075109, -0.024515334516763687, -0.030822863802313805, 0.0480986088514328, -0.02820356748998165, -0.03596937656402588, -0.07485682517290115, 0.027909064665436745, -0.005638796370476484, -0.03586158901453018, 0.050577446818351746, 0.02262735739350319, 0.027413327246904373, 0.07214715331792831, 0.013270460069179535, 0.005526069551706314, -0.04456115514039993, 0.04879942536354065, -0.01819511316716671, -0.01166479755192995, -0.0014734321739524603, -0.041318364441394806, -0.02500477060675621, -0.011420574970543385, -0.049432214349508286, -0.03091851808130741, -0.02109859511256218, 0.02429472655057907, -0.005288297310471535, -0.007618999108672142, -0.002929328242316842, 0.03971671685576439, -0.004253802355378866, -0.03602151572704315, -0.03898300975561142, -0.015824655070900917, -0.06287698447704315, -0.05483674630522728, -0.003914784640073776, 0.014122448861598969, 0.034505102783441544, 0.03645103797316551, 0.019044457003474236, 0.014094208367168903, 0.007968428544700146, -0.021383672952651978, 0.015848275274038315, 0.020173754543066025, -0.04903668910264969, -0.025117063894867897, 0.0350639633834362, 0.013128894381225109, 0.029164643958210945, -0.029615502804517746, 0.04674316570162773, 0.010269870050251484, -0.01470178086310625, -0.035932961851358414, 0.020139487460255623, 0.03487475588917732, -0.07747823745012283, -0.05686512216925621, -0.013785450719296932, -0.027260631322860718, 0.03266877681016922, -0.020631879568099976, -0.0019014521967619658, 0.027780931442975998, 0.006178767420351505, 0.03524098917841911, -0.027682684361934662, -0.02015506848692894, 0.03658302500844002, -0.005535965319722891, 0.036826420575380325, -0.03874273970723152, 0.05520031601190567, -0.031796060502529144, 0.015178057365119457, -0.02128427103161812, -0.0031849523074924946, -0.05102705582976341, 0.030252624303102493, -0.012424390763044357, -0.023443877696990967, -0.0015250206924974918, 0.031845565885305405, -0.008231311105191708, 0.014384948648512363, -0.019200822338461876, 0.021606095135211945, -0.03405696526169777, 0.07356570661067963, -0.03949619084596634, 0.022243833169341087, -0.052477363497018814, 0.02359834872186184, -0.0075356424786150455, 0.015701578930020332, -0.0035577593371272087, -0.01990410126745701, 0.04793299362063408, 0.03838825970888138, 0.029892679303884506, 0.040224071592092514, -0.003680348629131913, -0.008283931761980057, -0.001619728747755289, -0.06340721249580383, -0.018434101715683937, 0.011261633597314358, 0.02478673867881298, -0.014426185749471188, 0.04908089339733124, 0.02650795876979828, -0.0612211748957634, -0.078692726790905, 0.026302281767129898, 0.02677193284034729, 0.010115195997059345, 0.02087070234119892, 0.028207967057824135, 0.022996170446276665, 0.038766514509916306, -0.009445720352232456, -0.025326816365122795, -0.009558535180985928, -0.05988430604338646, 0.021087663248181343, -0.004697669297456741, 0.016268273815512657, 0.029373301193118095, -0.04740937054157257, -0.03420274704694748, 0.04142805561423302, 0.028170062229037285, 0.010371221229434013, -0.006897046230733395, -0.06085766851902008, 0.02069169096648693, -0.005801261868327856, -0.04153364896774292, 0.022858548909425735, -0.003838703501969576, -0.022342413663864136, 0.054479774087667465, 0.00471606245264411, -0.00046949469833634794, 0.050010424107313156, 0.003723671194165945, -0.021090857684612274, 0.061219047755002975, -0.041118986904621124, -0.005164188798516989, 0.048133209347724915, -0.0650753304362297, -0.008984815329313278, -0.061425235122442245, 0.06982205808162689, -0.07174256443977356, 0.0355975516140461, 0.0653466135263443, -0.010826989077031612, 0.02874072454869747, -0.06141586974263191, -0.06097670644521713, 0.011988678947091103, -0.033929064869880676, 0.057478465139865875, 0.015741216018795967, -0.058265164494514465, 0.05709484964609146, 0.022865770384669304, -0.05093224346637726, 0.021858785301446915, 0.04048774763941765, 0.03690996393561363, 0.019301025196909904, 0.04081783443689346, -0.04269217699766159, -0.02767210453748703, -0.04613494500517845, 0.010799379087984562, -0.06040531024336815, -0.011928623542189598, 0.009887794964015484, -0.018098589032888412, -0.006509778555482626, 0.029546089470386505, -0.021959910169243813, -0.01711183786392212, 0.04350132495164871, -0.04802621528506279, -0.04655700549483299, -0.005869225133210421, -0.0028272471390664577, -0.04974494129419327, -0.012928159907460213, -0.030306166037917137, -0.003979697823524475, 0.010117799043655396, 0.003684024326503277, -0.019274422898888588, -0.02469233237206936, 0.018185025081038475, -0.04014779254794121, -0.0365571528673172, 0.05267686769366264, -0.01621936820447445, -0.02160394936800003, 0.03275217115879059, 0.025509852916002274, 0.00008544670708943158, 0.026768669486045837, -0.015437663532793522, 0.03178272768855095, -0.05654571205377579, -0.02820456400513649, 0.025760799646377563, 0.004191079176962376, 0.018718358129262924, 0.009691968560218811, 0.02101784013211727, 0.05633705481886864, 0.027957312762737274, 0.008113561198115349, -0.03864859417080879, -0.039043135941028595, 0.023139575496315956, -0.04256758838891983, 0.019529085606336594, 0.0011566412867978215, -0.04796510934829712, -0.019695868715643883, -0.0011435882188379765, -0.03227265924215317, 0.047682520002126694, -0.05704713985323906, -0.007588637992739677, 0.05143158137798309, -0.029992735013365746, -0.05821932107210159, -0.08734329789876938, -0.01798108033835888, -0.04734869673848152, 0.004929619841277599, 0.04659270495176315, -0.037156011909246445, 0.03827887773513794, -0.04919285327196121, -0.035031940788030624, 0.03218313306570053, 0.05381711199879646, -0.058817967772483826, 0.05913221836090088, 0.05186310037970543, -0.06525924801826477, 0.009355616755783558, 0.006731268018484116, -0.04844822362065315, -0.027224451303482056, 0.029245326295495033, -0.0004787362995557487, 0.02574760839343071, 0.02987487241625786, -0.051299791783094406, -0.02199762687087059, -0.07059217989444733, -0.030214577913284302, -0.0708136036992073, 0.0067546856589615345, 0.04975726455450058 ]
Declan/NewYorkTimes_model_v3
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-8 results: [] --- <!-- 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__hate_speech_offensive__train-16-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0704 - Accuracy: 0.394 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1031 | 1.0 | 10 | 1.1286 | 0.1 | | 1.0648 | 2.0 | 20 | 1.1157 | 0.3 | | 0.9982 | 3.0 | 30 | 1.1412 | 0.2 | | 0.9283 | 4.0 | 40 | 1.2053 | 0.2 | | 0.7958 | 5.0 | 50 | 1.1466 | 0.2 | | 0.6668 | 6.0 | 60 | 1.1783 | 0.3 | | 0.5068 | 7.0 | 70 | 1.2992 | 0.3 | | 0.3741 | 8.0 | 80 | 1.3483 | 0.3 | | 0.1653 | 9.0 | 90 | 1.4533 | 0.2 | | 0.0946 | 10.0 | 100 | 1.6292 | 0.2 | | 0.0569 | 11.0 | 110 | 1.8381 | 0.2 | | 0.0346 | 12.0 | 120 | 2.0781 | 0.2 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009421616792678833, 0.030281681567430496, -0.03570057451725006, 0.05244147777557373, 0.047486670315265656, 0.029626144096255302, -0.012622485868632793, -0.019543178379535675, -0.0548723042011261, 0.06090950220823288, 0.014798346906900406, -0.031004630029201508, 0.022612981498241425, 0.03735851123929024, -0.033906109631061554, -0.036816250532865524, -0.02137189544737339, -0.0110175097361207, -0.042327914386987686, 0.0034908384550362825, 0.0022315061651170254, -0.013063597492873669, -0.015691885724663734, 0.016013488173484802, -0.01386759802699089, 0.0377076081931591, -0.011895411647856236, 0.02188127115368843, 0.024533938616514206, -0.055094748735427856, 0.010797621682286263, -0.025259418413043022, -0.03833278641104698, 0.004414544906467199, -0.02750641107559204, -0.005088154226541519, 0.004079906269907951, 0.02309723198413849, 0.041805703192949295, 0.03753393515944481, 0.012602195143699646, 0.004909871611744165, -0.007671795319765806, -0.019057003781199455, 0.059338219463825226, -0.009497142396867275, -0.04582629352807999, -0.011533268727362156, 0.023761313408613205, -0.043046735227108, -0.06259474903345108, -0.052176594734191895, -0.018061120063066483, 0.02798835188150406, -0.0102351363748312, -0.01352476142346859, -0.05842430517077446, 0.018570955842733383, 0.0636487528681755, -0.04009152576327324, -0.030092190951108932, 0.0009403925505466759, -0.06316553801298141, -0.003323580604046583, 0.024108674377202988, -0.027287788689136505, 0.0024411289487034082, -0.045932795852422714, 0.017591027542948723, -0.019141456112265587, 0.054160602390766144, -0.021033350378274918, 0.028279302641749382, -0.0709124431014061, -0.023613793775439262, -0.02023962140083313, 0.05916336551308632, 0.06862757354974747, -0.027145547792315483, 0.060713499784469604, 0.023836951702833176, 0.018388964235782623, 0.03415890038013458, -0.024938387796282768, 0.025679845362901688, 0.0274080578237772, -0.056917864829301834, 0.00452370336279273, 0.006245436146855354, 0.03685598820447922, -0.030718039721250534, -0.03821195662021637, -0.01315494254231453, -0.031467534601688385, -0.012751368805766106, 0.01581623964011669, 0.008241393603384495, 0.002654137322679162, 0.04868590831756592, 0.02289476990699768, 0.042098768055438995, 0.03648184612393379, -0.037380412220954895, 0.05708101764321327, -0.019225947558879852, 0.007283348590135574, -0.0005830486188642681, -0.022386522963643074, -0.04231064394116402, 0.020375220105051994, 0.028975971043109894, -0.01739165559411049, -0.03725767508149147, 0.038924913853406906, 0.00032221272704191506, 0.015435815788805485, 0.06439973413944244, -0.029594184830784798, -0.04029938951134682, -0.023974813520908356, 0.006454448215663433, 0.006835554726421833, -0.0027394387871026993, 0.013533780351281166, -0.06719605624675751, -0.014331309124827385, -0.030398737639188766, -0.04529888182878494, -0.02825350873172283, 0.02987142652273178, 0.013710162602365017, 0.06903405487537384, 0.02491343766450882, -0.061866287142038345, -0.0021361084654927254, 0.02183566242456436, -0.05472056195139885, 0.04169993847608566, 0.025155361741781235, 0.10826337337493896, -0.06323128938674927, -0.06381803005933762, -0.004445939790457487, -0.016462143510580063, -0.04333342984318733, 0.016022751107811928, 0.012447785586118698, -0.010377801954746246, -0.010003369301557541, 0.0003442895249463618, 0.05073576793074608, -0.04410625621676445, -0.02109188586473465, 0.06775932013988495, -0.009423363953828812, 0.033418647944927216, -0.062112823128700256, -0.015330992639064789, 0.009971820749342442, -0.023092539981007576, -0.028592431917786598, 0.028000500053167343, -0.02381381392478943, -0.0251446682959795, -0.019146937876939774, -0.030424611642956734, 0.009963391348719597, 0.07223229110240936, -0.0049285138957202435, -0.0333590991795063, -0.029995432123541832, 0.02517700381577015, 0.032060109078884125, 0.02473079226911068, -0.02879372052848339, 0.017952455207705498, 0.06289298832416534, 0.024586942046880722, -0.03551893308758736, 0.05255396291613579, 0.010984130203723907, -0.02591584250330925, -0.027069371193647385, 0.021403321996331215, 0.010343683883547783, -0.0515701062977314, 0.044446732848882675, 0.013251520693302155, 0.002698368625715375, -0.05552808940410614, -0.046405818313360214, 0.04025004059076309, -0.01045183651149273, -0.00976107269525528, 0.02783248946070671, 0.014218082651495934, -0.02606726437807083, 0.0428471714258194, -0.022861141711473465, -0.0002805649128276855, -0.04256269335746765, -0.014443697407841682, -0.005906462203711271, -0.029044093564152718, 0.01401958242058754, 0.044097937643527985, -0.002046762267127633, 0.07301027327775955, -0.023350974544882774, 0.011123905889689922, -0.057850975543260574, -0.038821976631879807, 0.009156948886811733, 0.06625843048095703, 0.061410531401634216, 0.04002665728330612, 0.0057361433282494545, -0.046148963272571564, 0.035480037331581116, 0.07389731705188751, 0.04594797268509865, 0.0020094909705221653, -0.035980224609375, -0.01797228679060936, 0.04771053045988083, 0.0515485480427742, -0.04922093078494072, -0.024968767538666725, 0.004002181347459555, 0.03790280595421791, -0.012779159471392632, 0.008276503533124924, -0.02831694856286049, 0.03532765433192253, -0.05800547078251839, -0.049365125596523285, 0.03995735943317413, 0.04092272371053696, 0.008123432286083698, 0.02998245321214199, 0.024075543507933617, 0.014605069532990456, 0.04101547971367836, 0.02251814678311348, 0.0158059224486351, -0.05606163293123245, 0.0188467875123024, -0.004130535293370485, 0.0508636049926281, -0.04721926152706146, 0.039810799062252045, -0.012537874281406403, -0.0004319136787671596, 0.03748099133372307, -0.027871115133166313, 0.049984775483608246, 0.0473129041492939, 0.017599590122699738, -0.03790288046002388, 0.02151663787662983, -0.012377763167023659, 0.029493385925889015, 0.021883979439735413, 0.0025203635450452566, 0.08369135111570358, 0.010067138820886612, 0.04694272577762604, 0.09712357819080353, 0.03336130082607269, 0.02614934742450714, 0.013648279942572117, 0.0426449216902256, 0.02040218748152256, -0.0222459863871336, 0.06169166788458824, -0.052760351449251175, 0.04018988087773323, -0.05016154795885086, 0.007125356234610081, -0.021054523065686226, -0.025906432420015335, 0.053584739565849304, 0.032668597996234894, -0.03300118446350098, 0.004020259249955416, 0.006765844766050577, -0.015444864518940449, 0.039780229330062866, -0.014870737679302692, 0.008133105002343655, -0.00874789897352457, -0.043410733342170715, -0.0017609435599297285, -0.07670161873102188, -0.03282790631055832, -0.007252915762364864, -0.028155924752354622, -0.020975692197680473, -0.09522987902164459, -0.02478889934718609, -0.05980346351861954, -0.008885174058377743, 0.028974667191505432, 0.010478217154741287, -0.022760678082704544, -0.030795536935329437, 0.01939738541841507, -0.05191122740507126, -0.04206392541527748, -0.0376986488699913, -0.0638049840927124, -0.04237835481762886, -0.07572272419929504, 0.04236944019794464, 0.04763834923505783, 0.012267190963029861, -0.0051405769772827625, 0.01255587488412857, 0.01597420684993267, -0.0236207228153944, 0.018253467977046967, 0.060848433524370193, -0.04043492674827576, -0.06866635382175446, 0.007580175530165434, -0.001315150409936905, 0.006796711590141058, 0.030087197199463844, -0.043609071522951126, 0.09467069804668427, 0.08614560961723328, 0.008123763836920261, 0.03544105589389801, -0.0028473148122429848, -0.05654305964708328, -0.047825027257204056, -0.034901250153779984, -0.050548844039440155, -0.021826935932040215, -0.04408171772956848, -0.06135765463113785, -0.030644726008176804, -0.03901677951216698, -0.0051447367295622826, 0.002137761330232024, 0.021282026544213295, 0.011732341721653938, 0.034683141857385635, 0.018536876887083054, 0.031924378126859665, -0.021658357232809067, -0.045608989894390106, 0.05589086562395096, -0.013436537235975266, 0.018083009868860245, -0.08803054690361023, 0.0026558947283774614, 0.02919841557741165, -0.001508604851551354, 0.020664308220148087, -0.023675430566072464, 0.06525132060050964, 0.004289993550628424, 0.006288854870945215, 0.0060500712133944035, -0.009407793171703815, 0.0012841158313676715, -0.011622358113527298, -0.014151458628475666, 0.006695249583572149, -0.0350300557911396, -0.026306651532649994, -0.019684700295329094, 0.03848687931895256, -0.04935265704989433, -0.04600083827972412, -0.02741784043610096, 0.04501568526029587, 0.05458918213844299, -0.009462032467126846, -0.051222894340753555, -0.01238173432648182, -0.0542919747531414, -0.010071158409118652, 0.01306954212486744, 0.0012892729137092829, 0.006417487747967243, 0.02686394192278385, 0.016964353621006012, -0.012017836794257164, 0.004659067373722792, 0.058739472180604935, 0.072850801050663, 0.013625110499560833, -0.08234816044569016, -0.0006963886553421617, -0.013576819561421871, 0.015520613640546799, -0.0186404287815094, -0.025829598307609558, -0.02264447696506977, -0.10900785773992538, -0.026982218027114868, -0.0005264818901196122, 0.002837445354089141, -0.019323451444506645, 0.0386427566409111, -0.006510904990136623, -0.01029690820723772, 0.0008367338450625539, 0.013459566980600357, 0.044944629073143005, -0.019634762778878212, 0.04053930565714836, -0.017544914036989212, 0.008339121006429195, -0.05474206060171127, 0.03781125321984291, -0.038511425256729126, -0.04369698464870453, 0.008757639676332474, 0.06133774295449257, -0.007446668576449156, 0.07151742279529572, 0.07017313688993454, 0.05008429288864136, -0.05679985508322716, 0.021009737625718117, 0.07960966229438782, -0.025553874671459198, -0.03713037446141243, -0.004032245371490717, -0.006485206075012684, -0.021932927891612053, 0.020610183477401733, -0.024169936776161194, 0.05621541291475296, 0.03503493592143059, 0.008511902764439583, -0.009131435304880142, -0.01715906709432602, -0.004932700656354427, -0.023775983601808548, -0.05791052430868149, -0.034991759806871414, -0.0016569031868129969, -0.03271046653389931, 0.023119065910577774, 0.02541920356452465, 0.033041104674339294, 0.06248725950717926, 0.013670777902007103, -0.049132902175188065, -0.0051055653020739555, 0.016685698181390762, 0.020265325903892517, -0.031083179637789726, -0.07174298167228699, -0.048097461462020874, 0.033902183175086975, 0.04939248040318489, -0.021016042679548264, -0.0691307783126831, 0.024546153843402863, 0.047345392405986786, -0.04137994349002838, 0.05099233612418175, -0.021606354042887688, 0.05433386564254761, 0.048180609941482544, -0.012229811400175095, 0.0378623828291893, -0.015992537140846252, -0.007006324362009764, 0.0020575502421706915, 0.04126879572868347, -0.01278955489397049, -0.025343386456370354, -0.05251741036772728, 0.02389657124876976, 0.044911377131938934, 0.03375717252492905, 0.0397304929792881, -0.0402037613093853, -0.026290932670235634, 0.024531489238142967, 0.02441498264670372, -0.04713760316371918, -0.0156856719404459, 0.04367939382791519, 0.03866259753704071, -0.04056718200445175, -0.027590256184339523, -0.02903454750776291, 0.007352587301284075, 0.031753189861774445, 0.0017339709447696805, -0.023934025317430496, -0.03105110302567482, 0.04809735342860222, -0.028469379991292953, -0.0353977233171463, -0.07500459253787994, 0.02738969773054123, -0.005433151964098215, -0.03609297052025795, 0.050309762358665466, 0.02284395880997181, 0.026947688311338425, 0.0722433552145958, 0.012480104342103004, 0.005742100533097982, -0.04450912028551102, 0.04888952150940895, -0.01779056154191494, -0.011294863186776638, -0.0015062210150063038, -0.04091709852218628, -0.025509469211101532, -0.012208914384245872, -0.04863470420241356, -0.030561136081814766, -0.020547442138195038, 0.024464821442961693, -0.005751209333539009, -0.006483432371169329, -0.002780895447358489, 0.039537228643894196, -0.003730596276000142, -0.03724083676934242, -0.03882427141070366, -0.016546212136745453, -0.06261146813631058, -0.05429619550704956, -0.00405482342466712, 0.014377513900399208, 0.03400079160928726, 0.03570742532610893, 0.019677570089697838, 0.013091009110212326, 0.007126855198293924, -0.0204752329736948, 0.01574537716805935, 0.020596569404006004, -0.0488257072865963, -0.024706710129976273, 0.03490028530359268, 0.013163205236196518, 0.028783388435840607, -0.029733944684267044, 0.04704631492495537, 0.010974189266562462, -0.014740544371306896, -0.035821326076984406, 0.020106375217437744, 0.03538212925195694, -0.077105313539505, -0.056233469396829605, -0.014855272136628628, -0.026988018304109573, 0.03302697837352753, -0.020446978509426117, -0.0011189383221790195, 0.02780843712389469, 0.0070235850289464, 0.035431571304798126, -0.027026105672121048, -0.020025787875056267, 0.03685950115323067, -0.00562887592241168, 0.03693109005689621, -0.03981960192322731, 0.05453093722462654, -0.0327409990131855, 0.01561043132096529, -0.021486429497599602, -0.003067450365051627, -0.04999564588069916, 0.028585033491253853, -0.013450535014271736, -0.024101795628666878, -0.001322222757153213, 0.032326653599739075, -0.007855156436562538, 0.014288250356912613, -0.019122887402772903, 0.021203791722655296, -0.03436940535902977, 0.07359461486339569, -0.039103858172893524, 0.02226542867720127, -0.05269351974129677, 0.02365400828421116, -0.007135035935789347, 0.015067124739289284, -0.0027274840977042913, -0.018683621659874916, 0.04858654364943504, 0.03807831183075905, 0.028808865696191788, 0.03908354416489601, -0.0035685666371136904, -0.008652929216623306, -0.002087168162688613, -0.06335902959108353, -0.01842200569808483, 0.010685586370527744, 0.024791555479168892, -0.013825798407196999, 0.049282439053058624, 0.0270013939589262, -0.060900457203388214, -0.07751019299030304, 0.02595607005059719, 0.02776174619793892, 0.010183707810938358, 0.02227739617228508, 0.02642880380153656, 0.0232491884380579, 0.03880849480628967, -0.00873161107301712, -0.026272587478160858, -0.009254914708435535, -0.06024058535695076, 0.01988237164914608, -0.005225940607488155, 0.015448088757693768, 0.029766788706183434, -0.04774659499526024, -0.034797076135873795, 0.041436195373535156, 0.02667446993291378, 0.00986072514206171, -0.005562982987612486, -0.06081559509038925, 0.020727362483739853, -0.005868956912308931, -0.040971171110868454, 0.02285236120223999, -0.003606857266277075, -0.02175527811050415, 0.05387906730175018, 0.004033892881125212, -0.0008245129720307887, 0.04955558106303215, 0.0034494472201913595, -0.022312955930829048, 0.061561327427625656, -0.04178197309374809, -0.004003989044576883, 0.04747224226593971, -0.06474858522415161, -0.010742555372416973, -0.06107098236680031, 0.06921254843473434, -0.07144992053508759, 0.035958316177129745, 0.06637708842754364, -0.01213958952575922, 0.029787268489599228, -0.06183411926031113, -0.06085823103785515, 0.012422879226505756, -0.03362082317471504, 0.056761544197797775, 0.016311032697558403, -0.05780830979347229, 0.05720416083931923, 0.022968752309679985, -0.05003432556986809, 0.021093739196658134, 0.040239062160253525, 0.03744674101471901, 0.018465472385287285, 0.041659288108348846, -0.04339616000652313, -0.028087686747312546, -0.04715267941355705, 0.01094098947942257, -0.06080346927046776, -0.01229347474873066, 0.009426160715520382, -0.017685597762465477, -0.00719622103497386, 0.02909904718399048, -0.02171187661588192, -0.01699376106262207, 0.042995844036340714, -0.047881901264190674, -0.046147219836711884, -0.005934095475822687, -0.002911344636231661, -0.04839926213026047, -0.012475335970520973, -0.029686663299798965, -0.0031787429470568895, 0.01027474645525217, 0.0038792802952229977, -0.018703440204262733, -0.025586439296603203, 0.01822717674076557, -0.04031137004494667, -0.03654424101114273, 0.05278177559375763, -0.016235437244176865, -0.022838162258267403, 0.03266620263457298, 0.025279276072978973, 0.00008779745257925242, 0.0276742372661829, -0.01565992273390293, 0.032935597002506256, -0.0575670525431633, -0.028149496763944626, 0.026211904361844063, 0.00412528682500124, 0.01818101294338703, 0.009470843710005283, 0.02029152400791645, 0.056148357689380646, 0.028177136555314064, 0.00789265800267458, -0.03962760046124458, -0.03865065798163414, 0.023995570838451385, -0.042865458875894547, 0.019749101251363754, 0.0015191292623057961, -0.04802160710096359, -0.019108185544610023, -0.00001298452934861416, -0.03213665261864662, 0.04811028763651848, -0.05717199668288231, -0.006772415246814489, 0.05124611407518387, -0.029815467074513435, -0.05699210241436958, -0.08553149551153183, -0.0187088530510664, -0.04739274084568024, 0.005095587112009525, 0.046412765979766846, -0.03734927624464035, 0.037328820675611496, -0.04928602650761604, -0.03503835201263428, 0.03226000443100929, 0.05297819525003433, -0.05908593535423279, 0.05927124619483948, 0.05160235986113548, -0.06556790322065353, 0.007675301283597946, 0.006356576457619667, -0.04806077852845192, -0.02675078809261322, 0.02898859605193138, -0.0004989568842574954, 0.024995028972625732, 0.03022092394530773, -0.05112331733107567, -0.0221276693046093, -0.07098286598920822, -0.029366470873355865, -0.07179711014032364, 0.006826326716691256, 0.049712635576725006 ]
Declan/NewYorkTimes_model_v4
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-16-9 results: [] --- <!-- 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__hate_speech_offensive__train-16-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1121 - Accuracy: 0.16 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1038 | 1.0 | 10 | 1.1243 | 0.1 | | 1.0859 | 2.0 | 20 | 1.1182 | 0.2 | | 1.0234 | 3.0 | 30 | 1.1442 | 0.3 | | 0.9493 | 4.0 | 40 | 1.2239 | 0.1 | | 0.8114 | 5.0 | 50 | 1.2023 | 0.4 | | 0.6464 | 6.0 | 60 | 1.2329 | 0.4 | | 0.4731 | 7.0 | 70 | 1.2971 | 0.5 | | 0.3355 | 8.0 | 80 | 1.3913 | 0.4 | | 0.1268 | 9.0 | 90 | 1.4670 | 0.5 | | 0.0747 | 10.0 | 100 | 1.7961 | 0.4 | | 0.0449 | 11.0 | 110 | 1.8168 | 0.5 | | 0.0307 | 12.0 | 120 | 1.9307 | 0.4 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008945990353822708, 0.02949017658829689, -0.03537434712052345, 0.052520766854286194, 0.04759921133518219, 0.02886800467967987, -0.013124215416610241, -0.019101383164525032, -0.05522294342517853, 0.06044899299740791, 0.013739148154854774, -0.0314486101269722, 0.021933089941740036, 0.037076305598020554, -0.0333029106259346, -0.03723127767443657, -0.021427690982818604, -0.011760717257857323, -0.04278089851140976, 0.004531537648290396, 0.002306881360709667, -0.012219278141856194, -0.016379183158278465, 0.015321685932576656, -0.014393978752195835, 0.03746010363101959, -0.012439409270882607, 0.021537402644753456, 0.025094930082559586, -0.05609690025448799, 0.010465305298566818, -0.024987617507576942, -0.03836658224463463, 0.0036757702473551035, -0.027170490473508835, -0.0047782910987734795, 0.0031832638196647167, 0.022745413705706596, 0.04059739410877228, 0.037344079464673996, 0.01324667688459158, 0.005091211758553982, -0.008350095711648464, -0.017077745869755745, 0.05990814045071602, -0.009828048758208752, -0.04651288688182831, -0.011030474677681923, 0.02399035356938839, -0.042519450187683105, -0.06358256936073303, -0.05121927335858345, -0.018474020063877106, 0.028205636888742447, -0.010227655060589314, -0.012937267310917377, -0.05894142761826515, 0.01865522190928459, 0.06228422746062279, -0.04008542373776436, -0.029453782364726067, 0.0014115276280790567, -0.06319048255681992, -0.004222362767904997, 0.023380668833851814, -0.027718182653188705, 0.0016561273951083422, -0.04547353461384773, 0.017602866515517235, -0.0191299170255661, 0.05519278720021248, -0.020228872075676918, 0.028330648317933083, -0.06980304419994354, -0.022901535034179688, -0.020262790843844414, 0.058831118047237396, 0.06983060389757156, -0.02660219371318817, 0.060805901885032654, 0.023204736411571503, 0.01818731427192688, 0.03294922783970833, -0.024926042184233665, 0.02591536194086075, 0.027939431369304657, -0.057294104248285294, 0.004588572774082422, 0.005252395756542683, 0.0371982604265213, -0.03092670813202858, -0.03842617943882942, -0.013139845803380013, -0.03156418725848198, -0.014085393399000168, 0.01510393526405096, 0.008180884644389153, 0.0037490183021873236, 0.04910261929035187, 0.022996893152594566, 0.04277607798576355, 0.03609475493431091, -0.037355709820985794, 0.05599818378686905, -0.01928049884736538, 0.006808790843933821, -0.000747167447116226, -0.022882405668497086, -0.04308405891060829, 0.020842576399445534, 0.028676403686404228, -0.017674891278147697, -0.03766792640089989, 0.03860009089112282, 0.0010064385132864118, 0.016424672678112984, 0.06388519704341888, -0.029642339795827866, -0.04070277884602547, -0.024452712386846542, 0.0065193818882107735, 0.007196684833616018, -0.002258023014292121, 0.013631008565425873, -0.06769711524248123, -0.015393477864563465, -0.0304914191365242, -0.044900376349687576, -0.027519039809703827, 0.029994795098900795, 0.013220377266407013, 0.0692204162478447, 0.025973249226808548, -0.06185895577073097, -0.0028014425188302994, 0.02186547964811325, -0.05442175641655922, 0.04120780900120735, 0.025848936289548874, 0.1081896424293518, -0.06253468245267868, -0.0646306574344635, -0.0052157677710056305, -0.01696993224322796, -0.043102461844682693, 0.016898300498723984, 0.011905401013791561, -0.010711925104260445, -0.009700590744614601, 0.0002058173849945888, 0.050748445093631744, -0.043407849967479706, -0.022022655233740807, 0.06814496219158173, -0.009746834635734558, 0.03280436247587204, -0.061261989176273346, -0.014930305071175098, 0.010735244490206242, -0.02387869544327259, -0.02789885364472866, 0.027682442218065262, -0.024598117917776108, -0.026049092411994934, -0.01863708905875683, -0.029754944145679474, 0.00907999835908413, 0.0723288357257843, -0.004474936053156853, -0.032761603593826294, -0.029639845713973045, 0.02379440702497959, 0.03204711154103279, 0.02455616556107998, -0.02865801937878132, 0.01835627667605877, 0.06211462616920471, 0.02482783794403076, -0.03623956814408302, 0.05267655476927757, 0.011536713689565659, -0.02630302682518959, -0.027206232771277428, 0.021170765161514282, 0.009282135404646397, -0.050471361726522446, 0.045331116765737534, 0.013776875101029873, 0.003448881208896637, -0.05490512028336525, -0.04550446942448616, 0.04035518690943718, -0.010364249348640442, -0.010552266612648964, 0.027372565120458603, 0.014113763347268105, -0.02573791891336441, 0.04251474887132645, -0.022082198411226273, -0.0006072006653994322, -0.04260813444852829, -0.015574748627841473, -0.004889737349003553, -0.028097961097955704, 0.014307230710983276, 0.044214606285095215, -0.003061185125261545, 0.07314582914113998, -0.023574745282530785, 0.010763036087155342, -0.05752396211028099, -0.039145566523075104, 0.009069104678928852, 0.0661921352148056, 0.06292140483856201, 0.039875589311122894, 0.0058262231759727, -0.04484877735376358, 0.035506125539541245, 0.07466622442007065, 0.04517584666609764, 0.0015135427238419652, -0.0352688692510128, -0.017850423231720924, 0.04813716560602188, 0.05209529399871826, -0.048995181918144226, -0.024695560336112976, 0.005323783960193396, 0.03829014673829079, -0.012476874515414238, 0.0076664164662361145, -0.029557321220636368, 0.03494640439748764, -0.05849624052643776, -0.050513993948698044, 0.03964783623814583, 0.04066706821322441, 0.007489325013011694, 0.030144892632961273, 0.0233179721981287, 0.014668344520032406, 0.04197239503264427, 0.022629501298069954, 0.01586049795150757, -0.05616814270615578, 0.019374491646885872, -0.003983750473707914, 0.05031261220574379, -0.04629038646817207, 0.04022941365838051, -0.013758680783212185, -0.00028414715779945254, 0.03753673657774925, -0.026410477235913277, 0.04989807680249214, 0.04703230410814285, 0.01790885254740715, -0.03760376572608948, 0.021787146106362343, -0.011796222068369389, 0.029111914336681366, 0.022016430273652077, 0.0027719014324247837, 0.08296139538288116, 0.009808181785047054, 0.04646188020706177, 0.0969483032822609, 0.03333094343543053, 0.02566981501877308, 0.013474813662469387, 0.04279050603508949, 0.02020372822880745, -0.021485360339283943, 0.06114323064684868, -0.05399717390537262, 0.04036201536655426, -0.050330884754657745, 0.007511128671467304, -0.021118177101016045, -0.026084158569574356, 0.05213198810815811, 0.03398445248603821, -0.03359992802143097, 0.003125229151919484, 0.006927818059921265, -0.015367457643151283, 0.039608635008335114, -0.015744272619485855, 0.007718461565673351, -0.007662792690098286, -0.041935160756111145, -0.0017458468209952116, -0.07651718705892563, -0.032825104892253876, -0.0077902888879179955, -0.02895703911781311, -0.020161516964435577, -0.09603675454854965, -0.024265876039862633, -0.06032576784491539, -0.009156614542007446, 0.028254324570298195, 0.01046045869588852, -0.023453500121831894, -0.029360521584749222, 0.018189938738942146, -0.05233212932944298, -0.04230376332998276, -0.03789270669221878, -0.06508047133684158, -0.04187092185020447, -0.07595925778150558, 0.042436935007572174, 0.04685109481215477, 0.010883661918342113, -0.005055935587733984, 0.012603041715919971, 0.016388840973377228, -0.0238865427672863, 0.018882112577557564, 0.060480955988168716, -0.03982720524072647, -0.06846749037504196, 0.008097130805253983, -0.002669193781912327, 0.007230120711028576, 0.030150271952152252, -0.043634865432977676, 0.09385185688734055, 0.0856158435344696, 0.008030702359974384, 0.03676078841090202, -0.0031016001012176275, -0.05653674900531769, -0.0480535663664341, -0.03524415194988251, -0.051092036068439484, -0.021727658808231354, -0.0443577766418457, -0.06098797917366028, -0.030490295961499214, -0.0383295863866806, -0.005337970331311226, 0.0027337397914379835, 0.02193812094628811, 0.012539926916360855, 0.03534324839711189, 0.019286809489130974, 0.03269409015774727, -0.022683652117848396, -0.04678552597761154, 0.055086828768253326, -0.013864024542272091, 0.018463848158717155, -0.08772483468055725, 0.0025670009199529886, 0.029854541644454002, -0.0018929662182927132, 0.020622139796614647, -0.02506326697766781, 0.06583552062511444, 0.0033915373496711254, 0.006595739163458347, 0.006160496734082699, -0.008181487210094929, 0.0020890189334750175, -0.011833147145807743, -0.014401773922145367, 0.007378844078630209, -0.03541916608810425, -0.02513761632144451, -0.020015941932797432, 0.03860032558441162, -0.04816799983382225, -0.04742848873138428, -0.027743782848119736, 0.04396897554397583, 0.05355305224657059, -0.009831373579800129, -0.05172962695360184, -0.013071966357529163, -0.05524357408285141, -0.00970178097486496, 0.013460389338433743, 0.0015189882833510637, 0.006546640302985907, 0.026968253776431084, 0.01661461777985096, -0.012365457601845264, 0.004525250289589167, 0.05822952464222908, 0.07370394468307495, 0.013996229507029057, -0.08175577223300934, -0.0010796637507155538, -0.013453268446028233, 0.01605890318751335, -0.01861105114221573, -0.026047836989164352, -0.022106274962425232, -0.10807625949382782, -0.028317207470536232, -0.0000619252969045192, 0.0026969662867486477, -0.01937253400683403, 0.0388384684920311, -0.005505416076630354, -0.01052143331617117, 0.000030593862902605906, 0.014482082799077034, 0.04454706981778145, -0.019215179607272148, 0.03896477073431015, -0.017803940922021866, 0.009215442463755608, -0.05441822111606598, 0.03726576268672943, -0.03806615248322487, -0.04294033348560333, 0.008919943124055862, 0.06257807463407516, -0.008495073765516281, 0.07172434031963348, 0.06915154308080673, 0.048714201897382736, -0.056342851370573044, 0.02093920297920704, 0.08029990643262863, -0.025828808546066284, -0.03671489283442497, -0.0036194047424942255, -0.005981844384223223, -0.022871749475598335, 0.020802130922675133, -0.02343970537185669, 0.056220684200525284, 0.03502550348639488, 0.007944394834339619, -0.0096401022747159, -0.01778309792280197, -0.005853583104908466, -0.022908546030521393, -0.05634522810578346, -0.03389238938689232, -0.0016592413885518909, -0.03326134383678436, 0.022722726687788963, 0.024606335908174515, 0.03251740336418152, 0.06153389438986778, 0.012581035494804382, -0.04949762672185898, -0.0051059843972325325, 0.016613375395536423, 0.020366337150335312, -0.03146703913807869, -0.07112357765436172, -0.048518259078264236, 0.034044355154037476, 0.04914436489343643, -0.021406017243862152, -0.06825513392686844, 0.024667121469974518, 0.04633684083819389, -0.041491568088531494, 0.05158029869198799, -0.022246936336159706, 0.053991638123989105, 0.049336522817611694, -0.01313534751534462, 0.038361892104148865, -0.015911055728793144, -0.007270578294992447, 0.0021585780195891857, 0.04115753993391991, -0.012498542666435242, -0.025350449606776237, -0.05137339606881142, 0.023747136816382408, 0.04490673169493675, 0.03381095454096794, 0.04023187234997749, -0.039926085621118546, -0.026449155062437057, 0.024717185646295547, 0.023930300027132034, -0.046909432858228683, -0.01601570099592209, 0.04346571862697601, 0.03952938690781593, -0.04060010612010956, -0.028366392478346825, -0.028127724304795265, 0.008230369538068771, 0.03167664632201195, 0.0022435085847973824, -0.02568850852549076, -0.02977445349097252, 0.047595880925655365, -0.02820664457976818, -0.0360664427280426, -0.07433684170246124, 0.027910826727747917, -0.006374767050147057, -0.03585154190659523, 0.05061100795865059, 0.023266635835170746, 0.026268023997545242, 0.07249893248081207, 0.013418792746961117, 0.0045832195319235325, -0.044674571603536606, 0.048293955624103546, -0.01904504932463169, -0.011053795926272869, -0.0012610340490937233, -0.041701387614011765, -0.024774352088570595, -0.01229554321616888, -0.04918382316827774, -0.030618304386734962, -0.02162274532020092, 0.02491198666393757, -0.004843401722609997, -0.007405340671539307, -0.0033689497504383326, 0.03972936049103737, -0.004478876478970051, -0.03693317994475365, -0.03838416934013367, -0.015908319503068924, -0.06318194419145584, -0.05560052767395973, -0.003766033798456192, 0.014239822514355183, 0.033955495804548264, 0.03725932165980339, 0.019988810643553734, 0.014369853772222996, 0.007670761551707983, -0.02098728157579899, 0.016421979293227196, 0.019563542678952217, -0.04975607991218567, -0.025803688913583755, 0.034910649061203, 0.013421083800494671, 0.02847147360444069, -0.029225556179881096, 0.046641454100608826, 0.01004417147487402, -0.015459369868040085, -0.03570355474948883, 0.020830055698752403, 0.035643257200717926, -0.07664773613214493, -0.055360689759254456, -0.014426888898015022, -0.02745821699500084, 0.03264692425727844, -0.02000707946717739, -0.0002466881414875388, 0.028381070122122765, 0.006156281102448702, 0.035828519612550735, -0.02867961674928665, -0.021373078227043152, 0.03667476400732994, -0.0057585230097174644, 0.03806258365511894, -0.0394456684589386, 0.05541784316301346, -0.032414183020591736, 0.01512240245938301, -0.020374136045575142, -0.004078448284417391, -0.05011019483208656, 0.029472412541508675, -0.012237503193318844, -0.02334362082183361, -0.0009863229934126139, 0.03116925060749054, -0.007542153354734182, 0.015373346395790577, -0.018896562978625298, 0.02145930752158165, -0.033625755459070206, 0.07360408455133438, -0.039473868906497955, 0.022215314209461212, -0.05249308422207832, 0.02300182729959488, -0.0073928628116846085, 0.01554672047495842, -0.0032997685484588146, -0.020808428525924683, 0.049041666090488434, 0.03771205246448517, 0.030897824093699455, 0.04002651572227478, -0.00469787186011672, -0.0076500591821968555, -0.002035717945545912, -0.06345950067043304, -0.018700433894991875, 0.011502303183078766, 0.02481049858033657, -0.014235557056963444, 0.04881489276885986, 0.02718292362987995, -0.06102621555328369, -0.07799212634563446, 0.027064979076385498, 0.025963297113776207, 0.01021881029009819, 0.02110861986875534, 0.027107777073979378, 0.022213634103536606, 0.03865702822804451, -0.009526398964226246, -0.026169003918766975, -0.009439624845981598, -0.059101518243551254, 0.020676635205745697, -0.005286774598062038, 0.016428470611572266, 0.029160059988498688, -0.04818561673164368, -0.03463374078273773, 0.04166731983423233, 0.02829466015100479, 0.010689688846468925, -0.0065210191532969475, -0.06016300246119499, 0.019861619919538498, -0.005432571284472942, -0.04184421896934509, 0.023406239226460457, -0.003364571137353778, -0.02095414139330387, 0.054301660507917404, 0.004335088189691305, -0.0012742455583065748, 0.049524396657943726, 0.00377808790653944, -0.022350722923874855, 0.06311306357383728, -0.0421113446354866, -0.005482688080519438, 0.04801766574382782, -0.06513838469982147, -0.009558405727148056, -0.06193367391824722, 0.0698268860578537, -0.07127571105957031, 0.03641217574477196, 0.0661105290055275, -0.011787975206971169, 0.0284308809787035, -0.061630308628082275, -0.06139054521918297, 0.012076865881681442, -0.034008655697107315, 0.05810733139514923, 0.01631910167634487, -0.05828507989645004, 0.057614315301179886, 0.02250782586634159, -0.05044075846672058, 0.021696636453270912, 0.04105382412672043, 0.03789530694484711, 0.019373953342437744, 0.041135963052511215, -0.043356265872716904, -0.027976058423519135, -0.04598208889365196, 0.011601876467466354, -0.0602240227162838, -0.012300479225814342, 0.009244454093277454, -0.017314115539193153, -0.00689940620213747, 0.029056677594780922, -0.02133413590490818, -0.016699539497494698, 0.043464839458465576, -0.046898309141397476, -0.04534859210252762, -0.006732038222253323, -0.0024229870177805424, -0.049391407519578934, -0.0132495928555727, -0.02912210114300251, -0.00342465634457767, 0.010848797857761383, 0.004306512419134378, -0.019987469539046288, -0.024891285225749016, 0.018985599279403687, -0.04074059799313545, -0.037165794521570206, 0.052761729806661606, -0.017492974177002907, -0.021695243194699287, 0.03199576959013939, 0.02650747075676918, 0.0007176603539846838, 0.026830649003386497, -0.014889927580952644, 0.0325825996696949, -0.05703137069940567, -0.028490420430898666, 0.024920400232076645, 0.0032178533729165792, 0.018556581810116768, 0.010600032284855843, 0.02039768546819687, 0.055870652198791504, 0.02737712673842907, 0.00875143427401781, -0.03889366239309311, -0.039237502962350845, 0.02375817485153675, -0.04278295114636421, 0.018630916252732277, 0.0016310099745169282, -0.04771003872156143, -0.019130414351820946, -0.0005525455926544964, -0.03177740424871445, 0.04792112112045288, -0.057066887617111206, -0.006535556633025408, 0.05141680687665939, -0.030927639454603195, -0.057133033871650696, -0.08601014316082001, -0.01801326312124729, -0.04674893245100975, 0.005027208477258682, 0.045489486306905746, -0.03645986691117287, 0.03866421431303024, -0.04942001774907112, -0.0354597382247448, 0.03208499029278755, 0.0534980334341526, -0.05869099125266075, 0.058228954672813416, 0.05235281214118004, -0.06450095027685165, 0.009403456933796406, 0.007247254252433777, -0.0471222884953022, -0.028145261108875275, 0.028535638004541397, -0.000046371827920665964, 0.026349367573857307, 0.030528556555509567, -0.05126652866601944, -0.021859783679246902, -0.07074273377656937, -0.03083217330276966, -0.07230272889137268, 0.006985028274357319, 0.04919461905956268 ]
Declan/NewYorkTimes_model_v6
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-0 results: [] --- <!-- 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__hate_speech_offensive__train-32-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7714 - Accuracy: 0.705 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0871 | 1.0 | 19 | 1.0704 | 0.45 | | 1.0019 | 2.0 | 38 | 1.0167 | 0.55 | | 0.8412 | 3.0 | 57 | 0.9134 | 0.55 | | 0.6047 | 4.0 | 76 | 0.8430 | 0.6 | | 0.3746 | 5.0 | 95 | 0.8315 | 0.6 | | 0.1885 | 6.0 | 114 | 0.8585 | 0.6 | | 0.0772 | 7.0 | 133 | 0.9443 | 0.65 | | 0.0312 | 8.0 | 152 | 1.1019 | 0.65 | | 0.0161 | 9.0 | 171 | 1.1420 | 0.65 | | 0.0102 | 10.0 | 190 | 1.2773 | 0.65 | | 0.0077 | 11.0 | 209 | 1.2454 | 0.65 | | 0.0064 | 12.0 | 228 | 1.2785 | 0.65 | | 0.006 | 13.0 | 247 | 1.3834 | 0.65 | | 0.0045 | 14.0 | 266 | 1.4139 | 0.65 | | 0.0043 | 15.0 | 285 | 1.4056 | 0.65 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008420577272772789, 0.02867130935192108, -0.0355963259935379, 0.052266526967287064, 0.04990391433238983, 0.029267307370901108, -0.012716246768832207, -0.019664954394102097, -0.05451590195298195, 0.060767900198698044, 0.014633674174547195, -0.03107672557234764, 0.02079865336418152, 0.036121394485235214, -0.03477359190583229, -0.03756210207939148, -0.02028054930269718, -0.01280231587588787, -0.04296907037496567, 0.0029620223212987185, 0.0027192465495318174, -0.011783571913838387, -0.014743785373866558, 0.015285549685359001, -0.015351717360317707, 0.03755449131131172, -0.012650925666093826, 0.0235767662525177, 0.02519942820072174, -0.05508989840745926, 0.010664311237633228, -0.024238569661974907, -0.038343556225299835, 0.004590646363794804, -0.027815386652946472, -0.004949364345520735, 0.003389740362763405, 0.02391599304974079, 0.04106880724430084, 0.03858673572540283, 0.011851339600980282, 0.007443004287779331, -0.0070810080505907536, -0.017161665484309196, 0.0597553476691246, -0.008929423987865448, -0.04640982672572136, -0.010234021581709385, 0.02397073060274124, -0.04145817831158638, -0.06242368742823601, -0.05091710388660431, -0.018147500231862068, 0.028304602950811386, -0.011710463091731071, -0.014013093896210194, -0.05737108737230301, 0.017595231533050537, 0.06225598603487015, -0.03993913158774376, -0.030348464846611023, 0.0010478602489456534, -0.061031240969896317, -0.004593494813889265, 0.025443343445658684, -0.029404206201434135, 0.0019021400948986411, -0.0448780283331871, 0.018511319532990456, -0.019475726410746574, 0.05600634589791298, -0.020890256389975548, 0.029027879238128662, -0.07088994234800339, -0.022910360246896744, -0.02008439600467682, 0.0591086745262146, 0.0688088908791542, -0.026669932529330254, 0.0613342747092247, 0.023054933175444603, 0.018196480348706245, 0.03371579572558403, -0.026206469163298607, 0.026892637833952904, 0.031200723722577095, -0.05606779828667641, 0.004325162153691053, 0.007925892248749733, 0.036849383264780045, -0.03032838925719261, -0.037099942564964294, -0.012029158882796764, -0.03038012981414795, -0.014904052950441837, 0.016504772007465363, 0.009149531833827496, 0.0038941395469009876, 0.047840457409620285, 0.02203049696981907, 0.04070908948779106, 0.0356103740632534, -0.03844290226697922, 0.05701291188597679, -0.019113168120384216, 0.00768691161647439, -0.0012302895775064826, -0.022047264501452446, -0.04390961304306984, 0.019439587369561195, 0.028228912502527237, -0.017738383263349533, -0.039184775203466415, 0.03899333253502846, 0.001195578253827989, 0.014877923764288425, 0.06431291252374649, -0.03099645860493183, -0.040512412786483765, -0.026354096829891205, 0.007064587436616421, 0.00675229774788022, -0.0037449467927217484, 0.012630270794034004, -0.06719942390918732, -0.013899414800107479, -0.031771738082170486, -0.04497430846095085, -0.028403019532561302, 0.02849218249320984, 0.012962942011654377, 0.06818399578332901, 0.025429854169487953, -0.06092800572514534, -0.0022853498812764883, 0.021376948803663254, -0.055721115320920944, 0.040108658373355865, 0.02533498965203762, 0.11077021807432175, -0.06387350708246231, -0.06353189051151276, -0.004772457759827375, -0.017680717632174492, -0.04202945902943611, 0.01777534931898117, 0.012447529472410679, -0.010982349514961243, -0.00787304900586605, -0.00027002787101082504, 0.053098492324352264, -0.044352464377880096, -0.020583927631378174, 0.0681949034333229, -0.008744882419705391, 0.03398970887064934, -0.06135169416666031, -0.013714202679693699, 0.010685659013688564, -0.026189465075731277, -0.027702370658516884, 0.028169075027108192, -0.023268835619091988, -0.02574920281767845, -0.019970376044511795, -0.0321277417242527, 0.011646360158920288, 0.0724816620349884, -0.0033666035160422325, -0.03287322819232941, -0.027696819975972176, 0.024827826768159866, 0.03267918899655342, 0.025837406516075134, -0.028079701587557793, 0.018987486138939857, 0.0634240061044693, 0.025531072169542313, -0.03756088763475418, 0.05285336822271347, 0.010991792194545269, -0.026960838586091995, -0.027453064918518066, 0.02113358862698078, 0.008201566524803638, -0.052301306277513504, 0.04443024843931198, 0.01352175697684288, 0.0022288020700216293, -0.054585352540016174, -0.04472271353006363, 0.0386301726102829, -0.00967495609074831, -0.008780155330896378, 0.02942497842013836, 0.014856393449008465, -0.024601850658655167, 0.043330393731594086, -0.022525927051901817, 0.00032740362803451717, -0.043470174074172974, -0.014376155100762844, -0.005921961273998022, -0.02716035209596157, 0.014809141866862774, 0.0434623584151268, -0.003542852820828557, 0.07430411875247955, -0.023892441764473915, 0.013368329033255577, -0.054008688777685165, -0.03877045959234238, 0.009617127478122711, 0.06583740562200546, 0.061937130987644196, 0.04124520719051361, 0.005934481509029865, -0.04629587009549141, 0.03493957966566086, 0.07423155754804611, 0.047059316188097, 0.0015533671248704195, -0.03292747959494591, -0.017111502587795258, 0.04797247424721718, 0.05196543037891388, -0.04840075224637985, -0.02564213052392006, 0.004393238108605146, 0.03894846513867378, -0.010898123495280743, 0.008667217567563057, -0.030635379254817963, 0.03549884259700775, -0.057241614907979965, -0.049952585250139236, 0.039364028722047806, 0.041844967752695084, 0.007306658197194338, 0.02960977703332901, 0.023795662447810173, 0.01406661793589592, 0.041435759514570236, 0.022907283157110214, 0.0156314168125391, -0.05696060508489609, 0.018290231004357338, -0.00206507695838809, 0.04892928525805473, -0.046940453350543976, 0.038430795073509216, -0.014215720817446709, 0.000075424526585266, 0.03777433931827545, -0.02834346517920494, 0.05052774399518967, 0.0480254702270031, 0.019439341500401497, -0.03802909702062607, 0.020526887848973274, -0.01037306897342205, 0.030367882922291756, 0.022607561200857162, 0.0032633179798722267, 0.08255785703659058, 0.010559291578829288, 0.04765080288052559, 0.09814964234828949, 0.03339287266135216, 0.026869850233197212, 0.010551772080361843, 0.04312826320528984, 0.021236414089798927, -0.02104519121348858, 0.059883102774620056, -0.05249355733394623, 0.04004097357392311, -0.052182886749506, 0.006357666105031967, -0.01881370134651661, -0.025229040533304214, 0.050306402146816254, 0.03357503190636635, -0.03372335433959961, 0.003232514951378107, 0.006070651579648256, -0.014906694181263447, 0.03908245638012886, -0.014771233312785625, 0.00955413468182087, -0.006304355338215828, -0.042440056800842285, -0.0024261476937681437, -0.07592180371284485, -0.03348175063729286, -0.006188719533383846, -0.027315987274050713, -0.021205957978963852, -0.09416994452476501, -0.024843450635671616, -0.05954195186495781, -0.007725825998932123, 0.03067285194993019, 0.008852893486618996, -0.021640056744217873, -0.02890906296670437, 0.01818704791367054, -0.0522942952811718, -0.04294387996196747, -0.03800949081778526, -0.0640222430229187, -0.04208223149180412, -0.07439807802438736, 0.041638925671577454, 0.04731385037302971, 0.011424741707742214, -0.0054178922437131405, 0.012104849331080914, 0.01660039834678173, -0.024443369358778, 0.017546242102980614, 0.06100008264183998, -0.0399789959192276, -0.06715122610330582, 0.007848725654184818, -0.0025475032161921263, 0.0070020463317632675, 0.033216677606105804, -0.04375028610229492, 0.09611626714468002, 0.08579393476247787, 0.008251110091805458, 0.035280801355838776, -0.0021004320587962866, -0.05758124589920044, -0.049215637147426605, -0.035758696496486664, -0.05082470178604126, -0.02079705335199833, -0.044605985283851624, -0.06138642132282257, -0.030399782583117485, -0.040993981063365936, -0.0050945403054356575, 0.0015962040051817894, 0.02142360247671604, 0.013101067394018173, 0.036527618765830994, 0.01985182613134384, 0.03282074257731438, -0.023823576048016548, -0.04613114893436432, 0.05640121176838875, -0.012722749263048172, 0.018699591979384422, -0.08847438544034958, 0.002125868108123541, 0.03000728413462639, 0.0019364393083378673, 0.019299231469631195, -0.02482989989221096, 0.06503523141145706, 0.005157060455530882, 0.006779454182833433, 0.006854201201349497, -0.009221118874847889, 0.0000611612485954538, -0.01132795587182045, -0.013929418288171291, 0.006617349572479725, -0.034019723534584045, -0.022909333929419518, -0.019006293267011642, 0.03906293585896492, -0.047899991273880005, -0.04750298336148262, -0.028777552768588066, 0.04183858633041382, 0.0527828224003315, -0.00770648755133152, -0.05220333859324455, -0.01480027660727501, -0.0541180856525898, -0.01120089553296566, 0.013936826959252357, 0.0010828556260094047, 0.00707854563370347, 0.02701951004564762, 0.01750948652625084, -0.011296072043478489, 0.005237089470028877, 0.0543694868683815, 0.07405547052621841, 0.014586679637432098, -0.08055394142866135, 0.0008059357642196119, -0.013213139958679676, 0.016266586259007454, -0.018390635028481483, -0.025099409744143486, -0.022812582552433014, -0.11035110801458359, -0.028247816488146782, -0.0011249961098656058, 0.0022739588748663664, -0.017506422474980354, 0.039106335490942, -0.005573693197220564, -0.008779097348451614, -0.0003335112996865064, 0.014521424658596516, 0.046055011451244354, -0.018237322568893433, 0.04053593799471855, -0.017791101709008217, 0.006205028388649225, -0.05459733307361603, 0.038355752825737, -0.03976501524448395, -0.042918793857097626, 0.009836973622441292, 0.06194120645523071, -0.007385373115539551, 0.07119572162628174, 0.0708831399679184, 0.04875832051038742, -0.054415855556726456, 0.020191166549921036, 0.07939274609088898, -0.026305975392460823, -0.037939392030239105, -0.003622025717049837, -0.004212899133563042, -0.02136409282684326, 0.02156946249306202, -0.023970317095518112, 0.05476156994700432, 0.03661252185702324, 0.006877868436276913, -0.00923953391611576, -0.017164884135127068, -0.004939901642501354, -0.022367339581251144, -0.056034356355667114, -0.033769845962524414, -0.002462200354784727, -0.032569169998168945, 0.02423209138214588, 0.023739317432045937, 0.03169921785593033, 0.060320135205984116, 0.012331386096775532, -0.04851773381233215, -0.0053722914308309555, 0.017975499853491783, 0.018879860639572144, -0.03192271292209625, -0.07182225584983826, -0.04689459502696991, 0.03408961743116379, 0.0500287190079689, -0.022141752764582634, -0.07024296373128891, 0.022788595408201218, 0.04655919969081879, -0.041916247457265854, 0.052879221737384796, -0.021676715463399887, 0.05388334393501282, 0.04802572354674339, -0.012868182733654976, 0.038229577243328094, -0.016120541840791702, -0.008496526628732681, 0.0028119850903749466, 0.0397217683494091, -0.01356873381882906, -0.025568414479494095, -0.05321945995092392, 0.024437664076685905, 0.04437825828790665, 0.03345441445708275, 0.0412936769425869, -0.039336588233709335, -0.0269584022462368, 0.024068845435976982, 0.025666577741503716, -0.047701042145490646, -0.01804562471807003, 0.04500819742679596, 0.03838292136788368, -0.04053839296102524, -0.0290667787194252, -0.02926693856716156, 0.008984275162220001, 0.031511466950178146, 0.002394152572378516, -0.023790672421455383, -0.03130345791578293, 0.04671083763241768, -0.028751734644174576, -0.035544201731681824, -0.07276587933301926, 0.028369206935167313, -0.005957216024398804, -0.03457695245742798, 0.0512872077524662, 0.02208913303911686, 0.028583798557519913, 0.07063738256692886, 0.015125398524105549, 0.006837417371571064, -0.044379640370607376, 0.046558406203985214, -0.01744607836008072, -0.010390249080955982, -0.0013001830084249377, -0.040575966238975525, -0.025239890441298485, -0.0115289855748415, -0.04666130244731903, -0.03065667487680912, -0.018651310354471207, 0.02396867610514164, -0.004807353485375643, -0.006143676117062569, -0.00245463103055954, 0.04051123932003975, -0.0026599804405122995, -0.037819720804691315, -0.039056189358234406, -0.016151374205946922, -0.06259435415267944, -0.05637970194220543, -0.0026977600064128637, 0.013634353876113892, 0.03291456401348114, 0.036015450954437256, 0.01900656707584858, 0.014192003756761551, 0.007488280069082975, -0.0216146782040596, 0.014025820419192314, 0.020223908126354218, -0.04974775016307831, -0.0263364240527153, 0.03502542898058891, 0.011386013589799404, 0.02824324741959572, -0.02836114540696144, 0.0461876206099987, 0.0103175463154912, -0.015471961349248886, -0.03793574124574661, 0.019966010004281998, 0.03529808297753334, -0.0761040449142456, -0.05543947592377663, -0.015290101990103722, -0.026722755283117294, 0.03196289762854576, -0.021524479612708092, -0.0030873019713908434, 0.0272007305175066, 0.006106420420110226, 0.03482980653643608, -0.027227479964494705, -0.0203394778072834, 0.0355321504175663, -0.005992118269205093, 0.03546036034822464, -0.03943774849176407, 0.05558813735842705, -0.03315054997801781, 0.016140909865498543, -0.022329699248075485, -0.0015468404162675142, -0.05067824199795723, 0.029714161530137062, -0.011748941615223885, -0.022069334983825684, -0.002091302303597331, 0.030964965000748634, -0.008254324086010456, 0.014174859039485455, -0.02043914794921875, 0.022479595616459846, -0.03585274890065193, 0.07277841866016388, -0.039724789559841156, 0.023589041084051132, -0.05158130079507828, 0.024624135345220566, -0.008088129572570324, 0.014616893604397774, -0.003018197137862444, -0.020996181294322014, 0.04870973527431488, 0.03838043659925461, 0.0303481575101614, 0.041597262024879456, -0.0057175010442733765, -0.006988174747675657, -0.0018264271784573793, -0.06233445927500725, -0.018056590110063553, 0.009918274357914925, 0.025353044271469116, -0.01558882649987936, 0.049172293394804, 0.026623759418725967, -0.06091434508562088, -0.07869164645671844, 0.025953607633709908, 0.02697562240064144, 0.009784298948943615, 0.018711941316723824, 0.02815718948841095, 0.021762939170002937, 0.03984007611870766, -0.009466717019677162, -0.02534913644194603, -0.010461249388754368, -0.05914108455181122, 0.021950669586658478, -0.003924290183931589, 0.01617477834224701, 0.030345875769853592, -0.04899030178785324, -0.03405926749110222, 0.04088272154331207, 0.0271802619099617, 0.009426427073776722, -0.005973707884550095, -0.060889385640621185, 0.021312197670340538, -0.004894097335636616, -0.04103674367070198, 0.023280205205082893, -0.005118499044328928, -0.022312071174383163, 0.05301486700773239, 0.004575088620185852, 0.0004288485215511173, 0.0508141815662384, 0.005077221896499395, -0.02223227545619011, 0.06114788353443146, -0.04003486409783363, -0.003995553590357304, 0.04864488169550896, -0.06579481065273285, -0.0077319336123764515, -0.060523781925439835, 0.06958133727312088, -0.07086314260959625, 0.036395713686943054, 0.06479337066411972, -0.0100735267624259, 0.027931706979870796, -0.06188264116644859, -0.06140010058879852, 0.01286567747592926, -0.03328873589634895, 0.05876075476408005, 0.01689404994249344, -0.059066250920295715, 0.05716874450445175, 0.02140294760465622, -0.04905478283762932, 0.023051593452692032, 0.040763404220342636, 0.03761725872755051, 0.01772710122168064, 0.04149696230888367, -0.04506377503275871, -0.026848064735531807, -0.04515676200389862, 0.008919579908251762, -0.060166433453559875, -0.012034174054861069, 0.009049623273313046, -0.018062198534607887, -0.006252022460103035, 0.03203769400715828, -0.021099433302879333, -0.01812063716351986, 0.043102722615003586, -0.04757891595363617, -0.04504264518618584, -0.005846546031534672, -0.002948397770524025, -0.04876638948917389, -0.013171051628887653, -0.030123986303806305, -0.0021650465205311775, 0.01105848141014576, 0.003935638815164566, -0.018479060381650925, -0.025929464027285576, 0.020229993388056755, -0.03962304815649986, -0.03721765801310539, 0.05353482440114021, -0.016255661845207214, -0.02186344936490059, 0.0326397530734539, 0.027183230966329575, -0.0009337279479950666, 0.027011986821889877, -0.0156215475872159, 0.032031115144491196, -0.05688212439417839, -0.027967609465122223, 0.023971455171704292, 0.0035720912273973227, 0.0196638535708189, 0.009860113263130188, 0.020370975136756897, 0.05627262964844704, 0.027752041816711426, 0.007703346200287342, -0.03862893208861351, -0.03750598430633545, 0.022633051499724388, -0.04312540590763092, 0.01924031600356102, 0.0013816669816151261, -0.04757743701338768, -0.019837863743305206, -0.0021299126092344522, -0.03273363783955574, 0.0489981584250927, -0.0569157637655735, -0.007190704345703125, 0.05232873186469078, -0.02919156849384308, -0.0585140734910965, -0.08653650432825089, -0.017192400991916656, -0.045216742902994156, 0.004583682399243116, 0.04663437604904175, -0.035838086158037186, 0.0375392772257328, -0.04896141216158867, -0.034850943833589554, 0.032589539885520935, 0.054392408579587936, -0.05869578197598457, 0.06178595870733261, 0.05436115339398384, -0.06473219394683838, 0.010754475370049477, 0.006459041964262724, -0.04775717481970787, -0.028136607259511948, 0.029629763215780258, -0.0008767828694544733, 0.026696503162384033, 0.03155896067619324, -0.05113893002271652, -0.0218371469527483, -0.07093676924705505, -0.03004089929163456, -0.07080622017383575, 0.006818925496190786, 0.05018739029765129 ]
Declan/NewYorkTimes_model_v8
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-1 results: [] --- <!-- 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__hate_speech_offensive__train-32-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0606 - Accuracy: 0.4745 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0941 | 1.0 | 19 | 1.1045 | 0.2 | | 0.9967 | 2.0 | 38 | 1.1164 | 0.35 | | 0.8164 | 3.0 | 57 | 1.1570 | 0.4 | | 0.5884 | 4.0 | 76 | 1.2403 | 0.35 | | 0.3322 | 5.0 | 95 | 1.3815 | 0.35 | | 0.156 | 6.0 | 114 | 1.8102 | 0.3 | | 0.0576 | 7.0 | 133 | 2.1439 | 0.4 | | 0.0227 | 8.0 | 152 | 2.4368 | 0.3 | | 0.0133 | 9.0 | 171 | 2.5994 | 0.4 | | 0.009 | 10.0 | 190 | 2.7388 | 0.35 | | 0.0072 | 11.0 | 209 | 2.8287 | 0.35 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008217466995120049, 0.029682669788599014, -0.036100395023822784, 0.0527840256690979, 0.049217335879802704, 0.02910299226641655, -0.012439161539077759, -0.019730374217033386, -0.054278068244457245, 0.06102197617292404, 0.015232931822538376, -0.031611185520887375, 0.02152160182595253, 0.03635607287287712, -0.03465953469276428, -0.03649672865867615, -0.020893165841698647, -0.012776028364896774, -0.042450208216905594, 0.0038957158103585243, 0.0021672071889042854, -0.012653653509914875, -0.015651393681764603, 0.01503765769302845, -0.014733558520674706, 0.038465701043605804, -0.013728653080761433, 0.023497773334383965, 0.025298941880464554, -0.05556565523147583, 0.011120597831904888, -0.02432645671069622, -0.03856336325407028, 0.004606460686773062, -0.02680685557425022, -0.005307954270392656, 0.003882017685100436, 0.021932870149612427, 0.040969207882881165, 0.03879657760262489, 0.012514735572040081, 0.006053052376955748, -0.007158070802688599, -0.0174869317561388, 0.05925577133893967, -0.009308467619121075, -0.046224337071180344, -0.010831939987838268, 0.0244491808116436, -0.04109929874539375, -0.06266000121831894, -0.051658835262060165, -0.018520072102546692, 0.028220877051353455, -0.011432187631726265, -0.013739215210080147, -0.05646929517388344, 0.017436599358916283, 0.06226624175906181, -0.03944099694490433, -0.030821288004517555, 0.0011790639255195856, -0.06108774617314339, -0.004178512375801802, 0.024426260963082314, -0.028921568766236305, 0.001976653467863798, -0.044616155326366425, 0.01807721145451069, -0.01991027407348156, 0.055864784866571426, -0.0207124724984169, 0.02812831662595272, -0.07082459330558777, -0.02264310047030449, -0.02038480155169964, 0.05866638571023941, 0.06950049847364426, -0.02729400247335434, 0.061223529279232025, 0.02353733219206333, 0.018401216715574265, 0.03378227725625038, -0.025595596060156822, 0.026143865659832954, 0.029654085636138916, -0.05651423707604408, 0.004664498381316662, 0.00749211385846138, 0.03814779594540596, -0.03146357089281082, -0.03786589950323105, -0.011670547537505627, -0.031066719442605972, -0.014305694960057735, 0.01595499739050865, 0.009064601734280586, 0.0032151027116924524, 0.04883382469415665, 0.02118869684636593, 0.04225095734000206, 0.035751327872276306, -0.03747271001338959, 0.05622067674994469, -0.01923512853682041, 0.007005554623901844, -0.0012358619133010507, -0.02235654927790165, -0.043498795479536057, 0.0200505331158638, 0.028587734326720238, -0.01786632649600506, -0.03863055631518364, 0.03815579414367676, 0.0004461133503355086, 0.01649687997996807, 0.06391899287700653, -0.030174335464835167, -0.041363444179296494, -0.025114353746175766, 0.007847892120480537, 0.006914741825312376, -0.003208125475794077, 0.011499522253870964, -0.06691206991672516, -0.014279019087553024, -0.031485412269830704, -0.04523896053433418, -0.028261801227927208, 0.029283251613378525, 0.013710219413042068, 0.06809286773204803, 0.026075836271047592, -0.061190877109766006, -0.002492888830602169, 0.021433815360069275, -0.05540546402335167, 0.04127863794565201, 0.024871118366718292, 0.11064328998327255, -0.06404918432235718, -0.06430413573980331, -0.003845397150143981, -0.017643798142671585, -0.04242275655269623, 0.017234906554222107, 0.011919255368411541, -0.010778112336993217, -0.009063374251127243, -0.000821396301034838, 0.052264150232076645, -0.043889276683330536, -0.020923534408211708, 0.0684005618095398, -0.009067075327038765, 0.034093454480171204, -0.060671042650938034, -0.01319973822683096, 0.01127613428980112, -0.02521931752562523, -0.02760004810988903, 0.027807483449578285, -0.024125637486577034, -0.02639785408973694, -0.019125092774629593, -0.032563965767621994, 0.010941916145384312, 0.07335840165615082, -0.0036313082091510296, -0.03270458057522774, -0.028615102171897888, 0.024413475766777992, 0.03283615782856941, 0.026035627350211143, -0.027950873598456383, 0.018741657957434654, 0.06348375976085663, 0.024951789528131485, -0.036732472479343414, 0.05269717797636986, 0.011608494445681572, -0.02706797979772091, -0.026663444936275482, 0.021499954164028168, 0.009182372130453587, -0.050780072808265686, 0.04542187973856926, 0.013976518996059895, 0.002936443779617548, -0.05541864410042763, -0.044660910964012146, 0.038989003747701645, -0.00973257701843977, -0.009089059196412563, 0.028700925409793854, 0.014939907006919384, -0.024746956303715706, 0.042721983045339584, -0.0226243045181036, -0.000025002043912536465, -0.04329424351453781, -0.01524113304913044, -0.004887884017080069, -0.027429111301898956, 0.01470882911235094, 0.04257747158408165, -0.0034592931624501944, 0.07413608580827713, -0.02434995211660862, 0.012365717440843582, -0.05517062544822693, -0.03830930218100548, 0.009894770570099354, 0.06581562757492065, 0.061821531504392624, 0.040297821164131165, 0.0065679303370416164, -0.046534109860658646, 0.035345423966646194, 0.07387455552816391, 0.04661770910024643, 0.0013318333076313138, -0.033460188657045364, -0.017416659742593765, 0.04705130681395531, 0.052419863641262054, -0.0484309084713459, -0.02532166987657547, 0.004669313319027424, 0.03890198469161987, -0.010792822577059269, 0.008583847433328629, -0.02944333851337433, 0.03412545472383499, -0.05748309940099716, -0.04955831542611122, 0.03975881263613701, 0.04222975671291351, 0.007583474274724722, 0.03018205240368843, 0.02433919534087181, 0.013860097154974937, 0.041893962770700455, 0.023349767550826073, 0.015861814841628075, -0.056997571140527725, 0.018029972910881042, -0.0014556226087734103, 0.04926726222038269, -0.04729848355054855, 0.038138169795274734, -0.01342063955962658, 0.000028640108212130144, 0.037476759403944016, -0.028293143957853317, 0.0504552498459816, 0.0477210208773613, 0.018296407535672188, -0.037791620939970016, 0.02096875011920929, -0.011103412136435509, 0.028921052813529968, 0.023029059171676636, 0.002517406130209565, 0.08168742805719376, 0.010672993957996368, 0.04685331881046295, 0.09818221628665924, 0.033320870250463486, 0.02688756212592125, 0.011676114983856678, 0.04362908750772476, 0.021028505638241768, -0.02110235206782818, 0.06061292439699173, -0.052387017756700516, 0.03955209627747536, -0.050664421170949936, 0.006723536644130945, -0.019899684935808182, -0.025392349809408188, 0.051010578870773315, 0.03400183469057083, -0.03385258838534355, 0.003660032991319895, 0.006580827757716179, -0.015040649101138115, 0.038778290152549744, -0.014462540857493877, 0.008627663366496563, -0.006806900259107351, -0.04223572462797165, -0.001202941290102899, -0.07583492994308472, -0.03375083953142166, -0.006892822217196226, -0.027125496417284012, -0.02112053707242012, -0.09504304826259613, -0.025074759498238564, -0.06048479303717613, -0.008241638541221619, 0.030591057613492012, 0.009723018854856491, -0.022573299705982208, -0.02953704260289669, 0.019268875941634178, -0.05192513018846512, -0.0429939404129982, -0.03847682103514671, -0.06452585756778717, -0.04209268465638161, -0.0749640166759491, 0.042327020317316055, 0.047577615827322006, 0.011722012422978878, -0.005987320560961962, 0.011127850040793419, 0.016881762072443962, -0.02417888306081295, 0.017459996044635773, 0.060876037925481796, -0.03987712785601616, -0.06831830739974976, 0.007374292239546776, -0.0023504861164838076, 0.006808764301240444, 0.032248757779598236, -0.042866215109825134, 0.09539619833230972, 0.08710481971502304, 0.008434305898845196, 0.035474225878715515, -0.0029419378843158484, -0.05727619677782059, -0.049264222383499146, -0.03515208140015602, -0.05107429623603821, -0.01972261071205139, -0.04412216320633888, -0.06170341745018959, -0.030740460380911827, -0.03926137834787369, -0.004900239408016205, 0.002186450408771634, 0.021609287708997726, 0.012567820027470589, 0.03674177825450897, 0.02021312154829502, 0.03304251283407211, -0.0226849764585495, -0.04586010053753853, 0.056043945252895355, -0.012798821553587914, 0.01789706200361252, -0.08841375261545181, 0.002192947780713439, 0.02944161556661129, 0.0005143212620168924, 0.020705407485365868, -0.024770459160208702, 0.06457694619894028, 0.004226543474942446, 0.006465919315814972, 0.0063370224088430405, -0.009215396828949451, 0.0006281447713263333, -0.011844970285892487, -0.013762934133410454, 0.005576590541750193, -0.035250235348939896, -0.023831868544220924, -0.018210677430033684, 0.03973620757460594, -0.04816713556647301, -0.04660053923726082, -0.02843283675611019, 0.0422913059592247, 0.05269572138786316, -0.007790295872837305, -0.0519181489944458, -0.01404622197151184, -0.05364204943180084, -0.010313006117939949, 0.014062191359698772, 0.0002972518850583583, 0.007586158812046051, 0.027071112766861916, 0.016989201307296753, -0.01118041854351759, 0.005023840814828873, 0.055697064846754074, 0.07390940934419632, 0.014328129589557648, -0.0808212161064148, 0.0009209827985614538, -0.01292524952441454, 0.016361230984330177, -0.01819762960076332, -0.02533518336713314, -0.022582730278372765, -0.10999196022748947, -0.027380330488085747, -0.0009126935037784278, 0.002806084230542183, -0.018905295059084892, 0.03937174007296562, -0.005142289213836193, -0.010111218318343163, -0.0007522762753069401, 0.013937002047896385, 0.04549499228596687, -0.019501395523548126, 0.04016304761171341, -0.016788287088274956, 0.006741471588611603, -0.05488419532775879, 0.037130992859601974, -0.03858740255236626, -0.042732417583465576, 0.009483915753662586, 0.06211854889988899, -0.007276605349034071, 0.07173360139131546, 0.07076282054185867, 0.048393990844488144, -0.055023785680532455, 0.02016986347734928, 0.07986143976449966, -0.025619223713874817, -0.03798312321305275, -0.0030055874958634377, -0.005308289546519518, -0.02129249833524227, 0.020736128091812134, -0.02401762828230858, 0.05524399131536484, 0.03604227676987648, 0.006976577918976545, -0.010098373517394066, -0.0170194860547781, -0.004670837428420782, -0.023346181958913803, -0.05551430583000183, -0.03417259454727173, -0.0023849382996559143, -0.03254526108503342, 0.02450851909816265, 0.024888789281249046, 0.03170623630285263, 0.06019432097673416, 0.012577105313539505, -0.048600852489471436, -0.005097374320030212, 0.017776815220713615, 0.019570885226130486, -0.03227968141436577, -0.0718192458152771, -0.047722622752189636, 0.03464839234948158, 0.050202999264001846, -0.02165875770151615, -0.06950948387384415, 0.023873211815953255, 0.04726288095116615, -0.04142750799655914, 0.05302094668149948, -0.02068592980504036, 0.05400414764881134, 0.04832067713141441, -0.012590778060257435, 0.038679689168930054, -0.015768494457006454, -0.008080001920461655, 0.00227682339027524, 0.04022030159831047, -0.01265572477132082, -0.026092499494552612, -0.05209222063422203, 0.024088701233267784, 0.04477843642234802, 0.03409392014145851, 0.04109356552362442, -0.039525408297777176, -0.02682405337691307, 0.024368299171328545, 0.024784114211797714, -0.04741785675287247, -0.017773278057575226, 0.044801294803619385, 0.039107631891965866, -0.04086882993578911, -0.029810447245836258, -0.02918281964957714, 0.008344016969203949, 0.031949788331985474, 0.0015487376367673278, -0.023767124861478806, -0.03160911425948143, 0.04682480916380882, -0.028581522405147552, -0.03577903285622597, -0.07358897477388382, 0.027219586074352264, -0.005608093459159136, -0.03455895185470581, 0.05061225965619087, 0.022394821047782898, 0.02856387197971344, 0.07071592658758163, 0.013363223522901535, 0.006439750082790852, -0.044452909380197525, 0.04754185676574707, -0.01724953204393387, -0.010814874432981014, -0.001151973963715136, -0.040957462042570114, -0.02487022802233696, -0.011152878403663635, -0.047505613416433334, -0.03008124604821205, -0.019461816176772118, 0.02396095171570778, -0.004080172162503004, -0.006613733246922493, -0.003129642689600587, 0.03923998773097992, -0.004013373050838709, -0.03704901039600372, -0.038276441395282745, -0.016132179647684097, -0.06296225637197495, -0.05539802089333534, -0.0029713271651417017, 0.013857376761734486, 0.03323221206665039, 0.03676543012261391, 0.01858401671051979, 0.014287227764725685, 0.008401904255151749, -0.02047896943986416, 0.015602893196046352, 0.01961589977145195, -0.04987340047955513, -0.02597959153354168, 0.03443197160959244, 0.012199761345982552, 0.02924192138016224, -0.02827535942196846, 0.04586318880319595, 0.011359491385519505, -0.014825370162725449, -0.03716172277927399, 0.019965842366218567, 0.0355035737156868, -0.07558011263608932, -0.0554925762116909, -0.01508373487740755, -0.027373066172003746, 0.03194250911474228, -0.02131553366780281, -0.002630420960485935, 0.027839474380016327, 0.005863612983375788, 0.03597671166062355, -0.02792276069521904, -0.020406076684594154, 0.035783007740974426, -0.005544307641685009, 0.0362994484603405, -0.03978247568011284, 0.055237364023923874, -0.03247210755944252, 0.015572521835565567, -0.02134360373020172, -0.0030668629333376884, -0.051063813269138336, 0.029793545603752136, -0.01171945221722126, -0.022562973201274872, -0.0021265961695462465, 0.031397778540849686, -0.007962705567479134, 0.014610964804887772, -0.01990325190126896, 0.02208845503628254, -0.03442059084773064, 0.0733075812458992, -0.04004267230629921, 0.022439993917942047, -0.05231168493628502, 0.023054474964737892, -0.008360208943486214, 0.014536973088979721, -0.00299192126840353, -0.02101922407746315, 0.04828912764787674, 0.038138147443532944, 0.03141430392861366, 0.04140232130885124, -0.00553025072440505, -0.007597121875733137, -0.002075501484796405, -0.06316931545734406, -0.018674438819289207, 0.010868215933442116, 0.025297684594988823, -0.015487994998693466, 0.049104489386081696, 0.026264311745762825, -0.06120450049638748, -0.07827024161815643, 0.026831690222024918, 0.026414133608341217, 0.009746321476995945, 0.019125930964946747, 0.02799174189567566, 0.02232678048312664, 0.040270328521728516, -0.010369060561060905, -0.025973621755838394, -0.010424972511827946, -0.059520598500967026, 0.022115034982562065, -0.004706841427832842, 0.016675526276230812, 0.029995692893862724, -0.0486898235976696, -0.03501993045210838, 0.04128303378820419, 0.02783598192036152, 0.009679202921688557, -0.006230466533452272, -0.06058530509471893, 0.021642448380589485, -0.00489556510001421, -0.04143662750720978, 0.022170860320329666, -0.004271779675036669, -0.02177595905959606, 0.05334434285759926, 0.004632344003766775, 0.0006589223048649728, 0.05041097477078438, 0.004844452254474163, -0.02233714424073696, 0.06164233013987541, -0.03983473777770996, -0.005254065152257681, 0.048547204583883286, -0.06545045971870422, -0.008057945407927036, -0.06067910045385361, 0.06992596387863159, -0.07134413719177246, 0.035487398505210876, 0.06483478844165802, -0.010781551711261272, 0.02806582674384117, -0.061243344098329544, -0.06115284934639931, 0.01260586827993393, -0.03348269313573837, 0.05830854922533035, 0.01633252389729023, -0.058614395558834076, 0.057895414531230927, 0.022326037287712097, -0.04950599744915962, 0.02325640618801117, 0.04072897508740425, 0.03723340481519699, 0.018461119383573532, 0.04141773283481598, -0.04408755525946617, -0.02705313451588154, -0.045317936688661575, 0.009337018243968487, -0.05896727740764618, -0.011490046046674252, 0.00887805875390768, -0.018700813874602318, -0.006868437863886356, 0.030615178868174553, -0.021630365401506424, -0.016721468418836594, 0.042294640094041824, -0.04745204374194145, -0.04550934582948685, -0.005826383363455534, -0.0022997281048446894, -0.049372345209121704, -0.013015388511121273, -0.03021175041794777, -0.002541783032938838, 0.01148866955190897, 0.003509656758978963, -0.019409717991948128, -0.02551199682056904, 0.01811315305531025, -0.04041898995637894, -0.037656236439943314, 0.05399966239929199, -0.016621937975287437, -0.021855177357792854, 0.031887296587228775, 0.0262612272053957, -0.0006887443014420569, 0.026762941852211952, -0.015845561400055885, 0.0322667695581913, -0.056763336062431335, -0.028851035982370377, 0.025019563734531403, 0.0037766366731375456, 0.019150424748659134, 0.0102299889549613, 0.021109309047460556, 0.056447289884090424, 0.027366168797016144, 0.007842527702450752, -0.038321077823638916, -0.0389704704284668, 0.021976597607135773, -0.0430971123278141, 0.01888691820204258, 0.0013982785167172551, -0.04740038514137268, -0.01961502619087696, -0.001737636630423367, -0.03326087445020676, 0.04917190968990326, -0.05668150261044502, -0.007538495119661093, 0.05223149061203003, -0.030311457812786102, -0.05828867852687836, -0.08609777688980103, -0.017714302986860275, -0.04645949602127075, 0.004434339702129364, 0.04641935974359512, -0.03634308651089668, 0.03791213035583496, -0.04922956973314285, -0.03506524860858917, 0.03307424858212471, 0.05439912900328636, -0.05846041068434715, 0.05949164554476738, 0.05276897922158241, -0.06467185169458389, 0.010692005977034569, 0.006659449078142643, -0.04799651727080345, -0.027249842882156372, 0.029027551412582397, -0.00010787774954224005, 0.02726135589182377, 0.030020343139767647, -0.050809551030397415, -0.021254831925034523, -0.0709506943821907, -0.029232574626803398, -0.07084052264690399, 0.007066636811941862, 0.0508258230984211 ]
Declan/Politico_model_v1
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-2 results: [] --- <!-- 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__hate_speech_offensive__train-32-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7136 - Accuracy: 0.679 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1052 | 1.0 | 19 | 1.0726 | 0.45 | | 1.0421 | 2.0 | 38 | 1.0225 | 0.5 | | 0.9173 | 3.0 | 57 | 0.9164 | 0.6 | | 0.6822 | 4.0 | 76 | 0.8251 | 0.7 | | 0.4407 | 5.0 | 95 | 0.8908 | 0.5 | | 0.2367 | 6.0 | 114 | 0.6772 | 0.75 | | 0.1145 | 7.0 | 133 | 0.7792 | 0.65 | | 0.0479 | 8.0 | 152 | 1.0657 | 0.6 | | 0.0186 | 9.0 | 171 | 1.2228 | 0.65 | | 0.0111 | 10.0 | 190 | 1.1100 | 0.6 | | 0.0083 | 11.0 | 209 | 1.1991 | 0.65 | | 0.0067 | 12.0 | 228 | 1.2654 | 0.65 | | 0.0061 | 13.0 | 247 | 1.2837 | 0.65 | | 0.0046 | 14.0 | 266 | 1.2860 | 0.6 | | 0.0043 | 15.0 | 285 | 1.3160 | 0.65 | | 0.0037 | 16.0 | 304 | 1.3323 | 0.65 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.007991322316229343, 0.029663002118468285, -0.03497766703367233, 0.05252780392765999, 0.05045117810368538, 0.028616808354854584, -0.01212764997035265, -0.019580218940973282, -0.054238323122262955, 0.06081138178706169, 0.015711585059762, -0.031789638102054596, 0.020546844229102135, 0.036619823426008224, -0.035226382315158844, -0.03761175274848938, -0.019769763574004173, -0.01300373300909996, -0.04224087670445442, 0.0034014165867120028, 0.00269623682834208, -0.011881805025041103, -0.015709541738033295, 0.015748150646686554, -0.015331527218222618, 0.037889230996370316, -0.013483021408319473, 0.02370629832148552, 0.025683019310235977, -0.0552140437066555, 0.010850449092686176, -0.02399473637342453, -0.03847022354602814, 0.004484906792640686, -0.027264317497611046, -0.0048739369958639145, 0.0032764070201665163, 0.023606063798069954, 0.04066506028175354, 0.03799906745553017, 0.012363825924694538, 0.00795673206448555, -0.007754595018923283, -0.016853781417012215, 0.05976499617099762, -0.008962515741586685, -0.04633143171668053, -0.010753335431218147, 0.02406030148267746, -0.04158681258559227, -0.061677347868680954, -0.05103105679154396, -0.018405131995677948, 0.02824580855667591, -0.011250960640609264, -0.01383547205477953, -0.056411076337099075, 0.017235996201634407, 0.06227525696158409, -0.03951667249202728, -0.030886365100741386, -0.0003447894414421171, -0.060508325695991516, -0.005152443423867226, 0.02574198506772518, -0.029531218111515045, 0.002773660235106945, -0.045633018016815186, 0.018251042813062668, -0.020341835916042328, 0.05621159449219704, -0.021505745127797127, 0.02913353219628334, -0.07167116552591324, -0.022552182897925377, -0.020517641678452492, 0.05903502553701401, 0.06861250847578049, -0.027679232880473137, 0.06128637492656708, 0.023743662983179092, 0.01881556399166584, 0.03386025130748749, -0.026481905952095985, 0.02660488896071911, 0.03085426054894924, -0.05562387779355049, 0.0041275350376963615, 0.007763164583593607, 0.03732282668352127, -0.030728779733181, -0.03734826669096947, -0.012087386101484299, -0.030122794210910797, -0.014763166196644306, 0.01721804216504097, 0.009019015356898308, 0.003228631103411317, 0.04774387180805206, 0.0224689319729805, 0.040891919285058975, 0.035374488681554794, -0.03837762400507927, 0.055935200303792953, -0.01924183964729309, 0.006895082537084818, -0.0007130742305889726, -0.02210928127169609, -0.04413062706589699, 0.01976393163204193, 0.028301391750574112, -0.017693180590867996, -0.038919948041439056, 0.03839994594454765, 0.000852807133924216, 0.015210436657071114, 0.06444258242845535, -0.03126544877886772, -0.041088636964559555, -0.026085445657372475, 0.007930873893201351, 0.006292890291661024, -0.003997103311121464, 0.012155355885624886, -0.06734231114387512, -0.014337838627398014, -0.031456951051950455, -0.044311877340078354, -0.028345758095383644, 0.028565704822540283, 0.013137702830135822, 0.06739897280931473, 0.02619853988289833, -0.06216675043106079, -0.0028081792406737804, 0.02233084850013256, -0.055971793830394745, 0.03976047784090042, 0.025656497105956078, 0.11011303216218948, -0.06395567208528519, -0.06439828127622604, -0.004201419651508331, -0.01751956343650818, -0.041955847293138504, 0.017762484028935432, 0.012293534353375435, -0.011731160804629326, -0.007759035099297762, -0.0010735158575698733, 0.053781941533088684, -0.04483860358595848, -0.020341947674751282, 0.06869111210107803, -0.00905904546380043, 0.03436733037233353, -0.060963500291109085, -0.01276057306677103, 0.010757212527096272, -0.02583734504878521, -0.027752503752708435, 0.029391160234808922, -0.022772541269659996, -0.025368647649884224, -0.020443735644221306, -0.03216574713587761, 0.011428936384618282, 0.0734395757317543, -0.002423585159704089, -0.03289882466197014, -0.02745738811790943, 0.024445703253149986, 0.03270881623029709, 0.026258405297994614, -0.02753261849284172, 0.018581703305244446, 0.06272652745246887, 0.025061754509806633, -0.03690286725759506, 0.05305818095803261, 0.010042892768979073, -0.027262629941105843, -0.026915190741419792, 0.020924970507621765, 0.008604257367551327, -0.052237190306186676, 0.04421588405966759, 0.013739323243498802, 0.0027091531082987785, -0.05456794053316116, -0.04488745331764221, 0.03882806375622749, -0.010166945867240429, -0.009280131198465824, 0.029676029458642006, 0.014808572828769684, -0.024346696212887764, 0.043010227382183075, -0.022813547402620316, 0.0006768164457753301, -0.04357801005244255, -0.014147479087114334, -0.004961212165653706, -0.027238965034484863, 0.0143621526658535, 0.04275782033801079, -0.0041112289763987064, 0.07405660301446915, -0.024793270975351334, 0.013418352231383324, -0.05407911539077759, -0.038190796971321106, 0.00927216187119484, 0.0659734308719635, 0.062231797724962234, 0.041302479803562164, 0.00640470627695322, -0.047048475593328476, 0.034827955067157745, 0.07391005754470825, 0.047538626939058304, 0.002788577228784561, -0.0326293483376503, -0.017351215705275536, 0.047102123498916626, 0.052093058824539185, -0.04820775240659714, -0.02596733719110489, 0.004285928327590227, 0.03937487304210663, -0.010736819356679916, 0.008614280261099339, -0.030791092664003372, 0.03412454202771187, -0.05688859149813652, -0.050254661589860916, 0.038577210158109665, 0.04255928471684456, 0.00699759554117918, 0.029423993080854416, 0.024293769150972366, 0.01382838748395443, 0.04142535850405693, 0.02298121154308319, 0.016411781311035156, -0.056903205811977386, 0.018297681584954262, -0.0008901458932086825, 0.049247708171606064, -0.04684107005596161, 0.03774897754192352, -0.014035775326192379, -0.0003268384898547083, 0.03664737567305565, -0.02804691717028618, 0.04969235137104988, 0.0482611246407032, 0.01951085589826107, -0.03724630922079086, 0.021510418504476547, -0.01013731025159359, 0.029631294310092926, 0.02303081378340721, 0.0033907105680555105, 0.08183784037828445, 0.009584774263203144, 0.0483800508081913, 0.09821012616157532, 0.03348776325583458, 0.026403047144412994, 0.01098020188510418, 0.04333622008562088, 0.021013488993048668, -0.02175311930477619, 0.05967707559466362, -0.05353827029466629, 0.03943435102701187, -0.05131226405501366, 0.006232702638953924, -0.018991688266396523, -0.02548251673579216, 0.05031844973564148, 0.033132005482912064, -0.03338824585080147, 0.004020702559500933, 0.006121259182691574, -0.015285568311810493, 0.03931068629026413, -0.014465982094407082, 0.009120910428464413, -0.006229416001588106, -0.041538387537002563, -0.0025059569161385298, -0.0753876194357872, -0.03327128291130066, -0.006233721040189266, -0.027373693883419037, -0.021071316674351692, -0.09403209388256073, -0.025024693459272385, -0.060652367770671844, -0.008207251317799091, 0.03169502317905426, 0.008764964528381824, -0.021359823644161224, -0.02838362753391266, 0.01873726211488247, -0.05125129967927933, -0.042633481323719025, -0.03730180114507675, -0.0636453628540039, -0.04200541600584984, -0.07458104938268661, 0.04167472943663597, 0.048060815781354904, 0.011947720311582088, -0.004823122639209032, 0.011917059309780598, 0.016855280846357346, -0.02406006120145321, 0.01772100292146206, 0.06144273281097412, -0.039838578552007675, -0.0677943229675293, 0.008010216988623142, -0.001789084984920919, 0.006289608310908079, 0.033070456236600876, -0.043879181146621704, 0.09628888219594955, 0.08687861263751984, 0.008503361605107784, 0.03549360856413841, -0.0029328514356166124, -0.05743236094713211, -0.049189526587724686, -0.03558383882045746, -0.049953509122133255, -0.020513080060482025, -0.04380623996257782, -0.061689592897892, -0.031117694452404976, -0.04035860300064087, -0.005116714630275965, 0.0025432128459215164, 0.021609390154480934, 0.014073548838496208, 0.037793561816215515, 0.020917220041155815, 0.033228252083063126, -0.022953694686293602, -0.045505721122026443, 0.056436412036418915, -0.013095397502183914, 0.017135974019765854, -0.08852066099643707, 0.0017479233210906386, 0.030525807291269302, 0.0017449030419811606, 0.019577911123633385, -0.0239676795899868, 0.06502756476402283, 0.004669631365686655, 0.006346386391669512, 0.007428623735904694, -0.010614899918437004, 0.0004330210795160383, -0.011614594608545303, -0.014007281512022018, 0.0068173762410879135, -0.03496015444397926, -0.023216918110847473, -0.018555033951997757, 0.039854466915130615, -0.048197727650403976, -0.04684112221002579, -0.027687473222613335, 0.04143543168902397, 0.05244111269712448, -0.008186956867575645, -0.05326251685619354, -0.014694037847220898, -0.0547117181122303, -0.011329908855259418, 0.014451741240918636, 0.0012760567478835583, 0.006491103675216436, 0.027328958734869957, 0.01684284210205078, -0.011151180602610111, 0.005691518075764179, 0.05450808256864548, 0.07481224089860916, 0.014234639704227448, -0.08018700778484344, 0.0009799356339499354, -0.013162901625037193, 0.016032831743359566, -0.017863977700471878, -0.025250477716326714, -0.022844918072223663, -0.10996290296316147, -0.028330061584711075, -0.0008488900493830442, 0.003576561575755477, -0.01827942207455635, 0.03942364454269409, -0.004975518677383661, -0.009636357426643372, -0.000020995865270379, 0.014625176787376404, 0.0460483655333519, -0.017695825546979904, 0.040333349257707596, -0.017411166802048683, 0.006113964132964611, -0.05492975562810898, 0.03812013939023018, -0.0398649238049984, -0.04325848072767258, 0.009436980821192265, 0.062238745391368866, -0.007485800888389349, 0.07098204642534256, 0.07044437527656555, 0.04772345721721649, -0.0532633401453495, 0.020618893206119537, 0.07911863923072815, -0.0267034862190485, -0.03871993348002434, -0.0037171656731516123, -0.0037444140762090683, -0.022242838516831398, 0.021400872617959976, -0.02437390759587288, 0.05563962087035179, 0.03715507313609123, 0.006192960776388645, -0.009043592028319836, -0.01689906418323517, -0.004877774510532618, -0.022925252094864845, -0.0550987534224987, -0.033510345965623856, -0.002225714735686779, -0.032994747161865234, 0.024498991668224335, 0.023825427517294884, 0.03164482116699219, 0.05998563766479492, 0.012129430659115314, -0.04850639030337334, -0.006032481789588928, 0.018536489456892014, 0.019149605184793472, -0.0316372811794281, -0.07120227068662643, -0.0466562956571579, 0.03484051302075386, 0.049547892063856125, -0.021690309047698975, -0.07027477771043777, 0.023162871599197388, 0.047721508890390396, -0.04214664548635483, 0.0541575662791729, -0.0209504347294569, 0.05322922766208649, 0.04811015725135803, -0.011751283891499043, 0.03824598342180252, -0.01585431396961212, -0.008278649300336838, 0.003764843102544546, 0.03978629410266876, -0.013268688693642616, -0.025242481380701065, -0.05266306549310684, 0.02392643690109253, 0.04434226080775261, 0.03394284471869469, 0.041269395500421524, -0.03937194496393204, -0.026748178526759148, 0.024023467674851418, 0.025667980313301086, -0.04697533696889877, -0.01750553399324417, 0.04533713683485985, 0.0381837859749794, -0.040598418563604355, -0.030007902532815933, -0.029658177867531776, 0.009396876208484173, 0.031780343502759933, 0.0017156668473035097, -0.02380026876926422, -0.03204299509525299, 0.04642575979232788, -0.02880062535405159, -0.03521374613046646, -0.07261761277914047, 0.027896692976355553, -0.005976619198918343, -0.03406786918640137, 0.05190087482333183, 0.022195003926753998, 0.02778054215013981, 0.06979683041572571, 0.015169365331530571, 0.007998284883797169, -0.044796936213970184, 0.046547017991542816, -0.01765032671391964, -0.011343799531459808, -0.0011350585846230388, -0.04110004007816315, -0.025745801627635956, -0.010945367626845837, -0.046253278851509094, -0.031585339456796646, -0.019533788785338402, 0.023495333269238472, -0.004831514321267605, -0.006093755830079317, -0.0026098862290382385, 0.040507953613996506, -0.0028312273789197206, -0.03738286718726158, -0.03958222642540932, -0.016586411744356155, -0.06303643435239792, -0.05594312399625778, -0.002530329627916217, 0.01268134918063879, 0.03276697173714638, 0.03641607612371445, 0.018415657803416252, 0.014114061370491982, 0.008149010129272938, -0.022245503962039948, 0.01474875956773758, 0.01981271244585514, -0.04957206919789314, -0.02607082389295101, 0.03478492423892021, 0.011247715912759304, 0.028337405994534492, -0.028036607429385185, 0.046845220029354095, 0.010451506823301315, -0.015321608632802963, -0.03860983997583389, 0.019931884482502937, 0.03520243987441063, -0.0755704864859581, -0.0551399327814579, -0.01609616167843342, -0.02630854770541191, 0.032210834324359894, -0.021443789824843407, -0.0025757483672350645, 0.02829086035490036, 0.005671094171702862, 0.03448496758937836, -0.027057182043790817, -0.019751278683543205, 0.03537678346037865, -0.006608118303120136, 0.03525219485163689, -0.039293013513088226, 0.0551399327814579, -0.03270803764462471, 0.016509631648659706, -0.02207186631858349, -0.002076022559776902, -0.05104804039001465, 0.029661402106285095, -0.011977890506386757, -0.02250952087342739, -0.0031797236297279596, 0.031472764909267426, -0.008420734666287899, 0.014425631612539291, -0.020928332582116127, 0.02220470830798149, -0.03577111288905144, 0.07359950989484787, -0.040226131677627563, 0.02288917824625969, -0.052260447293519974, 0.023628275841474533, -0.007715045474469662, 0.015088269487023354, -0.00315571459941566, -0.020766818895936012, 0.04832242801785469, 0.03765188902616501, 0.03194315358996391, 0.0413816012442112, -0.005937946494668722, -0.006790143437683582, -0.0010979293147101998, -0.062340136617422104, -0.018981633707880974, 0.009953259490430355, 0.02565576694905758, -0.014944461174309254, 0.04986828938126564, 0.026465827599167824, -0.061421412974596024, -0.07895144075155258, 0.025499377399683, 0.026150835677981377, 0.009321731515228748, 0.019172746688127518, 0.028454100713133812, 0.021563151851296425, 0.039862144738435745, -0.009912090376019478, -0.02570944093167782, -0.011155418120324612, -0.059341464191675186, 0.022460753098130226, -0.004042909014970064, 0.0165907833725214, 0.029485346749424934, -0.04909316822886467, -0.03403626009821892, 0.04103648290038109, 0.02723543904721737, 0.009784586727619171, -0.005762394983321428, -0.0611850768327713, 0.022028764709830284, -0.004944023676216602, -0.04123557731509209, 0.023552674800157547, -0.004919746890664101, -0.022669967263936996, 0.052084486931562424, 0.004629924427717924, -0.0003836266987491399, 0.05046554654836655, 0.0049503217451274395, -0.022440694272518158, 0.06206834688782692, -0.03973270207643509, -0.004629712086170912, 0.048802416771650314, -0.06563571840524673, -0.007981727831065655, -0.0598444789648056, 0.06988264620304108, -0.07068226486444473, 0.03645532205700874, 0.06499946862459183, -0.010018161498010159, 0.02757658250629902, -0.0610247366130352, -0.061473097652196884, 0.013169975019991398, -0.033579252660274506, 0.059044331312179565, 0.01682322844862938, -0.058282557874917984, 0.057584237307310104, 0.021842828020453453, -0.04908756911754608, 0.022858282551169395, 0.04057220742106438, 0.03746088966727257, 0.01813475601375103, 0.041444841772317886, -0.04464498534798622, -0.027099069207906723, -0.04510408267378807, 0.00873928889632225, -0.0592498779296875, -0.012449824251234531, 0.008915496990084648, -0.018762610852718353, -0.0063928766176104546, 0.031902484595775604, -0.02172514609992504, -0.017510026693344116, 0.04240064322948456, -0.04601680859923363, -0.045325905084609985, -0.005582339596003294, -0.0023628028575330973, -0.04949773848056793, -0.013872932642698288, -0.03076867386698723, -0.0017095897346735, 0.011513694189488888, 0.004652374889701605, -0.018701082095503807, -0.025322649627923965, 0.018920257687568665, -0.03964659199118614, -0.0376480408012867, 0.05290552228689194, -0.015933526679873466, -0.022227341309189796, 0.03245069459080696, 0.026935866102576256, 0.00022094712767284364, 0.028042539954185486, -0.015171005390584469, 0.03193436935544014, -0.055983766913414, -0.028825391083955765, 0.02444623038172722, 0.0027364762499928474, 0.018818721175193787, 0.009831728413701057, 0.0200495645403862, 0.056195780634880066, 0.028829403221607208, 0.008090387098491192, -0.03790584206581116, -0.03779878839850426, 0.022386442869901657, -0.04266969487071037, 0.01937139965593815, 0.0005494764191098511, -0.047243632376194, -0.020369157195091248, -0.0015540695749223232, -0.03245571628212929, 0.04872361570596695, -0.056576576083898544, -0.0069308509118855, 0.051504697650671005, -0.029363254085183144, -0.0589117594063282, -0.08612868934869766, -0.017828648909926414, -0.04511776939034462, 0.0055046179331839085, 0.04663250595331192, -0.03605131432414055, 0.038198355585336685, -0.04876627400517464, -0.035530757158994675, 0.033131204545497894, 0.054359227418899536, -0.05970645695924759, 0.06188087537884712, 0.0539364218711853, -0.0652020275592804, 0.01058169361203909, 0.007000137120485306, -0.04803688824176788, -0.02750401757657528, 0.0292461346834898, -0.0005596738192252815, 0.02616659179329872, 0.03150624781847, -0.050939686596393585, -0.021721046417951584, -0.07125185430049896, -0.029218997806310654, -0.07088427990674973, 0.006803895812481642, 0.050508540123701096 ]
Declan/Politico_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-3 results: [] --- <!-- 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__hate_speech_offensive__train-32-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8286 - Accuracy: 0.661 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1041 | 1.0 | 19 | 1.0658 | 0.5 | | 1.009 | 2.0 | 38 | 0.9892 | 0.7 | | 0.7925 | 3.0 | 57 | 0.8516 | 0.7 | | 0.5279 | 4.0 | 76 | 0.7877 | 0.65 | | 0.2932 | 5.0 | 95 | 0.7592 | 0.65 | | 0.1166 | 6.0 | 114 | 0.9437 | 0.65 | | 0.044 | 7.0 | 133 | 1.0315 | 0.75 | | 0.0197 | 8.0 | 152 | 1.3513 | 0.55 | | 0.0126 | 9.0 | 171 | 1.1702 | 0.7 | | 0.0083 | 10.0 | 190 | 1.2272 | 0.7 | | 0.0068 | 11.0 | 209 | 1.2889 | 0.7 | | 0.0059 | 12.0 | 228 | 1.3073 | 0.7 | | 0.0052 | 13.0 | 247 | 1.3595 | 0.7 | | 0.0041 | 14.0 | 266 | 1.4443 | 0.7 | | 0.0038 | 15.0 | 285 | 1.4709 | 0.7 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009308216162025928, 0.028079956769943237, -0.03780260682106018, 0.05160773545503616, 0.048566434532403946, 0.029947910457849503, -0.012479618191719055, -0.02060622163116932, -0.05338393151760101, 0.060721565037965775, 0.01611156016588211, -0.03246190398931503, 0.020646914839744568, 0.034778375178575516, -0.03521452471613884, -0.03622940182685852, -0.019399262964725494, -0.01392251718789339, -0.04097307100892067, 0.0042208959348499775, 0.0034662785474210978, -0.010607738047838211, -0.015086816623806953, 0.015705067664384842, -0.016860678791999817, 0.037827394902706146, -0.015644898638129234, 0.025145547464489937, 0.02555290423333645, -0.05495322868227959, 0.01172725297510624, -0.02529800869524479, -0.04051388055086136, 0.004445947241038084, -0.027186786755919456, -0.0057558706030249596, 0.006030203774571419, 0.02320639230310917, 0.03888265788555145, 0.03937326371669769, 0.011675306595861912, 0.006381956860423088, -0.0032528915908187628, -0.018014125525951385, 0.058495018631219864, -0.00998107623308897, -0.04786393418908119, -0.008914853446185589, 0.02472148835659027, -0.04188140109181404, -0.060934893786907196, -0.05105755105614662, -0.01813937909901142, 0.028675023466348648, -0.011783003807067871, -0.014186667278409004, -0.0543823204934597, 0.015382541343569756, 0.06189202517271042, -0.038775037974119186, -0.02946578525006771, 0.0018591537373140454, -0.05973082780838013, -0.0044846972450613976, 0.024140961468219757, -0.030210891738533974, 0.0026601136196404696, -0.046301282942295074, 0.01958370767533779, -0.021684642881155014, 0.056791625916957855, -0.021609626710414886, 0.029016591608524323, -0.07041049003601074, -0.022390656173229218, -0.020144766196608543, 0.05798695608973503, 0.07032179087400436, -0.026718521490693092, 0.061335984617471695, 0.023454781621694565, 0.018696879968047142, 0.03441650792956352, -0.027309371158480644, 0.02728113904595375, 0.029675684869289398, -0.0555926188826561, 0.004245402291417122, 0.008575387299060822, 0.03830021992325783, -0.029005609452724457, -0.03525267913937569, -0.010918752290308475, -0.030618663877248764, -0.014854451641440392, 0.015740633010864258, 0.008891923353075981, 0.0034262610133737326, 0.048389580100774765, 0.02203269675374031, 0.038903821259737015, 0.03499315306544304, -0.04009411856532097, 0.05518372356891632, -0.019279494881629944, 0.00761322770267725, 0.0011854006443172693, -0.021014569327235222, -0.0422520712018013, 0.019534245133399963, 0.028772149235010147, -0.017828797921538353, -0.04067573696374893, 0.037933848798274994, 0.003723780857399106, 0.014747056178748608, 0.06316238641738892, -0.031140107661485672, -0.04057568684220314, -0.025617586448788643, 0.007572948932647705, 0.006635182071477175, -0.0028575577307492495, 0.011676061898469925, -0.06650189310312271, -0.01424438413232565, -0.032435301691293716, -0.04598700627684593, -0.03062816895544529, 0.02739316038787365, 0.014634118415415287, 0.06772391498088837, 0.0253525972366333, -0.06020453944802284, -0.001951585989445448, 0.020355965942144394, -0.05585644394159317, 0.04023260250687599, 0.024344973266124725, 0.1140015497803688, -0.06340990215539932, -0.0654359981417656, -0.00712393457069993, -0.01782943680882454, -0.04227864369750023, 0.019323643296957016, 0.01173640787601471, -0.010916540399193764, -0.008706541731953621, -0.000320150691550225, 0.05202526971697807, -0.043769266456365585, -0.021295960992574692, 0.06845270097255707, -0.008877957239747047, 0.0310744047164917, -0.061431873589754105, -0.011641589924693108, 0.010994059033691883, -0.027183368802070618, -0.027187490835785866, 0.029897300526499748, -0.024335240945219994, -0.026034057140350342, -0.020404772832989693, -0.03331543505191803, 0.010450124740600586, 0.07199008762836456, -0.0030474362429231405, -0.03377019241452217, -0.028666971251368523, 0.025298582389950752, 0.032344020903110504, 0.02521536685526371, -0.02784120664000511, 0.019760580733418465, 0.06354134529829025, 0.02247011847794056, -0.03940881788730621, 0.05149872973561287, 0.011325024999678135, -0.028420614078640938, -0.02676759473979473, 0.019766580313444138, 0.008426359854638577, -0.05105075240135193, 0.04404689744114876, 0.012187376618385315, 0.0028394805267453194, -0.056681081652641296, -0.047561369836330414, 0.03805878385901451, -0.007787707261741161, -0.008151981048285961, 0.03123493306338787, 0.014799663797020912, -0.024674782529473305, 0.041954174637794495, -0.02245914749801159, 0.000013967678569315467, -0.04523855820298195, -0.01357670221477747, -0.004654622171074152, -0.027766458690166473, 0.01416510995477438, 0.042273227125406265, -0.004031198564916849, 0.0735170841217041, -0.02404141053557396, 0.014484986662864685, -0.05359860882163048, -0.03994930535554886, 0.011886699125170708, 0.0653643012046814, 0.06131604686379433, 0.04191559553146362, 0.0029934560880064964, -0.046759624034166336, 0.03437824547290802, 0.07416117191314697, 0.04838154464960098, 0.002066382672637701, -0.03284163400530815, -0.016597138717770576, 0.0480707585811615, 0.05101873725652695, -0.049365706741809845, -0.0266750305891037, 0.006508953869342804, 0.038812607526779175, -0.009530878625810146, 0.010715963318943977, -0.030404867604374886, 0.03559524938464165, -0.058462291955947876, -0.05180634930729866, 0.039051156491041183, 0.04178193584084511, 0.007220144849270582, 0.029378550127148628, 0.022498417645692825, 0.015434577129781246, 0.04232802242040634, 0.02448110654950142, 0.015085498802363873, -0.05759268254041672, 0.020459435880184174, -0.0018546291394159198, 0.04883156344294548, -0.04588621109724045, 0.03753042221069336, -0.013607706874608994, -0.0006431863293983042, 0.03594556823372841, -0.029404902830719948, 0.04940396919846535, 0.049387410283088684, 0.02007848396897316, -0.03817296028137207, 0.02200561761856079, -0.01227633748203516, 0.02881735749542713, 0.022883901372551918, 0.0027878875844180584, 0.08174461126327515, 0.010887282900512218, 0.0488983690738678, 0.10110348463058472, 0.03329021483659744, 0.027515077963471413, 0.012754463590681553, 0.04497162625193596, 0.021928004920482635, -0.019587848335504532, 0.058845434337854385, -0.05316358059644699, 0.040675561875104904, -0.051795728504657745, 0.005552193615585566, -0.020870445296168327, -0.024589454755187035, 0.04867538809776306, 0.03478343412280083, -0.03401420637965202, 0.003499426878988743, 0.004706166218966246, -0.014750969596207142, 0.03892889991402626, -0.013233669102191925, 0.00844911951571703, -0.006388332694768906, -0.04378340765833855, -0.0039042241405695677, -0.07598230987787247, -0.034464262425899506, -0.0070559862069785595, -0.02668883092701435, -0.02103886939585209, -0.09271197766065598, -0.0238613523542881, -0.05884990841150284, -0.008904158137738705, 0.03185928985476494, 0.008920364081859589, -0.02080456167459488, -0.030526822432875633, 0.018190579488873482, -0.05301488935947418, -0.04389797896146774, -0.039050519466400146, -0.06447916477918625, -0.04260360822081566, -0.07428426295518875, 0.04277513176202774, 0.04622185230255127, 0.011934902518987656, -0.007960982620716095, 0.010238111019134521, 0.01632068119943142, -0.024315321817994118, 0.01578519493341446, 0.06155857443809509, -0.03823169320821762, -0.06630788743495941, 0.005688422359526157, -0.00045088640763424337, 0.004293940030038357, 0.0346544124186039, -0.0453193299472332, 0.09675940126180649, 0.08619029074907303, 0.007548470515757799, 0.0344625860452652, -0.0016027685487642884, -0.05832943692803383, -0.04848846048116684, -0.03659364953637123, -0.05173799395561218, -0.02090173214673996, -0.04423130676150322, -0.0626847892999649, -0.030680544674396515, -0.04139801114797592, -0.00513137923553586, 0.0014096752274781466, 0.02160288766026497, 0.012902028858661652, 0.03905804082751274, 0.0190055500715971, 0.03203576058149338, -0.024674061685800552, -0.04597681760787964, 0.054750777781009674, -0.011549487709999084, 0.01829405315220356, -0.08806400746107101, 0.0010568297002464533, 0.028737742453813553, 0.0009923104662448168, 0.01952217146754265, -0.025943657383322716, 0.0642896443605423, 0.007248963229358196, 0.007157425861805677, 0.007717002648860216, -0.009005303494632244, 0.0014984385343268514, -0.01147297490388155, -0.011044515296816826, 0.0048661744222044945, -0.03449063003063202, -0.0215605441480875, -0.01746715046465397, 0.040291350334882736, -0.04854534566402435, -0.04614359140396118, -0.029140815138816833, 0.041035737842321396, 0.05324122682213783, -0.007053845562040806, -0.05373318865895271, -0.012325371615588665, -0.05451248958706856, -0.012252915650606155, 0.015452390536665916, -0.001604422926902771, 0.0077649569138884544, 0.027237696573138237, 0.01674940623342991, -0.011072211898863316, 0.003323263954371214, 0.054794397205114365, 0.07475253194570541, 0.014671005308628082, -0.07918000966310501, 0.0004098894423805177, -0.013723860494792461, 0.017954055219888687, -0.018767474219202995, -0.025907495990395546, -0.0221422016620636, -0.1101134866476059, -0.029111223295331, -0.001396192004904151, -0.000060808837588410825, -0.01747082732617855, 0.04082022234797478, -0.005052841268479824, -0.008467414416372776, -0.001961624249815941, 0.015624430030584335, 0.04417168349027634, -0.018596740439534187, 0.043045420199632645, -0.01565723679959774, 0.006598303094506264, -0.054606325924396515, 0.03869018703699112, -0.038389407098293304, -0.04544544219970703, 0.008513564243912697, 0.0616488978266716, -0.007349315565079451, 0.0729651227593422, 0.07122529298067093, 0.04663313180208206, -0.05410695821046829, 0.019160769879817963, 0.07975620031356812, -0.023655256256461143, -0.03861549496650696, -0.0032371776178479195, -0.005432979669421911, -0.019294729456305504, 0.023192862048745155, -0.026010824367403984, 0.05368819832801819, 0.03865160793066025, 0.007418779190629721, -0.010480635799467564, -0.017925357446074486, -0.004834918305277824, -0.02280283160507679, -0.05508129671216011, -0.032969243824481964, -0.0018807637970894575, -0.030673224478960037, 0.023905878886580467, 0.023824891075491905, 0.02960185334086418, 0.05869484692811966, 0.012461749836802483, -0.048072051256895065, -0.00515165738761425, 0.018713315948843956, 0.018664749339222908, -0.03222893923521042, -0.07225840538740158, -0.046464718878269196, 0.034428149461746216, 0.04912761226296425, -0.022003300487995148, -0.06944750994443893, 0.02266092225909233, 0.04671536758542061, -0.041839394718408585, 0.05225478485226631, -0.019932962954044342, 0.0521039254963398, 0.049117665737867355, -0.012364030815660954, 0.03801405802369118, -0.01749333366751671, -0.007261715363711119, 0.002225720090791583, 0.04133834317326546, -0.013363382779061794, -0.02470407634973526, -0.05188673362135887, 0.026309635490179062, 0.04442189261317253, 0.03386235237121582, 0.04267958924174309, -0.03961862623691559, -0.028308624401688576, 0.02347787469625473, 0.025021838024258614, -0.04800049588084221, -0.017351558431982994, 0.04652280732989311, 0.0397186242043972, -0.04006553068757057, -0.028554687276482582, -0.027570616453886032, 0.007563380990177393, 0.03046422079205513, 0.0022322633303701878, -0.02468446083366871, -0.0281089935451746, 0.04641849547624588, -0.029596827924251556, -0.037374015897512436, -0.0715058445930481, 0.02789255417883396, -0.006695505231618881, -0.03265157341957092, 0.051633238792419434, 0.02401416003704071, 0.028706423938274384, 0.07106739282608032, 0.015195978805422783, 0.006813667248934507, -0.045260269194841385, 0.046018145978450775, -0.017756333574652672, -0.011103304103016853, -0.00012608336692210287, -0.041881829500198364, -0.025983059778809547, -0.01161724328994751, -0.044418103992938995, -0.03032444790005684, -0.017387252300977707, 0.023888951167464256, -0.005400822497904301, -0.005144544877111912, -0.0010948923882097006, 0.040024399757385254, -0.0023816043976694345, -0.03571780025959015, -0.03867299109697342, -0.017855780199170113, -0.06187571957707405, -0.056738097220659256, -0.00218204571865499, 0.015568726696074009, 0.03216904401779175, 0.036003924906253815, 0.018669964745640755, 0.014181737788021564, 0.007790753617882729, -0.02097484841942787, 0.013541430234909058, 0.019285591319203377, -0.04936422035098076, -0.02482929639518261, 0.033337611705064774, 0.010723586194217205, 0.028573621064424515, -0.02592790313065052, 0.04446308687329292, 0.009545025415718555, -0.015772927552461624, -0.037398673593997955, 0.01786612905561924, 0.03613760322332382, -0.07408452033996582, -0.055817075073719025, -0.015021711587905884, -0.02637482061982155, 0.03182149678468704, -0.020215913653373718, -0.004853180609643459, 0.02545272186398506, 0.005348502192646265, 0.03464341163635254, -0.025303008034825325, -0.022845929488539696, 0.03721153736114502, -0.005114438943564892, 0.03615669533610344, -0.04048265144228935, 0.053612906485795975, -0.03360232710838318, 0.01699231006205082, -0.02165990322828293, -0.000801992486231029, -0.05048835277557373, 0.028266094624996185, -0.009916872717440128, -0.022640205919742584, -0.0010970835573971272, 0.029523290693759918, -0.008908320218324661, 0.014079505577683449, -0.021030567586421967, 0.021759754046797752, -0.035280741751194, 0.07117193937301636, -0.03940998762845993, 0.021935272961854935, -0.05020277947187424, 0.02367953583598137, -0.009625961072742939, 0.01431798655539751, -0.0020146099850535393, -0.021474825218319893, 0.05019389092922211, 0.03889511525630951, 0.03109540045261383, 0.04055383801460266, -0.007645673584192991, -0.0084602739661932, -0.0017363870283588767, -0.06262409687042236, -0.018484480679035187, 0.010145517066121101, 0.02732006087899208, -0.013551211915910244, 0.04959620162844658, 0.02732224389910698, -0.05983109772205353, -0.07830408960580826, 0.02490946650505066, 0.02669563889503479, 0.01005640346556902, 0.019891958683729172, 0.0260283462703228, 0.020819183439016342, 0.03982370346784592, -0.01155058667063713, -0.024871554225683212, -0.010674677789211273, -0.05843435600399971, 0.021602259948849678, -0.0048209610395133495, 0.015482083894312382, 0.030473513528704643, -0.04990328475832939, -0.03493731468915939, 0.04186822846531868, 0.027265116572380066, 0.009940874762833118, -0.00694045377895236, -0.06211036816239357, 0.023315241560339928, -0.0035873642191290855, -0.042540840804576874, 0.024965284392237663, -0.0050822109915316105, -0.022872714325785637, 0.0533045269548893, 0.006761036813259125, 0.0013225385919213295, 0.049178071320056915, 0.005767366383224726, -0.025158952921628952, 0.060473404824733734, -0.04024333134293556, -0.004979174118489027, 0.04778982326388359, -0.06572889536619186, -0.007519482634961605, -0.06352166086435318, 0.06941521912813187, -0.06928854435682297, 0.03568965941667557, 0.06414040178060532, -0.012520123273134232, 0.028261546045541763, -0.0633467584848404, -0.06181163713335991, 0.012824028730392456, -0.033140555024147034, 0.05883757025003433, 0.01695442944765091, -0.05975927412509918, 0.057183887809515, 0.020555173978209496, -0.04943368583917618, 0.022202137857675552, 0.04136475548148155, 0.0390249602496624, 0.018260620534420013, 0.043159693479537964, -0.046745456755161285, -0.02738180384039879, -0.04662400856614113, 0.010383092798292637, -0.05660151690244675, -0.011476021260023117, 0.006298191379755735, -0.01697627454996109, -0.0067010666243731976, 0.03297528252005577, -0.022118063643574715, -0.017600180581212044, 0.04414995387196541, -0.04741556942462921, -0.04759552329778671, -0.0060693854466080666, -0.002617210615426302, -0.04905575141310692, -0.01597290299832821, -0.030846191570162773, -0.00047511051525361836, 0.011891922913491726, 0.004042827989906073, -0.020136501640081406, -0.02533576264977455, 0.01861339993774891, -0.03938771039247513, -0.038021694868803024, 0.05388055741786957, -0.016261758282780647, -0.022475983947515488, 0.029815560206770897, 0.027910033240914345, -0.0012011830694973469, 0.02782588079571724, -0.014904951676726341, 0.03146009147167206, -0.0581427663564682, -0.027331193909049034, 0.025183120742440224, 0.0023508251179009676, 0.01845400407910347, 0.008872137404978275, 0.018358571454882622, 0.05459330230951309, 0.025204164907336235, 0.00744105177000165, -0.0393168143928051, -0.037571121007204056, 0.022758038714528084, -0.043999068439006805, 0.01806502230465412, 0.0017828576965257525, -0.048798568546772, -0.01949014887213707, -0.0006153144640848041, -0.03383874148130417, 0.049134761095047, -0.05686738342046738, -0.007405099458992481, 0.051585763692855835, -0.027813732624053955, -0.05877751484513283, -0.08434541523456573, -0.01735851913690567, -0.044627342373132706, 0.004644338972866535, 0.04597501829266548, -0.03625136613845825, 0.037706390023231506, -0.04945729672908783, -0.034891631454229355, 0.03410012647509575, 0.05325158312916756, -0.05834681913256645, 0.06004101783037186, 0.05582999810576439, -0.0665815994143486, 0.010412497445940971, 0.004676751792430878, -0.04820104315876961, -0.026925375685095787, 0.030783379450440407, 0.0009516662103123963, 0.025898024439811707, 0.03222602978348732, -0.05103330686688423, -0.019486144185066223, -0.07099668681621552, -0.02983800508081913, -0.07046511769294739, 0.00662804814055562, 0.050740424543619156 ]
Declan/Politico_model_v3
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-4 results: [] --- <!-- 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__hate_speech_offensive__train-32-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7384 - Accuracy: 0.724 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1013 | 1.0 | 19 | 1.0733 | 0.55 | | 1.0226 | 2.0 | 38 | 1.0064 | 0.65 | | 0.8539 | 3.0 | 57 | 0.8758 | 0.75 | | 0.584 | 4.0 | 76 | 0.6941 | 0.7 | | 0.2813 | 5.0 | 95 | 0.5151 | 0.7 | | 0.1122 | 6.0 | 114 | 0.4351 | 0.8 | | 0.0432 | 7.0 | 133 | 0.4896 | 0.85 | | 0.0199 | 8.0 | 152 | 0.5391 | 0.85 | | 0.0126 | 9.0 | 171 | 0.5200 | 0.85 | | 0.0085 | 10.0 | 190 | 0.5622 | 0.85 | | 0.0069 | 11.0 | 209 | 0.5950 | 0.85 | | 0.0058 | 12.0 | 228 | 0.6015 | 0.85 | | 0.0053 | 13.0 | 247 | 0.6120 | 0.85 | | 0.0042 | 14.0 | 266 | 0.6347 | 0.85 | | 0.0039 | 15.0 | 285 | 0.6453 | 0.85 | | 0.0034 | 16.0 | 304 | 0.6660 | 0.85 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009095186367630959, 0.02987891621887684, -0.0360071174800396, 0.05256863310933113, 0.04992320388555527, 0.028675425797700882, -0.011976917274296284, -0.019427990540862083, -0.054385118186473846, 0.060322344303131104, 0.015481390058994293, -0.03154686838388443, 0.02103409357368946, 0.03635589778423309, -0.034647099673748016, -0.037436310201883316, -0.02039320394396782, -0.013116025365889072, -0.04227973148226738, 0.0032814110163599253, 0.0030869480688124895, -0.012040260247886181, -0.016392847523093224, 0.016285117715597153, -0.0147903673350811, 0.03724747523665428, -0.0133060896769166, 0.02336835116147995, 0.025137335062026978, -0.05480291321873665, 0.010677147656679153, -0.02469421736896038, -0.03869418427348137, 0.004206315614283085, -0.027673915028572083, -0.004183285403996706, 0.003943628165870905, 0.023660780861973763, 0.04090045019984245, 0.03819473087787628, 0.012254524976015091, 0.007309665437787771, -0.007534547708928585, -0.01747608371078968, 0.059605441987514496, -0.009105856530368328, -0.04637068882584572, -0.009831216186285019, 0.02338220365345478, -0.04178839549422264, -0.0618608258664608, -0.05091291293501854, -0.01769830845296383, 0.028122015297412872, -0.012043128721415997, -0.014548198319971561, -0.05707617104053497, 0.017177795991301537, 0.06308390200138092, -0.03965836018323898, -0.030940737575292587, 0.0005208310903981328, -0.061271071434020996, -0.004157454706728458, 0.025999844074249268, -0.03041582554578781, 0.002553812228143215, -0.045159462839365005, 0.017185689881443977, -0.019194170832633972, 0.0553467720746994, -0.020059524103999138, 0.028559258207678795, -0.07146858423948288, -0.02168372832238674, -0.020708829164505005, 0.05972978100180626, 0.06877883523702621, -0.027881329879164696, 0.06093784421682358, 0.02371787466108799, 0.017748210579156876, 0.034154511988162994, -0.027255268767476082, 0.027069415897130966, 0.030500732362270355, -0.05555504187941551, 0.003902180353179574, 0.007244748063385487, 0.03799349442124367, -0.03035326674580574, -0.036778487265110016, -0.012514009140431881, -0.03153444454073906, -0.015313823707401752, 0.01598646491765976, 0.008108137175440788, 0.002806795062497258, 0.04743066430091858, 0.022227520123124123, 0.03973394259810448, 0.035544462502002716, -0.03901692107319832, 0.05649706721305847, -0.019047996029257774, 0.007663671392947435, -0.001101595931686461, -0.021391738206148148, -0.043382428586483, 0.020796850323677063, 0.027967585250735283, -0.01797684282064438, -0.03911581635475159, 0.038450222462415695, 0.0019089329289272428, 0.014928720891475677, 0.06416001915931702, -0.030841870233416557, -0.04152192175388336, -0.02500084601342678, 0.0075460923835635185, 0.006674126256257296, -0.0038849448319524527, 0.012157829478383064, -0.06775330007076263, -0.013585376553237438, -0.030992640182375908, -0.044385530054569244, -0.027666913345456123, 0.028215235099196434, 0.012793914414942265, 0.06816938519477844, 0.02611766755580902, -0.0617615170776844, -0.0026206516195088625, 0.02204911969602108, -0.05496535077691078, 0.039508987218141556, 0.02510068751871586, 0.11020618677139282, -0.06463371217250824, -0.06481955200433731, -0.0038035507313907146, -0.017094984650611877, -0.04330107942223549, 0.018722541630268097, 0.009973058477044106, -0.011017934419214725, -0.008894466795027256, -0.0011512249475345016, 0.05387609079480171, -0.045502450317144394, -0.01991257071495056, 0.0682988092303276, -0.008702174760401249, 0.034150660037994385, -0.061344683170318604, -0.012433451600372791, 0.009838070720434189, -0.02574257180094719, -0.02703508548438549, 0.028441086411476135, -0.023582294583320618, -0.025258375331759453, -0.020336100831627846, -0.03177465870976448, 0.01191779039800167, 0.07227665185928345, -0.0019448448438197374, -0.03395741805434227, -0.027561210095882416, 0.025152601301670074, 0.03332829847931862, 0.026535319164395332, -0.028167476877570152, 0.019895674660801888, 0.06195005774497986, 0.02431093342602253, -0.036699328571558, 0.05209991708397865, 0.010420151986181736, -0.027734210714697838, -0.0270597692579031, 0.02073037438094616, 0.008954973891377449, -0.052781153470277786, 0.04291732236742973, 0.012945473194122314, 0.003366452408954501, -0.05563478171825409, -0.04486086592078209, 0.037611234933137894, -0.009852511808276176, -0.009122906252741814, 0.030790023505687714, 0.013787142001092434, -0.024460021406412125, 0.043074171990156174, -0.022796209901571274, 0.0005649352679029107, -0.043544162064790726, -0.015030338428914547, -0.0057416269555687904, -0.02779976651072502, 0.014188704080879688, 0.044630978256464005, -0.0032416603062301874, 0.07338415086269379, -0.024018049240112305, 0.013041015714406967, -0.054222799837589264, -0.038827281445264816, 0.008199488744139671, 0.06617458909749985, 0.06172603741288185, 0.04090627655386925, 0.006415320560336113, -0.04724354296922684, 0.03583935648202896, 0.0743609070777893, 0.04824809357523918, 0.0021605880465358496, -0.03374262526631355, -0.016781659796833992, 0.047559723258018494, 0.05132795870304108, -0.04787985607981682, -0.025348691269755363, 0.003855228191241622, 0.038243912160396576, -0.011731688864529133, 0.009329060092568398, -0.030280059203505516, 0.03454055264592171, -0.05844764783978462, -0.0512983538210392, 0.039633795619010925, 0.04158036410808563, 0.00786952581256628, 0.029005616903305054, 0.023505982011556625, 0.013719757087528706, 0.04179148003458977, 0.022222960367798805, 0.016374921426177025, -0.05677229166030884, 0.0181009229272604, -0.0009451283258385956, 0.049131859093904495, -0.047262370586395264, 0.03770825266838074, -0.013212652876973152, -0.0004953347379341722, 0.03687441349029541, -0.028432289138436317, 0.050276078283786774, 0.0485466793179512, 0.019645648077130318, -0.03825981914997101, 0.021123560145497322, -0.01108551025390625, 0.028362154960632324, 0.023069793358445168, 0.0036154459230601788, 0.08187760412693024, 0.009969576261937618, 0.048314694315195084, 0.09934300929307938, 0.032975804060697556, 0.026834113523364067, 0.011562317609786987, 0.044324059039354324, 0.020268095657229424, -0.020951149985194206, 0.059242166578769684, -0.05329607427120209, 0.03994877263903618, -0.051814157515764236, 0.00730339577421546, -0.019382070749998093, -0.0243898443877697, 0.0500943697988987, 0.03280998393893242, -0.034071892499923706, 0.003304349025711417, 0.005933736450970173, -0.014799497090280056, 0.03921229764819145, -0.015148747712373734, 0.008929621428251266, -0.00729148555546999, -0.041815951466560364, -0.002741331234574318, -0.07516268640756607, -0.03274870663881302, -0.0065709431655704975, -0.027723759412765503, -0.02068980596959591, -0.09410356730222702, -0.02498052269220352, -0.0595993846654892, -0.00856723915785551, 0.03146442770957947, 0.008586736395955086, -0.021749546751379967, -0.029573878273367882, 0.01891586184501648, -0.052577950060367584, -0.04261096194386482, -0.03828641399741173, -0.06456650048494339, -0.04200408235192299, -0.07511597126722336, 0.042132873088121414, 0.047909874469041824, 0.012242471799254417, -0.0053177992813289165, 0.011250601150095463, 0.01716947928071022, -0.02408224157989025, 0.017430977895855904, 0.061210595071315765, -0.039087094366550446, -0.06678757816553116, 0.008378967642784119, -0.0010344834299758077, 0.0065707010217010975, 0.03186120465397835, -0.04329442232847214, 0.09567409753799438, 0.08634570240974426, 0.007568594999611378, 0.034080930054187775, -0.0028049012180417776, -0.057704951614141464, -0.04917021095752716, -0.03651350364089012, -0.050491008907556534, -0.020811451599001884, -0.04439087212085724, -0.061772264540195465, -0.030231639742851257, -0.04048740491271019, -0.0058045946061611176, 0.002086166525259614, 0.02082195319235325, 0.013439523987472057, 0.038165103644132614, 0.020239420235157013, 0.032566193491220474, -0.022513942793011665, -0.04607274755835533, 0.05682548135519028, -0.012638738378882408, 0.018854202702641487, -0.08805414289236069, 0.002342458115890622, 0.030228368937969208, 0.0014429896837100387, 0.0201325174421072, -0.02421523816883564, 0.06441821902990341, 0.005440170876681805, 0.006738938856869936, 0.00668268883600831, -0.010003256611526012, 0.0004597206716425717, -0.01109779067337513, -0.012877318076789379, 0.005230382550507784, -0.034814171493053436, -0.022711463272571564, -0.018489757552742958, 0.040139444172382355, -0.04906676709651947, -0.046571746468544006, -0.02726605162024498, 0.04148080572485924, 0.05293882638216019, -0.007825041189789772, -0.05298449471592903, -0.014661082066595554, -0.05369987338781357, -0.011476487852633, 0.014649768359959126, 0.0007782254251651466, 0.006446856539696455, 0.027276961132884026, 0.01688779704272747, -0.010877521708607674, 0.005474547855556011, 0.055167652666568756, 0.07496935874223709, 0.014536782167851925, -0.08017841726541519, 0.0007046713726595044, -0.013641057536005974, 0.016156276687979698, -0.017993973568081856, -0.02556581050157547, -0.02286820113658905, -0.10972283780574799, -0.027533691376447678, -0.0005674581043422222, 0.002765923272818327, -0.018887342885136604, 0.03989429026842117, -0.005765052512288094, -0.008409162983298302, -0.0006953564588911831, 0.014161503873765469, 0.044583193957805634, -0.018675625324249268, 0.04035456106066704, -0.017194310203194618, 0.007188528310507536, -0.054828349500894547, 0.03883844241499901, -0.0385604165494442, -0.043098319321870804, 0.009523329325020313, 0.06230777129530907, -0.007830909453332424, 0.07152866572141647, 0.07116866856813431, 0.04861173406243324, -0.054129745811223984, 0.021194200962781906, 0.078583262860775, -0.025863492861390114, -0.03778235614299774, -0.003947738092392683, -0.003881968092173338, -0.021551216021180153, 0.02237328328192234, -0.024320190772414207, 0.05532206594944, 0.03765835240483284, 0.0067034391686320305, -0.00848766416311264, -0.017229916527867317, -0.005271400790661573, -0.021976059302687645, -0.05484025925397873, -0.033564694225788116, -0.0027399163227528334, -0.033054202795028687, 0.024837084114551544, 0.023651596158742905, 0.030899619683623314, 0.0595625564455986, 0.012289279140532017, -0.04903557151556015, -0.0063333227299153805, 0.018642708659172058, 0.019518068060278893, -0.03235722705721855, -0.07116807997226715, -0.046620290726423264, 0.034916285425424576, 0.04933131858706474, -0.02117990143597126, -0.07085317373275757, 0.022923793643712997, 0.047525785863399506, -0.04195716604590416, 0.05298460274934769, -0.021064093336462975, 0.05411668121814728, 0.04762611538171768, -0.012437697499990463, 0.037759263068437576, -0.016638269647955894, -0.007087477948516607, 0.0030285618267953396, 0.03900299593806267, -0.01387955155223608, -0.025552237406373024, -0.052459023892879486, 0.024034490808844566, 0.044098906219005585, 0.033228855580091476, 0.040727630257606506, -0.03867094963788986, -0.027924291789531708, 0.024565303698182106, 0.02576710283756256, -0.048179011791944504, -0.01701304130256176, 0.04548865556716919, 0.038703471422195435, -0.041545331478118896, -0.0303580854088068, -0.029274219647049904, 0.009741240181028843, 0.03204386308789253, 0.0021838494576513767, -0.02418496459722519, -0.03153463453054428, 0.04627406969666481, -0.02938668802380562, -0.03468256816267967, -0.0732237845659256, 0.02826574258506298, -0.006639936473220587, -0.03461384400725365, 0.0513632670044899, 0.021273434162139893, 0.0264266487210989, 0.07060939073562622, 0.015413960441946983, 0.008122953586280346, -0.045306503772735596, 0.04735080897808075, -0.0176437646150589, -0.010554858483374119, -0.001409904914908111, -0.04126543551683426, -0.024999255314469337, -0.011536302976310253, -0.04639091342687607, -0.031093699857592583, -0.01915784925222397, 0.02374710515141487, -0.005105820018798113, -0.0072557516396045685, -0.0022006432991474867, 0.03975774347782135, -0.002353696385398507, -0.03706233203411102, -0.03972035273909569, -0.017441095784306526, -0.061448149383068085, -0.0558248795568943, -0.0015883938176557422, 0.012836090289056301, 0.03276299312710762, 0.03564649447798729, 0.01855042576789856, 0.01430868823081255, 0.0076561179012060165, -0.021431254222989082, 0.015370230190455914, 0.019191637635231018, -0.04955616220831871, -0.025802213698625565, 0.03516766056418419, 0.011214939877390862, 0.029407823458313942, -0.028235778212547302, 0.04775755852460861, 0.009902145713567734, -0.015172896906733513, -0.038054853677749634, 0.019482119008898735, 0.03536156937479973, -0.0751887634396553, -0.05548490956425667, -0.01529524102807045, -0.027432968840003014, 0.03238517418503761, -0.021807311102747917, -0.0025065059307962656, 0.027191385626792908, 0.005718570668250322, 0.035323381423950195, -0.02639029733836651, -0.019745759665966034, 0.035771723836660385, -0.00614921236410737, 0.03468786180019379, -0.040886685252189636, 0.0554506853222847, -0.03299944847822189, 0.016525696963071823, -0.022254185751080513, -0.0023826975375413895, -0.050034865736961365, 0.028972838073968887, -0.010981248691678047, -0.02346419170498848, -0.0020932932384312153, 0.031095176935195923, -0.008268172852694988, 0.013541389256715775, -0.020225919783115387, 0.02276260405778885, -0.03602014482021332, 0.07347029447555542, -0.03974565863609314, 0.022234030067920685, -0.05247149243950844, 0.02320735529065132, -0.00786658562719822, 0.014681178145110607, -0.0029450422152876854, -0.02087646909058094, 0.04906376451253891, 0.03713609650731087, 0.03221869468688965, 0.040865667164325714, -0.005682014860212803, -0.007168243173509836, -0.000897094258107245, -0.06280278414487839, -0.019118551164865494, 0.009998774155974388, 0.026760339736938477, -0.014844018965959549, 0.04925936087965965, 0.026680197566747665, -0.060604460537433624, -0.07872073352336884, 0.025831030681729317, 0.02589690312743187, 0.009491470642387867, 0.020006829872727394, 0.028099194169044495, 0.02201252430677414, 0.04056287556886673, -0.010258624330163002, -0.02535996586084366, -0.009434702806174755, -0.05924338474869728, 0.02211233600974083, -0.0036024274304509163, 0.016820533201098442, 0.029326602816581726, -0.048325978219509125, -0.03409974277019501, 0.041716787964105606, 0.027397802099585533, 0.0091078607365489, -0.006525136064738035, -0.061157599091529846, 0.021891646087169647, -0.004578425548970699, -0.04152783751487732, 0.023855004459619522, -0.004732445348054171, -0.022131722420454025, 0.05128549784421921, 0.004208392463624477, 0.0006909866933710873, 0.05094847083091736, 0.005627862177789211, -0.02303319051861763, 0.06116862595081329, -0.04050728678703308, -0.004296596627682447, 0.04901004582643509, -0.06690462678670883, -0.008164825849235058, -0.06036322936415672, 0.07028838247060776, -0.07076843827962875, 0.03608284145593643, 0.06466938555240631, -0.011316077783703804, 0.028166186064481735, -0.060805000364780426, -0.06153443083167076, 0.0126840490847826, -0.03298446536064148, 0.059125907719135284, 0.016321968287229538, -0.058948248624801636, 0.05750102922320366, 0.021195020526647568, -0.04988083243370056, 0.022144276648759842, 0.041346460580825806, 0.03676585853099823, 0.018520887941122055, 0.04108607396483421, -0.0455453097820282, -0.026642439886927605, -0.04563402384519577, 0.009887880645692348, -0.05855977162718773, -0.012832419015467167, 0.009392580017447472, -0.018697643652558327, -0.00775447953492403, 0.03272026404738426, -0.020994309335947037, -0.01782747358083725, 0.042659733444452286, -0.04632417485117912, -0.045894794166088104, -0.0056949579156935215, -0.0023233925458043814, -0.049912042915821075, -0.013836871832609177, -0.030898375436663628, -0.0013535292819142342, 0.011614141054451466, 0.004933265969157219, -0.01880609802901745, -0.026357578113675117, 0.018858613446354866, -0.04010731354355812, -0.03723779693245888, 0.05304444208741188, -0.01605108380317688, -0.0226802509278059, 0.031507737934589386, 0.02617201954126358, -0.00003480251325527206, 0.028110554441809654, -0.016310837119817734, 0.031084168702363968, -0.057350922375917435, -0.028207380324602127, 0.0242437943816185, 0.0036004686262458563, 0.01828410103917122, 0.010520710609853268, 0.020658601075410843, 0.05600568279623985, 0.028387175872921944, 0.007181606255471706, -0.03841569274663925, -0.037359196692705154, 0.023266233503818512, -0.04378499090671539, 0.018732400611042976, 0.000942058686632663, -0.0473196841776371, -0.020370112732052803, -0.00194730912335217, -0.03288598731160164, 0.04872343689203262, -0.05743595212697983, -0.0068869576789438725, 0.05157587304711342, -0.0294578168541193, -0.058024175465106964, -0.08597727119922638, -0.01792173460125923, -0.04494772106409073, 0.005353146232664585, 0.04619687423110008, -0.03642744570970535, 0.03754321485757828, -0.048053301870822906, -0.03476179763674736, 0.032909177243709564, 0.05427350103855133, -0.058059532195329666, 0.0602572076022625, 0.05382886901497841, -0.0653853788971901, 0.010710068978369236, 0.006924074608832598, -0.04704896733164787, -0.0268879234790802, 0.0289504062384367, -0.0005353227024897933, 0.02625584602355957, 0.03138776868581772, -0.051109299063682556, -0.02214912511408329, -0.07058807462453842, -0.02955819107592106, -0.07106325775384903, 0.007620358839631081, 0.05035341531038284 ]
Declan/Politico_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-5 results: [] --- <!-- 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__hate_speech_offensive__train-32-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1327 - Accuracy: 0.57 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0972 | 1.0 | 19 | 1.0470 | 0.45 | | 0.9738 | 2.0 | 38 | 0.9244 | 0.65 | | 0.7722 | 3.0 | 57 | 0.8612 | 0.65 | | 0.4929 | 4.0 | 76 | 0.6759 | 0.75 | | 0.2435 | 5.0 | 95 | 0.7273 | 0.7 | | 0.0929 | 6.0 | 114 | 0.6444 | 0.85 | | 0.0357 | 7.0 | 133 | 0.7671 | 0.8 | | 0.0173 | 8.0 | 152 | 0.7599 | 0.75 | | 0.0121 | 9.0 | 171 | 0.8140 | 0.8 | | 0.0081 | 10.0 | 190 | 0.7861 | 0.8 | | 0.0066 | 11.0 | 209 | 0.8318 | 0.8 | | 0.0057 | 12.0 | 228 | 0.8777 | 0.8 | | 0.0053 | 13.0 | 247 | 0.8501 | 0.8 | | 0.004 | 14.0 | 266 | 0.8603 | 0.8 | | 0.004 | 15.0 | 285 | 0.8787 | 0.8 | | 0.0034 | 16.0 | 304 | 0.8969 | 0.8 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008040851913392544, 0.028571760281920433, -0.03441092371940613, 0.05156376212835312, 0.04764480143785477, 0.028300171718001366, -0.014167833141982555, -0.02042512223124504, -0.0540715791285038, 0.05993625149130821, 0.016299646347761154, -0.031356703490018845, 0.019304901361465454, 0.03776584565639496, -0.03573840856552124, -0.037109874188899994, -0.020747466012835503, -0.01306077092885971, -0.04258361831307411, 0.003846270265057683, 0.002968462649732828, -0.012515743263065815, -0.017078595235943794, 0.0156044727191329, -0.013810718432068825, 0.03885047137737274, -0.011101984418928623, 0.023380836471915245, 0.02378661558032036, -0.055574651807546616, 0.012241743505001068, -0.025736942887306213, -0.03915484994649887, 0.003098283428698778, -0.027186257764697075, -0.004247880540788174, 0.003514970187097788, 0.0227142795920372, 0.040329184383153915, 0.039043936878442764, 0.013183106668293476, 0.006459874100983143, -0.008534538559615612, -0.017579460516572, 0.058402154594659805, -0.009286322630941868, -0.045962799340486526, -0.010508283041417599, 0.024945400655269623, -0.04140445962548256, -0.06250438094139099, -0.05239317566156387, -0.018307600170373917, 0.027313323691487312, -0.012730943970382214, -0.015562774613499641, -0.05891040712594986, 0.019139597192406654, 0.06136501953005791, -0.040894895792007446, -0.03147982433438301, 0.0007840738398954272, -0.06147880479693413, -0.003838645527139306, 0.024217495694756508, -0.02870880998671055, 0.0028808817733079195, -0.04464134946465492, 0.017928121611475945, -0.019409729167819023, 0.05403488129377365, -0.020136745646595955, 0.028027040883898735, -0.06963091343641281, -0.021778654307127, -0.019649164751172066, 0.05650670826435089, 0.07042058557271957, -0.028286080807447433, 0.06013447418808937, 0.02476358227431774, 0.016491735354065895, 0.03474675118923187, -0.027023334056138992, 0.027415888383984566, 0.0280412919819355, -0.055052876472473145, 0.003994502127170563, 0.007406465709209442, 0.03712066262960434, -0.03107898123562336, -0.036663755774497986, -0.011071376502513885, -0.031117361038923264, -0.016196275129914284, 0.014802510850131512, 0.00803361926227808, 0.002676415955647826, 0.0478968545794487, 0.02091228775680065, 0.042829301208257675, 0.03636809438467026, -0.03637475520372391, 0.057752981781959534, -0.0202692411839962, 0.007453558966517448, 0.0002823923423420638, -0.021829405799508095, -0.04198971018195152, 0.02109145186841488, 0.028090372681617737, -0.01859688200056553, -0.03986864537000656, 0.037358202040195465, 0.0007695183157920837, 0.01717233844101429, 0.06392230838537216, -0.031083067879080772, -0.040189970284700394, -0.02085813134908676, 0.008112812414765358, 0.0074715944938361645, -0.0024129883386194706, 0.011387703940272331, -0.06543365865945816, -0.014149004593491554, -0.03257182613015175, -0.046623773872852325, -0.0295830387622118, 0.03054826706647873, 0.01296443771570921, 0.06804195046424866, 0.026406442746520042, -0.0605376660823822, -0.0033236085437238216, 0.019897490739822388, -0.05446150526404381, 0.04174008220434189, 0.023516779765486717, 0.10978288948535919, -0.06290901452302933, -0.0650983527302742, -0.0043051522225141525, -0.018142689019441605, -0.04463819041848183, 0.01667524129152298, 0.01063144113868475, -0.010629366151988506, -0.009463830851018429, 0.0003342002455610782, 0.05189637467265129, -0.04256183281540871, -0.018521957099437714, 0.0667053833603859, -0.008243304677307606, 0.03140445053577423, -0.05948496237397194, -0.01200084574520588, 0.010599547065794468, -0.02577374503016472, -0.02544252760708332, 0.026664964854717255, -0.02491123043000698, -0.027773980051279068, -0.02033117786049843, -0.03161392733454704, 0.01180073618888855, 0.07209225744009018, -0.00225540972314775, -0.03330511599779129, -0.02915755845606327, 0.022950345650315285, 0.03441690653562546, 0.02717001736164093, -0.028629852458834648, 0.019326720386743546, 0.06313543021678925, 0.024877408519387245, -0.03670788183808327, 0.05184903368353844, 0.01219258178025484, -0.02717752940952778, -0.026264820247888565, 0.021000176668167114, 0.010997763834893703, -0.051688678562641144, 0.04567292332649231, 0.0149712348356843, 0.0040765427984297276, -0.05582597851753235, -0.043207600712776184, 0.041170720010995865, -0.009871932677924633, -0.007750900462269783, 0.026798568665981293, 0.01538577675819397, -0.0251848716288805, 0.042606957256793976, -0.022007158026099205, 0.0025561503134667873, -0.04259999096393585, -0.014678701758384705, -0.004759200848639011, -0.028421511873602867, 0.013401987962424755, 0.04267454147338867, -0.001426264992915094, 0.07307323068380356, -0.026229016482830048, 0.012547160498797894, -0.05637339502573013, -0.03805363550782204, 0.008948126807808876, 0.06656984239816666, 0.062057361006736755, 0.039630141109228134, 0.004509036894887686, -0.04621574655175209, 0.035641636699438095, 0.07267767935991287, 0.04657217860221863, -0.0009649306884966791, -0.033541060984134674, -0.017220817506313324, 0.048299726098775864, 0.0529898926615715, -0.049683827906847, -0.023092618212103844, 0.004019605461508036, 0.03872450813651085, -0.012370848096907139, 0.00886100996285677, -0.027967888861894608, 0.03378017991781235, -0.0596577525138855, -0.048647843301296234, 0.039647676050662994, 0.040623538196086884, 0.008089030161499977, 0.02996760979294777, 0.021972334012389183, 0.013971260748803616, 0.0403301939368248, 0.02214682288467884, 0.015734994783997536, -0.0564512237906456, 0.018803982064127922, -0.002770938677713275, 0.04898390546441078, -0.04751213639974594, 0.03835653141140938, -0.015945253893733025, 0.0004927437985315919, 0.03840069845318794, -0.027762822806835175, 0.04746849834918976, 0.04700881242752075, 0.01784341409802437, -0.038132160902023315, 0.020675353705883026, -0.01049712486565113, 0.029234517365694046, 0.022599657997488976, 0.003045131918042898, 0.08264382183551788, 0.009672559797763824, 0.04430749639868736, 0.09847807884216309, 0.03373836353421211, 0.027160540223121643, 0.011729705147445202, 0.043797627091407776, 0.02154850773513317, -0.020992271602153778, 0.060990165919065475, -0.05504492670297623, 0.0379452146589756, -0.05046781525015831, 0.007055612746626139, -0.022356528788805008, -0.024423805996775627, 0.05048162862658501, 0.033826474100351334, -0.034830957651138306, 0.001811863505281508, 0.007082430180162191, -0.014939800836145878, 0.03824303299188614, -0.015513594262301922, 0.007193485274910927, -0.007098184432834387, -0.042589221149683, -0.0009723202674649656, -0.07498763501644135, -0.03357969596982002, -0.008175396360456944, -0.02755608595907688, -0.020562734454870224, -0.09698410332202911, -0.02562960982322693, -0.06019698455929756, -0.010622170753777027, 0.029385000467300415, 0.010209732688963413, -0.023144308477640152, -0.029616335406899452, 0.01796870119869709, -0.051425542682409286, -0.042979490011930466, -0.038560397922992706, -0.06469374895095825, -0.0423431321978569, -0.07715540379285812, 0.043960701674222946, 0.047628771513700485, 0.014067037962377071, -0.00482900021597743, 0.012769956141710281, 0.015461611561477184, -0.025428950786590576, 0.01787973940372467, 0.05932064726948738, -0.04088861867785454, -0.06858690828084946, 0.007683284115046263, -0.00098121736664325, 0.005065628793090582, 0.03258907422423363, -0.0423365980386734, 0.09544724225997925, 0.08673685044050217, 0.007886908948421478, 0.035867057740688324, -0.0007414616993628442, -0.05722144991159439, -0.04684009775519371, -0.03487321361899376, -0.04960032179951668, -0.020366696640849113, -0.04468345642089844, -0.061011526733636856, -0.031079711392521858, -0.04079267755150795, -0.004661198705434799, 0.0031182565726339817, 0.020028680562973022, 0.013053583912551403, 0.03768859803676605, 0.01937948539853096, 0.033713310956954956, -0.02147698774933815, -0.046182990074157715, 0.05489147827029228, -0.01010857243090868, 0.017711954191327095, -0.08824580162763596, 0.0018917772686108947, 0.02915034070611, -0.0005958758993074298, 0.020738454535603523, -0.02353815734386444, 0.06513243168592453, 0.004120779689401388, 0.004361264407634735, 0.006363998632878065, -0.008790038526058197, 0.0009915276896208525, -0.011948220431804657, -0.01516290195286274, 0.006502413656562567, -0.03476114198565483, -0.025225043296813965, -0.019088879227638245, 0.039012838155031204, -0.04794086515903473, -0.048371415585279465, -0.029125353321433067, 0.04225776344537735, 0.0536239854991436, -0.009727301076054573, -0.05214802548289299, -0.01429273933172226, -0.05562373250722885, -0.010079924017190933, 0.015610759146511555, 0.0006235347827896476, 0.006781155243515968, 0.02661740407347679, 0.016711555421352386, -0.010691167786717415, 0.006093358155339956, 0.054674915969371796, 0.0713714137673378, 0.014752578921616077, -0.07944664359092712, 0.00013315933756530285, -0.014244922436773777, 0.016071705147624016, -0.018057961016893387, -0.02687225490808487, -0.02344389632344246, -0.10978163033723831, -0.029241275042295456, 0.0005571364308707416, 0.0027081582229584455, -0.0196244940161705, 0.03958941623568535, -0.006639279890805483, -0.011079601012170315, -0.0017276153666898608, 0.014580597169697285, 0.045356277376413345, -0.021043390035629272, 0.0401047058403492, -0.016184847801923752, 0.007970388978719711, -0.05417381227016449, 0.03866960480809212, -0.03611043095588684, -0.042469944804906845, 0.007686826400458813, 0.06046158820390701, -0.005307639017701149, 0.07275485247373581, 0.06866682320833206, 0.04911746084690094, -0.056220244616270065, 0.02137814089655876, 0.0811360776424408, -0.02537955343723297, -0.03714007884263992, -0.004261437337845564, -0.005335676483809948, -0.020436087623238564, 0.02197040431201458, -0.024813050404191017, 0.05436287075281143, 0.036414388567209244, 0.007155494298785925, -0.009881719015538692, -0.017805760726332664, -0.005029806401580572, -0.02255600318312645, -0.05659925937652588, -0.03323137015104294, -0.0031410297378897667, -0.03307224437594414, 0.02553986944258213, 0.023137817159295082, 0.03232473134994507, 0.05989217013120651, 0.011410619132220745, -0.05141457915306091, -0.004998988006263971, 0.015194747596979141, 0.020162807777523994, -0.029923059046268463, -0.07177078723907471, -0.04862170293927193, 0.03273463621735573, 0.04945368692278862, -0.02189367078244686, -0.07007152587175369, 0.025516152381896973, 0.048793449997901917, -0.04130983725190163, 0.05265432968735695, -0.021082211285829544, 0.05402231961488724, 0.0468573234975338, -0.010990615002810955, 0.03881354257464409, -0.01712067238986492, -0.006282237824052572, 0.0009808489121496677, 0.03953737020492554, -0.012707888148725033, -0.024769965559244156, -0.051637958735227585, 0.02573835477232933, 0.0439256876707077, 0.03462535887956619, 0.040459658950567245, -0.03777311369776726, -0.029801325872540474, 0.02473793551325798, 0.023318298161029816, -0.04678432270884514, -0.016635894775390625, 0.046311065554618835, 0.03913639113306999, -0.03879429027438164, -0.029205596074461937, -0.02865978330373764, 0.007768657058477402, 0.032745230942964554, 0.0025790431536734104, -0.025466449558734894, -0.03001459501683712, 0.049079541116952896, -0.027643723413348198, -0.036343321204185486, -0.07385622709989548, 0.024856342002749443, -0.007807027082890272, -0.034301597625017166, 0.05030320957303047, 0.022181576117873192, 0.025319872424006462, 0.07276858389377594, 0.014418127946555614, 0.00660231476649642, -0.04439282789826393, 0.04898437485098839, -0.016822637990117073, -0.009505359455943108, -0.0026422070804983377, -0.041584961116313934, -0.023977307602763176, -0.010274316184222698, -0.04732014611363411, -0.031046677380800247, -0.02009766176342964, 0.024487489834427834, -0.005761777516454458, -0.008177504874765873, -0.0024033240042626858, 0.04084622859954834, -0.006436368450522423, -0.037170544266700745, -0.03871874138712883, -0.014964787289500237, -0.06308481842279434, -0.05450334772467613, -0.001456851838156581, 0.015635669231414795, 0.03623288497328758, 0.0354740172624588, 0.019712908193469048, 0.015501460060477257, 0.006597301922738552, -0.01939096488058567, 0.014040695503354073, 0.018261242657899857, -0.04949725419282913, -0.026008794084191322, 0.03403763473033905, 0.011783835478127003, 0.029670966789126396, -0.02763504721224308, 0.04626132920384407, 0.012505773454904556, -0.014025965705513954, -0.03757289797067642, 0.019217267632484436, 0.03628505766391754, -0.0753331184387207, -0.05712541565299034, -0.014376520179212093, -0.026517024263739586, 0.030859142541885376, -0.022468894720077515, -0.0037811656948179007, 0.028195425868034363, 0.004790824372321367, 0.03506622090935707, -0.028869180008769035, -0.020320139825344086, 0.03628645837306976, -0.004993785638362169, 0.036565735936164856, -0.03967747837305069, 0.05501314997673035, -0.030647097155451775, 0.014990408904850483, -0.024016203358769417, -0.003642125055193901, -0.050104059278964996, 0.031961727887392044, -0.011249681934714317, -0.025172783061861992, -0.0019918344914913177, 0.03267553821206093, -0.007517392747104168, 0.014779074117541313, -0.0181092731654644, 0.021532142534852028, -0.03618255630135536, 0.07289435714483261, -0.03864758834242821, 0.023437179625034332, -0.05306980758905411, 0.02459842339158058, -0.008124643936753273, 0.015017673373222351, -0.0038009020499885082, -0.021413683891296387, 0.04932519048452377, 0.03775978833436966, 0.03161907568573952, 0.04121214523911476, -0.004746037535369396, -0.00795205682516098, -0.0029317117296159267, -0.0638088807463646, -0.02124159038066864, 0.011865757405757904, 0.024716831743717194, -0.016579607501626015, 0.04817281290888786, 0.02691773883998394, -0.060593344271183014, -0.07793720811605453, 0.025056419894099236, 0.02542254887521267, 0.010587207973003387, 0.020235292613506317, 0.027561398223042488, 0.023015223443508148, 0.03984389454126358, -0.011816518381237984, -0.024184469133615494, -0.008443833328783512, -0.05855616554617882, 0.0230216383934021, -0.00382087635807693, 0.01793714426457882, 0.030283071100711823, -0.04898368939757347, -0.035106390714645386, 0.040497299283742905, 0.027482621371746063, 0.009081625379621983, -0.007238184101879597, -0.062179140746593475, 0.021123746410012245, -0.003605880308896303, -0.04195636510848999, 0.023210296407341957, -0.0035916913766413927, -0.021452095359563828, 0.05440262332558632, 0.004625456873327494, -0.000003622345502662938, 0.05038575828075409, 0.005006962455809116, -0.022098874673247337, 0.06276858597993851, -0.04157216474413872, -0.00582891097292304, 0.04805629700422287, -0.06508931517601013, -0.00598063925281167, -0.06213228777050972, 0.07148030400276184, -0.07085257768630981, 0.034698210656642914, 0.06405842304229736, -0.010528046637773514, 0.026957927271723747, -0.06073250621557236, -0.0634385198354721, 0.011242703534662724, -0.03487575799226761, 0.05824200436472893, 0.016520977020263672, -0.06026606261730194, 0.0578303299844265, 0.021971186622977257, -0.05069331079721451, 0.02213330566883087, 0.04180491343140602, 0.03808382898569107, 0.018730178475379944, 0.040876604616642, -0.0442904531955719, -0.026102915406227112, -0.045178622007369995, 0.01090407744050026, -0.061523713171482086, -0.013187432661652565, 0.009328209795057774, -0.01884404942393303, -0.0070309387519955635, 0.03232193738222122, -0.02208574302494526, -0.016725901514291763, 0.04395190253853798, -0.04782780632376671, -0.045627109706401825, -0.006437377538532019, -0.004171643406152725, -0.04846234247088432, -0.013935775496065617, -0.030401021242141724, -0.0005989107303321362, 0.010773247107863426, 0.0023045334964990616, -0.019963232800364494, -0.02457471750676632, 0.017367932945489883, -0.03976496681571007, -0.037017229944467545, 0.052095748484134674, -0.016051631420850754, -0.02287527546286583, 0.03154482692480087, 0.026116197928786278, -0.0015061968006193638, 0.02658376470208168, -0.01628563180565834, 0.034849826246500015, -0.05829990282654762, -0.026713496074080467, 0.02669132687151432, 0.004381406120955944, 0.016830984503030777, 0.010058465413749218, 0.02226308546960354, 0.05574539303779602, 0.025978047400712967, 0.008007273077964783, -0.037238672375679016, -0.0381995290517807, 0.02389075979590416, -0.04366583004593849, 0.0188288651406765, 0.0005696261068806052, -0.047833554446697235, -0.018727904185652733, -0.0043561263009905815, -0.03261691331863403, 0.048465900123119354, -0.05682528391480446, -0.0068093943409621716, 0.05186425894498825, -0.029121924191713333, -0.05749146267771721, -0.08600173890590668, -0.01671867072582245, -0.04795347899198532, 0.0037945539224892855, 0.047006845474243164, -0.03881967067718506, 0.038437895476818085, -0.04862803593277931, -0.03649138659238815, 0.03258066624403, 0.05172278732061386, -0.05762423202395439, 0.059246744960546494, 0.05301950126886368, -0.06525595486164093, 0.010585110634565353, 0.0071094888262450695, -0.04896945878863335, -0.028655357658863068, 0.030351009219884872, -0.0002860248205251992, 0.026179851964116096, 0.030685074627399445, -0.05066384747624397, -0.02324850484728813, -0.07049962133169174, -0.02828393504023552, -0.07031538337469101, 0.00712233642116189, 0.05070165917277336 ]
Declan/Politico_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-6 results: [] --- <!-- 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__hate_speech_offensive__train-32-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0523 - Accuracy: 0.663 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0957 | 1.0 | 19 | 1.0696 | 0.6 | | 1.0107 | 2.0 | 38 | 1.0047 | 0.55 | | 0.8257 | 3.0 | 57 | 0.8358 | 0.8 | | 0.6006 | 4.0 | 76 | 0.7641 | 0.6 | | 0.4172 | 5.0 | 95 | 0.5931 | 0.8 | | 0.2639 | 6.0 | 114 | 0.5570 | 0.7 | | 0.1314 | 7.0 | 133 | 0.5017 | 0.65 | | 0.0503 | 8.0 | 152 | 0.3115 | 0.75 | | 0.023 | 9.0 | 171 | 0.4353 | 0.85 | | 0.0128 | 10.0 | 190 | 0.5461 | 0.75 | | 0.0092 | 11.0 | 209 | 0.5045 | 0.8 | | 0.007 | 12.0 | 228 | 0.5014 | 0.8 | | 0.0064 | 13.0 | 247 | 0.5070 | 0.8 | | 0.0049 | 14.0 | 266 | 0.4681 | 0.8 | | 0.0044 | 15.0 | 285 | 0.4701 | 0.8 | | 0.0039 | 16.0 | 304 | 0.4862 | 0.8 | | 0.0036 | 17.0 | 323 | 0.4742 | 0.8 | | 0.0035 | 18.0 | 342 | 0.4652 | 0.8 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.00910191424190998, 0.029338352382183075, -0.03449759632349014, 0.05245304852724075, 0.04827142506837845, 0.027406709268689156, -0.01248443964868784, -0.02130390703678131, -0.05509145185351372, 0.05940853804349899, 0.014399353414773941, -0.032464224845170975, 0.021777110174298286, 0.035649627447128296, -0.034839414060115814, -0.03635506331920624, -0.020107634365558624, -0.01173351239413023, -0.042742419987916946, 0.004452451132237911, 0.0035160763654857874, -0.012879696674644947, -0.01588892750442028, 0.015202606096863747, -0.014520793221890926, 0.037628430873155594, -0.011850094422698021, 0.021592918783426285, 0.02458050101995468, -0.05542147159576416, 0.0119261359795928, -0.025195524096488953, -0.03806373476982117, 0.003945033065974712, -0.02743276208639145, -0.003956906031817198, 0.002956181298941374, 0.023629479110240936, 0.041605133563280106, 0.03816680237650871, 0.012974732555449009, 0.0042152125388383865, -0.007256799843162298, -0.018036654219031334, 0.05812116339802742, -0.008338823914527893, -0.04634344205260277, -0.010285956785082817, 0.023634212091565132, -0.04294478893280029, -0.06285685300827026, -0.05095047503709793, -0.01836513727903366, 0.026451649144291878, -0.011972039937973022, -0.01333233155310154, -0.057315051555633545, 0.018101898953318596, 0.062498822808265686, -0.039265744388103485, -0.02931317128241062, 0.0008364194072782993, -0.061893537640571594, -0.004455421585589647, 0.023777253925800323, -0.028075607493519783, 0.003943192772567272, -0.04533102363348007, 0.016983842477202415, -0.01995353028178215, 0.05355023220181465, -0.021230822429060936, 0.02868538536131382, -0.06997712701559067, -0.023839980363845825, -0.019802672788500786, 0.05849338695406914, 0.06983055919408798, -0.027901802211999893, 0.06029048189520836, 0.023733416572213173, 0.018165672197937965, 0.03420522063970566, -0.026251332834362984, 0.026456842198967934, 0.029228385537862778, -0.05655733123421669, 0.005330935586243868, 0.006129801273345947, 0.038352884352207184, -0.03185883164405823, -0.03921845555305481, -0.012761727906763554, -0.03212602809071541, -0.014196893200278282, 0.016667205840349197, 0.007478130515664816, 0.0036053925286978483, 0.049672115594148636, 0.02361781895160675, 0.04402885586023331, 0.0361853651702404, -0.03733472898602486, 0.05528000369668007, -0.018818974494934082, 0.005780058912932873, 0.0008710938272997737, -0.022859256714582443, -0.04208531603217125, 0.0203244648873806, 0.029386643320322037, -0.017778929322957993, -0.03847821429371834, 0.03751096501946449, 0.0009644527453929186, 0.015093963593244553, 0.06415315717458725, -0.029732709750533104, -0.04041820019483566, -0.02391633577644825, 0.008785712532699108, 0.008657466620206833, -0.0021805153228342533, 0.014286601915955544, -0.06690288335084915, -0.014305034652352333, -0.032565392553806305, -0.04574425891041756, -0.02927960269153118, 0.029290391132235527, 0.015304177068173885, 0.07100468873977661, 0.024034904316067696, -0.06072982773184776, -0.0030839666724205017, 0.021706249564886093, -0.055041439831256866, 0.04185647517442703, 0.02480161190032959, 0.10933271795511246, -0.06483224034309387, -0.06268791109323502, -0.0047827898524701595, -0.016269350424408913, -0.044070176780223846, 0.017518311738967896, 0.009804359637200832, -0.011669428087770939, -0.009839975275099277, 0.0004554479382932186, 0.05321884900331497, -0.04286913946270943, -0.022730186581611633, 0.06746713072061539, -0.01024693250656128, 0.032102763652801514, -0.0597662553191185, -0.012132041156291962, 0.010442712344229221, -0.02412092126905918, -0.026422997936606407, 0.0282351765781641, -0.025572558864951134, -0.026553288102149963, -0.018469514325261116, -0.03011278621852398, 0.009787531569600105, 0.07244639098644257, -0.00425987271592021, -0.032640911638736725, -0.028974611312150955, 0.023910610005259514, 0.03305080533027649, 0.02496376261115074, -0.028588101267814636, 0.019869018346071243, 0.06438235193490982, 0.024672260507941246, -0.036204226315021515, 0.052671197801828384, 0.00914695579558611, -0.02756309323012829, -0.026381131261587143, 0.02256261184811592, 0.009264867752790451, -0.05010848119854927, 0.046009209007024765, 0.012760989367961884, 0.0028076462913304567, -0.0563485249876976, -0.045206889510154724, 0.039683979004621506, -0.011004524305462837, -0.006974893156439066, 0.030092615634202957, 0.014166157692670822, -0.025736907497048378, 0.041910361498594284, -0.020781053230166435, 0.0013553473399952054, -0.042600855231285095, -0.015183452516794205, -0.005235546734184027, -0.028794728219509125, 0.014456866309046745, 0.04323180392384529, -0.002812899649143219, 0.07294748723506927, -0.02414032630622387, 0.010595522820949554, -0.05456281453371048, -0.03908864036202431, 0.009611045941710472, 0.06567806750535965, 0.06118268892168999, 0.040707822889089584, 0.004905655514448881, -0.044827889651060104, 0.03398673236370087, 0.0734940618276596, 0.04637929052114487, -0.0007433564751408994, -0.03548264130949974, -0.01682906039059162, 0.0479123517870903, 0.05268470570445061, -0.04934662580490112, -0.02384769544005394, 0.005109121091663837, 0.03885148838162422, -0.011661688797175884, 0.008287157863378525, -0.029800966382026672, 0.0335564985871315, -0.05840948224067688, -0.04894715175032616, 0.04020214453339577, 0.04112468659877777, 0.006500375922769308, 0.028487851843237877, 0.024164872244000435, 0.01300585176795721, 0.04080580919981003, 0.023644886910915375, 0.0163299310952425, -0.056184809654951096, 0.018186058849096298, -0.0037492646370083094, 0.04894674941897392, -0.04579491540789604, 0.03834163397550583, -0.013797865249216557, 0.0011692886473610997, 0.03796135261654854, -0.02864062413573265, 0.049334440380334854, 0.04853413999080658, 0.0170187558978796, -0.03702111169695854, 0.021305009722709656, -0.012505952268838882, 0.02851802669465542, 0.021260041743516922, 0.0032574732322245836, 0.0849137157201767, 0.01007022988051176, 0.04757067188620567, 0.09783996641635895, 0.03396398946642876, 0.027513552457094193, 0.012229958549141884, 0.04309965297579765, 0.02105824090540409, -0.01901581697165966, 0.060389213263988495, -0.053354647010564804, 0.03865278884768486, -0.050319425761699677, 0.006587959825992584, -0.020232852548360825, -0.025432249531149864, 0.051505353301763535, 0.033362142741680145, -0.03299030289053917, 0.0034304147120565176, 0.0073793986812233925, -0.01445270236581564, 0.038639605045318604, -0.015321601182222366, 0.006403812672942877, -0.00785280391573906, -0.04104864224791527, -0.0009011703077703714, -0.075569286942482, -0.03377268835902214, -0.005043917801231146, -0.027948806062340736, -0.020316828042268753, -0.09540359675884247, -0.023555859923362732, -0.05954989045858383, -0.009851410053670406, 0.027883870527148247, 0.009122147224843502, -0.02425634302198887, -0.03075147420167923, 0.01876077428460121, -0.0507446825504303, -0.043815165758132935, -0.03783099725842476, -0.06491140276193619, -0.04280227795243263, -0.07602934539318085, 0.04220298305153847, 0.04769839346408844, 0.013333173468708992, -0.007572939619421959, 0.013423891738057137, 0.01539035327732563, -0.02398609183728695, 0.01914031058549881, 0.05963648110628128, -0.04000956192612648, -0.06804057210683823, 0.007043357938528061, -0.001674626488238573, 0.006131414789706469, 0.032808661460876465, -0.04312533140182495, 0.09658528119325638, 0.08665421605110168, 0.007088345941156149, 0.03436586260795593, -0.003309163497760892, -0.05726819857954979, -0.04730451852083206, -0.03297135606408119, -0.05096384137868881, -0.02174895629286766, -0.04348088428378105, -0.06203998252749443, -0.031100904569029808, -0.04124920070171356, -0.00371479126624763, 0.0037778541445732117, 0.02196594886481762, 0.014013833366334438, 0.036609746515750885, 0.01987711526453495, 0.03341246023774147, -0.02154095098376274, -0.04557034745812416, 0.05461481586098671, -0.011977802030742168, 0.017641780897974968, -0.08747390657663345, 0.00210958207026124, 0.03040441870689392, -0.0020058483351022005, 0.02054332010447979, -0.02446957863867283, 0.0638321042060852, 0.00530640035867691, 0.004358882550150156, 0.007142516318708658, -0.008502025157213211, 0.0015660750214010477, -0.01199211087077856, -0.015385384671390057, 0.007309288252145052, -0.03486550599336624, -0.02442765235900879, -0.02028944157063961, 0.0379851832985878, -0.04776288568973541, -0.047160085290670395, -0.027453966438770294, 0.042320046573877335, 0.054630085825920105, -0.0095690181478858, -0.05291156470775604, -0.011335359886288643, -0.05535280704498291, -0.01067015528678894, 0.012512858025729656, -0.0001300022122450173, 0.004383255261927843, 0.027813272550702095, 0.01829577051103115, -0.011177842505276203, 0.004712229128926992, 0.05546609312295914, 0.07204721868038177, 0.01503794640302658, -0.08161952346563339, -0.00028771875076927245, -0.013334826566278934, 0.017120501026511192, -0.019851423799991608, -0.025741558521986008, -0.023019040003418922, -0.10918018221855164, -0.029114127159118652, -0.0011311949929222465, 0.0022144587710499763, -0.018956908956170082, 0.03962087631225586, -0.005940543487668037, -0.010655693709850311, -0.0011159208370372653, 0.013861937448382378, 0.04444917291402817, -0.0207244623452425, 0.039946768432855606, -0.017813915386795998, 0.009856327436864376, -0.056922513991594315, 0.036999426782131195, -0.03799404203891754, -0.044204916805028915, 0.008104017935693264, 0.06022852286696434, -0.0075788903050124645, 0.0734594389796257, 0.06882425397634506, 0.04777050390839577, -0.05627722293138504, 0.02038869820535183, 0.07950405031442642, -0.02524682879447937, -0.037469275295734406, -0.0031876310240477324, -0.005180451087653637, -0.02227013371884823, 0.021838337182998657, -0.02515374682843685, 0.05429212003946304, 0.035147786140441895, 0.007906601764261723, -0.010198995471000671, -0.017673511058092117, -0.004692165646702051, -0.02282034233212471, -0.0567844994366169, -0.0347188264131546, -0.0019258351530879736, -0.0331357941031456, 0.025374319404363632, 0.02387884072959423, 0.032333407551050186, 0.06059858947992325, 0.012221266515552998, -0.05135871469974518, -0.0028424037154763937, 0.015859901905059814, 0.021348649635910988, -0.029819613322615623, -0.07123300433158875, -0.049307744950056076, 0.033128753304481506, 0.04865178093314171, -0.021987328305840492, -0.0693860575556755, 0.024770881980657578, 0.04749130830168724, -0.041911106556653976, 0.052390098571777344, -0.022245734930038452, 0.05372166261076927, 0.04901720583438873, -0.01180235855281353, 0.03794983774423599, -0.016618339344859123, -0.005740083754062653, 0.0017556919483467937, 0.0394408144056797, -0.012680270709097385, -0.02465747855603695, -0.05168365687131882, 0.02425437979400158, 0.04422285780310631, 0.03414938971400261, 0.03945593908429146, -0.03816232830286026, -0.028430024161934853, 0.023805301636457443, 0.02426140010356903, -0.046981580555438995, -0.017203526571393013, 0.04510686174035072, 0.039160192012786865, -0.040472906082868576, -0.028819989413022995, -0.029113123193383217, 0.006557576358318329, 0.03196017071604729, 0.00020508337183855474, -0.02451561763882637, -0.030911939218640327, 0.04771766811609268, -0.02877577394247055, -0.035853154957294464, -0.07593430578708649, 0.026697784662246704, -0.005807461217045784, -0.034722305834293365, 0.04921193793416023, 0.023320723325014114, 0.02604956366121769, 0.0723884105682373, 0.012674002908170223, 0.006586580071598291, -0.04391901567578316, 0.048625651746988297, -0.019831741228699684, -0.010900787077844143, -0.0006046703783795238, -0.04132283851504326, -0.02339220605790615, -0.010279879905283451, -0.04775301739573479, -0.03036768175661564, -0.02150104008615017, 0.02479408122599125, -0.004730105400085449, -0.007654834538698196, -0.00314767356030643, 0.039408206939697266, -0.004106561187654734, -0.036032989621162415, -0.038279276341199875, -0.01599840633571148, -0.06349791586399078, -0.05497176945209503, -0.002029411494731903, 0.01510290801525116, 0.03365417197346687, 0.03559310361742973, 0.019113628193736076, 0.013615512289106846, 0.007802621927112341, -0.019718540832400322, 0.015702512115240097, 0.019134607166051865, -0.0500105582177639, -0.02465888299047947, 0.03459025174379349, 0.012566190212965012, 0.028993096202611923, -0.027175040915608406, 0.046292345970869064, 0.010729226283729076, -0.015345369465649128, -0.03715416416525841, 0.02040119282901287, 0.03576922044157982, -0.0755007416009903, -0.05599629133939743, -0.014734982512891293, -0.02754446677863598, 0.0309500340372324, -0.01937141641974449, -0.001700189313851297, 0.02863764949142933, 0.006564015056937933, 0.03544794023036957, -0.026967808604240417, -0.019870586693286896, 0.03619077056646347, -0.004762452095746994, 0.03709537908434868, -0.03950115293264389, 0.053943656384944916, -0.03240177035331726, 0.016147702932357788, -0.022461285814642906, -0.003778919344767928, -0.05152976140379906, 0.03158332407474518, -0.011913751251995564, -0.025327511131763458, -0.0028826328925788403, 0.031130382791161537, -0.007874416187405586, 0.015144174918532372, -0.017921915277838707, 0.022222962230443954, -0.035794731229543686, 0.07458069920539856, -0.03923344239592552, 0.0218790415674448, -0.052454788237810135, 0.025648344308137894, -0.008757778443396091, 0.014926382340490818, -0.002772341715171933, -0.020519504323601723, 0.0508635975420475, 0.03629478067159653, 0.029321342706680298, 0.04144826531410217, -0.004396778531372547, -0.008501086384057999, -0.0030506430193781853, -0.06320003420114517, -0.019425414502620697, 0.01193284336477518, 0.024500772356987, -0.014963636174798012, 0.049872271716594696, 0.02789594605565071, -0.060450050979852676, -0.07882629334926605, 0.025893263518810272, 0.025374624878168106, 0.009935032576322556, 0.021427351981401443, 0.02690926007926464, 0.02210404723882675, 0.03814922645688057, -0.011583118699491024, -0.02625432424247265, -0.010776137001812458, -0.058608587831258774, 0.020964860916137695, -0.005650229752063751, 0.016138745471835136, 0.029042573645710945, -0.04794386401772499, -0.03606000542640686, 0.04060296714305878, 0.027617482468485832, 0.010095871053636074, -0.007509295362979174, -0.06029481440782547, 0.019975626841187477, -0.0036547472700476646, -0.042401786893606186, 0.022396458312869072, -0.00393865630030632, -0.023160824552178383, 0.05305369198322296, 0.005048471502959728, -0.0007718373090028763, 0.049830544739961624, 0.003298982046544552, -0.021999482065439224, 0.06286536902189255, -0.0425356850028038, -0.005630853585898876, 0.04842239245772362, -0.06538218259811401, -0.009552562609314919, -0.06366459280252457, 0.06997443735599518, -0.07092881947755814, 0.03637661039829254, 0.06505797803401947, -0.012507414445281029, 0.028209298849105835, -0.06190979480743408, -0.06232356280088425, 0.012544735334813595, -0.035124484449625015, 0.05748945474624634, 0.017155298963189125, -0.058611731976270676, 0.057851988822221756, 0.021755021065473557, -0.049674373120069504, 0.022849537432193756, 0.041491877287626266, 0.03690917789936066, 0.018140336498618126, 0.04101906716823578, -0.04401889070868492, -0.027928274124860764, -0.04556485265493393, 0.010890108533203602, -0.0594252310693264, -0.011952629312872887, 0.007952634245157242, -0.01786198653280735, -0.005677277222275734, 0.031062273308634758, -0.021239325404167175, -0.01484164409339428, 0.04308484494686127, -0.04718296602368355, -0.04926871508359909, -0.006810624618083239, -0.00308756111189723, -0.04909656196832657, -0.014135020785033703, -0.02994406782090664, -0.0029113716445863247, 0.010696983896195889, 0.0035120476968586445, -0.020612843334674835, -0.026467708870768547, 0.018071964383125305, -0.04160608723759651, -0.03752182796597481, 0.05273132398724556, -0.01651022955775261, -0.022580699995160103, 0.030486229807138443, 0.027946611866354942, 0.00013499008491635323, 0.026830894872546196, -0.015171206556260586, 0.033218882977962494, -0.05641226842999458, -0.02764071524143219, 0.02629159949719906, 0.0025168012361973524, 0.01869228295981884, 0.0110360998660326, 0.021187813952565193, 0.054901957511901855, 0.025530947372317314, 0.008246062323451042, -0.03761958330869675, -0.03755547106266022, 0.022979598492383957, -0.04369195178151131, 0.018133966252207756, 0.002316242316737771, -0.049047257751226425, -0.019202226772904396, -0.004029325675219297, -0.031840402632951736, 0.04896063357591629, -0.0567239448428154, -0.006311916746199131, 0.05297216400504112, -0.030210290104150772, -0.05834764987230301, -0.08673100918531418, -0.0164751298725605, -0.04594746232032776, 0.005518839228898287, 0.046630945056676865, -0.03666932135820389, 0.03753253072500229, -0.04819180443882942, -0.0362398624420166, 0.029896287247538567, 0.05369606614112854, -0.05825076252222061, 0.05866268649697304, 0.052215397357940674, -0.06425105780363083, 0.009466772899031639, 0.006517215631902218, -0.04915378987789154, -0.02872447669506073, 0.030903540551662445, -0.001053064363077283, 0.02661900408565998, 0.03222125768661499, -0.04947444424033165, -0.02195323072373867, -0.07176212221384048, -0.029216520488262177, -0.07088904827833176, 0.008145809173583984, 0.05036184564232826 ]
Declan/Reuters_model_v1
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-32-9 results: [] --- <!-- 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__hate_speech_offensive__train-32-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7075 - Accuracy: 0.692 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1054 | 1.0 | 19 | 1.0938 | 0.35 | | 1.0338 | 2.0 | 38 | 1.0563 | 0.65 | | 0.8622 | 3.0 | 57 | 0.9372 | 0.6 | | 0.5919 | 4.0 | 76 | 0.8461 | 0.6 | | 0.3357 | 5.0 | 95 | 1.0206 | 0.45 | | 0.1621 | 6.0 | 114 | 0.9802 | 0.7 | | 0.0637 | 7.0 | 133 | 1.2434 | 0.65 | | 0.0261 | 8.0 | 152 | 1.3865 | 0.65 | | 0.0156 | 9.0 | 171 | 1.4414 | 0.7 | | 0.01 | 10.0 | 190 | 1.5502 | 0.7 | | 0.0079 | 11.0 | 209 | 1.6102 | 0.7 | | 0.0062 | 12.0 | 228 | 1.6525 | 0.7 | | 0.0058 | 13.0 | 247 | 1.6884 | 0.7 | | 0.0046 | 14.0 | 266 | 1.7479 | 0.7 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.00729114655405283, 0.02901548333466053, -0.03531109541654587, 0.05335848405957222, 0.04784533008933067, 0.029017366468906403, -0.012741181999444962, -0.019241200760006905, -0.054390013217926025, 0.05982981249690056, 0.01512256357818842, -0.031431104987859726, 0.021820906549692154, 0.03662833943963051, -0.03423431143164635, -0.037292081862688065, -0.022781508043408394, -0.011895584873855114, -0.04214414581656456, 0.004694216884672642, 0.0032548815943300724, -0.012106040492653847, -0.016166893765330315, 0.015665274113416672, -0.014888477511703968, 0.03798139840364456, -0.012644630856812, 0.023105695843696594, 0.02528543211519718, -0.05480042099952698, 0.010587125085294247, -0.025594227015972137, -0.03883298113942146, 0.00407755421474576, -0.027489179745316505, -0.004178316798061132, 0.004812878090888262, 0.02369702234864235, 0.040616292506456375, 0.037014156579971313, 0.012871838174760342, 0.006364614702761173, -0.007991937920451164, -0.018034949898719788, 0.05932414159178734, -0.00891871377825737, -0.04656242951750755, -0.010688534937798977, 0.023770900443196297, -0.04344355687499046, -0.062204036861658096, -0.05068094655871391, -0.019543081521987915, 0.02750549465417862, -0.010520816780626774, -0.013368429616093636, -0.05885525792837143, 0.019408151507377625, 0.062346067279577255, -0.03916555270552635, -0.02973327413201332, 0.0003375171800144017, -0.06293004751205444, -0.005655623972415924, 0.024633092805743217, -0.028565581887960434, 0.002545624505728483, -0.04490532726049423, 0.017789097502827644, -0.02045639045536518, 0.05611945688724518, -0.020753368735313416, 0.0293493140488863, -0.06971436738967896, -0.023058075457811356, -0.019409894943237305, 0.059484340250492096, 0.06860961765050888, -0.0270894356071949, 0.06071454659104347, 0.0246108528226614, 0.018429676070809364, 0.03325745463371277, -0.02582119032740593, 0.026239775121212006, 0.028752094134688377, -0.05692442134022713, 0.0032140654511749744, 0.006714636459946632, 0.035786114633083344, -0.030506597831845284, -0.037633348256349564, -0.012004168704152107, -0.031096015125513077, -0.015597295016050339, 0.015251947566866875, 0.00885093491524458, 0.004378690849989653, 0.049421072006225586, 0.024210689589381218, 0.04274566099047661, 0.03521863371133804, -0.0374501496553421, 0.05551449581980705, -0.020488357171416283, 0.005982734728604555, -0.00020386127289384604, -0.02259127050638199, -0.041765425354242325, 0.02048526145517826, 0.02879192866384983, -0.018586816266179085, -0.03941665217280388, 0.03774472326040268, 0.0015430623898282647, 0.016120534390211105, 0.0642380639910698, -0.030504021793603897, -0.040395841002464294, -0.024734506383538246, 0.006979247089475393, 0.007377415429800749, -0.003351971274241805, 0.014049305580556393, -0.06766863912343979, -0.01533841248601675, -0.03240412846207619, -0.04452110826969147, -0.028318950906395912, 0.029973749071359634, 0.012699837796390057, 0.06759151816368103, 0.02590065822005272, -0.06106051802635193, -0.002867748960852623, 0.021158482879400253, -0.05477188527584076, 0.039813823997974396, 0.02390999160706997, 0.1090288981795311, -0.06386850029230118, -0.06435942649841309, -0.00451170327141881, -0.015915391966700554, -0.0426207110285759, 0.016709452494978905, 0.011531424708664417, -0.010906237177550793, -0.0091503681614995, 0.0006565203075297177, 0.05171065777540207, -0.043865103274583817, -0.021656926721334457, 0.06830942630767822, -0.009509917348623276, 0.03337196260690689, -0.06110614538192749, -0.013711444102227688, 0.009340966120362282, -0.025422917678952217, -0.02699912153184414, 0.029194092378020287, -0.024700399488210678, -0.026669399812817574, -0.018354279920458794, -0.03156222775578499, 0.010468434542417526, 0.07195045799016953, -0.002406258601695299, -0.03339579701423645, -0.029024330899119377, 0.02419888600707054, 0.03233582153916359, 0.025873800739645958, -0.02856600470840931, 0.02020038664340973, 0.06266149133443832, 0.023969221860170364, -0.03587038815021515, 0.052928268909454346, 0.010206934064626694, -0.028225025162100792, -0.0285335760563612, 0.02050940692424774, 0.008807037025690079, -0.05140868201851845, 0.04490956291556358, 0.013052367605268955, 0.0021510575897991657, -0.05537625402212143, -0.04515594616532326, 0.039978981018066406, -0.009172540158033371, -0.008637821301817894, 0.029723022133111954, 0.013178952038288116, -0.026086870580911636, 0.04148022085428238, -0.02155563421547413, 0.00043450857629068196, -0.043413612991571426, -0.01526794396340847, -0.005652579478919506, -0.028765365481376648, 0.014169215224683285, 0.04458804428577423, -0.0022899461910128593, 0.07320931553840637, -0.023733342066407204, 0.011660001240670681, -0.055834829807281494, -0.03937431797385216, 0.008637020364403725, 0.06488914787769318, 0.061488643288612366, 0.03984428197145462, 0.005666338372975588, -0.046862196177244186, 0.0346037931740284, 0.07340838015079498, 0.046129461377859116, 0.0009760693646967411, -0.034553080797195435, -0.01675511710345745, 0.04787503182888031, 0.0519370473921299, -0.04901133477687836, -0.024055706337094307, 0.0040265959687530994, 0.03938380256295204, -0.012280678376555443, 0.008569619618356228, -0.029740119352936745, 0.034412115812301636, -0.058616675436496735, -0.04961800575256348, 0.03941776230931282, 0.040665317326784134, 0.00773197878152132, 0.029577959328889847, 0.02376331202685833, 0.014159459620714188, 0.04246785491704941, 0.02403133362531662, 0.016073808073997498, -0.05664244666695595, 0.018383076414465904, -0.002179654547944665, 0.04922662675380707, -0.04704425483942032, 0.03953370079398155, -0.013718814589083195, 0.0012240461073815823, 0.0373278483748436, -0.028130708262324333, 0.04989860951900482, 0.047314178198575974, 0.01766362600028515, -0.03711274638772011, 0.02081170678138733, -0.010506689548492432, 0.02801677957177162, 0.02170254848897457, 0.0032545796129852533, 0.08348064124584198, 0.01069549284875393, 0.046065978705883026, 0.09726805239915848, 0.03348361328244209, 0.025710182264447212, 0.012384128756821156, 0.04292183741927147, 0.02010469324886799, -0.021221596747636795, 0.05885452404618263, -0.05432324483990669, 0.03939084708690643, -0.05094553902745247, 0.008046107366681099, -0.020415380597114563, -0.02565932087600231, 0.05338817462325096, 0.033365245908498764, -0.03442130982875824, 0.0033826895523816347, 0.006418540142476559, -0.015226081013679504, 0.038787372410297394, -0.01578907109797001, 0.007669160142540932, -0.007585049141198397, -0.042719196528196335, -0.002213091356679797, -0.07659430801868439, -0.03393341228365898, -0.006191757041960955, -0.028953980654478073, -0.021137572824954987, -0.09619194269180298, -0.02383745089173317, -0.05927995592355728, -0.00962027907371521, 0.02993701584637165, 0.010617878288030624, -0.023272987455129623, -0.030304288491606712, 0.017237301915884018, -0.052710626274347305, -0.04224797338247299, -0.036693040281534195, -0.06341548264026642, -0.041842181235551834, -0.07583189010620117, 0.04304460063576698, 0.0475451685488224, 0.011490882374346256, -0.006728861015290022, 0.012588242068886757, 0.01641368865966797, -0.0250341035425663, 0.01884077489376068, 0.0600496269762516, -0.03934374451637268, -0.06808216869831085, 0.007743655703961849, -0.002147585153579712, 0.0072625367902219296, 0.03133007138967514, -0.04275162145495415, 0.09530510753393173, 0.08679960668087006, 0.008835972286760807, 0.034473493695259094, -0.002371852518990636, -0.05559210106730461, -0.04821731895208359, -0.03397885337471962, -0.049148738384246826, -0.019846953451633453, -0.04405303671956062, -0.06063339114189148, -0.02975461259484291, -0.03946783393621445, -0.00565325329080224, 0.004420211538672447, 0.022350052371621132, 0.012242801487445831, 0.03597855195403099, 0.018895739689469337, 0.03296239301562309, -0.02284485660493374, -0.04735608398914337, 0.05538954958319664, -0.014308267273008823, 0.018967261537909508, -0.08846652507781982, 0.00170974712818861, 0.030749930068850517, -0.0009048006031662226, 0.020968884229660034, -0.025406014174222946, 0.06527550518512726, 0.004600762855261564, 0.006143685895949602, 0.007317395880818367, -0.009581170976161957, 0.0006058167782612145, -0.01322939433157444, -0.014159767888486385, 0.006571127567440271, -0.03523721173405647, -0.023768026381731033, -0.01961369439959526, 0.038813602179288864, -0.04781128093600273, -0.047280453145504, -0.02851383574306965, 0.04350712150335312, 0.05457171052694321, -0.009709477424621582, -0.05138813331723213, -0.01367917563766241, -0.05556798726320267, -0.010582588613033295, 0.014095448888838291, -0.000049928399675991386, 0.004940314218401909, 0.0278838649392128, 0.01678283140063286, -0.010153096169233322, 0.0038789978716522455, 0.05740238353610039, 0.07285020500421524, 0.014993078075349331, -0.08100086450576782, -0.0006110178655944765, -0.013476025313138962, 0.015375911258161068, -0.018151823431253433, -0.026131678372621536, -0.02181553654372692, -0.10880426317453384, -0.029656320810317993, -0.0006079587619751692, 0.0021460754796862602, -0.01954312063753605, 0.03767296299338341, -0.005162606947124004, -0.00965003203600645, -0.0005845902487635612, 0.015171471983194351, 0.04457704350352287, -0.019370095804333687, 0.039971474558115005, -0.017525389790534973, 0.009428351186215878, -0.05399934574961662, 0.038653142750263214, -0.03868481144309044, -0.043110575526952744, 0.008537985384464264, 0.06287261843681335, -0.007457394152879715, 0.07212469726800919, 0.06859278678894043, 0.04821910336613655, -0.05551692098379135, 0.020402148365974426, 0.08060788363218307, -0.02660302259027958, -0.036947913467884064, -0.002789120888337493, -0.004961260128766298, -0.022479353472590446, 0.02116825059056282, -0.025251049548387527, 0.05537358671426773, 0.034998971968889236, 0.008214025758206844, -0.01002592220902443, -0.01874532923102379, -0.005700249690562487, -0.023352529853582382, -0.05678988993167877, -0.03358680009841919, -0.002008036244660616, -0.031365904957056046, 0.02459031157195568, 0.023134402930736542, 0.032289933413267136, 0.06006259098649025, 0.012701463885605335, -0.05127107352018356, -0.005555215757340193, 0.01701933518052101, 0.01968291588127613, -0.03112243302166462, -0.07090191543102264, -0.047850314527750015, 0.034757476300001144, 0.048822540789842606, -0.021892309188842773, -0.06991709023714066, 0.024339009076356888, 0.046635594218969345, -0.04176006093621254, 0.05118715390563011, -0.02175775170326233, 0.05424059182405472, 0.04880426824092865, -0.012568042613565922, 0.04006987810134888, -0.016053229570388794, -0.005984676070511341, 0.002951557282358408, 0.03977968916296959, -0.01344393752515316, -0.024487676098942757, -0.049560125917196274, 0.024046076461672783, 0.04506518691778183, 0.033935707062482834, 0.04016251862049103, -0.03941980376839638, -0.025943422690033913, 0.02431776188313961, 0.025496989488601685, -0.04661441594362259, -0.016344942152500153, 0.0448552630841732, 0.03998459130525589, -0.039791420102119446, -0.028549911454319954, -0.027690859511494637, 0.007476277649402618, 0.0317557118833065, 0.002045854926109314, -0.02514973096549511, -0.03144500404596329, 0.04916369542479515, -0.028393980115652084, -0.03626716509461403, -0.07423699647188187, 0.02728169970214367, -0.00642052199691534, -0.03433573991060257, 0.0507405586540699, 0.02319791167974472, 0.026466859504580498, 0.07155971229076385, 0.013006340712308884, 0.006035415921360254, -0.04507239907979965, 0.04734194278717041, -0.018610522150993347, -0.009594932198524475, -0.001884821685962379, -0.04252670705318451, -0.024309618398547173, -0.012287336401641369, -0.04731953889131546, -0.030926333740353584, -0.01952248252928257, 0.024796215817332268, -0.005673109088093042, -0.006422501057386398, -0.0029769730754196644, 0.03949051350355148, -0.0046134451404213905, -0.037545498460531235, -0.03818593546748161, -0.01739806868135929, -0.06365939974784851, -0.05505518615245819, -0.001162323052994907, 0.014388411305844784, 0.03445199877023697, 0.037279535084962845, 0.019856717437505722, 0.01415314432233572, 0.0076161776669323444, -0.019895397126674652, 0.016960708424448967, 0.019728485494852066, -0.04994355887174606, -0.026106007397174835, 0.034578219056129456, 0.012966685928404331, 0.028142396360635757, -0.03003956563770771, 0.046785835176706314, 0.010694959200918674, -0.01705920137465, -0.03703881800174713, 0.019263138994574547, 0.03651534765958786, -0.07654859870672226, -0.05530397966504097, -0.016033699735999107, -0.027341069653630257, 0.03139571100473404, -0.02111220732331276, -0.001423616660758853, 0.02810661308467388, 0.006769250612705946, 0.0349121168255806, -0.02814214490354061, -0.020019294694066048, 0.035650089383125305, -0.005866188555955887, 0.03828417509794235, -0.039886780083179474, 0.053016263991594315, -0.03299269452691078, 0.015815820544958115, -0.021816575899720192, -0.002014517318457365, -0.051273129880428314, 0.030455823987722397, -0.011014553718268871, -0.024939851835370064, -0.0026709192898124456, 0.031723156571388245, -0.00769481435418129, 0.014568176120519638, -0.019975120201706886, 0.022702906280755997, -0.03495737910270691, 0.07240284979343414, -0.038960278034210205, 0.02250145934522152, -0.051561903208494186, 0.024564670398831367, -0.008594086393713951, 0.01581076718866825, -0.0022477961611002684, -0.021668048575520515, 0.05022120103240013, 0.03746224194765091, 0.03127753362059593, 0.041014254093170166, -0.004931973293423653, -0.007298949174582958, -0.0030037174001336098, -0.06353399902582169, -0.019906776025891304, 0.012475041672587395, 0.025583382695913315, -0.015121768228709698, 0.048812106251716614, 0.02746090292930603, -0.06034957990050316, -0.07851270586252213, 0.02614794485270977, 0.02566393092274666, 0.010387574322521687, 0.02002427540719509, 0.027102449908852577, 0.02233240194618702, 0.03889043256640434, -0.00950955506414175, -0.027115046977996826, -0.010581694543361664, -0.057451944798231125, 0.020678432658314705, -0.004263215232640505, 0.0166485458612442, 0.029505858197808266, -0.0480831116437912, -0.036474522203207016, 0.03982313722372055, 0.02756284363567829, 0.010935142636299133, -0.006664315704256296, -0.06066117808222771, 0.022090716287493706, -0.004957278724759817, -0.041797272861003876, 0.02256009541451931, -0.004026258364319801, -0.021022219210863113, 0.054577410221099854, 0.0058201756328344345, -0.00041763909393921494, 0.049223195761442184, 0.004593966994434595, -0.0208982452750206, 0.06190111115574837, -0.0418931245803833, -0.006037320010364056, 0.04713951423764229, -0.0654299184679985, -0.00927973072975874, -0.060902468860149384, 0.06956066936254501, -0.07118219137191772, 0.03671402856707573, 0.06726356595754623, -0.01112600788474083, 0.02822660468518734, -0.06110963970422745, -0.06174057349562645, 0.011885910294950008, -0.03358574956655502, 0.057774294167757034, 0.01678929664194584, -0.05850611627101898, 0.05707085132598877, 0.021961303427815437, -0.0503857284784317, 0.02278171479701996, 0.04232591763138771, 0.03700656816363335, 0.018839208409190178, 0.041747573763132095, -0.04382897540926933, -0.02675296925008297, -0.04544611647725105, 0.01163097657263279, -0.0596911646425724, -0.011375853791832924, 0.009488805197179317, -0.016739340499043465, -0.005803549662232399, 0.029896240681409836, -0.021260123699903488, -0.017136339098215103, 0.043655894696712494, -0.04775024577975273, -0.04631122201681137, -0.005413602106273174, -0.0014275792054831982, -0.04780994728207588, -0.014084375463426113, -0.02961246855556965, -0.0015403764555230737, 0.011434584856033325, 0.004877003375440836, -0.020501457154750824, -0.024271218106150627, 0.01757228560745716, -0.04239519685506821, -0.03739285469055176, 0.05279424041509628, -0.017637701705098152, -0.02187076210975647, 0.031648021191358566, 0.027875984087586403, -0.0001862023345893249, 0.027187922969460487, -0.01612355001270771, 0.0321773961186409, -0.0582323782145977, -0.02774137631058693, 0.02490120194852352, 0.0025015883147716522, 0.018144333735108376, 0.011069513857364655, 0.019383342936635017, 0.056244656443595886, 0.026218174025416374, 0.007940917275846004, -0.0397903136909008, -0.039016131311655045, 0.023016154766082764, -0.04331215098500252, 0.019790934398770332, 0.0021224860101938248, -0.04745030030608177, -0.018579810857772827, -0.0020761548075824976, -0.03215654566884041, 0.04892924800515175, -0.058184098452329636, -0.007326154503971338, 0.0509275384247303, -0.029127925634384155, -0.05800819396972656, -0.08562014251947403, -0.01798744685947895, -0.04602482169866562, 0.005857170093804598, 0.04642992094159126, -0.03672139719128609, 0.03728920966386795, -0.04950146749615669, -0.035049475729465485, 0.03175116330385208, 0.0523228645324707, -0.05885244533419609, 0.05838562920689583, 0.053161200135946274, -0.06477776169776917, 0.008527763187885284, 0.006770165171474218, -0.04835877940058708, -0.02679324336349964, 0.03006526082754135, -0.000932916474994272, 0.02590574510395527, 0.03125794604420662, -0.050382766872644424, -0.02079877257347107, -0.07168031483888626, -0.03015795536339283, -0.07205242663621902, 0.008057069964706898, 0.04973018541932106 ]
Declan/Reuters_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-0 results: [] --- <!-- 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__hate_speech_offensive__train-8-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1097 - Accuracy: 0.132 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1065 | 1.0 | 5 | 1.1287 | 0.0 | | 1.0592 | 2.0 | 10 | 1.1729 | 0.0 | | 1.0059 | 3.0 | 15 | 1.1959 | 0.0 | | 0.9129 | 4.0 | 20 | 1.2410 | 0.0 | | 0.8231 | 5.0 | 25 | 1.2820 | 0.0 | | 0.7192 | 6.0 | 30 | 1.3361 | 0.0 | | 0.6121 | 7.0 | 35 | 1.4176 | 0.0 | | 0.5055 | 8.0 | 40 | 1.5111 | 0.0 | | 0.4002 | 9.0 | 45 | 1.5572 | 0.0 | | 0.3788 | 10.0 | 50 | 1.6733 | 0.0 | | 0.2755 | 11.0 | 55 | 1.7381 | 0.2 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009648316539824009, 0.030258741229772568, -0.0343053862452507, 0.05177026614546776, 0.04801817610859871, 0.028814829885959625, -0.01251944713294506, -0.02144043520092964, -0.05449153110384941, 0.06046808511018753, 0.014362520538270473, -0.03105737641453743, 0.02367044799029827, 0.03765428438782692, -0.03506290540099144, -0.036866821348667145, -0.020795468240976334, -0.010957229882478714, -0.04084604233503342, 0.0032572546042501926, 0.0017675600247457623, -0.01278169360011816, -0.016409287229180336, 0.01493031345307827, -0.014118725433945656, 0.0381612628698349, -0.01161715853959322, 0.022524073719978333, 0.02494673989713192, -0.054699186235666275, 0.011617986485362053, -0.025701075792312622, -0.03955170884728432, 0.005004728678613901, -0.027372010052204132, -0.0043900576420128345, 0.003220296697691083, 0.024017438292503357, 0.04144195467233658, 0.03855922445654869, 0.012477939948439598, 0.006037890445441008, -0.007594985421746969, -0.020197760313749313, 0.058622296899557114, -0.009301804006099701, -0.04547947645187378, -0.011615276336669922, 0.023398753255605698, -0.04324011877179146, -0.06274445354938507, -0.052117932587862015, -0.01768512837588787, 0.028364233672618866, -0.010104105807840824, -0.013549785129725933, -0.059431158006191254, 0.01921451836824417, 0.06367940455675125, -0.03969929739832878, -0.029943477362394333, 0.0010718915145844221, -0.06364250928163528, -0.003220013342797756, 0.023352351039648056, -0.026133695617318153, 0.0036792259197682142, -0.04622650146484375, 0.018079664558172226, -0.019307777285575867, 0.05498841404914856, -0.021912628784775734, 0.028027329593896866, -0.07095970958471298, -0.023737246170639992, -0.01938101276755333, 0.05937923863530159, 0.06731486320495605, -0.02761099860072136, 0.06237137317657471, 0.025047970935702324, 0.018907370045781136, 0.033867139369249344, -0.024778610095381737, 0.026730969548225403, 0.026306167244911194, -0.05644053593277931, 0.004070558585226536, 0.007080657407641411, 0.03674493730068207, -0.030108779668807983, -0.03660742938518524, -0.011939363554120064, -0.0309186689555645, -0.0136612793430686, 0.016446612775325775, 0.008325825445353985, 0.002509015379473567, 0.047820765525102615, 0.02268257550895214, 0.0425848625600338, 0.03579157590866089, -0.036815181374549866, 0.05802498385310173, -0.019133109599351883, 0.00744845625013113, -0.001240978599525988, -0.021305454894900322, -0.04262612760066986, 0.01962457410991192, 0.028640734031796455, -0.017393510788679123, -0.037133246660232544, 0.03879154846072197, 0.0005578196723945439, 0.014253449626266956, 0.06485046446323395, -0.029118269681930542, -0.04080941155552864, -0.02499902807176113, 0.007012274581938982, 0.007858507335186005, -0.002952981274574995, 0.013966601341962814, -0.06747467070817947, -0.01439859438687563, -0.03071192465722561, -0.04638573154807091, -0.028633443638682365, 0.029622860252857208, 0.014300234615802765, 0.06801318377256393, 0.02469627931714058, -0.06229662895202637, -0.0034055786672979593, 0.021445702761411667, -0.055132437497377396, 0.04311439394950867, 0.02411745861172676, 0.10806354880332947, -0.06342891603708267, -0.06273689866065979, -0.00466373935341835, -0.0150609090924263, -0.0436270497739315, 0.016374703496694565, 0.012361503206193447, -0.010002984665334225, -0.009690006263554096, 0.00020307363593019545, 0.04996168613433838, -0.04491512104868889, -0.020712226629257202, 0.0681333988904953, -0.008747749030590057, 0.03336657956242561, -0.061012111604213715, -0.016398992389440536, 0.009635222144424915, -0.02268790453672409, -0.028216253966093063, 0.02871209755539894, -0.023456944152712822, -0.024230705574154854, -0.018325310200452805, -0.030890604481101036, 0.009898647665977478, 0.0732288658618927, -0.00429701991379261, -0.03185827285051346, -0.030293123796582222, 0.02486678585410118, 0.030814556404948235, 0.024408921599388123, -0.028062233701348305, 0.017719488590955734, 0.06303921341896057, 0.025227591395378113, -0.03530874848365784, 0.05276307463645935, 0.011282745748758316, -0.02570764347910881, -0.026775548234581947, 0.0210449006408453, 0.01095511019229889, -0.05084574967622757, 0.044141266494989395, 0.013953200541436672, 0.0026605569291859865, -0.05452051758766174, -0.04530400037765503, 0.04207155853509903, -0.009597214870154858, -0.009909522719681263, 0.026897327974438667, 0.013661467470228672, -0.025623975321650505, 0.0432201623916626, -0.023848403245210648, -0.00032644064049236476, -0.04337235912680626, -0.014730431139469147, -0.0048260800540447235, -0.030003711581230164, 0.01430794969201088, 0.043104466050863266, -0.002563103102147579, 0.07294588536024094, -0.02307034470140934, 0.011898421682417393, -0.057911645621061325, -0.03960243612527847, 0.009699441492557526, 0.06687310338020325, 0.06167130172252655, 0.03921758010983467, 0.004777931142598391, -0.04590141773223877, 0.03486454859375954, 0.07347458600997925, 0.04554375261068344, 0.002054983749985695, -0.037227120250463486, -0.0178028903901577, 0.04791329428553581, 0.052621882408857346, -0.050592780113220215, -0.025005843490362167, 0.004935960751026869, 0.038299690932035446, -0.012699130922555923, 0.009153149090707302, -0.02817598730325699, 0.034743599593639374, -0.05775081366300583, -0.047763288021087646, 0.03948061168193817, 0.04111607000231743, 0.006952101830393076, 0.029478920623660088, 0.02457272633910179, 0.014585401862859726, 0.041364315897226334, 0.021822242066264153, 0.014718705788254738, -0.05542302876710892, 0.01945514976978302, -0.00289362040348351, 0.05083545297384262, -0.047704100608825684, 0.03933262452483177, -0.012878417037427425, 0.00027276852051727474, 0.03774688020348549, -0.0272351186722517, 0.049757182598114014, 0.049018651247024536, 0.017990795895457268, -0.03841925412416458, 0.02103681117296219, -0.012114107608795166, 0.028602203354239464, 0.021686313673853874, 0.0031785541214048862, 0.08379925787448883, 0.008346907794475555, 0.04763074591755867, 0.09633584320545197, 0.033456239849328995, 0.0257507786154747, 0.01379675418138504, 0.042425692081451416, 0.02081475220620632, -0.023074844852089882, 0.061603765934705734, -0.05314777046442032, 0.03955843672156334, -0.050803519785404205, 0.006294961553066969, -0.021524420008063316, -0.0263788104057312, 0.05395522341132164, 0.03050769865512848, -0.033190757036209106, 0.004053348209708929, 0.007304759230464697, -0.015907535329461098, 0.03926980122923851, -0.01448922697454691, 0.00784300733357668, -0.008464733138680458, -0.04260707274079323, -0.00274915574118495, -0.07596469670534134, -0.032862741500139236, -0.007940641604363918, -0.028207994997501373, -0.02211759239435196, -0.09640796482563019, -0.023501764982938766, -0.06028527393937111, -0.009124687872827053, 0.029312364757061005, 0.011284001171588898, -0.023224834352731705, -0.03101474605500698, 0.01918991655111313, -0.05165164917707443, -0.04248281940817833, -0.03725391998887062, -0.06302542984485626, -0.04185967892408371, -0.07661255449056625, 0.04199725016951561, 0.047699809074401855, 0.01294674165546894, -0.005123607348650694, 0.013438583351671696, 0.015877384692430496, -0.024171534925699234, 0.018595345318317413, 0.06173262000083923, -0.041058894246816635, -0.06788685917854309, 0.008575133047997952, -0.001420979155227542, 0.006192528642714024, 0.02996041439473629, -0.04350836202502251, 0.09527772665023804, 0.08525781333446503, 0.007607265841215849, 0.034799523651599884, -0.0042774733155965805, -0.05692049488425255, -0.046470507979393005, -0.03331705555319786, -0.049611832946538925, -0.019723277539014816, -0.04255621135234833, -0.060385290533304214, -0.031234504655003548, -0.03905196487903595, -0.005345097277313471, 0.0027713512536138296, 0.02091984637081623, 0.012854879721999168, 0.03368798643350601, 0.018513277173042297, 0.03334803134202957, -0.022673051804304123, -0.04492347687482834, 0.05555504560470581, -0.014187264256179333, 0.01843336969614029, -0.08756307512521744, 0.003264704020693898, 0.02908940427005291, 0.000341642095008865, 0.021235181018710136, -0.02147058956325054, 0.0652036964893341, 0.0028327808249741793, 0.00567405903711915, 0.006329142488539219, -0.010334914550185204, 0.0011419899528846145, -0.012394137680530548, -0.01338706724345684, 0.005663185380399227, -0.035079315304756165, -0.026241514831781387, -0.020723260939121246, 0.03807029873132706, -0.049058835953474045, -0.04688437655568123, -0.02741404063999653, 0.044567737728357315, 0.055954013019800186, -0.009576259180903435, -0.05098662152886391, -0.012467620894312859, -0.05492658540606499, -0.010145473293960094, 0.01385312806814909, 0.0012532408582046628, 0.005684914067387581, 0.02723846025764942, 0.017494596540927887, -0.01148774940520525, 0.0053025814704597, 0.059121500700712204, 0.07152856886386871, 0.013132669031620026, -0.0832042470574379, 0.00034820495056919754, -0.012755805626511574, 0.015080887824296951, -0.019659964367747307, -0.0267555583268404, -0.022628961130976677, -0.110798180103302, -0.026817968115210533, 0.00011863941472256556, 0.0026017408818006516, -0.018995195627212524, 0.038869358599185944, -0.006754501722753048, -0.010406025685369968, 0.002233220264315605, 0.01371392048895359, 0.045744847506284714, -0.020449312403798103, 0.04023997113108635, -0.01753251999616623, 0.006827962584793568, -0.05495893955230713, 0.037548791617155075, -0.03802495822310448, -0.04296092689037323, 0.008930227719247341, 0.06031229346990585, -0.006734355352818966, 0.07112302631139755, 0.06958350539207458, 0.05015788972377777, -0.05642617121338844, 0.020716996863484383, 0.07924075424671173, -0.02607637085020542, -0.03768819570541382, -0.005009714979678392, -0.007619719486683607, -0.020795542746782303, 0.020290104672312737, -0.025007324293255806, 0.05416250601410866, 0.03511442616581917, 0.009791242890059948, -0.009500793181359768, -0.017599336802959442, -0.00517002958804369, -0.023921912536025047, -0.05875737592577934, -0.03491107374429703, -0.0012244121171534061, -0.03151330351829529, 0.023122482001781464, 0.027108704671263695, 0.0336303673684597, 0.063189297914505, 0.014233688823878765, -0.048900604248046875, -0.005418931134045124, 0.017338918522000313, 0.019759880378842354, -0.030497822910547256, -0.07313805818557739, -0.04808221012353897, 0.03487369045615196, 0.04779111221432686, -0.022121965885162354, -0.0674147680401802, 0.02412611059844494, 0.04949551820755005, -0.042020492255687714, 0.051089197397232056, -0.02167472057044506, 0.05407833307981491, 0.048258520662784576, -0.011826833710074425, 0.03893226385116577, -0.015415928326547146, -0.007497093174606562, 0.0021149502135813236, 0.04130871221423149, -0.01330585591495037, -0.026035357266664505, -0.053504325449466705, 0.024770427495241165, 0.04526377096772194, 0.033795781433582306, 0.039727963507175446, -0.039254095405340195, -0.02519441582262516, 0.02372385933995247, 0.025611907243728638, -0.04625288024544716, -0.015811428427696228, 0.04321403428912163, 0.03909281641244888, -0.03988175466656685, -0.0287410207092762, -0.02928982302546501, 0.007985434494912624, 0.03186452388763428, 0.0005453044432215393, -0.02344326116144657, -0.031607598066329956, 0.048853300511837006, -0.027135908603668213, -0.0341428704559803, -0.07482852041721344, 0.02865508757531643, -0.006147034000605345, -0.03632047399878502, 0.050473373383283615, 0.024234062060713768, 0.026237864047288895, 0.07228298485279083, 0.013054897077381611, 0.0062787700444459915, -0.0451112799346447, 0.04935726150870323, -0.01916256919503212, -0.010617182590067387, -0.002147157909348607, -0.04069900140166283, -0.0264938585460186, -0.01216121669858694, -0.04807771369814873, -0.02984013594686985, -0.02162814885377884, 0.024301541969180107, -0.00524928281083703, -0.006391294300556183, -0.0021541675087064505, 0.03963638097047806, -0.0025170892477035522, -0.03788481652736664, -0.03755256161093712, -0.01710362546145916, -0.06293105334043503, -0.05512111261487007, -0.004587406758219004, 0.01337689720094204, 0.03449375182390213, 0.03612825646996498, 0.01956244744360447, 0.013080080039799213, 0.005892610643059015, -0.02159762755036354, 0.015457686968147755, 0.02045830339193344, -0.04801977053284645, -0.02579095959663391, 0.03539109602570534, 0.01337955892086029, 0.028466088697314262, -0.028198828920722008, 0.04797948896884918, 0.01150526199489832, -0.014949508011341095, -0.036475904285907745, 0.019307292997837067, 0.03583826869726181, -0.07766968756914139, -0.05599825829267502, -0.014728034846484661, -0.027065694332122803, 0.032049112021923065, -0.020971203222870827, -0.0010343536268919706, 0.027261855080723763, 0.005297345109283924, 0.03459635004401207, -0.02687593176960945, -0.018771151080727577, 0.036565713584423065, -0.005369074642658234, 0.03745834529399872, -0.04051387682557106, 0.0549447163939476, -0.03303563594818115, 0.016132527962327003, -0.022824905812740326, -0.002668880857527256, -0.05077929422259331, 0.028655901551246643, -0.01320931687951088, -0.024718528613448143, -0.003208226291462779, 0.03265772759914398, -0.007825816050171852, 0.01404278539121151, -0.0193600095808506, 0.021149087697267532, -0.033580563962459564, 0.07491309940814972, -0.038464922457933426, 0.02312364988029003, -0.05252062901854515, 0.02422379143536091, -0.007135883439332247, 0.015394658781588078, -0.0029588823672384024, -0.018450360745191574, 0.04951469972729683, 0.0383613146841526, 0.028118088841438293, 0.03812545910477638, -0.004099640063941479, -0.008776042610406876, -0.002417920157313347, -0.0633234903216362, -0.019672418013215065, 0.010912577621638775, 0.02341749332845211, -0.015163913369178772, 0.05034328252077103, 0.027950750663876534, -0.06094873324036598, -0.07782397419214249, 0.026166923344135284, 0.02843422442674637, 0.00979324709624052, 0.022587036713957787, 0.024842409417033195, 0.022987091913819313, 0.039080940186977386, -0.008789167739450932, -0.02615455724298954, -0.008849541656672955, -0.059068191796541214, 0.020753957331180573, -0.005227109882980585, 0.014853214845061302, 0.029189879074692726, -0.048129744827747345, -0.03440244495868683, 0.038913168013095856, 0.027054855599999428, 0.010321758687496185, -0.006138840224593878, -0.05971178784966469, 0.021566810086369514, -0.005725807044655085, -0.04170995205640793, 0.021754106506705284, -0.0016595454653725028, -0.021783223375678062, 0.05451597273349762, 0.0033450035843998194, -0.0014257353032007813, 0.049020469188690186, 0.003476933343335986, -0.020921142771840096, 0.06214187666773796, -0.041680946946144104, -0.0036641110200434923, 0.04705332964658737, -0.06425079703330994, -0.01134258322417736, -0.059577375650405884, 0.06951521337032318, -0.07133779674768448, 0.03629176318645477, 0.06672337651252747, -0.011593439616262913, 0.029450509697198868, -0.06120182201266289, -0.06061967462301254, 0.012156529352068901, -0.03280266374349594, 0.05739843472838402, 0.015422496013343334, -0.05793683975934982, 0.05728616565465927, 0.023159105330705643, -0.049079395830631256, 0.02227823995053768, 0.04008234292268753, 0.0372045524418354, 0.018032383173704147, 0.042289722710847855, -0.0425228476524353, -0.027119269594550133, -0.0481007881462574, 0.011188854463398457, -0.0623350590467453, -0.011756610125303268, 0.00975576601922512, -0.015794772654771805, -0.007867967709898949, 0.028225790709257126, -0.02062155120074749, -0.01734994165599346, 0.04399297386407852, -0.04852188751101494, -0.04704120382666588, -0.0049768784083426, -0.0024952690582722425, -0.04749055951833725, -0.01191675290465355, -0.03039071336388588, -0.0035406826063990593, 0.009865148924291134, 0.004832316655665636, -0.018750756978988647, -0.026219984516501427, 0.0186699740588665, -0.04018118977546692, -0.03548448905348778, 0.05238041281700134, -0.016675231978297234, -0.022915903478860855, 0.03341221809387207, 0.02579490840435028, 0.0010333448881283402, 0.02622716687619686, -0.0157849732786417, 0.03304961323738098, -0.05733891576528549, -0.027787378057837486, 0.02627418003976345, 0.00419736048206687, 0.017422568053007126, 0.00842642318457365, 0.019718846306204796, 0.05525003373622894, 0.027319155633449554, 0.0072507839649915695, -0.040161121636629105, -0.03803950920701027, 0.02368466928601265, -0.04155512899160385, 0.02060435153543949, 0.0006606869865208864, -0.04927027225494385, -0.01922869309782982, 0.0004757422429975122, -0.032884251326322556, 0.0484546460211277, -0.05813319608569145, -0.007103463169187307, 0.05227741226553917, -0.028693439438939095, -0.058798398822546005, -0.08621370792388916, -0.01887408457696438, -0.047216273844242096, 0.005263462662696838, 0.04569782316684723, -0.036750055849552155, 0.03712468221783638, -0.049368586391210556, -0.035995956510305405, 0.03296808898448944, 0.05230593681335449, -0.059648849070072174, 0.0586710162460804, 0.05177725851535797, -0.06467477977275848, 0.007097888737916946, 0.006302511319518089, -0.049217186868190765, -0.026988565921783447, 0.02809799648821354, -0.0010946375550702214, 0.024262845516204834, 0.030029596760869026, -0.04850879684090614, -0.02145698294043541, -0.0703248456120491, -0.028672879561781883, -0.07181461155414581, 0.007449152413755655, 0.050418250262737274 ]
Declan/Reuters_model_v3
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-1 results: [] --- <!-- 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__hate_speech_offensive__train-8-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1013 - Accuracy: 0.0915 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0866 | 1.0 | 5 | 1.1363 | 0.0 | | 1.0439 | 2.0 | 10 | 1.1803 | 0.0 | | 1.0227 | 3.0 | 15 | 1.2162 | 0.2 | | 0.9111 | 4.0 | 20 | 1.2619 | 0.0 | | 0.8243 | 5.0 | 25 | 1.2929 | 0.2 | | 0.7488 | 6.0 | 30 | 1.3010 | 0.2 | | 0.62 | 7.0 | 35 | 1.3011 | 0.2 | | 0.5054 | 8.0 | 40 | 1.2931 | 0.4 | | 0.4191 | 9.0 | 45 | 1.3274 | 0.4 | | 0.4107 | 10.0 | 50 | 1.3259 | 0.4 | | 0.3376 | 11.0 | 55 | 1.2800 | 0.4 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009293937124311924, 0.03005504049360752, -0.034763138741254807, 0.05226779356598854, 0.04769175872206688, 0.029744606465101242, -0.012134067714214325, -0.020771006122231483, -0.05367100238800049, 0.06077368184924126, 0.013955177739262581, -0.030284827575087547, 0.023626992478966713, 0.037349820137023926, -0.03543241694569588, -0.03690752759575844, -0.02178823947906494, -0.011065300554037094, -0.041539594531059265, 0.003278855700045824, 0.0022401066962629557, -0.012422146275639534, -0.01682254672050476, 0.016320766881108284, -0.014001953415572643, 0.03867756202816963, -0.01182391308248043, 0.023027963936328888, 0.025247713550925255, -0.05458333343267441, 0.011315792798995972, -0.024595310911536217, -0.039749786257743835, 0.00523685896769166, -0.027207858860492706, -0.0047657606191933155, 0.003110877238214016, 0.0236196406185627, 0.0421907976269722, 0.03942346200346947, 0.01278679445385933, 0.004515305161476135, -0.00692557031288743, -0.0201656986027956, 0.05820630490779877, -0.009080413728952408, -0.045327480882406235, -0.011162356473505497, 0.023308061063289642, -0.043167971074581146, -0.0626266747713089, -0.05343593657016754, -0.0180024616420269, 0.027976736426353455, -0.010410728864371777, -0.01261551957577467, -0.05835828557610512, 0.01868700236082077, 0.06392247974872589, -0.040318284183740616, -0.029795881360769272, 0.0017456733621656895, -0.063316710293293, -0.0030489934142678976, 0.02332504838705063, -0.026755360886454582, 0.0033682265784591436, -0.04624239355325699, 0.018103355541825294, -0.01971278339624405, 0.05543586611747742, -0.021368710324168205, 0.028445756062865257, -0.07142774015665054, -0.02377692051231861, -0.01919824443757534, 0.05992940068244934, 0.06751058250665665, -0.02761426754295826, 0.06254392117261887, 0.024949539452791214, 0.01871250383555889, 0.0344880037009716, -0.024429813027381897, 0.026552723720669746, 0.025744110345840454, -0.056910447776317596, 0.00422518840059638, 0.006318341474980116, 0.037519775331020355, -0.030341479927301407, -0.03642211854457855, -0.012718157842755318, -0.03126778081059456, -0.01382553018629551, 0.016335278749465942, 0.009102911688387394, 0.0019872079137712717, 0.04810601472854614, 0.022325007244944572, 0.042276762425899506, 0.03667982295155525, -0.03764361888170242, 0.057299286127090454, -0.019436100497841835, 0.007525407709181309, -0.0011790493736043572, -0.02207328751683235, -0.04253656417131424, 0.01913531683385372, 0.0289453212171793, -0.017171042039990425, -0.037242766469717026, 0.03876684606075287, 0.00011499432002892718, 0.014196483418345451, 0.0641082152724266, -0.029127096757292747, -0.04038289561867714, -0.024951616302132607, 0.007143598049879074, 0.0071603404358029366, -0.003538130084052682, 0.013033793307840824, -0.06698577851057053, -0.013276978395879269, -0.030789688229560852, -0.04650703817605972, -0.028331473469734192, 0.02925727888941765, 0.0144808329641819, 0.06773965060710907, 0.025640415027737617, -0.06296692043542862, -0.0034341122955083847, 0.021281667053699493, -0.054798223078250885, 0.042757757008075714, 0.02437576651573181, 0.10786808282136917, -0.06412159651517868, -0.06272055208683014, -0.004261727910488844, -0.014892768114805222, -0.043065622448921204, 0.017014775425195694, 0.012523913756012917, -0.00972834788262844, -0.010123176500201225, -0.000018906124751083553, 0.049863990396261215, -0.04432498291134834, -0.020004931837320328, 0.06873244047164917, -0.009276026859879494, 0.03410015627741814, -0.06119716539978981, -0.016052236780524254, 0.010447896085679531, -0.022022396326065063, -0.027635997161269188, 0.029188454151153564, -0.022931287065148354, -0.023407815024256706, -0.018492048606276512, -0.03242598474025726, 0.009152933023869991, 0.07343176007270813, -0.004199556075036526, -0.032111670821905136, -0.030775288119912148, 0.02500501461327076, 0.031442493200302124, 0.02463393472135067, -0.028233841061592102, 0.017675036564469337, 0.06275707483291626, 0.025174187496304512, -0.034052006900310516, 0.0531436987221241, 0.011170439422130585, -0.02601080946624279, -0.027020063251256943, 0.021732913330197334, 0.011090371757745743, -0.051255930215120316, 0.043920744210481644, 0.014337729662656784, 0.0028035410214215517, -0.0555802620947361, -0.044782280921936035, 0.04216371849179268, -0.009831379167735577, -0.010558287613093853, 0.02712472341954708, 0.012603653594851494, -0.025647997856140137, 0.04328761249780655, -0.02366722747683525, 0.0004750561201944947, -0.04288727417588234, -0.014075160957872868, -0.005571427755057812, -0.029026394709944725, 0.014006274752318859, 0.04263685643672943, -0.003548328997567296, 0.07287342101335526, -0.023083720356225967, 0.01224290207028389, -0.057996008545160294, -0.038794077932834625, 0.00967239961028099, 0.06625470519065857, 0.06216439604759216, 0.039420489221811295, 0.004411187022924423, -0.04625295475125313, 0.03530833497643471, 0.0733921006321907, 0.0450005978345871, 0.003438870655372739, -0.03643980249762535, -0.018008384853601456, 0.04728914052248001, 0.05207568407058716, -0.0496622696518898, -0.025633402168750763, 0.005361283663660288, 0.03813304007053375, -0.013365698046982288, 0.008445964194834232, -0.027234790846705437, 0.03456858545541763, -0.05766740068793297, -0.04878804087638855, 0.03962481766939163, 0.04147874563932419, 0.0067598335444927216, 0.029849445447325706, 0.02485818602144718, 0.014264793135225773, 0.04111306369304657, 0.02219800278544426, 0.014932435937225819, -0.05458177626132965, 0.019320238381624222, -0.002878574887290597, 0.051291290670633316, -0.04817754402756691, 0.03938538208603859, -0.011316617950797081, -0.00004129342778469436, 0.0386156290769577, -0.027240751311182976, 0.05041518062353134, 0.04846182465553284, 0.017811695113778114, -0.039434731006622314, 0.02110392414033413, -0.011818494647741318, 0.027963673695921898, 0.02217642217874527, 0.002563372952863574, 0.08387033641338348, 0.008400971069931984, 0.047088369727134705, 0.09776151925325394, 0.033740852028131485, 0.02523517981171608, 0.014401696622371674, 0.042903363704681396, 0.020955193787813187, -0.023529093712568283, 0.06184929609298706, -0.05270315706729889, 0.03952771797776222, -0.05096462368965149, 0.007203721906989813, -0.021105702966451645, -0.02735639549791813, 0.05377133935689926, 0.030491191893815994, -0.03361382335424423, 0.0048859925009310246, 0.00670933211222291, -0.016021043062210083, 0.039172299206256866, -0.01428719237446785, 0.007988648489117622, -0.00829391274601221, -0.043252211064100266, -0.0027065840549767017, -0.07576216012239456, -0.03290778398513794, -0.008256054483354092, -0.028516363352537155, -0.021907901391386986, -0.0960155501961708, -0.024034393951296806, -0.05989542230963707, -0.009230414405465126, 0.029903173446655273, 0.01177088264375925, -0.022944297641515732, -0.03141491115093231, 0.018287405371665955, -0.05100705847144127, -0.043068528175354004, -0.037740278989076614, -0.06400049477815628, -0.042352769523859024, -0.07680849730968475, 0.04248175024986267, 0.047737691551446915, 0.013564317487180233, -0.004883307497948408, 0.012773998081684113, 0.014612624421715736, -0.024092387408018112, 0.01808283105492592, 0.061965588480234146, -0.04126337170600891, -0.06841932982206345, 0.008758903481066227, -0.0003484381304588169, 0.006298926658928394, 0.029387526214122772, -0.04383513703942299, 0.09504494071006775, 0.08519876003265381, 0.008423655293881893, 0.03438008576631546, -0.004632032476365566, -0.05672375485301018, -0.04785078391432762, -0.03406872972846031, -0.049389712512493134, -0.01944855973124504, -0.04260396584868431, -0.06000100448727608, -0.03137962147593498, -0.03837283328175545, -0.005915691610425711, 0.002936408855021, 0.0211513452231884, 0.012038358487188816, 0.03368373587727547, 0.019346175715327263, 0.032982438802719116, -0.022126641124486923, -0.04528588429093361, 0.05571027845144272, -0.014100131578743458, 0.017741546034812927, -0.08816033601760864, 0.0023030058946460485, 0.029789581894874573, 0.00035983091220259666, 0.022004716098308563, -0.0219480749219656, 0.06419219821691513, 0.002878691768273711, 0.005832483991980553, 0.006519039161503315, -0.010148155502974987, 0.000845822156406939, -0.01261969655752182, -0.013719197362661362, 0.005373653024435043, -0.035107504576444626, -0.026537112891674042, -0.019933797419071198, 0.038979072123765945, -0.048961885273456573, -0.04627631977200508, -0.026837315410375595, 0.044814638793468475, 0.0555504746735096, -0.009464413858950138, -0.05068671330809593, -0.01288254838436842, -0.05549890547990799, -0.009773551486432552, 0.0137109886854887, 0.000029682416425202973, 0.006112901493906975, 0.027234992012381554, 0.017332615330815315, -0.011888138018548489, 0.006851803045719862, 0.05826108157634735, 0.07088246196508408, 0.013687718659639359, -0.08311459422111511, 0.0006777807138860226, -0.013216547667980194, 0.014558465220034122, -0.01985345222055912, -0.02696811407804489, -0.022863946855068207, -0.11032455414533615, -0.025979649275541306, -0.000023360433260677382, 0.0027857176028192043, -0.01898127980530262, 0.03936968371272087, -0.006855611223727465, -0.010869638063013554, 0.002809982979670167, 0.01331554725766182, 0.04574969410896301, -0.020586390048265457, 0.039201315492391586, -0.017483817413449287, 0.007494358345866203, -0.05500229820609093, 0.03744588419795036, -0.038089264184236526, -0.04290619492530823, 0.008581416681408882, 0.06059271842241287, -0.006691306829452515, 0.07057223469018936, 0.06985026597976685, 0.05006939172744751, -0.05617781728506088, 0.0208562184125185, 0.07883130759000778, -0.02566521055996418, -0.03893056511878967, -0.0035323372576385736, -0.007509860210120678, -0.02151406928896904, 0.020148612558841705, -0.025133732706308365, 0.05447752773761749, 0.03556707128882408, 0.009793405421078205, -0.00879150815308094, -0.01594713144004345, -0.00499512255191803, -0.024464769288897514, -0.058862145990133286, -0.035401616245508194, -0.0011660436866804957, -0.031890951097011566, 0.02210642583668232, 0.02725829929113388, 0.03370882570743561, 0.06259317696094513, 0.014512334018945694, -0.04885956645011902, -0.00647342624142766, 0.017585456371307373, 0.021079301834106445, -0.031482450664043427, -0.0729040578007698, -0.048093438148498535, 0.03482384607195854, 0.0479695200920105, -0.02228206768631935, -0.06791239231824875, 0.02318439818918705, 0.04957367107272148, -0.04185277596116066, 0.050453513860702515, -0.020726852118968964, 0.05416743457317352, 0.048143159598112106, -0.011032151989638805, 0.03856780752539635, -0.016024364158511162, -0.006478076335042715, 0.001611258601769805, 0.041017357259988785, -0.013809313997626305, -0.0268253106623888, -0.0536535270512104, 0.024421801790595055, 0.04542381688952446, 0.033766310662031174, 0.039310041815042496, -0.03893313556909561, -0.02520155720412731, 0.023848626762628555, 0.025360368192195892, -0.0467689111828804, -0.015010523609817028, 0.043301455676555634, 0.039286840707063675, -0.039967700839042664, -0.02911568619310856, -0.02900736778974533, 0.007429234683513641, 0.03194177895784378, -0.0011913322377949953, -0.023844154551625252, -0.031712502241134644, 0.04911770299077034, -0.026905972510576248, -0.03454400971531868, -0.07460934668779373, 0.028662072494626045, -0.005527930334210396, -0.03677656129002571, 0.05081639438867569, 0.02436288259923458, 0.02717815712094307, 0.07200013846158981, 0.012637184001505375, 0.006497282534837723, -0.045187678188085556, 0.04888344556093216, -0.018670588731765747, -0.01115969568490982, -0.001641070586629212, -0.040926750749349594, -0.027052531018853188, -0.012700888328254223, -0.04851045832037926, -0.03004453331232071, -0.022241136059165, 0.02401312068104744, -0.005336587782949209, -0.005647325422614813, -0.002808274934068322, 0.039414774626493454, -0.003178546903654933, -0.036666322499513626, -0.03789820894598961, -0.016543911769986153, -0.06337462365627289, -0.05462415888905525, -0.004469612613320351, 0.013342252932488918, 0.03340322896838188, 0.03642375394701958, 0.018942266702651978, 0.01262734830379486, 0.006917527411133051, -0.02110968716442585, 0.016934841871261597, 0.020807407796382904, -0.04872238636016846, -0.02567577362060547, 0.03552014380693436, 0.013008076697587967, 0.027808580547571182, -0.028332432731986046, 0.04708506539463997, 0.012323223054409027, -0.01506071723997593, -0.036333709955215454, 0.019853634759783745, 0.03475777059793472, -0.07802420854568481, -0.05578106641769409, -0.013501031324267387, -0.02757212147116661, 0.032448433339595795, -0.021271055564284325, -0.0013269108021631837, 0.027145400643348694, 0.006032182369381189, 0.03499661386013031, -0.026562808081507683, -0.01953290030360222, 0.03627898544073105, -0.005172715522348881, 0.037284623831510544, -0.04042966291308403, 0.05450072139501572, -0.03354217857122421, 0.015374094247817993, -0.022228620946407318, -0.002220217837020755, -0.050770942121744156, 0.029458031058311462, -0.013466531410813332, -0.023611711338162422, -0.002964113838970661, 0.0329454243183136, -0.008315094746649265, 0.013959215022623539, -0.020178895443677902, 0.02078590914607048, -0.03319825977087021, 0.07438404858112335, -0.03895944729447365, 0.022315528243780136, -0.05218818038702011, 0.023002127185463905, -0.007192586548626423, 0.015005557797849178, -0.002957942197099328, -0.01868680864572525, 0.04891186207532883, 0.03781824931502342, 0.027963969856500626, 0.038466133177280426, -0.004234296269714832, -0.009004727005958557, -0.002489267848432064, -0.06362327933311462, -0.019889863207936287, 0.010788582265377045, 0.02295324020087719, -0.01402358990162611, 0.049948450177907944, 0.02728123962879181, -0.061089374125003815, -0.07755871117115021, 0.025798771530389786, 0.02754189632833004, 0.009813610464334488, 0.022737860679626465, 0.025081180036067963, 0.02339046448469162, 0.03966370224952698, -0.008500316180288792, -0.026699788868427277, -0.008609805256128311, -0.05937235429883003, 0.020355980843305588, -0.005037648603320122, 0.015135129913687706, 0.028861597180366516, -0.048619166016578674, -0.03434697166085243, 0.04025321081280708, 0.026634149253368378, 0.010188599117100239, -0.005643266253173351, -0.05942704528570175, 0.022241268306970596, -0.0064434329979121685, -0.042218003422021866, 0.02163187973201275, -0.002160364994779229, -0.02234012633562088, 0.05419269949197769, 0.0036755604669451714, -0.0006716946954838932, 0.04843233525753021, 0.0036127169150859118, -0.021783839911222458, 0.06175084039568901, -0.040946587920188904, -0.00398267013952136, 0.0476357527077198, -0.06306077539920807, -0.011037006974220276, -0.05954765900969505, 0.0699329599738121, -0.07135467976331711, 0.035667356103658676, 0.06648775935173035, -0.010773228481411934, 0.028867773711681366, -0.060334619134664536, -0.060219813138246536, 0.012382046319544315, -0.03264816105365753, 0.058205097913742065, 0.015507595613598824, -0.05782187730073929, 0.057352542877197266, 0.023088254034519196, -0.04942288622260094, 0.021772928535938263, 0.04016336798667908, 0.03750166669487953, 0.018035391345620155, 0.04222111403942108, -0.04243939742445946, -0.026784976944327354, -0.048282984644174576, 0.011307837441563606, -0.06130083650350571, -0.012036587111651897, 0.010045329108834267, -0.016999103128910065, -0.008144899271428585, 0.028690675273537636, -0.020147552713751793, -0.016631074249744415, 0.04296812787652016, -0.04870406165719032, -0.046153564006090164, -0.004531748592853546, -0.0016065281815826893, -0.048600390553474426, -0.012170417234301567, -0.03024304285645485, -0.0025374700780957937, 0.009761832654476166, 0.004502118099480867, -0.018878670409321785, -0.02552551031112671, 0.018346495926380157, -0.040868278592824936, -0.03506190702319145, 0.05273992568254471, -0.01601867750287056, -0.022085152566432953, 0.0335436575114727, 0.025406591594219208, 0.0017814058810472488, 0.026017149910330772, -0.015760058537125587, 0.03339673578739166, -0.05793512985110283, -0.027620898559689522, 0.026640644297003746, 0.0036236182786524296, 0.017233196645975113, 0.00850367359817028, 0.020372530445456505, 0.05566323176026344, 0.027568742632865906, 0.006963835097849369, -0.04062390699982643, -0.0388910211622715, 0.024006187915802002, -0.0411340668797493, 0.019989512860774994, 0.0008647675858810544, -0.04946738854050636, -0.01984209381043911, 0.0005925548612140119, -0.03196112439036369, 0.048549290746450424, -0.0578855462372303, -0.007066173944622278, 0.05129852518439293, -0.02875078283250332, -0.05876490846276283, -0.08639957755804062, -0.019826460629701614, -0.04733135923743248, 0.005046512931585312, 0.04630717262625694, -0.03687276318669319, 0.036989085376262665, -0.04923473298549652, -0.036236848682165146, 0.03305454179644585, 0.05309334397315979, -0.060242921113967896, 0.05856641009449959, 0.051701005548238754, -0.06481089442968369, 0.006878140848129988, 0.006699377670884132, -0.04825938493013382, -0.025534633547067642, 0.028449347242712975, -0.0006231343140825629, 0.02427135966718197, 0.03012140467762947, -0.04904744774103165, -0.021853439509868622, -0.06948047131299973, -0.027529221028089523, -0.07164322584867477, 0.006857739295810461, 0.05012949928641319 ]
Declan/Reuters_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-2 results: [] --- <!-- 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__hate_speech_offensive__train-8-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1019 - Accuracy: 0.139 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1082 | 1.0 | 5 | 1.1432 | 0.0 | | 1.0524 | 2.0 | 10 | 1.1613 | 0.0 | | 1.0641 | 3.0 | 15 | 1.1547 | 0.0 | | 0.9592 | 4.0 | 20 | 1.1680 | 0.0 | | 0.9085 | 5.0 | 25 | 1.1762 | 0.0 | | 0.8508 | 6.0 | 30 | 1.1809 | 0.2 | | 0.7263 | 7.0 | 35 | 1.1912 | 0.2 | | 0.6448 | 8.0 | 40 | 1.2100 | 0.2 | | 0.5378 | 9.0 | 45 | 1.2037 | 0.2 | | 0.5031 | 10.0 | 50 | 1.2096 | 0.2 | | 0.4041 | 11.0 | 55 | 1.2203 | 0.2 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.010240803472697735, 0.029776681214571, -0.03316875547170639, 0.05242060869932175, 0.048414625227451324, 0.029134100303053856, -0.012450115755200386, -0.020883219316601753, -0.05370156839489937, 0.059966348111629486, 0.013310704380273819, -0.028836138546466827, 0.021832570433616638, 0.03905651345849037, -0.03519519791007042, -0.03764099255204201, -0.02041890099644661, -0.00987963192164898, -0.04017481207847595, 0.0011169775389134884, 0.001766234403476119, -0.012456225231289864, -0.017142685130238533, 0.01629716157913208, -0.013398364186286926, 0.03711662441492081, -0.01096205785870552, 0.022818027064204216, 0.024531053379178047, -0.05513609200716019, 0.011627745814621449, -0.025097129866480827, -0.03860596939921379, 0.005235735327005386, -0.026593798771500587, -0.005961256567388773, 0.002775671659037471, 0.024438679218292236, 0.042451027780771255, 0.03794190660119057, 0.012548521161079407, 0.006566403899341822, -0.008482503704726696, -0.020264804363250732, 0.05873718485236168, -0.009410898201167583, -0.04541140794754028, -0.01186720933765173, 0.023320581763982773, -0.04265592619776726, -0.06315281242132187, -0.05282975733280182, -0.015582432970404625, 0.027371179312467575, -0.009094635024666786, -0.013247815892100334, -0.05892728269100189, 0.018334437161684036, 0.0643942728638649, -0.04040031507611275, -0.02963949553668499, 0.00022496622113976628, -0.06257988512516022, -0.0033213684801012278, 0.02376551926136017, -0.026345936581492424, 0.00399676151573658, -0.04667732119560242, 0.017641521990299225, -0.018949035555124283, 0.05600811168551445, -0.02179056592285633, 0.028667641803622246, -0.07255156338214874, -0.02349644899368286, -0.01915339194238186, 0.05992450565099716, 0.06889025121927261, -0.02736392617225647, 0.06284821033477783, 0.024634117260575294, 0.019759757444262505, 0.03356850519776344, -0.023831648752093315, 0.028366420418024063, 0.025688892230391502, -0.056597981601953506, 0.0034883348271250725, 0.007567675318568945, 0.037317920476198196, -0.029283225536346436, -0.03534001111984253, -0.013488179072737694, -0.02953900769352913, -0.01351961586624384, 0.01673523522913456, 0.008903134614229202, 0.002096673706546426, 0.04711166396737099, 0.023481570184230804, 0.04100765660405159, 0.03490793704986572, -0.038243528455495834, 0.058635175228118896, -0.01859375275671482, 0.007837082259356976, -0.0006540131289511919, -0.021332785487174988, -0.043464355170726776, 0.019659582525491714, 0.02885400876402855, -0.017703576013445854, -0.03701372444629669, 0.0396261140704155, -0.000027148093067808077, 0.01503692101687193, 0.06405534595251083, -0.028750428929924965, -0.04109921678900719, -0.025156980380415916, 0.007873539812862873, 0.006693482398986816, -0.004714843817055225, 0.01454989891499281, -0.06803349405527115, -0.014598519541323185, -0.029921522364020348, -0.046688541769981384, -0.027897952124476433, 0.02931508980691433, 0.013862856663763523, 0.06698289513587952, 0.02592402696609497, -0.06263700127601624, -0.002298752311617136, 0.021849464625120163, -0.05678044632077217, 0.04337576404213905, 0.023814145475625992, 0.10831154882907867, -0.06367222964763641, -0.06204190477728844, -0.005117710679769516, -0.015490749850869179, -0.04359690845012665, 0.016843995079398155, 0.013381648808717728, -0.00997539609670639, -0.009110926650464535, -0.0012533251428976655, 0.05026097223162651, -0.0469546876847744, -0.01995575986802578, 0.06962946802377701, -0.009378976188600063, 0.03472612425684929, -0.06150823086500168, -0.016136206686496735, 0.009974167682230473, -0.02235024981200695, -0.028790513053536415, 0.02947256900370121, -0.02144452929496765, -0.023887088522315025, -0.0193619541823864, -0.03098435327410698, 0.009936723858118057, 0.07446455210447311, -0.003517141565680504, -0.03197726979851723, -0.02979653887450695, 0.024921374395489693, 0.031436290591955185, 0.023745698854327202, -0.028233038261532784, 0.017719730734825134, 0.0626172199845314, 0.024852775037288666, -0.03523893281817436, 0.0529206208884716, 0.01067068986594677, -0.0252368226647377, -0.027156127616763115, 0.021526381373405457, 0.011131593957543373, -0.05073121190071106, 0.042547810822725296, 0.013538530096411705, 0.0024101659655570984, -0.05393121391534805, -0.045018263161182404, 0.04215628653764725, -0.01040361262857914, -0.011628690175712109, 0.026694515720009804, 0.012867426499724388, -0.026001781225204468, 0.04327908158302307, -0.024046044796705246, -0.0008093342185020447, -0.04320811107754707, -0.012689294293522835, -0.005701662972569466, -0.030547404661774635, 0.01446992252022028, 0.042025141417980194, -0.003008161671459675, 0.07367388159036636, -0.023288855329155922, 0.013034441508352757, -0.058386366814374924, -0.040177833288908005, 0.007961825467646122, 0.06779543310403824, 0.06128925830125809, 0.04053936526179314, 0.004843416158109903, -0.046827320009469986, 0.035143788903951645, 0.07284070551395416, 0.047316864132881165, 0.0034094329457730055, -0.03769107908010483, -0.018439941108226776, 0.045749831944704056, 0.05199296027421951, -0.04914562776684761, -0.02607491984963417, 0.004758440423756838, 0.0393206924200058, -0.013367576524615288, 0.008722517639398575, -0.028273211792111397, 0.03441864997148514, -0.05684419348835945, -0.04839520901441574, 0.03743663802742958, 0.040649451315402985, 0.007259033620357513, 0.030022216960787773, 0.024248981848359108, 0.014645475894212723, 0.039411552250385284, 0.021067090332508087, 0.0153345363214612, -0.055366285145282745, 0.019560320302844048, -0.002207561396062374, 0.052030082792043686, -0.048239145427942276, 0.039785776287317276, -0.012648463249206543, -0.0010515822796151042, 0.037321917712688446, -0.027157120406627655, 0.05065765231847763, 0.04870134964585304, 0.01797257922589779, -0.03885970264673233, 0.02048981934785843, -0.012407433241605759, 0.02764488011598587, 0.021255256608128548, 0.003221819642931223, 0.08487913757562637, 0.0077427830547094345, 0.04963991418480873, 0.09571725130081177, 0.03361892327666283, 0.024838680401444435, 0.01480053085833788, 0.04211335629224777, 0.02162058837711811, -0.024209316819906235, 0.06133854761719704, -0.05321408063173294, 0.03974567726254463, -0.05122671648859978, 0.0067463344894349575, -0.021992895752191544, -0.027687160298228264, 0.054476555436849594, 0.031086724251508713, -0.03180729225277901, 0.005552354268729687, 0.008115877397358418, -0.016995510086417198, 0.03871256858110428, -0.014166942797601223, 0.007926665246486664, -0.008642300963401794, -0.042772479355335236, -0.004727345425635576, -0.07593566179275513, -0.03303367272019386, -0.007973871193826199, -0.028305407613515854, -0.021915841847658157, -0.09426088631153107, -0.02379000373184681, -0.06177137792110443, -0.008532063104212284, 0.02984018810093403, 0.01122108194977045, -0.023401912301778793, -0.030934397131204605, 0.018735602498054504, -0.05098695680499077, -0.0419650599360466, -0.03642115369439125, -0.0636247992515564, -0.04181434214115143, -0.07687090337276459, 0.04126482456922531, 0.04854218661785126, 0.013302483595907688, -0.003815092146396637, 0.01355942152440548, 0.015190585516393185, -0.024602381512522697, 0.019019901752471924, 0.06160125136375427, -0.04202850162982941, -0.06866033375263214, 0.009621867910027504, -0.002210658509284258, 0.0066534969955682755, 0.029271217063069344, -0.04370170459151268, 0.09389284998178482, 0.0836532935500145, 0.008066149428486824, 0.0346861332654953, -0.0032608765177428722, -0.0569683276116848, -0.04703763872385025, -0.03475215286016464, -0.04964827373623848, -0.019104141741991043, -0.04357929527759552, -0.059224799275398254, -0.030376533046364784, -0.038273170590400696, -0.0054649231024086475, 0.0029041531961411238, 0.019180921837687492, 0.013751582242548466, 0.033414267003536224, 0.017331989482045174, 0.0325380302965641, -0.022470315918326378, -0.04354321211576462, 0.05523345619440079, -0.014787398278713226, 0.01795455999672413, -0.08890180289745331, 0.004053252749145031, 0.02860710211098194, 0.0008722356869839132, 0.02144552394747734, -0.02033061347901821, 0.0648445188999176, 0.002358098514378071, 0.007564146537333727, 0.007732009515166283, -0.011069114319980145, 0.0026186155155301094, -0.013289527036249638, -0.01255503948777914, 0.006164964288473129, -0.03553203493356705, -0.026866629719734192, -0.019800299778580666, 0.03704841434955597, -0.0489543192088604, -0.04687201976776123, -0.025441663339734077, 0.045193105936050415, 0.05498456582427025, -0.009447488933801651, -0.050762176513671875, -0.013215580955147743, -0.05450988560914993, -0.010813896544277668, 0.012879076413810253, 0.0007356829009950161, 0.005258170422166586, 0.027749884873628616, 0.018639547750353813, -0.012977957725524902, 0.005329557228833437, 0.059547096490859985, 0.07126931846141815, 0.01347434613853693, -0.08262427151203156, -0.000835026556160301, -0.011800234206020832, 0.015516539104282856, -0.019870316609740257, -0.02725794166326523, -0.022432032972574234, -0.11065086722373962, -0.025412296876311302, -0.00012572164996527135, 0.003370747435837984, -0.0196793582290411, 0.03913397341966629, -0.006655842065811157, -0.009463019669055939, 0.002647136338055134, 0.01448122225701809, 0.0471155159175396, -0.019204499199986458, 0.03994939103722572, -0.01675272174179554, 0.006493521388620138, -0.05491509288549423, 0.03600938245654106, -0.039701927453279495, -0.043355293571949005, 0.008300341665744781, 0.060438454151153564, -0.005952073726803064, 0.07039869576692581, 0.06902747601270676, 0.0501740425825119, -0.05482873693108559, 0.02130931057035923, 0.07903441041707993, -0.026687240228056908, -0.03858060762286186, -0.005166326649487019, -0.006552926264703274, -0.022005567327141762, 0.019950181245803833, -0.0241254810243845, 0.054971545934677124, 0.035464994609355927, 0.008521223440766335, -0.009584854356944561, -0.01745886728167534, -0.004500025417655706, -0.02495599165558815, -0.05744335055351257, -0.03517080470919609, -0.0002151910593966022, -0.030801722779870033, 0.02158931829035282, 0.02678523398935795, 0.034897007048130035, 0.0639539361000061, 0.014039394445717335, -0.04803771153092384, -0.00741220498457551, 0.018543191254138947, 0.020202510058879852, -0.02927759848535061, -0.07209435850381851, -0.04735192283987999, 0.03642229735851288, 0.04620898514986038, -0.022350303828716278, -0.0681280568242073, 0.024184809997677803, 0.04920116811990738, -0.042650800198316574, 0.050627291202545166, -0.02078835666179657, 0.05278920754790306, 0.047989536076784134, -0.01134222000837326, 0.03791353479027748, -0.01461190078407526, -0.007993861101567745, 0.004045089706778526, 0.04187539219856262, -0.014054695144295692, -0.027033448219299316, -0.054649777710437775, 0.02483683079481125, 0.04574713110923767, 0.03339477255940437, 0.03883618488907814, -0.03901497647166252, -0.024200551211833954, 0.023530418053269386, 0.025749502703547478, -0.045791346579790115, -0.015912190079689026, 0.04348315671086311, 0.03744662180542946, -0.03950139880180359, -0.029774131253361702, -0.02994830347597599, 0.007924756966531277, 0.031783752143383026, -0.00002489476537448354, -0.022636311128735542, -0.03164934739470482, 0.04775850102305412, -0.026539333164691925, -0.03371613100171089, -0.07517213374376297, 0.029327895492315292, -0.0053026569075882435, -0.03668921813368797, 0.05137573927640915, 0.024722518399357796, 0.026658205315470695, 0.07220952957868576, 0.01294784713536501, 0.00789982732385397, -0.044134099036455154, 0.049000680446624756, -0.019418368116021156, -0.011927776038646698, -0.0014100499683991075, -0.041317228227853775, -0.028521938249468803, -0.011219979263842106, -0.04657549038529396, -0.03140741586685181, -0.02264101430773735, 0.024340162053704262, -0.006238520611077547, -0.004750724881887436, -0.002676436910405755, 0.03914807364344597, -0.0024433492217212915, -0.038668472319841385, -0.038189660757780075, -0.017023254185914993, -0.06286996603012085, -0.0537608303129673, -0.0037732257042080164, 0.01296368520706892, 0.03374652564525604, 0.036315903067588806, 0.020024769008159637, 0.011839022859930992, 0.005400766618549824, -0.023139245808124542, 0.015839068219065666, 0.020781708881258965, -0.04689660295844078, -0.025548182427883148, 0.03620101884007454, 0.011650323867797852, 0.02672790177166462, -0.027836933732032776, 0.04738903418183327, 0.011590758338570595, -0.014917731285095215, -0.03616557642817497, 0.019894177094101906, 0.036265186965465546, -0.07735242694616318, -0.05511120706796646, -0.01559758186340332, -0.0266510508954525, 0.033181704580783844, -0.020632920786738396, -0.00005934969158261083, 0.027270739898085594, 0.00575620960444212, 0.03503062203526497, -0.02585603855550289, -0.018254101276397705, 0.03755084052681923, -0.006578111555427313, 0.03663135692477226, -0.041941069066524506, 0.05561016499996185, -0.03283103555440903, 0.016252275556325912, -0.022049373015761375, -0.0024334616027772427, -0.050780557096004486, 0.027260039001703262, -0.013424434699118137, -0.02352282404899597, -0.0036549526266753674, 0.03286885470151901, -0.007837665267288685, 0.014852345921099186, -0.018833773210644722, 0.020701218396425247, -0.03331197798252106, 0.07408459484577179, -0.03781239688396454, 0.023108743131160736, -0.0531122125685215, 0.024876588955521584, -0.007012248504906893, 0.015275985933840275, -0.003462950000539422, -0.018270500004291534, 0.049440886825323105, 0.03793228417634964, 0.027175484225153923, 0.03623431175947189, -0.005464557558298111, -0.007754038088023663, -0.0011013677576556802, -0.0626140683889389, -0.019640950486063957, 0.010675384663045406, 0.02312544919550419, -0.015574300661683083, 0.051585759967565536, 0.02798694558441639, -0.06103583425283432, -0.07628703117370605, 0.026877937838435173, 0.028031162917613983, 0.010304111056029797, 0.022697897627949715, 0.02315947599709034, 0.02315429225564003, 0.039173614233732224, -0.008440115489065647, -0.026863623410463333, -0.009206410497426987, -0.05939042940735817, 0.021028202027082443, -0.00557403638958931, 0.013145167380571365, 0.028522800654172897, -0.0510995090007782, -0.034617722034454346, 0.038474928587675095, 0.02584587037563324, 0.009760844521224499, -0.005770435091108084, -0.06038320064544678, 0.021279407665133476, -0.006159516051411629, -0.04101378098130226, 0.021353764459490776, -0.0024016171228140593, -0.02247106470167637, 0.05327339842915535, 0.0017110274638980627, -0.002630190923810005, 0.04798855260014534, 0.004379103425890207, -0.02227911725640297, 0.06347234547138214, -0.041505444794893265, -0.002394381444901228, 0.04724381864070892, -0.06426889449357986, -0.01113755814731121, -0.05887136235833168, 0.06920658051967621, -0.07230839133262634, 0.03557508811354637, 0.06690309196710587, -0.011183061636984348, 0.029846156015992165, -0.06239675357937813, -0.062380287796258926, 0.011247365735471249, -0.03245086967945099, 0.05835581570863724, 0.014898749068379402, -0.05749830976128578, 0.05808168649673462, 0.022930322214961052, -0.047374505549669266, 0.022554107010364532, 0.0390886515378952, 0.03787308931350708, 0.017499567940831184, 0.04280499368906021, -0.04400034621357918, -0.026849666610360146, -0.04869300499558449, 0.009709843434393406, -0.0633682906627655, -0.012369710020720959, 0.00966848898679018, -0.016877951100468636, -0.0077612255699932575, 0.028701575472950935, -0.02111084572970867, -0.01665644161403179, 0.04301745072007179, -0.04875091463327408, -0.047172605991363525, -0.004961361642926931, -0.0024134304840117693, -0.04838162288069725, -0.011717379093170166, -0.030684685334563255, -0.004244972951710224, 0.00969791878014803, 0.0054880171082913876, -0.017628470435738564, -0.025592120364308357, 0.01851249299943447, -0.039380770176649094, -0.03572433814406395, 0.05139820650219917, -0.01550973393023014, -0.023181386291980743, 0.03340894356369972, 0.024742715060710907, 0.0014549449551850557, 0.02687685564160347, -0.014523672871291637, 0.03419311344623566, -0.057431455701589584, -0.026368357241153717, 0.027118032798171043, 0.00300420681014657, 0.018393512815237045, 0.008252917788922787, 0.019327973946928978, 0.05451992154121399, 0.026928188279271126, 0.007215982768684626, -0.03998544067144394, -0.03781934455037117, 0.024476895108819008, -0.04173554480075836, 0.020557381212711334, -0.000771684164647013, -0.05006237328052521, -0.018858321011066437, 0.0012803715653717518, -0.031063413247466087, 0.04854963719844818, -0.057184573262929916, -0.006954708136618137, 0.05118505284190178, -0.028713133186101913, -0.05967465415596962, -0.08538881689310074, -0.01856316812336445, -0.04714007303118706, 0.005789427552372217, 0.045515142381191254, -0.03676982223987579, 0.03717031329870224, -0.049122873693704605, -0.03764355182647705, 0.033174216747283936, 0.05215601250529289, -0.06148684024810791, 0.060265399515628815, 0.05350101739168167, -0.06520050764083862, 0.00521148880943656, 0.005689057521522045, -0.04986688494682312, -0.026471752673387527, 0.028670234605669975, 0.0017575288657099009, 0.024049703031778336, 0.030940813943743706, -0.048855915665626526, -0.022145792841911316, -0.07001341134309769, -0.027802376076579094, -0.07318919152021408, 0.006372631527483463, 0.050306156277656555 ]
Declan/Reuters_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-3 results: [] --- <!-- 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__hate_speech_offensive__train-8-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.9681 - Accuracy: 0.549 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1073 | 1.0 | 5 | 1.1393 | 0.0 | | 1.0392 | 2.0 | 10 | 1.1729 | 0.0 | | 1.0302 | 3.0 | 15 | 1.1694 | 0.2 | | 0.9176 | 4.0 | 20 | 1.1846 | 0.2 | | 0.8339 | 5.0 | 25 | 1.1663 | 0.2 | | 0.7533 | 6.0 | 30 | 1.1513 | 0.4 | | 0.6327 | 7.0 | 35 | 1.1474 | 0.4 | | 0.4402 | 8.0 | 40 | 1.1385 | 0.4 | | 0.3752 | 9.0 | 45 | 1.0965 | 0.2 | | 0.3448 | 10.0 | 50 | 1.0357 | 0.2 | | 0.2582 | 11.0 | 55 | 1.0438 | 0.2 | | 0.1903 | 12.0 | 60 | 1.0561 | 0.2 | | 0.1479 | 13.0 | 65 | 1.0569 | 0.2 | | 0.1129 | 14.0 | 70 | 1.0455 | 0.2 | | 0.1071 | 15.0 | 75 | 1.0416 | 0.4 | | 0.0672 | 16.0 | 80 | 1.1164 | 0.4 | | 0.0561 | 17.0 | 85 | 1.1846 | 0.6 | | 0.0463 | 18.0 | 90 | 1.2040 | 0.6 | | 0.0431 | 19.0 | 95 | 1.2078 | 0.6 | | 0.0314 | 20.0 | 100 | 1.2368 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009545932523906231, 0.029368607327342033, -0.03553435951471329, 0.050942596048116684, 0.04804757237434387, 0.02993115596473217, -0.012165036983788013, -0.022272847592830658, -0.05430319905281067, 0.061712365597486496, 0.01490738708525896, -0.03143530711531639, 0.022534232586622238, 0.03669377416372299, -0.03503900766372681, -0.03663314878940582, -0.019653769209980965, -0.01143711805343628, -0.03896477818489075, 0.002724889200180769, 0.001987496856600046, -0.011482127010822296, -0.015752075240015984, 0.01554231345653534, -0.014873135834932327, 0.03835867717862129, -0.012840785086154938, 0.02421264722943306, 0.02576347626745701, -0.054951246827840805, 0.011509398929774761, -0.02582463063299656, -0.04049917310476303, 0.004589769057929516, -0.02680438943207264, -0.004786871839314699, 0.005504881031811237, 0.023277083411812782, 0.03923921659588814, 0.03999922424554825, 0.01180420070886612, 0.00640114163979888, -0.004665667191147804, -0.02084624022245407, 0.05763953924179077, -0.009405888617038727, -0.046948183327913284, -0.01004586461931467, 0.024271875619888306, -0.043842922896146774, -0.062026552855968475, -0.05221494287252426, -0.016783902421593666, 0.027991561219096184, -0.011145549826323986, -0.013601870276033878, -0.05674353614449501, 0.016711406409740448, 0.06361190974712372, -0.03972324728965759, -0.029557207599282265, 0.0014802900841459632, -0.06145010516047478, -0.0026948070153594017, 0.02259986475110054, -0.026417285203933716, 0.00322228716686368, -0.04801126569509506, 0.01877271756529808, -0.02072540670633316, 0.05530192330479622, -0.02150132693350315, 0.028793923556804657, -0.07192526757717133, -0.023239808157086372, -0.01846296899020672, 0.0596945583820343, 0.06857571750879288, -0.027204789221286774, 0.06215444579720497, 0.024410147219896317, 0.01862516812980175, 0.035259004682302475, -0.025588620454072952, 0.027393877506256104, 0.026515815407037735, -0.05506758391857147, 0.0028804431203752756, 0.007767935749143362, 0.03701110556721687, -0.0269152969121933, -0.034864988178014755, -0.011593993753194809, -0.030397986993193626, -0.014081466011703014, 0.016758248209953308, 0.009323950856924057, 0.0022098312620073557, 0.04776742309331894, 0.023157784715294838, 0.040650639683008194, 0.035393375903367996, -0.03900659456849098, 0.057101696729660034, -0.019583268091082573, 0.00908577349036932, 0.0012435207609087229, -0.02070673368871212, -0.04170002415776253, 0.02030426636338234, 0.0281995702534914, -0.017372777685523033, -0.03912091627717018, 0.03918953612446785, 0.002037802478298545, 0.012900516390800476, 0.0630197674036026, -0.029369737952947617, -0.03987117484211922, -0.02587067522108555, 0.006184847094118595, 0.006857409607619047, -0.003664144780486822, 0.012885932810604572, -0.06701664626598358, -0.01427090261131525, -0.030945049598813057, -0.04687731713056564, -0.029813647270202637, 0.027193527668714523, 0.01528062205761671, 0.0674871876835823, 0.025231346487998962, -0.06375487148761749, -0.0026657988782972097, 0.020563621073961258, -0.05509016662836075, 0.04293772578239441, 0.02342270500957966, 0.11127554625272751, -0.06379611045122147, -0.0640597715973854, -0.005415865685790777, -0.015221412293612957, -0.04342282935976982, 0.01825384795665741, 0.013403119519352913, -0.009594356641173363, -0.008969184942543507, -0.00031790556386113167, 0.05036279931664467, -0.04572045058012009, -0.020237796008586884, 0.0686880499124527, -0.008900499902665615, 0.03229430317878723, -0.06132283806800842, -0.016075443476438522, 0.009816563688218594, -0.024326927959918976, -0.028103167191147804, 0.031458862125873566, -0.023525336757302284, -0.024116871878504753, -0.019559450447559357, -0.03212093189358711, 0.009981636889278889, 0.0718219205737114, -0.00394635833799839, -0.0324990414083004, -0.030516022816300392, 0.02545587345957756, 0.030992325395345688, 0.022714242339134216, -0.027300653979182243, 0.018853962421417236, 0.06264228373765945, 0.023125596344470978, -0.03575422614812851, 0.053004100918769836, 0.010274823755025864, -0.026661723852157593, -0.026986578479409218, 0.02110743336379528, 0.010259196162223816, -0.050420381128787994, 0.04320709407329559, 0.013383117504417896, 0.0027900307904928923, -0.05581698194146156, -0.04717239737510681, 0.04068088158965111, -0.008622090332210064, -0.009735068306326866, 0.027606848627328873, 0.013737798668444157, -0.025686200708150864, 0.04225771874189377, -0.024446966126561165, -0.0005107861943542957, -0.04529628902673721, -0.012733450159430504, -0.005309498403221369, -0.029610129073262215, 0.014186127111315727, 0.04313719645142555, -0.004204561468213797, 0.07274464517831802, -0.024085290729999542, 0.014369934797286987, -0.05766001716256142, -0.040555037558078766, 0.011324330233037472, 0.06722453236579895, 0.0610990971326828, 0.04055922105908394, 0.00221246387809515, -0.04668281599879265, 0.034249067306518555, 0.07370389252901077, 0.04685985669493675, 0.003278756979852915, -0.0361303947865963, -0.017489023506641388, 0.04815322533249855, 0.050435688346624374, -0.050594914704561234, -0.027043897658586502, 0.006046031601727009, 0.03892368823289871, -0.011651379056274891, 0.010444452054798603, -0.02793464995920658, 0.03567316755652428, -0.058115508407354355, -0.04962816461920738, 0.038789018988609314, 0.04098987206816673, 0.007309353910386562, 0.029015248641371727, 0.023051831871271133, 0.015454924665391445, 0.040348079055547714, 0.02200971730053425, 0.01403896789997816, -0.05632011219859123, 0.020831899717450142, -0.0029370447155088186, 0.05037073418498039, -0.04701496660709381, 0.03910340741276741, -0.011974332854151726, -0.0009572810959070921, 0.03678775206208229, -0.027753235772252083, 0.04897121340036392, 0.050509750843048096, 0.01885821484029293, -0.039067354053258896, 0.021257957443594933, -0.013520675711333752, 0.027639115229249, 0.02237761579453945, 0.002269312273710966, 0.08343128859996796, 0.008196166716516018, 0.049458686262369156, 0.09944406896829605, 0.03441472724080086, 0.02544485405087471, 0.015777450054883957, 0.043936390429735184, 0.022458065301179886, -0.022165412083268166, 0.061400193721055984, -0.05291556939482689, 0.04010927304625511, -0.05260070785880089, 0.006194586865603924, -0.021665815263986588, -0.026299839839339256, 0.05244709178805351, 0.0314418263733387, -0.032525643706321716, 0.004144978243857622, 0.0065068332478404045, -0.015155722387135029, 0.03951716423034668, -0.013230702839791775, 0.007791667245328426, -0.008664416149258614, -0.044116999953985214, -0.005168686155229807, -0.07506551593542099, -0.03269099444150925, -0.009571199305355549, -0.02813561260700226, -0.02112688682973385, -0.09459730237722397, -0.023522911593317986, -0.05976621434092522, -0.009128374978899956, 0.031027253717184067, 0.01075820717960596, -0.022297469899058342, -0.03244854137301445, 0.01792759820818901, -0.05260489881038666, -0.04311759024858475, -0.037582628428936005, -0.06333227455615997, -0.04250636324286461, -0.07660095393657684, 0.04238142445683479, 0.04665511101484299, 0.012651506811380386, -0.006297742016613483, 0.012711071409285069, 0.015178143978118896, -0.023880142718553543, 0.017921164631843567, 0.061790090054273605, -0.03989407792687416, -0.06669159233570099, 0.007808908354490995, 0.0003075202985201031, 0.005088338628411293, 0.030894730240106583, -0.04523830860853195, 0.09537526220083237, 0.08404720574617386, 0.0076165772043168545, 0.03453005105257034, -0.0028315712697803974, -0.05842079222202301, -0.04747777432203293, -0.034805621951818466, -0.049546513706445694, -0.0194814782589674, -0.04342855140566826, -0.060481198132038116, -0.03079311177134514, -0.03970201313495636, -0.005532273557037115, 0.001969835953786969, 0.02058054506778717, 0.012436928227543831, 0.03594192862510681, 0.018384668976068497, 0.03329065814614296, -0.023683922365307808, -0.04381972551345825, 0.05560821667313576, -0.012280606664717197, 0.018050169572234154, -0.08792892098426819, 0.0017862037057057023, 0.028299961239099503, 0.0014938079984858632, 0.02130320481956005, -0.022521164268255234, 0.06429355591535568, 0.0044397893361747265, 0.006661233026534319, 0.006898281164467335, -0.010096581652760506, 0.0014655571430921555, -0.012303683906793594, -0.0116517823189497, 0.005242642015218735, -0.03553036227822304, -0.024746865034103394, -0.0185086652636528, 0.0392434261739254, -0.04895446076989174, -0.04617408663034439, -0.02694828249514103, 0.04419013857841492, 0.05434815213084221, -0.00849404651671648, -0.051847055554389954, -0.011630812659859657, -0.05563797056674957, -0.01084777433425188, 0.014500602148473263, -0.0006306805880740285, 0.006719136610627174, 0.027328476309776306, 0.01768600568175316, -0.011377406306564808, 0.003505290951579809, 0.05788729339838028, 0.07140657305717468, 0.013506777584552765, -0.08218208700418472, 0.000986944418400526, -0.014187974855303764, 0.015883587300777435, -0.0202451404184103, -0.026887059211730957, -0.022037504240870476, -0.1096879169344902, -0.02597927302122116, -0.000053490890422835946, 0.000486869306769222, -0.01831883192062378, 0.04041226580739021, -0.006692865397781134, -0.009220646694302559, 0.001176055520772934, 0.01447043102234602, 0.04464128240942955, -0.019338632002472878, 0.04146382585167885, -0.01628381945192814, 0.006669945549219847, -0.055460575968027115, 0.03692957013845444, -0.03827325627207756, -0.04371154308319092, 0.008428506553173065, 0.06067875400185585, -0.006714976858347654, 0.07242373377084732, 0.07088158279657364, 0.048659175634384155, -0.055704835802316666, 0.0208768080919981, 0.08010431379079819, -0.02469644695520401, -0.03939371183514595, -0.00384157313965261, -0.008055518381297588, -0.020715100690722466, 0.021495001390576363, -0.026701826602220535, 0.053186241537332535, 0.037090107798576355, 0.008940963074564934, -0.009044458158314228, -0.017066484317183495, -0.004300628323107958, -0.024586306884884834, -0.05717536807060242, -0.034738689661026, 0.000022083588191890158, -0.029877087101340294, 0.02268529310822487, 0.026193562895059586, 0.03218170255422592, 0.061753686517477036, 0.013554936274886131, -0.047070302069187164, -0.006209678016602993, 0.018169157207012177, 0.019207756966352463, -0.031035710126161575, -0.07341286540031433, -0.046112410724163055, 0.03488272428512573, 0.04754101485013962, -0.022254634648561478, -0.06836743652820587, 0.021481288596987724, 0.049444530159235, -0.041908081620931625, 0.04980938881635666, -0.020959215238690376, 0.05281981825828552, 0.049145761877298355, -0.011409212835133076, 0.03766407072544098, -0.01670205593109131, -0.006960301194339991, 0.0018706654664129019, 0.04272719472646713, -0.014749906957149506, -0.02550634741783142, -0.05460095778107643, 0.026882991194725037, 0.044613201171159744, 0.03208637982606888, 0.04091819375753403, -0.038955021649599075, -0.025823216885328293, 0.02372119575738907, 0.026006300002336502, -0.04652472585439682, -0.015366033650934696, 0.04525403678417206, 0.03868444636464119, -0.03933519870042801, -0.028631556779146194, -0.028932081535458565, 0.006800794508308172, 0.03169000521302223, 0.001008239109069109, -0.023724758997559547, -0.029276607558131218, 0.04726790636777878, -0.027988767251372337, -0.034714046865701675, -0.07301756739616394, 0.030472394078969955, -0.00632459344342351, -0.03568309545516968, 0.05200067535042763, 0.025485899299383163, 0.02647474780678749, 0.0716158077120781, 0.01387709192931652, 0.0065714032389223576, -0.0457971952855587, 0.048253294080495834, -0.018924104049801826, -0.011203517206013203, -0.0010629236930981278, -0.04204973950982094, -0.02807769365608692, -0.012863300740718842, -0.04506033658981323, -0.02984393574297428, -0.020404448732733727, 0.024389930069446564, -0.005603231955319643, -0.0048517026007175446, -0.001130996854044497, 0.04042326286435127, -0.0017505422001704574, -0.037573181092739105, -0.03822145611047745, -0.017945926636457443, -0.06269951164722443, -0.05713799223303795, -0.004449657164514065, 0.01434705313295126, 0.03304419293999672, 0.03637911006808281, 0.01877211593091488, 0.01297353021800518, 0.006026104558259249, -0.021736910566687584, 0.015704231336712837, 0.01992526650428772, -0.04805896058678627, -0.025288820266723633, 0.03372450917959213, 0.011747682467103004, 0.027221878990530968, -0.026325298473238945, 0.04694540426135063, 0.010022147558629513, -0.01576750911772251, -0.03638247027993202, 0.017925044521689415, 0.035882219672203064, -0.07571657747030258, -0.05559670925140381, -0.015606037341058254, -0.026716284453868866, 0.033259663730859756, -0.020661190152168274, -0.0027538142167031765, 0.025224344804883003, 0.0057722725905478, 0.03442764654755592, -0.024424590170383453, -0.021391183137893677, 0.03761506825685501, -0.004976309835910797, 0.03652424365282059, -0.041074275970458984, 0.05443195626139641, -0.03381279855966568, 0.016222704201936722, -0.022962581366300583, -0.002054194686934352, -0.050318703055381775, 0.027465922757983208, -0.012036381289362907, -0.023887235671281815, -0.002229555044323206, 0.030840523540973663, -0.008390258066356182, 0.013788137584924698, -0.02114683948457241, 0.02152552455663681, -0.03334124758839607, 0.07359379529953003, -0.03823058679699898, 0.021745692938566208, -0.050869569182395935, 0.02391532063484192, -0.00811456236988306, 0.013652400113642216, -0.002263650530949235, -0.019166143611073494, 0.050016868859529495, 0.03763855621218681, 0.027029743418097496, 0.03801189735531807, -0.0067192502319812775, -0.009264775551855564, -0.001652656588703394, -0.06266102939844131, -0.020033985376358032, 0.011175683699548244, 0.024029133841395378, -0.013597061857581139, 0.05130702629685402, 0.027092762291431427, -0.06030379608273506, -0.07745788246393204, 0.025240538641810417, 0.029167979955673218, 0.009464405477046967, 0.023693088442087173, 0.023216068744659424, 0.02247939631342888, 0.038883764296770096, -0.009316650219261646, -0.026144882664084435, -0.008122792467474937, -0.05805451050400734, 0.020628439262509346, -0.0053644259460270405, 0.014960812404751778, 0.028590669855475426, -0.04943013936281204, -0.03451364487409592, 0.04053177684545517, 0.02604280598461628, 0.009886781685054302, -0.0059371874667704105, -0.06144847720861435, 0.023071935400366783, -0.004320493899285793, -0.04197906330227852, 0.023999877274036407, -0.0031020394526422024, -0.022442104294896126, 0.052827488631010056, 0.004832808393985033, -0.00048140870057977736, 0.049391139298677444, 0.00527336448431015, -0.024529926478862762, 0.0614946074783802, -0.04185422509908676, -0.0035642043221741915, 0.045988865196704865, -0.06416135281324387, -0.01028073113411665, -0.06078605726361275, 0.0699632316827774, -0.0702391192317009, 0.035844311118125916, 0.06594031304121017, -0.012061475776135921, 0.028823085129261017, -0.061827048659324646, -0.062183864414691925, 0.013321959413588047, -0.03237740322947502, 0.058893147855997086, 0.015457449480891228, -0.05960189178586006, 0.05660475417971611, 0.02148354984819889, -0.04826599732041359, 0.021552354097366333, 0.04052186384797096, 0.0389690175652504, 0.0176311694085598, 0.04387907311320305, -0.045025069266557693, -0.02742978371679783, -0.04882236570119858, 0.010880076326429844, -0.05969126895070076, -0.012332161888480186, 0.008343244902789593, -0.015786761417984962, -0.008880631066858768, 0.03089691698551178, -0.020825903862714767, -0.017355438321828842, 0.045123521238565445, -0.04902736470103264, -0.04741119220852852, -0.004922050517052412, -0.0024726982228457928, -0.048112791031599045, -0.013895058073103428, -0.030721275135874748, -0.0015323919942602515, 0.01058599166572094, 0.004909303970634937, -0.019568543881177902, -0.025471150875091553, 0.018920179456472397, -0.03973841667175293, -0.03559138625860214, 0.05194251984357834, -0.016247134655714035, -0.023156799376010895, 0.03232845291495323, 0.025890015065670013, 0.0002232081169495359, 0.027546493336558342, -0.014829282648861408, 0.03291502967476845, -0.05857277289032936, -0.026606610044836998, 0.026210375130176544, 0.002942010061815381, 0.018117336556315422, 0.008005824871361256, 0.018167275935411453, 0.05374898016452789, 0.02597571723163128, 0.007031187415122986, -0.04066694900393486, -0.03781069442629814, 0.024027327075600624, -0.042037442326545715, 0.01841885782778263, 0.0006743692210875452, -0.05033709853887558, -0.018643703311681747, 0.0022194001358002424, -0.03336874395608902, 0.04896412044763565, -0.05802280455827713, -0.0071116043254733086, 0.05157984048128128, -0.027153601869940758, -0.05914286896586418, -0.08530515432357788, -0.01813746988773346, -0.046273671090602875, 0.00546980882063508, 0.04509028047323227, -0.0363440066576004, 0.03683983534574509, -0.04983990266919136, -0.03660697489976883, 0.034080784767866135, 0.052396878600120544, -0.05925507843494415, 0.05931425094604492, 0.05351855233311653, -0.06443435698747635, 0.006543504074215889, 0.004391663707792759, -0.04888797178864479, -0.024988410994410515, 0.029657747596502304, 0.0005459075910039246, 0.02325761877000332, 0.03125432878732681, -0.049144450575113297, -0.02042369917035103, -0.07052337378263474, -0.028678104281425476, -0.07135752588510513, 0.00675808172672987, 0.05162694677710533 ]
Declan/Reuters_model_v6
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-4 results: [] --- <!-- 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__hate_speech_offensive__train-8-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1045 - Accuracy: 0.128 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1115 | 1.0 | 5 | 1.1174 | 0.0 | | 1.0518 | 2.0 | 10 | 1.1379 | 0.0 | | 1.0445 | 3.0 | 15 | 1.1287 | 0.0 | | 0.9306 | 4.0 | 20 | 1.1324 | 0.2 | | 0.8242 | 5.0 | 25 | 1.1219 | 0.2 | | 0.7986 | 6.0 | 30 | 1.1369 | 0.4 | | 0.7369 | 7.0 | 35 | 1.1732 | 0.2 | | 0.534 | 8.0 | 40 | 1.1828 | 0.6 | | 0.4285 | 9.0 | 45 | 1.1482 | 0.6 | | 0.3691 | 10.0 | 50 | 1.1401 | 0.6 | | 0.3215 | 11.0 | 55 | 1.1286 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009733074344694614, 0.030734708532691002, -0.03439005836844444, 0.051402073353528976, 0.04687733203172684, 0.029593484476208687, -0.012298696674406528, -0.02064206264913082, -0.05449332296848297, 0.06038077920675278, 0.014210319146513939, -0.03152751177549362, 0.02362130582332611, 0.03785092011094093, -0.03512004017829895, -0.03703032433986664, -0.021303419023752213, -0.010892968624830246, -0.04148382693529129, 0.00370337488129735, 0.0013968106359243393, -0.012810725718736649, -0.01581151783466339, 0.015754330903291702, -0.013189362362027168, 0.03744080662727356, -0.011681649833917618, 0.022113624960184097, 0.024982646107673645, -0.05510815605521202, 0.011089598760008812, -0.02456311695277691, -0.03937263786792755, 0.004995525348931551, -0.026964211836457253, -0.003921464551240206, 0.0037452825345098972, 0.023036997765302658, 0.04181992635130882, 0.03837814927101135, 0.012201376259326935, 0.004955487325787544, -0.007642556447535753, -0.020026952028274536, 0.059471145272254944, -0.00971775408834219, -0.04564734175801277, -0.010982939042150974, 0.022861581295728683, -0.04323526471853256, -0.0625988319516182, -0.0532020665705204, -0.017516257241368294, 0.027445608749985695, -0.010886803269386292, -0.013345523737370968, -0.059534113854169846, 0.018094602972269058, 0.06404482573270798, -0.04027669504284859, -0.029711073264479637, 0.0018250028369948268, -0.06431291997432709, -0.0037724890280514956, 0.022925125434994698, -0.02710760571062565, 0.002420486183837056, -0.04655957967042923, 0.01704070158302784, -0.019689509645104408, 0.05526838079094887, -0.021135088056325912, 0.0282772034406662, -0.07055167108774185, -0.023450950160622597, -0.020131399855017662, 0.05961829051375389, 0.06873676925897598, -0.0273270346224308, 0.061493709683418274, 0.024345066398382187, 0.018049972131848335, 0.03428644686937332, -0.02510816603899002, 0.027203937992453575, 0.024957282468676567, -0.056487537920475006, 0.004393234848976135, 0.006715153809636831, 0.037250492721796036, -0.029391460120677948, -0.03683336824178696, -0.011948240920901299, -0.03145593777298927, -0.01384291984140873, 0.016000522300601006, 0.00853651762008667, 0.002482070354744792, 0.047641243785619736, 0.0230253878980875, 0.04236197471618652, 0.03591492772102356, -0.036922357976436615, 0.05675843730568886, -0.019529949873685837, 0.00803723931312561, -0.001063088420778513, -0.021467020735144615, -0.04278496652841568, 0.0209356602281332, 0.028807302936911583, -0.016931859776377678, -0.03744195029139519, 0.03836681321263313, 0.00011835136683657765, 0.014352944679558277, 0.06318653374910355, -0.0294207613915205, -0.04081147536635399, -0.024598347023129463, 0.006810417398810387, 0.007667897269129753, -0.0029927098657935858, 0.013154854997992516, -0.0672859251499176, -0.013675934635102749, -0.0306784026324749, -0.046767037361860275, -0.027516158297657967, 0.029963642358779907, 0.014365416020154953, 0.06890988349914551, 0.024877559393644333, -0.06260412931442261, -0.0022124580573290586, 0.022009778767824173, -0.05376084893941879, 0.04296712577342987, 0.02435559779405594, 0.10908199101686478, -0.06321365386247635, -0.06360460072755814, -0.0044469586573541164, -0.015613283030688763, -0.04427973926067352, 0.01664969138801098, 0.011262999847531319, -0.010236209258437157, -0.009925208054482937, -0.0005035958020016551, 0.04997246712446213, -0.045279551297426224, -0.02030888758599758, 0.06852886825799942, -0.008953670039772987, 0.033906735479831696, -0.06127477437257767, -0.016330664977431297, 0.009543320164084435, -0.022612322121858597, -0.028505001217126846, 0.028479671105742455, -0.023253759369254112, -0.025146959349513054, -0.018698958680033684, -0.030744416639208794, 0.010418030433356762, 0.07286718487739563, -0.0043135532177984715, -0.03300710394978523, -0.030474865809082985, 0.024435585364699364, 0.031421907246112823, 0.024358464404940605, -0.028338059782981873, 0.018497513607144356, 0.0628291517496109, 0.024674076586961746, -0.035467829555273056, 0.05256267264485359, 0.010982738807797432, -0.025214383378624916, -0.026934852823615074, 0.02095230482518673, 0.011289697140455246, -0.05101141706109047, 0.04293844476342201, 0.013581261970102787, 0.0031937183812260628, -0.05528408661484718, -0.0454360730946064, 0.041528958827257156, -0.009700736962258816, -0.009619355201721191, 0.027412675321102142, 0.012824310921132565, -0.026020510122179985, 0.04312171787023544, -0.023672543466091156, -0.00028543738881126046, -0.04382108896970749, -0.014405532740056515, -0.005093314219266176, -0.029108703136444092, 0.014161372557282448, 0.043770212680101395, -0.002767891390249133, 0.07273510843515396, -0.023420406505465508, 0.011872692033648491, -0.05813520401716232, -0.03907248377799988, 0.008774456568062305, 0.06738193333148956, 0.06193672493100166, 0.0391826257109642, 0.004480729810893536, -0.046255141496658325, 0.03602196276187897, 0.07381251454353333, 0.04630361869931221, 0.0019810020457953215, -0.03600366413593292, -0.01754930429160595, 0.04800556227564812, 0.05157053843140602, -0.05011996626853943, -0.02474246732890606, 0.00497862696647644, 0.037976156920194626, -0.013100357726216316, 0.009234421886503696, -0.028065264225006104, 0.03485908359289169, -0.058349840342998505, -0.049704357981681824, 0.039794594049453735, 0.04089435189962387, 0.0076023880392313, 0.029865434393286705, 0.024519411846995354, 0.013369644992053509, 0.03991180285811424, 0.02145364321768284, 0.01574169099330902, -0.0552937351167202, 0.01952957920730114, -0.002874033758416772, 0.05094682797789574, -0.04766552150249481, 0.03931180015206337, -0.012464956380426884, -0.0005331637803465128, 0.038187216967344284, -0.027177873998880386, 0.05010618269443512, 0.04852937161922455, 0.01820766180753708, -0.03820034861564636, 0.02173655852675438, -0.013282555155456066, 0.02740587294101715, 0.022259367629885674, 0.0033393758349120617, 0.08348457515239716, 0.008570581674575806, 0.04800264909863472, 0.09754647314548492, 0.033608730882406235, 0.026030978187918663, 0.01356857642531395, 0.043209508061409, 0.021381570026278496, -0.02295723557472229, 0.061805546283721924, -0.05274948105216026, 0.03956460580229759, -0.051686909049749374, 0.007076462265104055, -0.02166569046676159, -0.026506492868065834, 0.05394981428980827, 0.031139815226197243, -0.03388256952166557, 0.003366700140759349, 0.007583551108837128, -0.015938708558678627, 0.03994856774806976, -0.015164108015596867, 0.008098462596535683, -0.009194997139275074, -0.04293316602706909, -0.0031232035253196955, -0.07640967518091202, -0.032920099794864655, -0.008141336031258106, -0.029171576723456383, -0.020477009937167168, -0.09642937034368515, -0.023185594007372856, -0.058889586478471756, -0.009770783595740795, 0.02939249947667122, 0.010616800747811794, -0.023515529930591583, -0.03134723752737045, 0.019492046907544136, -0.05208897218108177, -0.04304942488670349, -0.0380321703851223, -0.0638037845492363, -0.04244634136557579, -0.0772990807890892, 0.042202427983284, 0.04688897356390953, 0.012746970169246197, -0.0050183553248643875, 0.012656785547733307, 0.015741534531116486, -0.024149158969521523, 0.018407229334115982, 0.06096617504954338, -0.040292590856552124, -0.06752858310937881, 0.009284154511988163, -0.0007657918613404036, 0.005893383640795946, 0.029613519087433815, -0.043177831918001175, 0.09469017386436462, 0.08545936644077301, 0.006683520041406155, 0.03444327041506767, -0.004061521030962467, -0.057135242968797684, -0.04641324281692505, -0.03466207906603813, -0.05032847449183464, -0.020740797743201256, -0.043396737426519394, -0.060462694615125656, -0.030342673882842064, -0.038344673812389374, -0.005915187299251556, 0.002414936199784279, 0.02106768824160099, 0.012665165588259697, 0.034937117248773575, 0.01905216835439205, 0.033026114106178284, -0.02133488468825817, -0.045323532074689865, 0.0556243360042572, -0.013063304126262665, 0.018121596425771713, -0.08738530427217484, 0.002864340553060174, 0.02907317504286766, -0.0002682523336261511, 0.020654238760471344, -0.022037243470549583, 0.06497322767972946, 0.004339724779129028, 0.005553335417062044, 0.007122636307030916, -0.009087901562452316, 0.0010253731161355972, -0.012320593930780888, -0.013837367296218872, 0.005846341140568256, -0.035023946315050125, -0.026142209768295288, -0.020160464569926262, 0.038436390459537506, -0.048619385808706284, -0.04653004929423332, -0.027381006628274918, 0.045262981206178665, 0.05502314865589142, -0.008484004065394402, -0.05077315494418144, -0.012524229474365711, -0.05520462617278099, -0.009824412874877453, 0.013074823655188084, 0.0008064661524258554, 0.005734395235776901, 0.0271624606102705, 0.017747074365615845, -0.011694718152284622, 0.005018490832298994, 0.05885911360383034, 0.07201994210481644, 0.013478374108672142, -0.08236940205097198, -0.0002290989796165377, -0.014230165630578995, 0.014975829981267452, -0.019251888617873192, -0.026835845783352852, -0.022166859358549118, -0.10934706777334213, -0.026456449180841446, 0.000429571169661358, 0.002112108515575528, -0.019137728959321976, 0.03967142477631569, -0.007270773872733116, -0.010215286165475845, 0.001563525409437716, 0.014320427551865578, 0.044826850295066833, -0.020484259352087975, 0.03987731412053108, -0.017396414652466774, 0.008010081946849823, -0.054787084460258484, 0.037048906087875366, -0.037407755851745605, -0.042574193328619, 0.009009071625769138, 0.06120544672012329, -0.007375007960945368, 0.07131341099739075, 0.06988882273435593, 0.049949269741773605, -0.05646173655986786, 0.021338418126106262, 0.0796818658709526, -0.025163378566503525, -0.03724827617406845, -0.0038205808959901333, -0.006835191510617733, -0.021807730197906494, 0.02059546485543251, -0.025246892124414444, 0.05433914065361023, 0.03606998547911644, 0.008172813802957535, -0.009020046330988407, -0.017169523984193802, -0.005316460970789194, -0.022976217791438103, -0.05801188945770264, -0.03515857085585594, -0.0010503913508728147, -0.032097071409225464, 0.023378485813736916, 0.025976376608014107, 0.03254542872309685, 0.06282276660203934, 0.012414736673235893, -0.048060718923807144, -0.006388577166944742, 0.01734173484146595, 0.020179135724902153, -0.031185083091259003, -0.07197613269090652, -0.0483715757727623, 0.03461180999875069, 0.048304904252290726, -0.021454205736517906, -0.06864581257104874, 0.023842206224799156, 0.048175301402807236, -0.04194185137748718, 0.05095319449901581, -0.02104501612484455, 0.054333921521902084, 0.04752480611205101, -0.011821815744042397, 0.03842558711767197, -0.015398712828755379, -0.006726773921400309, 0.0014052069745957851, 0.04112721607089043, -0.01392963994294405, -0.02680356800556183, -0.05350084230303764, 0.02490118332207203, 0.045103881508111954, 0.033237654715776443, 0.03916947543621063, -0.038878183811903, -0.02631480246782303, 0.024293065071105957, 0.024669472128152847, -0.047468360513448715, -0.015205551870167255, 0.04387454688549042, 0.03845144808292389, -0.0397990457713604, -0.029177315533161163, -0.029581017792224884, 0.008586970157921314, 0.03192708641290665, 0.0010397732257843018, -0.02388036996126175, -0.03007485717535019, 0.047827210277318954, -0.027678990736603737, -0.03430924564599991, -0.07562164217233658, 0.028354045003652573, -0.006931020878255367, -0.03651922568678856, 0.05096840858459473, 0.02281903102993965, 0.026566950604319572, 0.07291311770677567, 0.013609517365694046, 0.006503581535071135, -0.04511463642120361, 0.049733832478523254, -0.018189027905464172, -0.010558920912444592, -0.0016324121970683336, -0.04116619750857353, -0.026750387623906136, -0.01270010881125927, -0.0479600615799427, -0.030124502256512642, -0.02129947952926159, 0.02502029947936535, -0.005197194870561361, -0.006858444772660732, -0.0020855495240539312, 0.03894592821598053, -0.003422362031415105, -0.03639286011457443, -0.039024170488119125, -0.016820713877677917, -0.06322664022445679, -0.05547124892473221, -0.004085199907422066, 0.014065071009099483, 0.03406795859336853, 0.03656723350286484, 0.020159458741545677, 0.012756760232150555, 0.006060481537133455, -0.020982423797249794, 0.015970975160598755, 0.02016071043908596, -0.04822121933102608, -0.024510636925697327, 0.035162992775440216, 0.0131600983440876, 0.027685819193720818, -0.02802499569952488, 0.047938909381628036, 0.011060654185712337, -0.015290209092199802, -0.03660590946674347, 0.019910795614123344, 0.03573806583881378, -0.07653606683015823, -0.05607593432068825, -0.014505847357213497, -0.028136076405644417, 0.032319337129592896, -0.020774032920598984, -0.0009607938700355589, 0.027004241943359375, 0.006244301330298185, 0.035165395587682724, -0.02674674242734909, -0.019659144803881645, 0.03726455196738243, -0.005258617922663689, 0.03665550425648689, -0.040848176926374435, 0.054983872920274734, -0.03259820491075516, 0.016239335760474205, -0.021991141140460968, -0.003716078819707036, -0.050007760524749756, 0.028065437451004982, -0.012559733353555202, -0.023791620507836342, -0.0022132962476462126, 0.03188500925898552, -0.0075017414055764675, 0.013706729747354984, -0.019231759011745453, 0.020900186151266098, -0.033906467258930206, 0.07413336634635925, -0.038523927330970764, 0.022930936887860298, -0.052234698086977005, 0.023358000442385674, -0.0077468352392315865, 0.014755576848983765, -0.0025879424065351486, -0.01945362240076065, 0.04950442165136337, 0.03738841041922569, 0.029156573116779327, 0.0383770726621151, -0.004299598280340433, -0.009386537596583366, -0.0024440488778054714, -0.06303388625383377, -0.019544783979654312, 0.010788872838020325, 0.023350918665528297, -0.014678670093417168, 0.050091858953237534, 0.027149787172675133, -0.06118437275290489, -0.07727531343698502, 0.027117637917399406, 0.02755855955183506, 0.010418830439448357, 0.023079728707671165, 0.025455497205257416, 0.022939877584576607, 0.03853027522563934, -0.009204580448567867, -0.025483811274170876, -0.007366727571934462, -0.058856215327978134, 0.020703138783574104, -0.004961119964718819, 0.016167541965842247, 0.029266132041811943, -0.04822387546300888, -0.03461316600441933, 0.04088328033685684, 0.027169320732355118, 0.009364052675664425, -0.006548736244440079, -0.06023608520627022, 0.021411195397377014, -0.004302057903259993, -0.04183437302708626, 0.023319849744439125, -0.0022986463736742735, -0.021259771659970284, 0.05362813547253609, 0.003442346816882491, -0.0003776738012675196, 0.04981207475066185, 0.004305508453398943, -0.02256868965923786, 0.06136254221200943, -0.041544657200574875, -0.004191136918962002, 0.04705134406685829, -0.06485913693904877, -0.010888379067182541, -0.060166601091623306, 0.06950408220291138, -0.070896677672863, 0.035848990082740784, 0.06681806594133377, -0.011250760406255722, 0.02897595427930355, -0.061500873416662216, -0.06124749407172203, 0.011710338294506073, -0.0324900858104229, 0.057883281260728836, 0.0151902474462986, -0.058750227093696594, 0.05729493126273155, 0.022493876516819, -0.04979567602276802, 0.02122228406369686, 0.03958246856927872, 0.038145169615745544, 0.01821000687777996, 0.042241137474775314, -0.04363991320133209, -0.027885323390364647, -0.048155155032873154, 0.010675954632461071, -0.0607481375336647, -0.012452382594347, 0.009984062053263187, -0.01655729115009308, -0.008074227720499039, 0.029800737276673317, -0.020405640825629234, -0.016612743958830833, 0.043687526136636734, -0.04820634424686432, -0.04665568470954895, -0.006129764951765537, -0.0031491750851273537, -0.047996293753385544, -0.01249734591692686, -0.03030872903764248, -0.002403420163318515, 0.009325847029685974, 0.004162642639130354, -0.018343649804592133, -0.025714995339512825, 0.01918637752532959, -0.04040166363120079, -0.036314740777015686, 0.051770880818367004, -0.01644721068441868, -0.023110177367925644, 0.03296426311135292, 0.025267165154218674, 0.0011805121321231127, 0.026951968669891357, -0.01554033625870943, 0.03291038051247597, -0.058022890239953995, -0.02692243456840515, 0.025326892733573914, 0.004128898493945599, 0.018563829362392426, 0.008990855887532234, 0.020054692402482033, 0.05557963252067566, 0.027562959119677544, 0.007358842995017767, -0.03950025141239166, -0.0382588766515255, 0.02530832774937153, -0.041557006537914276, 0.0202585831284523, 0.0007550584268756211, -0.04977237433195114, -0.018412228673696518, -0.00030816387152299285, -0.03310791403055191, 0.04871677607297897, -0.05699170380830765, -0.006916634738445282, 0.05139586701989174, -0.029553234577178955, -0.0575144961476326, -0.08605994284152985, -0.018075063824653625, -0.04703588783740997, 0.005076794885098934, 0.04521927610039711, -0.03638989478349686, 0.0376531183719635, -0.04859990254044533, -0.03614110127091408, 0.032205730676651, 0.05220853537321091, -0.05891714245080948, 0.058951202780008316, 0.052480556070804596, -0.06447996199131012, 0.008400853723287582, 0.006927928421646357, -0.04816915839910507, -0.026874182745814323, 0.028517670929431915, -0.00035577459493651986, 0.02506529912352562, 0.030363023281097412, -0.04921603947877884, -0.022401975467801094, -0.06990653276443481, -0.028573578223586082, -0.07168683409690857, 0.007402234710752964, 0.05084209889173508 ]
Declan/Reuters_model_v8
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-5 results: [] --- <!-- 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__hate_speech_offensive__train-8-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.7214 - Accuracy: 0.37 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.0995 | 1.0 | 5 | 1.1301 | 0.0 | | 1.0227 | 2.0 | 10 | 1.1727 | 0.0 | | 1.0337 | 3.0 | 15 | 1.1734 | 0.2 | | 0.9137 | 4.0 | 20 | 1.1829 | 0.2 | | 0.8065 | 5.0 | 25 | 1.1496 | 0.4 | | 0.7038 | 6.0 | 30 | 1.1101 | 0.4 | | 0.6246 | 7.0 | 35 | 1.0982 | 0.2 | | 0.4481 | 8.0 | 40 | 1.0913 | 0.2 | | 0.3696 | 9.0 | 45 | 1.0585 | 0.4 | | 0.3137 | 10.0 | 50 | 1.0418 | 0.4 | | 0.2482 | 11.0 | 55 | 1.0078 | 0.4 | | 0.196 | 12.0 | 60 | 0.9887 | 0.6 | | 0.1344 | 13.0 | 65 | 0.9719 | 0.6 | | 0.1014 | 14.0 | 70 | 1.0053 | 0.6 | | 0.111 | 15.0 | 75 | 0.9653 | 0.6 | | 0.0643 | 16.0 | 80 | 0.9018 | 0.6 | | 0.0559 | 17.0 | 85 | 0.9393 | 0.6 | | 0.0412 | 18.0 | 90 | 1.0210 | 0.6 | | 0.0465 | 19.0 | 95 | 0.9965 | 0.6 | | 0.0328 | 20.0 | 100 | 0.9739 | 0.6 | | 0.0289 | 21.0 | 105 | 0.9796 | 0.6 | | 0.0271 | 22.0 | 110 | 0.9968 | 0.6 | | 0.0239 | 23.0 | 115 | 1.0143 | 0.6 | | 0.0201 | 24.0 | 120 | 1.0459 | 0.6 | | 0.0185 | 25.0 | 125 | 1.0698 | 0.6 | | 0.0183 | 26.0 | 130 | 1.0970 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.008311853744089603, 0.030414635315537453, -0.03309013321995735, 0.05022820457816124, 0.04663117229938507, 0.028786543756723404, -0.013650745153427124, -0.021497707813978195, -0.05458822846412659, 0.059862732887268066, 0.015555563382804394, -0.03142737224698067, 0.022084323689341545, 0.037579845637083054, -0.03503522649407387, -0.03713231161236763, -0.020121250301599503, -0.011490817181766033, -0.0423910915851593, 0.0042435540817677975, 0.0023891949094831944, -0.01195814460515976, -0.017945334315299988, 0.015117993578314781, -0.012741686776280403, 0.03897261619567871, -0.010128195397555828, 0.021980518475174904, 0.02431333437561989, -0.05596156418323517, 0.01196536049246788, -0.02512434311211109, -0.039460837841033936, 0.003298893803730607, -0.02605035901069641, -0.0038819957990199327, 0.0031007055658847094, 0.022586582228541374, 0.040396735072135925, 0.038929231464862823, 0.012799692340195179, 0.006626854185014963, -0.007924189791083336, -0.020223356783390045, 0.05896532163023949, -0.009429347701370716, -0.04611973091959953, -0.010998505167663097, 0.0248444601893425, -0.04277673363685608, -0.06360757350921631, -0.053357407450675964, -0.017927033826708794, 0.026908138766884804, -0.012329988181591034, -0.013624993152916431, -0.05941477045416832, 0.01819567009806633, 0.06285081058740616, -0.04051044583320618, -0.029902877286076546, 0.002041616477072239, -0.06296166777610779, -0.0037130885757505894, 0.0221654511988163, -0.025880001485347748, 0.002491641091182828, -0.045836932957172394, 0.01808810606598854, -0.019824909046292305, 0.05447154864668846, -0.020586999133229256, 0.027509503066539764, -0.07063057273626328, -0.023589547723531723, -0.019261978566646576, 0.05778255686163902, 0.06852757185697556, -0.02809801883995533, 0.061167240142822266, 0.025259748101234436, 0.017331568524241447, 0.03485875949263573, -0.025817057117819786, 0.027006667107343674, 0.025197645649313927, -0.055107250809669495, 0.0036461693234741688, 0.005526559893041849, 0.03649617359042168, -0.02960708737373352, -0.03657381609082222, -0.011668429709970951, -0.0315886028110981, -0.015696996822953224, 0.01573817804455757, 0.00868356041610241, 0.0012471183435991406, 0.046280380338430405, 0.02189883403480053, 0.04312410205602646, 0.036647673696279526, -0.03637215495109558, 0.057635292410850525, -0.019673440605401993, 0.008920058608055115, 0.000361184764187783, -0.02212817408144474, -0.042792126536369324, 0.022502688691020012, 0.028447894379496574, -0.016565129160881042, -0.03888433054089546, 0.03826865553855896, -0.0006139323813840747, 0.015129831619560719, 0.0630607157945633, -0.0293913371860981, -0.04048774391412735, -0.02254679426550865, 0.007266840897500515, 0.007967673242092133, -0.002261711750179529, 0.013746475800871849, -0.0661923959851265, -0.013995060697197914, -0.031589750200510025, -0.046872809529304504, -0.028621360659599304, 0.0300921481102705, 0.014985776506364346, 0.06894425302743912, 0.02590162120759487, -0.06363192200660706, -0.003358480054885149, 0.02056417055428028, -0.05427384749054909, 0.04374067112803459, 0.023987414315342903, 0.10914019495248795, -0.0623079277575016, -0.06372677534818649, -0.0040678782388567924, -0.01564309000968933, -0.04512536898255348, 0.0164962001144886, 0.011405998840928078, -0.010198146104812622, -0.010378804057836533, -0.00006811506318626925, 0.05028602108359337, -0.04360237345099449, -0.018443528562784195, 0.06660278886556625, -0.008864149451255798, 0.032818716019392014, -0.05992212891578674, -0.01646513305604458, 0.009852888062596321, -0.023255497217178345, -0.027912743389606476, 0.028230633586645126, -0.0234539732336998, -0.025643426924943924, -0.01900698058307171, -0.03100564144551754, 0.010641459375619888, 0.07133287936449051, -0.003963258117437363, -0.03241854906082153, -0.03074660152196884, 0.022518489509820938, 0.033165205270051956, 0.024556860327720642, -0.027366288006305695, 0.018584901466965675, 0.06234772503376007, 0.026292510330677032, -0.034042589366436005, 0.05387985706329346, 0.010977985337376595, -0.02521631494164467, -0.02648196741938591, 0.02135155349969864, 0.012414336204528809, -0.05087454617023468, 0.04560215398669243, 0.015467794612050056, 0.003644669195637107, -0.05449717864394188, -0.04396508261561394, 0.04262175410985947, -0.010767204686999321, -0.010408148169517517, 0.025002727285027504, 0.013314714655280113, -0.026018882170319557, 0.04332078993320465, -0.02284184657037258, 0.001319306087680161, -0.04356144741177559, -0.013657093979418278, -0.004566889721900225, -0.028744084760546684, 0.013629796914756298, 0.04240700975060463, -0.0031297728419303894, 0.07232856750488281, -0.02529417909681797, 0.012416379526257515, -0.05907188355922699, -0.03870692849159241, 0.009059948846697807, 0.06812148541212082, 0.061744574457407, 0.03910652548074722, 0.0034686734434217215, -0.04502638056874275, 0.034905463457107544, 0.07294324040412903, 0.045814964920282364, 0.001724888919852674, -0.03523765876889229, -0.018488094210624695, 0.04979981854557991, 0.05309465900063515, -0.04989707097411156, -0.02484077587723732, 0.005150952842086554, 0.03876981884241104, -0.012642248533666134, 0.008232948370277882, -0.026541264727711678, 0.03398630768060684, -0.058819856494665146, -0.04714711755514145, 0.03954813629388809, 0.04015960916876793, 0.0078205531463027, 0.029257599264383316, 0.023252947255969048, 0.013966971077024937, 0.040032655000686646, 0.02158074826002121, 0.0138317309319973, -0.055971723049879074, 0.02010401152074337, -0.0041190157644450665, 0.051322951912879944, -0.04746439680457115, 0.03994649276137352, -0.013762527145445347, 0.0005291456473059952, 0.038504816591739655, -0.02655521035194397, 0.04806649312376976, 0.04710305854678154, 0.017958782613277435, -0.03865066543221474, 0.02181929163634777, -0.012804732657968998, 0.027829322963953018, 0.022879721596837044, 0.0027804882265627384, 0.08358091115951538, 0.008090490475296974, 0.046377215534448624, 0.0975036695599556, 0.034089457243680954, 0.025523675605654716, 0.013640702702105045, 0.042556241154670715, 0.021834997460246086, -0.022644611075520515, 0.06330078095197678, -0.05413388833403587, 0.037984106689691544, -0.05098501220345497, 0.006767126265913248, -0.02280476875603199, -0.027063075453042984, 0.0518183708190918, 0.03209517151117325, -0.03463669493794441, 0.0033191076945513487, 0.007711636368185282, -0.01534438319504261, 0.03935785964131355, -0.015006843954324722, 0.006578113883733749, -0.008088485337793827, -0.04295985773205757, -0.0033720461651682854, -0.07475819438695908, -0.03297963738441467, -0.010179674252867699, -0.028813837096095085, -0.01982777938246727, -0.09793552756309509, -0.02441348508000374, -0.060125045478343964, -0.011098239570856094, 0.028410227969288826, 0.011175910010933876, -0.02371516451239586, -0.030009331181645393, 0.017533577978610992, -0.051555220037698746, -0.043573733419179916, -0.03893633931875229, -0.06462744623422623, -0.04280067980289459, -0.07764144241809845, 0.043711449950933456, 0.045961201190948486, 0.013916444964706898, -0.004100356716662645, 0.01401177141815424, 0.014883133582770824, -0.02412710338830948, 0.01903962716460228, 0.060081277042627335, -0.04203822463750839, -0.06879770010709763, 0.009090320207178593, -0.00011060557153541595, 0.005163885653018951, 0.03052077256143093, -0.043327510356903076, 0.09448150545358658, 0.085698202252388, 0.007596632465720177, 0.03618481755256653, -0.002313557779416442, -0.05758937820792198, -0.047180287539958954, -0.033194784075021744, -0.049222681671381, -0.02026423066854477, -0.0436454713344574, -0.059289466589689255, -0.03167376294732094, -0.039875756949186325, -0.005164436995983124, 0.0032035917975008488, 0.020404070615768433, 0.01289041806012392, 0.03604520857334137, 0.020107785239815712, 0.03399026766419411, -0.02160516567528248, -0.044289179146289825, 0.055068228393793106, -0.011855186894536018, 0.016361193731427193, -0.08769042044878006, 0.002235117834061384, 0.028592050075531006, -0.0009973201667889953, 0.021732620894908905, -0.021713776513934135, 0.06506749987602234, 0.002054179785773158, 0.004712250083684921, 0.006159726995974779, -0.009044907055795193, 0.000007671217645111028, -0.012200742959976196, -0.015354164876043797, 0.0070737311616539955, -0.03504219651222229, -0.027438092976808548, -0.020031694322824478, 0.0383111909031868, -0.04765157029032707, -0.047886889427900314, -0.02771901525557041, 0.04397810250520706, 0.054211121052503586, -0.009991087950766087, -0.05155248939990997, -0.012904830276966095, -0.05705618858337402, -0.00904632918536663, 0.014419793151319027, 0.0010103702079504728, 0.005730134900659323, 0.026721810922026634, 0.01741849072277546, -0.012447335757315159, 0.006242433562874794, 0.05743790417909622, 0.06983611732721329, 0.013540705665946007, -0.08207601308822632, 0.0004697565163951367, -0.014888969250023365, 0.014067637734115124, -0.019570086151361465, -0.027105873450636864, -0.022420208901166916, -0.10897022485733032, -0.02665514312684536, 0.001436467282474041, 0.002785616787150502, -0.019997775554656982, 0.040151938796043396, -0.00688841100782156, -0.011127344332635403, 0.00027653915458358824, 0.013448884710669518, 0.04523668438196182, -0.021054904907941818, 0.038618285208940506, -0.017396634444594383, 0.009268470108509064, -0.05545758455991745, 0.03637723624706268, -0.03588273748755455, -0.04097101837396622, 0.007636058144271374, 0.060212574899196625, -0.0057648178189992905, 0.07263700664043427, 0.06869842857122421, 0.049683455377817154, -0.05630236491560936, 0.021434972062706947, 0.08111079037189484, -0.0252968929708004, -0.03820350766181946, -0.004059396684169769, -0.007235305849462748, -0.022232607007026672, 0.02061660960316658, -0.025989769026637077, 0.053697746247053146, 0.03670642524957657, 0.007996547035872936, -0.009341650642454624, -0.016572298482060432, -0.005738803185522556, -0.023155229166150093, -0.05819395184516907, -0.03526968136429787, -0.0010506901890039444, -0.03312084078788757, 0.023468071594834328, 0.025577237829566002, 0.033501036465168, 0.06252840906381607, 0.011919448152184486, -0.049302756786346436, -0.005595239344984293, 0.01528073288500309, 0.021049313247203827, -0.029262688010931015, -0.07286299020051956, -0.04833037033677101, 0.03353804349899292, 0.04833827540278435, -0.02254786528646946, -0.06799538433551788, 0.024560488760471344, 0.050261449068784714, -0.04241326451301575, 0.05168100818991661, -0.02267535775899887, 0.054363615810871124, 0.047436513006687164, -0.010448792949318886, 0.038318268954753876, -0.016674498096108437, -0.006236946675926447, 0.0006244450341910124, 0.040993109345436096, -0.014203798957169056, -0.02592482976615429, -0.05396304652094841, 0.025536993518471718, 0.04423799738287926, 0.03301604464650154, 0.039607755839824677, -0.038269080221652985, -0.027857987210154533, 0.02443927899003029, 0.023981893435120583, -0.04705265909433365, -0.014765484258532524, 0.04485684260725975, 0.038802266120910645, -0.03873022273182869, -0.029250899329781532, -0.02909870445728302, 0.00855870172381401, 0.032750390470027924, 0.000979894190095365, -0.02381429821252823, -0.029877422377467155, 0.04847229644656181, -0.027680234983563423, -0.035695113241672516, -0.07446286082267761, 0.027962518855929375, -0.007512709125876427, -0.037209510803222656, 0.0499880388379097, 0.023824261501431465, 0.024392863735556602, 0.07312286645174026, 0.013534258119761944, 0.005151077639311552, -0.045296456664800644, 0.04997718706727028, -0.018492890521883965, -0.01072611566632986, -0.0017987083410844207, -0.0414002500474453, -0.02582092583179474, -0.012077651917934418, -0.04800090938806534, -0.029988273978233337, -0.02234453521668911, 0.02467294968664646, -0.005312737543135881, -0.007065360434353352, -0.002349846065044403, 0.04007134586572647, -0.00420334143564105, -0.03675771504640579, -0.038533344864845276, -0.015337854623794556, -0.06345557421445847, -0.056169260293245316, -0.005561850033700466, 0.014099902473390102, 0.03474672511219978, 0.03682488203048706, 0.019160280004143715, 0.013566051609814167, 0.005415012594312429, -0.020657295361161232, 0.01572604477405548, 0.019730884581804276, -0.04902031645178795, -0.025761963799595833, 0.03531502187252045, 0.013340395875275135, 0.02859649248421192, -0.027134381234645844, 0.04730762913823128, 0.011725284159183502, -0.014111571945250034, -0.03647035360336304, 0.018898947164416313, 0.035053618252277374, -0.0758824422955513, -0.056328997015953064, -0.013926301151514053, -0.027277056127786636, 0.03255966305732727, -0.02134844660758972, -0.0024163941852748394, 0.02852238528430462, 0.005506389308720827, 0.03536151722073555, -0.027865540236234665, -0.02008693292737007, 0.036431748420000076, -0.005052108317613602, 0.037003371864557266, -0.03941931948065758, 0.05565166473388672, -0.03194557502865791, 0.01522730104625225, -0.022944718599319458, -0.004538342822343111, -0.04947397857904434, 0.029906252399086952, -0.012480692937970161, -0.024749189615249634, -0.002187041100114584, 0.03178146481513977, -0.007536654826253653, 0.014394447207450867, -0.019215242937207222, 0.02056722529232502, -0.033166006207466125, 0.07578206062316895, -0.03904188424348831, 0.02237941510975361, -0.052869170904159546, 0.023282401263713837, -0.007463816553354263, 0.014016352593898773, -0.002354345517233014, -0.020019331946969032, 0.04959998279809952, 0.03734433278441429, 0.028622662648558617, 0.039129506796598434, -0.005180454812943935, -0.008565714582800865, -0.0030763004906475544, -0.06379704177379608, -0.020783808082342148, 0.011810404248535633, 0.022344302386045456, -0.01611623354256153, 0.04962049052119255, 0.027149178087711334, -0.061089709401130676, -0.07741118222475052, 0.026138368993997574, 0.026832709088921547, 0.010566286742687225, 0.02418205700814724, 0.025252338498830795, 0.023677723482251167, 0.03807703033089638, -0.010191632434725761, -0.024845408275723457, -0.0069226291961967945, -0.05818784981966019, 0.02160702273249626, -0.004730988759547472, 0.016969123855233192, 0.02852237969636917, -0.04871201142668724, -0.03426826000213623, 0.04057428613305092, 0.026663659140467644, 0.008870238438248634, -0.006317076273262501, -0.060694288462400436, 0.021518254652619362, -0.00411876430734992, -0.0426379032433033, 0.02358241192996502, -0.0012817505048587918, -0.022141238674521446, 0.05339027941226959, 0.0033804592676460743, -0.00022515098680742085, 0.05052124708890915, 0.003314027562737465, -0.022275635972619057, 0.06281745433807373, -0.04249314218759537, -0.005523110274225473, 0.046088382601737976, -0.06267206370830536, -0.008999982848763466, -0.06109009310603142, 0.07095442712306976, -0.07070531696081161, 0.03560899570584297, 0.06580894440412521, -0.010526282712817192, 0.027124343439936638, -0.05914873257279396, -0.0626538097858429, 0.012321129441261292, -0.03443443775177002, 0.059230268001556396, 0.01550915464758873, -0.06023094058036804, 0.05808531120419502, 0.02228056825697422, -0.04968501999974251, 0.021808138117194176, 0.03959831967949867, 0.03933155536651611, 0.01800270937383175, 0.04231138527393341, -0.04297710955142975, -0.02686794474720955, -0.047258660197257996, 0.011734561063349247, -0.06243792921304703, -0.013241128996014595, 0.009512212127447128, -0.018052401021122932, -0.009014374576508999, 0.030524469912052155, -0.02169252373278141, -0.015931494534015656, 0.04414093494415283, -0.049420543015003204, -0.04537723585963249, -0.005749803502112627, -0.003591635962948203, -0.04893925040960312, -0.013881086371839046, -0.029977621510624886, -0.0016174167394638062, 0.01025046594440937, 0.003127108095213771, -0.020048698410391808, -0.025206735357642174, 0.018333280459046364, -0.04064237326383591, -0.03543495759367943, 0.051985468715429306, -0.016263257712125778, -0.02342376299202442, 0.032687172293663025, 0.02603556215763092, 0.0014683514600619674, 0.026093864813447, -0.015787120908498764, 0.03421928733587265, -0.058098211884498596, -0.026263583451509476, 0.026424868032336235, 0.004215354565531015, 0.016797572374343872, 0.00923886802047491, 0.02121906168758869, 0.05505678802728653, 0.026362834498286247, 0.006986523047089577, -0.037851206958293915, -0.0384235717356205, 0.024894794449210167, -0.04153106361627579, 0.020336078479886055, -0.00037870349478907883, -0.05041079968214035, -0.01899278350174427, -0.0006486403290182352, -0.0320747047662735, 0.04883609339594841, -0.05769888684153557, -0.006712327245622873, 0.05218293517827988, -0.02891238033771515, -0.0574035607278347, -0.08707699179649353, -0.017267616465687752, -0.04762163758277893, 0.005147727206349373, 0.04648739472031593, -0.03722365200519562, 0.03829212859272957, -0.04880678653717041, -0.037273649126291275, 0.032617997378110886, 0.05238675698637962, -0.05900120735168457, 0.05822918564081192, 0.05174688994884491, -0.06354240328073502, 0.00853665079921484, 0.006762335542589426, -0.04845401272177696, -0.027882123365998268, 0.028935933485627174, -0.0004960682708770037, 0.02425471879541874, 0.030048592016100883, -0.04833719879388809, -0.022783543914556503, -0.06918594986200333, -0.028411736711859703, -0.06976675242185593, 0.007301179226487875, 0.05072003975510597 ]
Declan/WallStreetJournal_model_v1
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-6 results: [] --- <!-- 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__hate_speech_offensive__train-8-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1275 - Accuracy: 0.3795 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.11 | 1.0 | 5 | 1.1184 | 0.0 | | 1.0608 | 2.0 | 10 | 1.1227 | 0.0 | | 1.0484 | 3.0 | 15 | 1.1009 | 0.2 | | 0.9614 | 4.0 | 20 | 1.1009 | 0.2 | | 0.8545 | 5.0 | 25 | 1.0772 | 0.2 | | 0.8241 | 6.0 | 30 | 1.0457 | 0.2 | | 0.708 | 7.0 | 35 | 1.0301 | 0.4 | | 0.5045 | 8.0 | 40 | 1.0325 | 0.4 | | 0.4175 | 9.0 | 45 | 1.0051 | 0.4 | | 0.3446 | 10.0 | 50 | 0.9610 | 0.4 | | 0.2851 | 11.0 | 55 | 0.9954 | 0.4 | | 0.1808 | 12.0 | 60 | 1.0561 | 0.4 | | 0.1435 | 13.0 | 65 | 1.0218 | 0.4 | | 0.1019 | 14.0 | 70 | 1.0254 | 0.4 | | 0.0908 | 15.0 | 75 | 0.9935 | 0.4 | | 0.0591 | 16.0 | 80 | 1.0090 | 0.4 | | 0.0512 | 17.0 | 85 | 1.0884 | 0.4 | | 0.0397 | 18.0 | 90 | 1.2732 | 0.4 | | 0.039 | 19.0 | 95 | 1.2979 | 0.6 | | 0.0325 | 20.0 | 100 | 1.2705 | 0.4 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009515375830233097, 0.029348118230700493, -0.034082166850566864, 0.05215752497315407, 0.046906501054763794, 0.02849966660141945, -0.012612055987119675, -0.020213721320033073, -0.05553894117474556, 0.059891846030950546, 0.014298617839813232, -0.03155728802084923, 0.02216176874935627, 0.03677830472588539, -0.03488675132393837, -0.03680332750082016, -0.02109743282198906, -0.011099004186689854, -0.04225854575634003, 0.004245823714882135, 0.0022618358489125967, -0.013002869673073292, -0.017044248059391975, 0.01539517380297184, -0.013584893196821213, 0.03798586502671242, -0.012433024123311043, 0.0216379277408123, 0.02509995736181736, -0.055643778294324875, 0.011747339740395546, -0.025578567758202553, -0.039145685732364655, 0.00423774728551507, -0.026743894442915916, -0.0037342237774282694, 0.0027338156942278147, 0.02341269701719284, 0.04154623672366142, 0.03821782022714615, 0.013197868131101131, 0.005144706927239895, -0.007981967180967331, -0.019497239962220192, 0.05834628641605377, -0.008509734645485878, -0.04583786427974701, -0.010822474025189877, 0.023929597809910774, -0.04315834119915962, -0.06277311593294144, -0.052167557179927826, -0.01809614896774292, 0.026960507035255432, -0.011086256243288517, -0.013145987875759602, -0.05844402685761452, 0.01813843473792076, 0.06338880211114883, -0.039315592497587204, -0.029683591797947884, 0.001968234544619918, -0.06307151168584824, -0.004004634916782379, 0.02329839952290058, -0.027616605162620544, 0.002607147442176938, -0.04565732181072235, 0.01715070568025112, -0.01957111991941929, 0.054713174700737, -0.0207357220351696, 0.02834058552980423, -0.0705963596701622, -0.024441422894597054, -0.01945510320365429, 0.059198662638664246, 0.06862088292837143, -0.027307473123073578, 0.06091313809156418, 0.024080513045191765, 0.018158284947276115, 0.03400140255689621, -0.025686627253890038, 0.027080249041318893, 0.026593586429953575, -0.05651729181408882, 0.0049172136932611465, 0.005914350040256977, 0.037121403962373734, -0.030364548787474632, -0.037714991718530655, -0.012562709860503674, -0.031425829976797104, -0.014817047864198685, 0.01609000936150551, 0.008123736828565598, 0.0027354401536285877, 0.04861433431506157, 0.0230015367269516, 0.04342139884829521, 0.03601245954632759, -0.03763424605131149, 0.05709952116012573, -0.018981466069817543, 0.006860575173050165, -0.00042504072189331055, -0.02286478690803051, -0.04261910915374756, 0.021017875522375107, 0.028799476101994514, -0.017328627407550812, -0.038646966218948364, 0.03843863308429718, -0.0002528966579120606, 0.015101884491741657, 0.06348153948783875, -0.029526203870773315, -0.0407470278441906, -0.024311698973178864, 0.007367621175944805, 0.007751312106847763, -0.0023025593254715204, 0.013899686746299267, -0.0670621246099472, -0.014069128781557083, -0.031504541635513306, -0.04606519266963005, -0.02843787521123886, 0.029619941487908363, 0.014597506262362003, 0.0701732486486435, 0.025150561705231667, -0.06199100241065025, -0.0024319549556821585, 0.02193809673190117, -0.05419813096523285, 0.04263883829116821, 0.024921245872974396, 0.10913853347301483, -0.06401566416025162, -0.06260884553194046, -0.00437510758638382, -0.016205064952373505, -0.04377344250679016, 0.016608739271759987, 0.011283351108431816, -0.010184838436543941, -0.010304569266736507, -0.00039105291943997145, 0.051168251782655716, -0.04428089037537575, -0.021290382370352745, 0.06710411608219147, -0.009601430036127567, 0.033264972269535065, -0.06056814640760422, -0.015250295400619507, 0.01085410825908184, -0.023693379014730453, -0.027636157348752022, 0.028091678395867348, -0.023738007992506027, -0.025845017284154892, -0.018803302198648453, -0.030748775228857994, 0.009488925337791443, 0.07230478525161743, -0.004422478843480349, -0.032735567539930344, -0.03047056868672371, 0.02398291416466236, 0.03234872967004776, 0.023761939257383347, -0.028626935556530952, 0.018616650253534317, 0.06351350992918015, 0.02609415166079998, -0.03485584259033203, 0.05375249683856964, 0.010385619476437569, -0.02649584971368313, -0.026976803317666054, 0.022040441632270813, 0.010470641776919365, -0.05042087659239769, 0.04586437717080116, 0.014090894721448421, 0.0023641244042664766, -0.054839298129081726, -0.04521043971180916, 0.04084388166666031, -0.010417764075100422, -0.009389814920723438, 0.027562730014324188, 0.013504913076758385, -0.026149818673729897, 0.042676813900470734, -0.021943168714642525, -0.00003393680162844248, -0.043080318719148636, -0.01508832722902298, -0.0050095911137759686, -0.0289339367300272, 0.014340510591864586, 0.043181516230106354, -0.0028338758274912834, 0.07319402694702148, -0.023427972570061684, 0.01061331294476986, -0.05707208439707756, -0.0385190024971962, 0.009165225550532341, 0.06707684695720673, 0.061989665031433105, 0.03989851847290993, 0.004773803520947695, -0.04486346244812012, 0.034799959510564804, 0.07352431118488312, 0.045909371227025986, 0.001554521033540368, -0.03561463579535484, -0.017571259289979935, 0.04861843213438988, 0.05232973024249077, -0.04944927245378494, -0.02512182481586933, 0.004813927225768566, 0.038623496890068054, -0.012618182227015495, 0.008111978881061077, -0.02829500287771225, 0.03399398550391197, -0.05837003514170647, -0.048978354781866074, 0.04016575589776039, 0.041113290935754776, 0.006618317682296038, 0.028751475736498833, 0.024440161883831024, 0.013388578779995441, 0.040759939700365067, 0.0226521547883749, 0.014967081137001514, -0.05672720447182655, 0.01835613138973713, -0.0037114766892045736, 0.0494556799530983, -0.047152355313301086, 0.03922449052333832, -0.013521923683583736, 0.0009215311729349196, 0.03828928619623184, -0.027134673669934273, 0.04946913942694664, 0.04779045656323433, 0.01718360185623169, -0.03750035911798477, 0.021210927516222, -0.012729241512715816, 0.027669858187437057, 0.02156819775700569, 0.002373535418882966, 0.0840928703546524, 0.009188255295157433, 0.04701107740402222, 0.09699615091085434, 0.033795155584812164, 0.026425184682011604, 0.01349669974297285, 0.04277777299284935, 0.021405596286058426, -0.02130456641316414, 0.061434730887413025, -0.054141171276569366, 0.038945522159338, -0.05134166404604912, 0.006654278840869665, -0.02079644985496998, -0.027012066915631294, 0.05273348465561867, 0.03230453282594681, -0.03343021869659424, 0.003743106499314308, 0.007523848209530115, -0.015058396384119987, 0.038751859217882156, -0.014670614153146744, 0.007206696085631847, -0.00847488734871149, -0.041901055723428726, -0.0023207745980471373, -0.07579805701971054, -0.03303670510649681, -0.007494955789297819, -0.029095835983753204, -0.020604683086276054, -0.09611276537179947, -0.024200433865189552, -0.0596659854054451, -0.009563528001308441, 0.028120428323745728, 0.010180850513279438, -0.02406316250562668, -0.030812660232186317, 0.018604949116706848, -0.05137813836336136, -0.04449467360973358, -0.038104020059108734, -0.06473387032747269, -0.042559072375297546, -0.0765831395983696, 0.04309532418847084, 0.04644206538796425, 0.012059560976922512, -0.0054398528300225735, 0.013388916850090027, 0.015223197638988495, -0.023758629336953163, 0.018997667357325554, 0.06057969853281975, -0.04138326644897461, -0.06812664866447449, 0.007599251344799995, -0.0015056176343932748, 0.006527683697640896, 0.03007347881793976, -0.04308700934052467, 0.09534902125597, 0.08611186593770981, 0.007851862348616123, 0.035382021218538284, -0.00305995624512434, -0.05741184577345848, -0.047535695135593414, -0.03354821354150772, -0.050471000373363495, -0.02040243148803711, -0.043870676308870316, -0.06079386547207832, -0.031008655205368996, -0.03950430452823639, -0.004739124793559313, 0.0030338421929627657, 0.02115068957209587, 0.012463684193789959, 0.03513692319393158, 0.019625922664999962, 0.03301198035478592, -0.021651042625308037, -0.04472469538450241, 0.054301708936691284, -0.013008241541683674, 0.01804034784436226, -0.08767342567443848, 0.00281823449768126, 0.029333041980862617, -0.0015548390801995993, 0.02080569788813591, -0.023473592475056648, 0.06469502300024033, 0.0033562553580850363, 0.005552303045988083, 0.006639938335865736, -0.008480860851705074, 0.0014583582524210215, -0.012590199708938599, -0.015025610104203224, 0.0064751822501420975, -0.03516549989581108, -0.025976063683629036, -0.020547037944197655, 0.038158118724823, -0.048344872891902924, -0.04737374186515808, -0.027264917269349098, 0.04433579370379448, 0.05484335869550705, -0.009198960848152637, -0.05139967054128647, -0.012332048267126083, -0.055800992995500565, -0.009842528961598873, 0.012566144578158855, 0.00032465567346662283, 0.005266957450658083, 0.026858549565076828, 0.01734783686697483, -0.012731335125863552, 0.005325448699295521, 0.05765142664313316, 0.07168255001306534, 0.014272569678723812, -0.08218622207641602, -0.0005447104922495782, -0.013976824469864368, 0.015773607417941093, -0.019559845328330994, -0.025325169786810875, -0.022071899846196175, -0.10896722227334976, -0.02776348404586315, -0.000035299613955430686, 0.002314080484211445, -0.01934625580906868, 0.03951733559370041, -0.006841585040092468, -0.010907253250479698, 0.0003337812377139926, 0.013643448241055012, 0.044379301369190216, -0.02070756070315838, 0.039290424436330795, -0.018208691850304604, 0.00892556644976139, -0.05627690255641937, 0.03676554560661316, -0.03731158748269081, -0.043001219630241394, 0.007609454449266195, 0.06070905178785324, -0.007788962218910456, 0.07253599166870117, 0.06999260187149048, 0.04939631000161171, -0.05651414021849632, 0.0203915573656559, 0.07975738495588303, -0.025898801162838936, -0.03718823567032814, -0.003491191193461418, -0.007120228838175535, -0.02249886840581894, 0.020360330119729042, -0.02550458163022995, 0.0541529655456543, 0.03584399074316025, 0.00783922616392374, -0.009483001194894314, -0.01692541502416134, -0.005540612153708935, -0.02343621477484703, -0.05724256485700607, -0.03516703099012375, -0.0020325903315097094, -0.03270702064037323, 0.023891452699899673, 0.026091499254107475, 0.03309260308742523, 0.06164058670401573, 0.012308361008763313, -0.049581460654735565, -0.004216611385345459, 0.016200896352529526, 0.020804323256015778, -0.030496152117848396, -0.07192940264940262, -0.04861666262149811, 0.03395991027355194, 0.048355523496866226, -0.021968664601445198, -0.06850423663854599, 0.024498358368873596, 0.04794146493077278, -0.04154084995388985, 0.051597677171230316, -0.022227097302675247, 0.0536903478205204, 0.04772309958934784, -0.011671748012304306, 0.03810397908091545, -0.016102930530905724, -0.006479574833065271, 0.0015989687526598573, 0.04117470979690552, -0.013521564193069935, -0.025953538715839386, -0.052708595991134644, 0.024662243202328682, 0.044914502650499344, 0.03368788957595825, 0.038959383964538574, -0.03891565650701523, -0.026487812399864197, 0.024110199883580208, 0.024620067328214645, -0.04684777557849884, -0.016469916328787804, 0.043707042932510376, 0.039490848779678345, -0.039679981768131256, -0.02947543002665043, -0.02885177731513977, 0.007345716468989849, 0.031901173293590546, 0.0005614638212136924, -0.0239828173071146, -0.03023252822458744, 0.04764493554830551, -0.02758718654513359, -0.03495321795344353, -0.07565703243017197, 0.027892913669347763, -0.005989566911011934, -0.036532506346702576, 0.05019817501306534, 0.023688776418566704, 0.02560628019273281, 0.07292152941226959, 0.012575438246130943, 0.005692346952855587, -0.044331323355436325, 0.04923681914806366, -0.018693406134843826, -0.011227131821215153, -0.0004996788338758051, -0.04126979410648346, -0.025000981986522675, -0.01222454197704792, -0.04815981909632683, -0.030335336923599243, -0.02209463343024254, 0.024391833692789078, -0.005211389157921076, -0.007159823086112738, -0.00300406850874424, 0.0385487824678421, -0.003819884965196252, -0.03678560256958008, -0.03847647085785866, -0.015865858644247055, -0.06360848248004913, -0.05572275072336197, -0.003583825659006834, 0.014258140698075294, 0.03387327119708061, 0.036366742104291916, 0.019138770177960396, 0.013797328807413578, 0.006948291324079037, -0.020534241572022438, 0.01666233502328396, 0.01978762075304985, -0.04950215667486191, -0.02506973221898079, 0.03511390462517738, 0.013142082840204239, 0.028323905542492867, -0.027736155316233635, 0.046800803393125534, 0.010896781459450722, -0.015626968815922737, -0.03607413172721863, 0.01982167549431324, 0.03528027608990669, -0.07633067667484283, -0.0561109259724617, -0.014157447963953018, -0.02738453634083271, 0.03251437842845917, -0.01964416913688183, -0.0014701343607157469, 0.02802938222885132, 0.006493440829217434, 0.03537340089678764, -0.02719433605670929, -0.020010801032185555, 0.03638783469796181, -0.004999259486794472, 0.036961011588573456, -0.040377479046583176, 0.05529690533876419, -0.03262102231383324, 0.01573650911450386, -0.021995481103658676, -0.004008262883871794, -0.05110711231827736, 0.029913123697042465, -0.012146588414907455, -0.02447075955569744, -0.00188222446013242, 0.030982617288827896, -0.00789905246347189, 0.013648691587150097, -0.01895395666360855, 0.021183375269174576, -0.03363049402832985, 0.07516942173242569, -0.03956564515829086, 0.022296717390418053, -0.05205283313989639, 0.024186303839087486, -0.008547397330403328, 0.015074629336595535, -0.0025698973331600428, -0.019823770970106125, 0.04914597049355507, 0.037163253873586655, 0.028454914689064026, 0.039801884442567825, -0.004116876982152462, -0.008997376076877117, -0.0025270332116633654, -0.06361031532287598, -0.019055400043725967, 0.011356327682733536, 0.022554000839591026, -0.015373715199530125, 0.0504542700946331, 0.027826139703392982, -0.06107652187347412, -0.07780761271715164, 0.027165217325091362, 0.027502581477165222, 0.01028964202851057, 0.02286876179277897, 0.02635614015161991, 0.022608449682593346, 0.03847790136933327, -0.009960581548511982, -0.025837423279881477, -0.008866101503372192, -0.05871499702334404, 0.020721009001135826, -0.005665459670126438, 0.016356224194169044, 0.029657931998372078, -0.047963447868824005, -0.03479117900133133, 0.04124454781413078, 0.026976047083735466, 0.00950202252715826, -0.00649542361497879, -0.06011725217103958, 0.020416205748915672, -0.004665468819439411, -0.0420290008187294, 0.022677600383758545, -0.0029162319842725992, -0.022434620186686516, 0.05393632501363754, 0.00393514521420002, -0.00020909099839627743, 0.04971977323293686, 0.003329601837322116, -0.02155339904129505, 0.06214360520243645, -0.041858576238155365, -0.0045415558852255344, 0.04730270802974701, -0.06379365921020508, -0.009975528344511986, -0.061611074954271317, 0.0699709877371788, -0.0711107850074768, 0.03607460856437683, 0.0657963976264, -0.010905356146395206, 0.02787887118756771, -0.06143029034137726, -0.06197192892432213, 0.01209063921123743, -0.03442806005477905, 0.05766473710536957, 0.01580350659787655, -0.05897841230034828, 0.057297222316265106, 0.022135145962238312, -0.04996662214398384, 0.02204587683081627, 0.040701963007450104, 0.03742223605513573, 0.018221881240606308, 0.04171523079276085, -0.04269975423812866, -0.027820633724331856, -0.046460215002298355, 0.010552980937063694, -0.06048998609185219, -0.012321262620389462, 0.008971327915787697, -0.017672639340162277, -0.007492670323699713, 0.02978864125907421, -0.021486859768629074, -0.015731465071439743, 0.043588992208242416, -0.048648104071617126, -0.04718334227800369, -0.005824380554258823, -0.0027581127360463142, -0.04909840226173401, -0.01316783856600523, -0.029842622578144073, -0.00351260625757277, 0.009833083488047123, 0.00357989314943552, -0.01945599913597107, -0.02569708414375782, 0.018354611471295357, -0.04081323742866516, -0.03651764988899231, 0.0522327795624733, -0.015942029654979706, -0.021912645548582077, 0.0319841243326664, 0.026717472821474075, 0.00048407111898995936, 0.026463204994797707, -0.015716126188635826, 0.033416084945201874, -0.0573991984128952, -0.02733032777905464, 0.025842852890491486, 0.0033454967197030783, 0.018424540758132935, 0.010255273431539536, 0.021038169041275978, 0.05507884547114372, 0.026272522285580635, 0.0075605749152600765, -0.03890763968229294, -0.03788904473185539, 0.023626163601875305, -0.042131710797548294, 0.018967943266034126, 0.0010989552829414606, -0.04972106218338013, -0.018727775663137436, -0.0013951226137578487, -0.032128479331731796, 0.04887905716896057, -0.05679142102599144, -0.007040451746433973, 0.05227380245923996, -0.030211763456463814, -0.05814448744058609, -0.08700291067361832, -0.01693321391940117, -0.04677831381559372, 0.005573900416493416, 0.04605564475059509, -0.036786239594221115, 0.03762992098927498, -0.048762790858745575, -0.03578970208764076, 0.031587664037942886, 0.0532955527305603, -0.058631401509046555, 0.05876980721950531, 0.05276118218898773, -0.0639064833521843, 0.008528752252459526, 0.006416093558073044, -0.048525940626859665, -0.027661316096782684, 0.029402952641248703, 0.000004153482223046012, 0.025322988629341125, 0.030671795830130577, -0.048955339938402176, -0.022065982222557068, -0.07068607211112976, -0.02895868569612503, -0.07119574397802353, 0.007351789623498917, 0.04987836256623268 ]
Declan/WallStreetJournal_model_v2
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-7 results: [] --- <!-- 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__hate_speech_offensive__train-8-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1206 - Accuracy: 0.0555 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1186 | 1.0 | 5 | 1.1631 | 0.0 | | 1.058 | 2.0 | 10 | 1.1986 | 0.0 | | 1.081 | 3.0 | 15 | 1.2111 | 0.0 | | 1.0118 | 4.0 | 20 | 1.2373 | 0.0 | | 0.9404 | 5.0 | 25 | 1.2645 | 0.0 | | 0.9146 | 6.0 | 30 | 1.3258 | 0.0 | | 0.8285 | 7.0 | 35 | 1.3789 | 0.0 | | 0.6422 | 8.0 | 40 | 1.3783 | 0.0 | | 0.6156 | 9.0 | 45 | 1.3691 | 0.0 | | 0.5321 | 10.0 | 50 | 1.3693 | 0.0 | | 0.4504 | 11.0 | 55 | 1.4000 | 0.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.0098088588565588, 0.030648432672023773, -0.03492404520511627, 0.051940299570560455, 0.048033520579338074, 0.029071232303977013, -0.012683829292654991, -0.021254094317555428, -0.055406905710697174, 0.0606716088950634, 0.013622731901705265, -0.03139776736497879, 0.022078804671764374, 0.03705037385225296, -0.03392008692026138, -0.03743382915854454, -0.020836425945162773, -0.010585904121398926, -0.04230703413486481, 0.004435011185705662, 0.0026594074442982674, -0.013347633183002472, -0.016384100541472435, 0.013349184766411781, -0.013542589731514454, 0.03779885545372963, -0.01211269199848175, 0.022241270169615746, 0.025651579722762108, -0.054921071976423264, 0.01211391482502222, -0.024320879951119423, -0.03948795422911644, 0.0043382043950259686, -0.027311034500598907, -0.004946657456457615, 0.002511129481717944, 0.02397504635155201, 0.040563326328992844, 0.03884144127368927, 0.012372984550893307, 0.006594111677259207, -0.007611102890223265, -0.01878894306719303, 0.05825827643275261, -0.009290301240980625, -0.0448271818459034, -0.009877451695501804, 0.024320969358086586, -0.04100605472922325, -0.0626702755689621, -0.05208217352628708, -0.018375877290964127, 0.027756337076425552, -0.010980882681906223, -0.012812847271561623, -0.060097143054008484, 0.018305322155356407, 0.0627625361084938, -0.03949989378452301, -0.029200756922364235, 0.0015942821046337485, -0.06308217346668243, -0.004127759952098131, 0.02276129089295864, -0.02699645794928074, 0.003043021308258176, -0.04574340954422951, 0.01790977083146572, -0.019810056313872337, 0.05483489856123924, -0.022110596299171448, 0.028418023139238358, -0.0717163160443306, -0.022971414029598236, -0.02002725750207901, 0.05912136286497116, 0.06942543387413025, -0.02639831230044365, 0.061436284333467484, 0.02314610593020916, 0.017647339031100273, 0.03272680193185806, -0.02452629618346691, 0.026618489995598793, 0.0267136562615633, -0.05646399036049843, 0.005030046682804823, 0.005793693941086531, 0.037421900779008865, -0.030531195923686028, -0.03767823800444603, -0.013076636008918285, -0.031049922108650208, -0.014377541840076447, 0.016124708577990532, 0.008602581918239594, 0.002819439861923456, 0.0475689135491848, 0.022241750732064247, 0.041193436831235886, 0.03560108318924904, -0.037543222308158875, 0.057557642459869385, -0.01965443231165409, 0.00736142136156559, -0.0006897973944433033, -0.02236361801624298, -0.042416613548994064, 0.020092671737074852, 0.02921423502266407, -0.017962537705898285, -0.03824993595480919, 0.03924541175365448, 0.00011185566836502403, 0.015384270809590816, 0.06365994364023209, -0.029027707874774933, -0.04007461667060852, -0.02511490322649479, 0.007023082114756107, 0.00827566534280777, -0.0028149804566055536, 0.014047975651919842, -0.06701727956533432, -0.013946021907031536, -0.03165658935904503, -0.04645110294222832, -0.027865467593073845, 0.029784340411424637, 0.013517928309738636, 0.06850486993789673, 0.02556762471795082, -0.06192772462964058, -0.0031915614381432533, 0.021411456167697906, -0.05442121997475624, 0.04265247657895088, 0.0248282290995121, 0.10846734791994095, -0.06401917338371277, -0.06333991140127182, -0.004993096925318241, -0.015985585749149323, -0.04429953545331955, 0.01647999882698059, 0.011329359374940395, -0.010065757669508457, -0.009962648153305054, 0.00043668935541063547, 0.050574373453855515, -0.04399476572871208, -0.0214712955057621, 0.06775019317865372, -0.010286121629178524, 0.033826638013124466, -0.06043858826160431, -0.014873187988996506, 0.011557450518012047, -0.023220177739858627, -0.02863047830760479, 0.028681349009275436, -0.023559601977467537, -0.024971649050712585, -0.01879853941500187, -0.030669793486595154, 0.009264461696147919, 0.07201623171567917, -0.0038209189660847187, -0.032107945531606674, -0.029484286904335022, 0.02377033792436123, 0.031994275748729706, 0.02544446289539337, -0.028167296200990677, 0.018027642741799355, 0.06329680979251862, 0.025563405826687813, -0.03539356589317322, 0.05266902223229408, 0.0113079734146595, -0.025197451934218407, -0.026211664080619812, 0.02203829027712345, 0.009751182980835438, -0.0504278689622879, 0.045844316482543945, 0.013226421549916267, 0.002073898445814848, -0.05537998676300049, -0.04483230784535408, 0.04176746681332588, -0.009106781333684921, -0.010401117615401745, 0.027902953326702118, 0.01418275199830532, -0.024247581139206886, 0.04273342713713646, -0.022005688399076462, 0.0006807526224292815, -0.042752496898174286, -0.014261803589761257, -0.0051102908328175545, -0.028697092086076736, 0.015447803772985935, 0.04284900426864624, -0.0029481162782758474, 0.07369071245193481, -0.02394833415746689, 0.01099325716495514, -0.05690719559788704, -0.03836572915315628, 0.010220321826636791, 0.06762385368347168, 0.061570629477500916, 0.040183424949645996, 0.0057938359677791595, -0.04559645056724548, 0.03590238094329834, 0.07272360473871231, 0.04484749212861061, 0.000826544186566025, -0.03592178225517273, -0.018315277993679047, 0.048359464854002, 0.054199472069740295, -0.05027708038687706, -0.02433674968779087, 0.0039635817520320415, 0.038485776633024216, -0.012751005589962006, 0.007665261160582304, -0.028618084266781807, 0.0350382998585701, -0.05728990584611893, -0.0485788956284523, 0.04016636684536934, 0.0410250686109066, 0.007330453023314476, 0.029429353773593903, 0.025026263669133186, 0.013015308417379856, 0.041487909853458405, 0.022180935367941856, 0.013971787877380848, -0.05602503567934036, 0.01817025989294052, -0.0035426905378699303, 0.04977765306830406, -0.04776962473988533, 0.03882721811532974, -0.013484670780599117, 0.0010951717849820852, 0.03890591487288475, -0.027816439047455788, 0.05048419535160065, 0.048486147075891495, 0.017634127289056778, -0.03745828941464424, 0.021161001175642014, -0.012847417034208775, 0.02733633667230606, 0.02205708436667919, 0.0025047799572348595, 0.083439402282238, 0.008977253921329975, 0.047867052257061005, 0.09735915064811707, 0.0348174162209034, 0.02584981918334961, 0.012347264215350151, 0.04145706444978714, 0.020775534212589264, -0.02136142924427986, 0.06081725284457207, -0.05318079888820648, 0.039213843643665314, -0.05088597536087036, 0.00572210643440485, -0.020633887499570847, -0.02599455788731575, 0.051705874502658844, 0.03158367797732353, -0.03482620045542717, 0.003468722803518176, 0.00826446432620287, -0.01475062221288681, 0.038538213819265366, -0.014968977309763432, 0.007515721023082733, -0.006918761413544416, -0.04157700389623642, -0.003227964276447892, -0.07536216825246811, -0.033202674239873886, -0.008441322483122349, -0.02853868529200554, -0.02104358747601509, -0.09669139981269836, -0.022355029359459877, -0.06029277294874191, -0.00970093160867691, 0.027996953576803207, 0.009804245084524155, -0.023855039849877357, -0.03036327473819256, 0.019347578287124634, -0.05151103809475899, -0.043711088597774506, -0.038198910653591156, -0.06346779316663742, -0.042719509452581406, -0.07626567035913467, 0.041969798505306244, 0.04698353260755539, 0.011867471970617771, -0.003902476280927658, 0.0129613121971488, 0.014533942565321922, -0.02271738275885582, 0.01872250996530056, 0.061266880482435226, -0.04132357984781265, -0.06726180016994476, 0.008456233888864517, -0.0028338697738945484, 0.006107176188379526, 0.030486539006233215, -0.04296889901161194, 0.09470763057470322, 0.08584628999233246, 0.0072409892454743385, 0.03493620082736015, -0.0041846889071166515, -0.05794527009129524, -0.04742444306612015, -0.03367238864302635, -0.05053280293941498, -0.020113807171583176, -0.042896006256341934, -0.06116567179560661, -0.030382279306650162, -0.03797903284430504, -0.004120565485209227, 0.003726555733010173, 0.02076631411910057, 0.013811638578772545, 0.03460165113210678, 0.019854756072163582, 0.034217726439237595, -0.0217574629932642, -0.04510848969221115, 0.05494670942425728, -0.013587811961770058, 0.017576057463884354, -0.0875815600156784, 0.002652441617101431, 0.028895581141114235, -0.000949274399317801, 0.020149877294898033, -0.023227833211421967, 0.06556842476129532, 0.003246651729568839, 0.004913125187158585, 0.006116125266999006, -0.009389285929501057, 0.0006549847894348204, -0.011138261295855045, -0.0147860087454319, 0.006602123845368624, -0.03487606346607208, -0.026752030476927757, -0.020228281617164612, 0.03802405297756195, -0.04837489128112793, -0.04720247536897659, -0.028031254187226295, 0.044500987976789474, 0.05485651269555092, -0.007917500101029873, -0.0524040050804615, -0.012474263086915016, -0.05562123283743858, -0.009739037603139877, 0.014768708497285843, 0.0015574514400213957, 0.006720503326505423, 0.027512410655617714, 0.017748968675732613, -0.012606573291122913, 0.005068357102572918, 0.057506050914525986, 0.0718773603439331, 0.013269870541989803, -0.08229505270719528, -0.0009237586054950953, -0.014214101247489452, 0.015238053165376186, -0.020133722573518753, -0.02611776627600193, -0.022710144519805908, -0.10998980700969696, -0.026964912191033363, 0.0003523193299770355, 0.002322970889508724, -0.019522860646247864, 0.0393291711807251, -0.0061149452812969685, -0.011277446523308754, 0.0012245771940797567, 0.013930573128163815, 0.04558919370174408, -0.020192140713334084, 0.03961889445781708, -0.018117016181349754, 0.007004551589488983, -0.05515071004629135, 0.03625640273094177, -0.03723662719130516, -0.042668525129556656, 0.008361896499991417, 0.06024961546063423, -0.007502211723476648, 0.07171705365180969, 0.06902992725372314, 0.0498029999434948, -0.05613856017589569, 0.0213563684374094, 0.0788484439253807, -0.02591782622039318, -0.03750215098261833, -0.0038746690843254328, -0.0072900597006082535, -0.021304884925484657, 0.018960686400532722, -0.02416413463652134, 0.05463655665516853, 0.03570669889450073, 0.008087809197604656, -0.010401017963886261, -0.016856014728546143, -0.005216758698225021, -0.023199502378702164, -0.056703198701143265, -0.03367612510919571, -0.0014048995217308402, -0.03199291601777077, 0.02432730421423912, 0.025827862322330475, 0.033767253160476685, 0.06292682141065598, 0.012284955941140652, -0.049863919615745544, -0.0046451520174741745, 0.0173244159668684, 0.020183490589261055, -0.03018134832382202, -0.07189961522817612, -0.04814248904585838, 0.03536982461810112, 0.04914591461420059, -0.02148769609630108, -0.06806334853172302, 0.023811213672161102, 0.04724462702870369, -0.0404684916138649, 0.051527783274650574, -0.022806618362665176, 0.05472220107913017, 0.04893859848380089, -0.011097943410277367, 0.0380387157201767, -0.01541891135275364, -0.007311950903385878, 0.0018138104351237416, 0.04099209979176521, -0.0131684560328722, -0.02621377259492874, -0.052105315029621124, 0.0237407423555851, 0.0447499118745327, 0.03371616080403328, 0.03928960859775543, -0.039258863776922226, -0.025972509756684303, 0.02389962412416935, 0.02490699291229248, -0.0466107614338398, -0.016872113570570946, 0.04260836914181709, 0.038457632064819336, -0.03965872898697853, -0.029112733900547028, -0.029584884643554688, 0.008233840577304363, 0.03244517371058464, 0.0008288491517305374, -0.023910002782940865, -0.031080830842256546, 0.04803439602255821, -0.02849295362830162, -0.03553307056427002, -0.07409949600696564, 0.028378114104270935, -0.005989095661789179, -0.036074936389923096, 0.050654858350753784, 0.0241464264690876, 0.027207588776946068, 0.07285065948963165, 0.01405984815210104, 0.005668567959219217, -0.0434354804456234, 0.04986923187971115, -0.019919563084840775, -0.011497541330754757, -0.0010976355988532305, -0.041772108525037766, -0.02518906444311142, -0.012241030111908913, -0.05013766884803772, -0.030634868890047073, -0.021473465487360954, 0.0247181486338377, -0.0044029527343809605, -0.007244341541081667, -0.002998984418809414, 0.03847045451402664, -0.004496674053370953, -0.03694796562194824, -0.038653481751680374, -0.015384123660624027, -0.06339829415082932, -0.05629771947860718, -0.004963238257914782, 0.013607474975287914, 0.03354111313819885, 0.03704952076077461, 0.019996950402855873, 0.014056877233088017, 0.006521525327116251, -0.020894775167107582, 0.014587193727493286, 0.0205073282122612, -0.0491868294775486, -0.02441590279340744, 0.036410413682460785, 0.013189416378736496, 0.02712334133684635, -0.02805362455546856, 0.04702122136950493, 0.010645111091434956, -0.014997528865933418, -0.03698242828249931, 0.020730726420879364, 0.035400182008743286, -0.07697434723377228, -0.05582694336771965, -0.013684766367077827, -0.02775270864367485, 0.031414225697517395, -0.020012015476822853, -0.0014004223048686981, 0.02742932178080082, 0.005814683623611927, 0.0358283668756485, -0.027673760429024696, -0.020022118464112282, 0.03712551295757294, -0.006185463164001703, 0.03680131211876869, -0.04016111046075821, 0.056052736937999725, -0.03200709819793701, 0.015904976055026054, -0.021414021030068398, -0.004650615155696869, -0.05082857608795166, 0.029868261888623238, -0.012674519792199135, -0.023886937648057938, -0.0007665769662708044, 0.03228480741381645, -0.007768166717141867, 0.014579174108803272, -0.01906593330204487, 0.02230245992541313, -0.03365064039826393, 0.07382486760616302, -0.03902244567871094, 0.023493237793445587, -0.051268063485622406, 0.024005688726902008, -0.007685734424740076, 0.016995854675769806, -0.0023204763419926167, -0.019147785380482674, 0.04896802827715874, 0.03844653069972992, 0.028566429391503334, 0.038468096405267715, -0.00469601945951581, -0.008715967647731304, -0.002932165516540408, -0.06329347938299179, -0.01882302388548851, 0.0118767861276865, 0.02229585498571396, -0.015360905788838863, 0.05127635970711708, 0.026822611689567566, -0.06027594581246376, -0.07818161696195602, 0.026701275259256363, 0.027668440714478493, 0.010324596427381039, 0.021473897621035576, 0.02629471756517887, 0.022535769268870354, 0.03865537419915199, -0.008847878314554691, -0.025699079036712646, -0.00903331022709608, -0.05889185890555382, 0.020517684519290924, -0.003965063951909542, 0.015332968905568123, 0.030241748318076134, -0.048040300607681274, -0.034210026264190674, 0.03925370052456856, 0.026613758876919746, 0.010296371765434742, -0.0072522652335464954, -0.05977483093738556, 0.02052227407693863, -0.0071271550841629505, -0.0413658507168293, 0.02190745808184147, -0.002504232106730342, -0.023346632719039917, 0.05398193374276161, 0.004196087829768658, -0.0011943132849410176, 0.049479302018880844, 0.003604313125833869, -0.021385889500379562, 0.06277196109294891, -0.04196500405669212, -0.004600129090249538, 0.047589756548404694, -0.06493160128593445, -0.009991666302084923, -0.06195869296789169, 0.0697133019566536, -0.07221163064241409, 0.0365273654460907, 0.06585812568664551, -0.01068432442843914, 0.02896532230079174, -0.06183891370892525, -0.061595067381858826, 0.011422066017985344, -0.03468390554189682, 0.057515669614076614, 0.015985902398824692, -0.05863172188401222, 0.05868232995271683, 0.02234071120619774, -0.049083322286605835, 0.0216850396245718, 0.04057573527097702, 0.03689013794064522, 0.018672067672014236, 0.04177612066268921, -0.043125662952661514, -0.026679497212171555, -0.047881774604320526, 0.011107336729764938, -0.060287684202194214, -0.011698861606419086, 0.008844860829412937, -0.016996143385767937, -0.0071919262409210205, 0.029343588277697563, -0.02083291858434677, -0.017170019447803497, 0.04413437843322754, -0.04821537435054779, -0.046760499477386475, -0.005139978136867285, -0.0033501004800200462, -0.04834063723683357, -0.01244514249265194, -0.03056618943810463, -0.0048261587508022785, 0.009266064502298832, 0.004566770512610674, -0.019302699714899063, -0.025779739022254944, 0.01903938129544258, -0.039700862020254135, -0.03709213808178902, 0.052258819341659546, -0.01665678061544895, -0.022372448816895485, 0.031962331384420395, 0.02703278325498104, 0.0011009650770574808, 0.02581563964486122, -0.014939351007342339, 0.032395943999290466, -0.05631169304251671, -0.027468295767903328, 0.025432458147406578, 0.0035284582991153, 0.01927977241575718, 0.009575877338647842, 0.021159067749977112, 0.055991023778915405, 0.028101876378059387, 0.008536902256309986, -0.03937612846493721, -0.03902694582939148, 0.02327635884284973, -0.042087823152542114, 0.019750384613871574, 0.0009610799606889486, -0.049653615802526474, -0.019297417253255844, -0.0008138424600474536, -0.032868362963199615, 0.04944262653589249, -0.058241359889507294, -0.006777006667107344, 0.05229754373431206, -0.029951758682727814, -0.05901530012488365, -0.08769001066684723, -0.018129469826817513, -0.046998485922813416, 0.004247530363500118, 0.04607382044196129, -0.03721045330166817, 0.03814900666475296, -0.048732977360486984, -0.03501037135720253, 0.031537823379039764, 0.05452057719230652, -0.058602750301361084, 0.05878908932209015, 0.05271972343325615, -0.06492244452238083, 0.008995892480015755, 0.005703392438590527, -0.0476309098303318, -0.029077699407935143, 0.028458647429943085, -0.0016878999304026365, 0.02575075440108776, 0.030206231400370598, -0.050300683826208115, -0.02134714089334011, -0.07074135541915894, -0.029147682711482048, -0.0698423981666565, 0.006785072386264801, 0.05049917474389076 ]
Declan/WallStreetJournal_model_v3
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-8 results: [] --- <!-- 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__hate_speech_offensive__train-8-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0005 - Accuracy: 0.518 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1029 | 1.0 | 5 | 1.1295 | 0.0 | | 1.0472 | 2.0 | 10 | 1.1531 | 0.0 | | 1.054 | 3.0 | 15 | 1.1475 | 0.0 | | 0.9366 | 4.0 | 20 | 1.1515 | 0.0 | | 0.8698 | 5.0 | 25 | 1.1236 | 0.4 | | 0.8148 | 6.0 | 30 | 1.0716 | 0.6 | | 0.6884 | 7.0 | 35 | 1.0662 | 0.6 | | 0.5641 | 8.0 | 40 | 1.0671 | 0.6 | | 0.5 | 9.0 | 45 | 1.0282 | 0.6 | | 0.3882 | 10.0 | 50 | 1.0500 | 0.6 | | 0.3522 | 11.0 | 55 | 1.1381 | 0.6 | | 0.2492 | 12.0 | 60 | 1.1278 | 0.6 | | 0.2063 | 13.0 | 65 | 1.0731 | 0.6 | | 0.1608 | 14.0 | 70 | 1.1339 | 0.6 | | 0.1448 | 15.0 | 75 | 1.1892 | 0.6 | | 0.0925 | 16.0 | 80 | 1.1840 | 0.6 | | 0.0768 | 17.0 | 85 | 1.0608 | 0.6 | | 0.0585 | 18.0 | 90 | 1.1073 | 0.6 | | 0.0592 | 19.0 | 95 | 1.3134 | 0.6 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.010304833762347698, 0.031167414039373398, -0.03349842131137848, 0.052381545305252075, 0.04745988920331001, 0.02987266331911087, -0.011624000035226345, -0.02141493931412697, -0.05427290499210358, 0.059913698583841324, 0.013589094392955303, -0.03074568510055542, 0.022926311939954758, 0.03785137087106705, -0.034834124147892, -0.03725913166999817, -0.02130092680454254, -0.010055722668766975, -0.04081747308373451, 0.002892422489821911, 0.002212401945143938, -0.012455806136131287, -0.016072161495685577, 0.015520584769546986, -0.012841381132602692, 0.038132648915052414, -0.010760570876300335, 0.022953232750296593, 0.02509324438869953, -0.05416203290224075, 0.011574392206966877, -0.02419036626815796, -0.03887972980737686, 0.004966929089277983, -0.027174992486834526, -0.0048111481592059135, 0.0035152346827089787, 0.024188920855522156, 0.041410867124795914, 0.03894532471895218, 0.012795273214578629, 0.0058169071562588215, -0.00799035094678402, -0.02088712900876999, 0.058107443153858185, -0.010248944163322449, -0.045613907277584076, -0.012092012912034988, 0.023958230391144753, -0.04351942241191864, -0.062444884330034256, -0.052794042974710464, -0.017202571034431458, 0.02812381274998188, -0.009961745701730251, -0.012614771723747253, -0.05895685404539108, 0.018614795058965683, 0.0637354925274849, -0.04012199491262436, -0.029506871476769447, 0.001350092119537294, -0.06365343928337097, -0.003154645673930645, 0.022715846076607704, -0.0255984328687191, 0.004161059390753508, -0.046648330986499786, 0.01755482517182827, -0.019306860864162445, 0.055111318826675415, -0.022266115993261337, 0.028646735474467278, -0.07183779776096344, -0.023892687633633614, -0.01925409957766533, 0.06051362305879593, 0.0674842968583107, -0.027909688651561737, 0.06181667372584343, 0.02508150227367878, 0.018857832998037338, 0.034159980714321136, -0.024910181760787964, 0.026468971744179726, 0.02594001591205597, -0.056504569947719574, 0.0038473072927445173, 0.006189620587974787, 0.036474745720624924, -0.02905530296266079, -0.036904122680425644, -0.01217318419367075, -0.03058643266558647, -0.01319399755448103, 0.016283398494124413, 0.00822540558874607, 0.0020269949454814196, 0.047977790236473083, 0.023025155067443848, 0.042294785380363464, 0.0353897362947464, -0.03775220364332199, 0.05765014514327049, -0.020352259278297424, 0.0082419253885746, -0.000843251880723983, -0.021795082837343216, -0.04105161130428314, 0.019964737817645073, 0.028703251853585243, -0.017291797325015068, -0.03755319118499756, 0.03841478005051613, -0.0008207953069359064, 0.014861544594168663, 0.0645044595003128, -0.028550416231155396, -0.03983968868851662, -0.02467399649322033, 0.007382834795862436, 0.007769029587507248, -0.003100836416706443, 0.013621275313198566, -0.06724763661623001, -0.014030491933226585, -0.030620845034718513, -0.047614146023988724, -0.028827235102653503, 0.02952761948108673, 0.0146070197224617, 0.06829322129487991, 0.025213973596692085, -0.062492311000823975, -0.003612236585468054, 0.021218597888946533, -0.054043348878622055, 0.042911939322948456, 0.02323182299733162, 0.10781951248645782, -0.0641368106007576, -0.0632411316037178, -0.004480505362153053, -0.014798823744058609, -0.04416457563638687, 0.01712886244058609, 0.012951130047440529, -0.009969929233193398, -0.009952790103852749, 0.0005791067378595471, 0.049742549657821655, -0.045321572571992874, -0.01998322457075119, 0.06840295344591141, -0.008945554494857788, 0.03366367518901825, -0.06122633069753647, -0.015541337430477142, 0.01003915723413229, -0.02208973467350006, -0.028538480401039124, 0.028795355930924416, -0.02336636185646057, -0.023435533046722412, -0.018269304186105728, -0.03111916594207287, 0.010734948329627514, 0.07235094159841537, -0.004718958865851164, -0.03168972209095955, -0.02974666655063629, 0.025472959503531456, 0.030521312728524208, 0.02394784614443779, -0.028796276077628136, 0.01908966712653637, 0.06247749179601669, 0.02510359138250351, -0.03475535660982132, 0.05287430062890053, 0.010312576778233051, -0.02480580285191536, -0.027085687965154648, 0.0220669973641634, 0.011613436043262482, -0.05052648112177849, 0.04365433007478714, 0.01346388179808855, 0.002126819919794798, -0.05517243221402168, -0.04516036808490753, 0.04210610315203667, -0.0093101030215621, -0.010447693057358265, 0.027672739699482918, 0.012816904112696648, -0.025587031617760658, 0.04314982146024704, -0.023765264078974724, -0.00008041875116759911, -0.04313311725854874, -0.013681762851774693, -0.005839650519192219, -0.02959291636943817, 0.014455149881541729, 0.043658383190631866, -0.002585264388471842, 0.07265903800725937, -0.02309557981789112, 0.01250432152301073, -0.05872022360563278, -0.039145901799201965, 0.009402228519320488, 0.06752949208021164, 0.06094124913215637, 0.039261311292648315, 0.005032865330576897, -0.04682997614145279, 0.034248340874910355, 0.07211021333932877, 0.04604894295334816, 0.002168035600334406, -0.03669122979044914, -0.018144410103559494, 0.047814350575208664, 0.05233176425099373, -0.05071963369846344, -0.02532373182475567, 0.003973446786403656, 0.03861023485660553, -0.014089216478168964, 0.008958742953836918, -0.028432555496692657, 0.035427406430244446, -0.057941582053899765, -0.04830041155219078, 0.039369162172079086, 0.041627440601587296, 0.006825018674135208, 0.02922140620648861, 0.024619698524475098, 0.013887000270187855, 0.039989568293094635, 0.02209898829460144, 0.015350444242358208, -0.05520381033420563, 0.019031401723623276, -0.00438194302842021, 0.05110498517751694, -0.04802548885345459, 0.03948605805635452, -0.012336408719420433, 0.0004582155670505017, 0.03769839555025101, -0.02810000814497471, 0.050501395016908646, 0.04934045672416687, 0.018053162842988968, -0.03806460276246071, 0.021676095202565193, -0.013166400603950024, 0.027558133006095886, 0.021512512117624283, 0.002337509533390403, 0.08457475900650024, 0.008473245427012444, 0.04828653484582901, 0.09686119854450226, 0.03363315761089325, 0.025097224861383438, 0.014228764921426773, 0.04266969859600067, 0.021074490621685982, -0.023499656468629837, 0.062138017266988754, -0.0520378053188324, 0.03901712968945503, -0.05099765211343765, 0.006936609745025635, -0.021957578137516975, -0.027124084532260895, 0.054794296622276306, 0.030135082080960274, -0.03356393799185753, 0.0044310130178928375, 0.0077186888083815575, -0.015908727422356606, 0.039594218134880066, -0.015034729614853859, 0.007069007959216833, -0.00880888756364584, -0.043283313512802124, -0.003635968780145049, -0.07556354254484177, -0.032741617411375046, -0.00867865327745676, -0.02856985479593277, -0.02212439849972725, -0.0965305045247078, -0.023208077996969223, -0.05940975993871689, -0.009442578069865704, 0.02905661053955555, 0.010699656791985035, -0.02258661761879921, -0.032208628952503204, 0.019344592466950417, -0.051647815853357315, -0.04273304343223572, -0.0364522784948349, -0.06319315731525421, -0.04318860545754433, -0.0761171206831932, 0.0427272729575634, 0.047417789697647095, 0.012941827066242695, -0.0047208890318870544, 0.013180802576243877, 0.015034712851047516, -0.023011311888694763, 0.01816209964454174, 0.06205916032195091, -0.04169198125600815, -0.06770665943622589, 0.008535485714673996, -0.00078759336611256, 0.0057034799829125404, 0.028972608968615532, -0.0431731715798378, 0.09525252133607864, 0.08491595834493637, 0.0075398837216198444, 0.034277573227882385, -0.004077618010342121, -0.05749525502324104, -0.046520013362169266, -0.03393197059631348, -0.04909566417336464, -0.019985798746347427, -0.04235106706619263, -0.060457743704319, -0.030422667041420937, -0.03746547922492027, -0.005052884574979544, 0.003239641198888421, 0.020733384415507317, 0.012395118363201618, 0.03360966965556145, 0.018631720915436745, 0.03352572023868561, -0.021789519116282463, -0.044076334685087204, 0.05547269433736801, -0.014395405538380146, 0.017243418842554092, -0.08860629796981812, 0.002960932208225131, 0.028666146099567413, -0.00040866126073524356, 0.021456828340888023, -0.021509457379579544, 0.06583989411592484, 0.0028151553124189377, 0.005365512799471617, 0.005912509746849537, -0.010564004071056843, 0.0014432086609303951, -0.012455879710614681, -0.013253560289740562, 0.00597053486853838, -0.0352398119866848, -0.02748548425734043, -0.01994146592915058, 0.03830850496888161, -0.048754964023828506, -0.0464622937142849, -0.026765689253807068, 0.04530760645866394, 0.056131597608327866, -0.008828955702483654, -0.05114508420228958, -0.012427637353539467, -0.054618578404188156, -0.010600470937788486, 0.013532351702451706, 0.0015402056742459536, 0.006053372286260128, 0.027338791638612747, 0.017746498808264732, -0.012333659455180168, 0.004603323061019182, 0.0590946227312088, 0.07072645425796509, 0.01374933123588562, -0.08270804584026337, 0.00029371160781010985, -0.013832766562700272, 0.014952982775866985, -0.020582500845193863, -0.02735242433845997, -0.02275770902633667, -0.11032339185476303, -0.02608637511730194, -0.00024681317154318094, 0.0031214337795972824, -0.019080406054854393, 0.03910185769200325, -0.00691932113841176, -0.01040877215564251, 0.002406095154583454, 0.014286627992987633, 0.04610524699091911, -0.020942620933055878, 0.040851037949323654, -0.01744259148836136, 0.00642588222399354, -0.05500895157456398, 0.03827418014407158, -0.03732321783900261, -0.04364212602376938, 0.008616508916020393, 0.06071940064430237, -0.006906526163220406, 0.0716177448630333, 0.06900344043970108, 0.05053814873099327, -0.05709328129887581, 0.02100343070924282, 0.07878784090280533, -0.02597346343100071, -0.03818633779883385, -0.004368532914668322, -0.007484787609428167, -0.022037813439965248, 0.019750988110899925, -0.02550528012216091, 0.05406838282942772, 0.0353676974773407, 0.009707908146083355, -0.009430894628167152, -0.016967948526144028, -0.00513904495164752, -0.024359779432415962, -0.058546483516693115, -0.034253232181072235, -0.00003886666308972053, -0.03144894167780876, 0.02255244180560112, 0.02655324898660183, 0.0337376706302166, 0.06348994374275208, 0.0140572814270854, -0.04860701784491539, -0.004908463452011347, 0.01767406240105629, 0.018913056701421738, -0.030367493629455566, -0.07336750626564026, -0.04684248939156532, 0.03493697568774223, 0.04774145409464836, -0.021669941022992134, -0.0678144171833992, 0.023543985560536385, 0.04905388504266739, -0.04157735034823418, 0.05045846477150917, -0.02165791392326355, 0.054109614342451096, 0.048414431512355804, -0.010954596102237701, 0.03818104788661003, -0.015887999907135963, -0.007156252861022949, 0.00250141229480505, 0.04117812216281891, -0.014671212062239647, -0.026079801842570305, -0.053911857306957245, 0.02451379969716072, 0.04567155987024307, 0.033877160400152206, 0.039349060505628586, -0.03911909833550453, -0.025008227676153183, 0.023880040273070335, 0.026216059923171997, -0.045727647840976715, -0.01518334448337555, 0.0433272123336792, 0.03815996274352074, -0.03958412632346153, -0.028573013842105865, -0.029705805703997612, 0.006995773408561945, 0.031923096626996994, 0.00016937701730057597, -0.023392314091324806, -0.032415010035037994, 0.047883979976177216, -0.027328208088874817, -0.03411279246211052, -0.07496213167905807, 0.029394572600722313, -0.00537829427048564, -0.03708381578326225, 0.05059175193309784, 0.023875897750258446, 0.025972329080104828, 0.07257360965013504, 0.013418667018413544, 0.006344383582472801, -0.04473317787051201, 0.04974108934402466, -0.01931264065206051, -0.011198999360203743, -0.0015944411279633641, -0.04122714325785637, -0.026555724442005157, -0.012574469670653343, -0.04843924567103386, -0.03077823854982853, -0.020531799644231796, 0.024212943390011787, -0.006058781873434782, -0.005815603770315647, -0.0022429032251238823, 0.039560411125421524, -0.003102182410657406, -0.03790568560361862, -0.03826648369431496, -0.01634868048131466, -0.06275537610054016, -0.055368777364492416, -0.004663543310016394, 0.013936204835772514, 0.03417490795254707, 0.03635171055793762, 0.02053564228117466, 0.01256150659173727, 0.005060910247266293, -0.020933417603373528, 0.01569322682917118, 0.021251192316412926, -0.047846172004938126, -0.024447765201330185, 0.035216204822063446, 0.013282318599522114, 0.027120865881443024, -0.02781919203698635, 0.04814218357205391, 0.011743658222258091, -0.015065173618495464, -0.03608641400933266, 0.019984284415841103, 0.035716425627470016, -0.07769369333982468, -0.0555235855281353, -0.014830132015049458, -0.027852052822709084, 0.03253248333930969, -0.02069700136780739, -0.0010744165629148483, 0.027118733152747154, 0.006138917990028858, 0.03549673780798912, -0.026516253128647804, -0.0184542965143919, 0.037083785980939865, -0.00612406712025404, 0.03733234107494354, -0.04105713963508606, 0.054259613156318665, -0.03341008350253105, 0.016412559896707535, -0.02284092828631401, -0.003215095493942499, -0.05142567306756973, 0.028125910088419914, -0.013783504255115986, -0.024411996826529503, -0.002166459336876869, 0.032524507492780685, -0.008068629540503025, 0.01341073028743267, -0.020066605880856514, 0.022226225584745407, -0.03383008763194084, 0.07424560189247131, -0.038936223834753036, 0.02378048561513424, -0.05214863270521164, 0.024088695645332336, -0.006951712071895599, 0.015063641592860222, -0.0021646302193403244, -0.018107514828443527, 0.050414349883794785, 0.03767426684498787, 0.027366872876882553, 0.03751170262694359, -0.0038311427924782038, -0.009036902338266373, -0.00249894498847425, -0.06334716826677322, -0.019578197970986366, 0.011097143404185772, 0.02247205749154091, -0.01439635269343853, 0.050370365381240845, 0.027862263843417168, -0.060583993792533875, -0.0777815505862236, 0.026011906564235687, 0.028969183564186096, 0.010376540943980217, 0.023681670427322388, 0.024339493364095688, 0.02290365658700466, 0.038536086678504944, -0.007762884255498648, -0.027133049443364143, -0.00831589475274086, -0.0582103356719017, 0.019975626841187477, -0.004869036376476288, 0.014608407393097878, 0.02939584106206894, -0.048614501953125, -0.035165052860975266, 0.03895467519760132, 0.02603852190077305, 0.009736399166285992, -0.006394818890839815, -0.06003202497959137, 0.021401377394795418, -0.00625238474458456, -0.04083412513136864, 0.023078594356775284, -0.0017685727216303349, -0.02186829224228859, 0.054183606058359146, 0.0037925385404378176, -0.0011971975909546018, 0.04874011129140854, 0.004344136454164982, -0.022094665095210075, 0.06216640770435333, -0.0419345423579216, -0.003574701026082039, 0.046441856771707535, -0.06439891457557678, -0.0115966796875, -0.06028144061565399, 0.06988818943500519, -0.07119989395141602, 0.036682870239019394, 0.06705708801746368, -0.011191558092832565, 0.029478970915079117, -0.06201792135834694, -0.06144528463482857, 0.012545602396130562, -0.03345555067062378, 0.05696694552898407, 0.015654027462005615, -0.05837186053395271, 0.057583969086408615, 0.02231375128030777, -0.048518892377614975, 0.020828280597925186, 0.04016991704702377, 0.03689581900835037, 0.017758477479219437, 0.042607758194208145, -0.04251138120889664, -0.026631265878677368, -0.04985928162932396, 0.011289420537650585, -0.06202058866620064, -0.012013670988380909, 0.009698929265141487, -0.01573772542178631, -0.008223743177950382, 0.029439300298690796, -0.020325029268860817, -0.017197463661432266, 0.04356972873210907, -0.04802102595567703, -0.04726709425449371, -0.004928580950945616, -0.0027704143431037664, -0.04723532125353813, -0.011777321808040142, -0.030326800420880318, -0.0036699871998280287, 0.009677295573055744, 0.0045193578116595745, -0.019000796601176262, -0.02666504494845867, 0.01898954063653946, -0.039615437388420105, -0.03544095531105995, 0.05157671868801117, -0.016559945419430733, -0.023436089977622032, 0.03324102982878685, 0.025084007531404495, 0.001327103702351451, 0.02611568756401539, -0.015333807095885277, 0.03316313773393631, -0.05768832191824913, -0.02758083865046501, 0.025942904874682426, 0.004124181345105171, 0.017819460481405258, 0.008568200282752514, 0.019877608865499496, 0.05517244338989258, 0.028163889423012733, 0.007666412740945816, -0.04042157903313637, -0.03859958425164223, 0.024530136957764626, -0.04148854687809944, 0.02006947249174118, 0.0008069587056525052, -0.049109768122434616, -0.019051194190979004, 0.0007543223910033703, -0.032648928463459015, 0.04901530221104622, -0.05773903429508209, -0.006962907966226339, 0.05200386419892311, -0.029415732249617577, -0.058713894337415695, -0.08580547571182251, -0.019403763115406036, -0.046925440430641174, 0.005297546274960041, 0.045807644724845886, -0.03720196336507797, 0.03688116371631622, -0.04885334149003029, -0.035523198544979095, 0.03253287076950073, 0.053004950284957886, -0.059480153024196625, 0.05869755148887634, 0.05226901173591614, -0.06440712511539459, 0.0064814030192792416, 0.005096421577036381, -0.04874921962618828, -0.026959378272294998, 0.028549924492836, -0.001784761087037623, 0.02420000359416008, 0.03042498789727688, -0.04886753112077713, -0.02162948064506054, -0.07046015560626984, -0.027041444554924965, -0.0716218650341034, 0.006894356571137905, 0.05053184926509857 ]
Declan/WallStreetJournal_model_v4
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
2022-02-09T17:18:08Z
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__hate_speech_offensive__train-8-9 results: [] --- <!-- 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__hate_speech_offensive__train-8-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.0959 - Accuracy: 0.093 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.1068 | 1.0 | 5 | 1.1545 | 0.0 | | 1.0494 | 2.0 | 10 | 1.1971 | 0.0 | | 1.0612 | 3.0 | 15 | 1.2164 | 0.0 | | 0.9517 | 4.0 | 20 | 1.2545 | 0.0 | | 0.8874 | 5.0 | 25 | 1.2699 | 0.0 | | 0.8598 | 6.0 | 30 | 1.2835 | 0.0 | | 0.7006 | 7.0 | 35 | 1.3139 | 0.0 | | 0.5969 | 8.0 | 40 | 1.3116 | 0.2 | | 0.4769 | 9.0 | 45 | 1.3124 | 0.4 | | 0.4352 | 10.0 | 50 | 1.3541 | 0.4 | | 0.3231 | 11.0 | 55 | 1.3919 | 0.4 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.009302686899900436, 0.03000711463391781, -0.03437909111380577, 0.05237022787332535, 0.047333259135484695, 0.029180357232689857, -0.01354218740016222, -0.020364146679639816, -0.05582096800208092, 0.05972324311733246, 0.014270570129156113, -0.03093176893889904, 0.022370468825101852, 0.03691493347287178, -0.03407379984855652, -0.037143342196941376, -0.02214718423783779, -0.011952254921197891, -0.0413980633020401, 0.004156973212957382, 0.002274280646815896, -0.012412747368216515, -0.017138414084911346, 0.014769287779927254, -0.013435901142656803, 0.03756052255630493, -0.011945393867790699, 0.023056630045175552, 0.025925755500793457, -0.05569669231772423, 0.011492246761918068, -0.025975458323955536, -0.039111558347940445, 0.004218398593366146, -0.026290442794561386, -0.004672198556363583, 0.004060697741806507, 0.024126505479216576, 0.04080045223236084, 0.0373147577047348, 0.013490652665495872, 0.0073125967755913734, -0.007672098930925131, -0.019682643935084343, 0.05874647945165634, -0.009442385286092758, -0.045623503625392914, -0.01065980177372694, 0.02429681271314621, -0.04265502467751503, -0.06330788135528564, -0.05097387731075287, -0.018762607127428055, 0.02791820652782917, -0.010125274769961834, -0.012612929567694664, -0.059115950018167496, 0.020122092217206955, 0.06284862011671066, -0.039509788155555725, -0.029320137575268745, 0.001547188381664455, -0.06386949867010117, -0.004733330570161343, 0.0229097418487072, -0.026600388810038567, 0.002773444866761565, -0.04527730494737625, 0.01790248043835163, -0.019134633243083954, 0.05586401745676994, -0.0207807756960392, 0.028494222089648247, -0.07053928077220917, -0.023373549804091454, -0.018310396000742912, 0.05956924706697464, 0.06873612850904465, -0.02683597430586815, 0.06144356355071068, 0.024702386930584908, 0.018537817522883415, 0.033071257174015045, -0.024657338857650757, 0.027881642803549767, 0.026533417403697968, -0.056814372539520264, 0.0036037275567650795, 0.005922023672610521, 0.03622369095683098, -0.029314562678337097, -0.03684147074818611, -0.012895901687443256, -0.03049558214843273, -0.014623577706515789, 0.015554258599877357, 0.00798451341688633, 0.0038949535228312016, 0.04789210855960846, 0.023290593177080154, 0.04241252318024635, 0.03453896567225456, -0.036879535764455795, 0.056690625846385956, -0.01952749863266945, 0.00668751634657383, -0.00015078223077580333, -0.02224363572895527, -0.04189854487776756, 0.020971005782485008, 0.02839992567896843, -0.01800050027668476, -0.03782007098197937, 0.039056241512298584, 0.000441349227912724, 0.015064183622598648, 0.06453397125005722, -0.028878750279545784, -0.04056336358189583, -0.025130130350589752, 0.0071427784860134125, 0.007681578863412142, -0.0029438845813274384, 0.014649825170636177, -0.06665510684251785, -0.015359677374362946, -0.03206271305680275, -0.04505850747227669, -0.028571972623467445, 0.029797637835144997, 0.014003061689436436, 0.06788135319948196, 0.025788871571421623, -0.06294882297515869, -0.002631887560710311, 0.02123463712632656, -0.05444066971540451, 0.04231567308306694, 0.023877466097474098, 0.10878191888332367, -0.06360458582639694, -0.06354951858520508, -0.0048784613609313965, -0.01514368038624525, -0.043472353368997574, 0.016542306169867516, 0.011697284877300262, -0.010970932431519032, -0.008995403535664082, 0.0002320764324394986, 0.05031107738614082, -0.04432721808552742, -0.021104218438267708, 0.06882775574922562, -0.00965417455881834, 0.03385099768638611, -0.06084510311484337, -0.015902839601039886, 0.009505086578428745, -0.024602927267551422, -0.0285140722990036, 0.03046373464167118, -0.024064350873231888, -0.025272013619542122, -0.018396688625216484, -0.03131939843297005, 0.009521247819066048, 0.07209113240242004, -0.0029509705491364002, -0.03252384066581726, -0.029708173125982285, 0.02398374304175377, 0.03061307966709137, 0.024644875898957253, -0.027697687968611717, 0.01945890672504902, 0.06239451467990875, 0.025007212534546852, -0.034429918974637985, 0.05248226970434189, 0.01126852910965681, -0.026788879185914993, -0.028233347460627556, 0.02201572246849537, 0.00957542099058628, -0.049907758831977844, 0.04496563598513603, 0.014033498242497444, 0.0017057392979040742, -0.05446011200547218, -0.04497188329696655, 0.04132327064871788, -0.00943699199706316, -0.010472789406776428, 0.027660999447107315, 0.01278096716850996, -0.025294000282883644, 0.04213897883892059, -0.022284381091594696, -0.0003898676368407905, -0.04315389320254326, -0.01451270841062069, -0.005254328716546297, -0.030650245025753975, 0.014197182841598988, 0.04408982768654823, -0.002815438201650977, 0.07337742298841476, -0.023619892075657845, 0.011880828998982906, -0.057790808379650116, -0.03890152648091316, 0.009472982957959175, 0.06690546870231628, 0.06082338094711304, 0.03939782828092575, 0.005267916712909937, -0.04622364416718483, 0.03476759418845177, 0.07301701605319977, 0.04591880738735199, 0.0020295947324484587, -0.03642818331718445, -0.017611561343073845, 0.04896098002791405, 0.05213019996881485, -0.05023091286420822, -0.024128858000040054, 0.0039456505328416824, 0.03849082067608833, -0.012572125531733036, 0.007860648445785046, -0.02872542291879654, 0.03403807803988457, -0.05825340002775192, -0.04912944138050079, 0.039897143840789795, 0.04009092226624489, 0.006655093748122454, 0.0288590919226408, 0.024921052157878876, 0.014018760062754154, 0.04202810302376747, 0.022163743153214455, 0.014920033514499664, -0.05601946637034416, 0.018315603956580162, -0.0033083385787904263, 0.04981139302253723, -0.04770136997103691, 0.039173711091279984, -0.013694552704691887, 0.0018219531048089266, 0.03772852197289467, -0.026999561116099358, 0.04950474575161934, 0.04904231056571007, 0.017390696331858635, -0.03827960789203644, 0.021056903526186943, -0.011324433609843254, 0.02716667205095291, 0.02169296145439148, 0.003369076643139124, 0.08339947462081909, 0.008757541887462139, 0.04676441848278046, 0.09655251353979111, 0.03369998186826706, 0.025148531422019005, 0.013432544656097889, 0.04202410578727722, 0.020635249093174934, -0.021532177925109863, 0.05958927795290947, -0.05388913303613663, 0.039452776312828064, -0.05138092115521431, 0.007024779450148344, -0.021864473819732666, -0.0263371579349041, 0.05498785898089409, 0.030946921557188034, -0.03414798900485039, 0.004133886657655239, 0.007427928037941456, -0.015406466089189053, 0.03837873414158821, -0.01525855902582407, 0.007138645742088556, -0.007417399901896715, -0.04216822609305382, -0.004512821789830923, -0.0752294659614563, -0.032847460359334946, -0.008741183206439018, -0.028958449140191078, -0.021360434591770172, -0.09728499501943588, -0.023470770567655563, -0.060124944895505905, -0.009672132320702076, 0.028997572138905525, 0.0108726155012846, -0.023858651518821716, -0.03076305240392685, 0.0181630440056324, -0.05182499438524246, -0.04208928346633911, -0.03724402189254761, -0.0638706162571907, -0.04229816049337387, -0.0763026550412178, 0.043441832065582275, 0.0474696010351181, 0.011663166806101799, -0.005233547650277615, 0.013366976752877235, 0.015626221895217896, -0.023883270099759102, 0.018946034833788872, 0.060575418174266815, -0.04051226004958153, -0.06778079271316528, 0.00834731012582779, -0.0018806448206305504, 0.007284520193934441, 0.029602861031889915, -0.04352724924683571, 0.09482462704181671, 0.08497367054224014, 0.008602791465818882, 0.03425697609782219, -0.004187020473182201, -0.05731606483459473, -0.04829930514097214, -0.033349648118019104, -0.049089476466178894, -0.019054215401411057, -0.04296276718378067, -0.06007818132638931, -0.030069347470998764, -0.03823984041810036, -0.004301568027585745, 0.003841751255095005, 0.0213877372443676, 0.012501579709351063, 0.03455912694334984, 0.01927861012518406, 0.033571548759937286, -0.022601308301091194, -0.04598584398627281, 0.05501100793480873, -0.01435860525816679, 0.017967723309993744, -0.08855964988470078, 0.003171742195263505, 0.029497714713215828, -0.0009390208870172501, 0.02234167791903019, -0.023125672712922096, 0.06598770618438721, 0.00233713467605412, 0.006068465765565634, 0.007057853974401951, -0.009997377172112465, 0.00097020243993029, -0.013151400722563267, -0.013835802674293518, 0.006325324531644583, -0.035377997905015945, -0.02628917805850506, -0.019732721149921417, 0.03808271512389183, -0.04806319251656532, -0.04754497855901718, -0.02773592434823513, 0.044680338352918625, 0.05487869679927826, -0.0094468267634511, -0.05106168985366821, -0.013162772171199322, -0.055934078991413116, -0.01028458122164011, 0.01465829461812973, 0.0010695671662688255, 0.00582514051347971, 0.028056740760803223, 0.01725858822464943, -0.011189975775778294, 0.004508723504841328, 0.05870288237929344, 0.07141226530075073, 0.013977996073663235, -0.08273646980524063, -0.0003549949324224144, -0.01399098988622427, 0.014236243441700935, -0.019416091963648796, -0.026321614161133766, -0.02205546200275421, -0.10908213257789612, -0.02800816483795643, 0.000584529887419194, 0.0019576570484787226, -0.019634509459137917, 0.038219302892684937, -0.005667592398822308, -0.011018279939889908, 0.0011224098270758986, 0.014085412956774235, 0.045286551117897034, -0.019989918917417526, 0.039988644421100616, -0.018139690160751343, 0.008075058460235596, -0.05415957793593407, 0.03691373020410538, -0.03825080394744873, -0.042760759592056274, 0.00792941264808178, 0.06164242699742317, -0.0077708628959953785, 0.07158580422401428, 0.06874973326921463, 0.04956663027405739, -0.05632970109581947, 0.021035080775618553, 0.08080998063087463, -0.026588987559080124, -0.03661036863923073, -0.0031018329318612814, -0.0070863282307982445, -0.022356534376740456, 0.020689010620117188, -0.0250270813703537, 0.054808422923088074, 0.0350944809615612, 0.009035727940499783, -0.00890792440623045, -0.01796342246234417, -0.005793956108391285, -0.02410912699997425, -0.05706211179494858, -0.03350038081407547, -0.0010739665012806654, -0.03142726421356201, 0.02333473227918148, 0.025478972122073174, 0.03429383039474487, 0.06260143965482712, 0.013139761053025723, -0.04992596060037613, -0.005573643371462822, 0.017110513523221016, 0.01976649835705757, -0.030859196558594704, -0.07221686840057373, -0.04750386252999306, 0.0349368080496788, 0.04790980741381645, -0.022678159177303314, -0.06795913726091385, 0.02400638721883297, 0.04833943396806717, -0.04243801161646843, 0.05073898285627365, -0.02224348485469818, 0.05501631647348404, 0.04855244606733322, -0.012399792671203613, 0.03976529464125633, -0.015575083903968334, -0.006828740239143372, 0.0023142981808632612, 0.0414794459939003, -0.013815098442137241, -0.025811349973082542, -0.05112168565392494, 0.024092458188533783, 0.04470871761441231, 0.033578891307115555, 0.039475783705711365, -0.03921227902173996, -0.025371337309479713, 0.02377724088728428, 0.026203811168670654, -0.04586395248770714, -0.01554813515394926, 0.04358913376927376, 0.03857532888650894, -0.039653100073337555, -0.028830066323280334, -0.02818068116903305, 0.007179587613791227, 0.0324639268219471, 0.0010787096107378602, -0.024002011865377426, -0.031569454818964005, 0.04858383163809776, -0.02774270810186863, -0.03575793653726578, -0.07422547042369843, 0.02894705720245838, -0.00604146858677268, -0.03588329255580902, 0.05148673057556152, 0.02476843073964119, 0.025068113580346107, 0.07215582579374313, 0.0132704246789217, 0.005401408765465021, -0.04446011409163475, 0.04875534400343895, -0.019459592178463936, -0.010666193440556526, -0.0012770863249897957, -0.04197872057557106, -0.026445001363754272, -0.012749486602842808, -0.048312485218048096, -0.030493201687932014, -0.021397173404693604, 0.024760987609624863, -0.00513068912550807, -0.005964125040918589, -0.002727519255131483, 0.03972015902400017, -0.003985138610005379, -0.03843609616160393, -0.03873368352651596, -0.016743289306759834, -0.06372080743312836, -0.055138085037469864, -0.004037113860249519, 0.01388857327401638, 0.03380272909998894, 0.03775597736239433, 0.019939105957746506, 0.013668724335730076, 0.0063160862773656845, -0.021430496126413345, 0.016864437609910965, 0.0209126565605402, -0.04895327612757683, -0.025531047955155373, 0.03599901124835014, 0.013523675501346588, 0.027209525927901268, -0.028881629928946495, 0.04744482785463333, 0.010758240707218647, -0.016343804076313972, -0.03607824444770813, 0.01938468962907791, 0.03563646227121353, -0.07676690071821213, -0.054805904626846313, -0.014916330575942993, -0.027483228594064713, 0.03243096545338631, -0.021825693547725677, -0.0005823663668707013, 0.02771807834506035, 0.006216791458427906, 0.03478967025876045, -0.02787834219634533, -0.01944841258227825, 0.0364338643848896, -0.005667462013661861, 0.03762740269303322, -0.04110454395413399, 0.054521966725587845, -0.03279135748744011, 0.01590336486697197, -0.02141813188791275, -0.004020303953438997, -0.05043751746416092, 0.03002132661640644, -0.012088091112673283, -0.024762414395809174, -0.0025538094341754913, 0.03247220441699028, -0.007683513220399618, 0.014919847249984741, -0.0197615809738636, 0.022315267473459244, -0.03282531350851059, 0.07386656105518341, -0.03858547657728195, 0.02289668470621109, -0.05129866302013397, 0.024142874404788017, -0.007977044209837914, 0.016226207837462425, -0.0020648313220590353, -0.020152444019913673, 0.049808673560619354, 0.037908099591732025, 0.02869771234691143, 0.0382140688598156, -0.005606700200587511, -0.008544179610908031, -0.0025633741170167923, -0.0633685365319252, -0.020627325400710106, 0.01237941812723875, 0.023542718961834908, -0.015526712872087955, 0.05053022876381874, 0.027534231543540955, -0.06087305396795273, -0.07773277908563614, 0.026921190321445465, 0.026700174435973167, 0.010858967900276184, 0.02125832810997963, 0.02553979866206646, 0.023355694487690926, 0.03894313797354698, -0.008780975826084614, -0.026901083067059517, -0.008837270550429821, -0.058054205030202866, 0.01986547000706196, -0.004829432815313339, 0.016057709231972694, 0.028917521238327026, -0.048529479652643204, -0.03554506599903107, 0.03907710313796997, 0.026874329894781113, 0.010632763616740704, -0.006342625245451927, -0.05985908582806587, 0.021852904930710793, -0.005125729367136955, -0.041352421045303345, 0.022799326106905937, -0.00233292393386364, -0.021835900843143463, 0.053452473133802414, 0.004296101164072752, -0.0012654820457100868, 0.04912194609642029, 0.004240803886204958, -0.020377298817038536, 0.06284254044294357, -0.04271618276834488, -0.0035090171732008457, 0.04621946066617966, -0.06511645764112473, -0.010207612067461014, -0.06078613921999931, 0.06947202980518341, -0.07110550999641418, 0.036253053694963455, 0.0672534927725792, -0.010767797939479351, 0.02900746837258339, -0.061123549938201904, -0.06261344254016876, 0.011830925941467285, -0.03346153348684311, 0.0581706240773201, 0.015438305214047432, -0.058881208300590515, 0.05760041996836662, 0.022114159539341927, -0.04936031624674797, 0.022089354693889618, 0.04105506092309952, 0.037133075296878815, 0.018991874530911446, 0.04255455732345581, -0.042832810431718826, -0.02574971318244934, -0.04713456332683563, 0.01161465048789978, -0.06101607531309128, -0.011915379203855991, 0.009933763183653355, -0.01647164672613144, -0.007703948765993118, 0.02914556674659252, -0.020700503140687943, -0.01645161211490631, 0.044423166662454605, -0.04837460815906525, -0.046096719801425934, -0.004312851000577211, -0.0019733470398932695, -0.047504786401987076, -0.013553895987570286, -0.03001057729125023, -0.003337378613650799, 0.0100818807259202, 0.00520523265004158, -0.019626064226031303, -0.025151174515485764, 0.01844528317451477, -0.04151249676942825, -0.03644232824444771, 0.05197615548968315, -0.016823386773467064, -0.023231375962495804, 0.03308926895260811, 0.02687319926917553, 0.0012598426546901464, 0.026711134240031242, -0.0160407405346632, 0.032055214047431946, -0.05802113190293312, -0.027656739577651024, 0.025761812925338745, 0.0026858197525143623, 0.017641128972172737, 0.01011178269982338, 0.019590895622968674, 0.05543728545308113, 0.0263739712536335, 0.007246776949614286, -0.040865618735551834, -0.03875996544957161, 0.022857215255498886, -0.04167201370000839, 0.019710661843419075, 0.0009691284503787756, -0.049042604863643646, -0.018399877473711967, -0.00014245600323192775, -0.03266869857907295, 0.04880810156464577, -0.058972347527742386, -0.006505342200398445, 0.05117444321513176, -0.028548715636134148, -0.058661773800849915, -0.08688400685787201, -0.01822245493531227, -0.04664913937449455, 0.004709200002253056, 0.046106014400720596, -0.037086956202983856, 0.038064584136009216, -0.04903757944703102, -0.03501241281628609, 0.03206313028931618, 0.05290980264544487, -0.05911920219659805, 0.05831423029303551, 0.05327790603041649, -0.0641547217965126, 0.00787726417183876, 0.0062565309926867485, -0.04846833273768425, -0.02632753923535347, 0.02860897220671177, -0.0015113911358639598, 0.02492762729525566, 0.029479557648301125, -0.05061106011271477, -0.021852528676390648, -0.07129710912704468, -0.02984653227031231, -0.07093095779418945, 0.007377087138593197, 0.04992402344942093 ]
Declan/WallStreetJournal_model_v5
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__all-train results: [] --- <!-- 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__sst2__all-train This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.2496 - Accuracy: 0.8962 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.3643 | 1.0 | 433 | 0.2496 | 0.8962 | | 0.196 | 2.0 | 866 | 0.2548 | 0.9110 | | 0.0915 | 3.0 | 1299 | 0.4483 | 0.8957 | | 0.0505 | 4.0 | 1732 | 0.4968 | 0.9044 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.1+cu102 - Datasets 1.17.0 - Tokenizers 0.10.3
[ -0.019759904593229294, 0.012060695327818394, -0.04618266597390175, 0.05263306200504303, 0.05270741507411003, 0.02871890366077423, -0.01370026171207428, -0.025150129571557045, -0.053837236016988754, 0.06226091459393501, 0.026374880224466324, -0.02483525685966015, 0.002742981305345893, 0.04937057942152023, -0.015330024994909763, -0.04106530919671059, 0.0024129964876919985, -0.01321549154818058, -0.03637511655688286, -0.004761252552270889, 0.00680946372449398, -0.015726935118436813, -0.005496818572282791, 0.003907188773155212, -0.001939793350175023, 0.014904252253472805, 0.0037062824703752995, 0.022515619173645973, 0.032509684562683105, -0.07194396108388901, 0.008093521930277348, -0.027706092223525047, -0.04688999429345131, -0.019932882860302925, -0.011836993508040905, -0.012007386423647404, -0.0026494895573705435, 0.018463771790266037, 0.03742002323269844, 0.03218595311045647, 0.0031935919541865587, 0.0271962508559227, -0.0009270102600567043, -0.01441959198564291, 0.06444425135850906, 0.007462498266249895, -0.035535626113414764, -0.0054076905362308025, 0.03800342231988907, -0.018476827070116997, -0.07760848850011826, -0.054967593401670456, -0.02233186736702919, 0.024651411920785904, -0.016409851610660553, -0.007246233522891998, -0.05803952366113663, 0.01165915559977293, 0.058598052710294724, -0.05248071998357773, -0.021943045780062675, 0.007845069281756878, -0.06618353724479675, 0.004963931627571583, 0.03416232019662857, -0.016240620985627174, 0.016722092404961586, -0.04519769921898842, 0.030017688870429993, -0.016811180859804153, 0.05896282568573952, -0.023482879623770714, 0.019672321155667305, -0.07696056365966797, -0.01584581658244133, -0.013988900929689407, 0.0377090685069561, 0.048230480402708054, -0.028208766132593155, 0.05211044102907181, 0.030005618929862976, -0.00036536771222017705, 0.04094282165169716, -0.03363737836480141, 0.005426618270576, 0.03665760159492493, -0.04429220035672188, 0.0029395129531621933, 0.016248414292931557, 0.029807073995471, -0.03765431419014931, -0.04100187495350838, -0.03668585419654846, -0.03607563674449921, -0.0010892603313550353, 0.018902089446783066, 0.03361734375357628, 0.014843969605863094, 0.03775696083903313, 0.023298177868127823, 0.031124413013458252, 0.03474798426032066, -0.020415665581822395, 0.06472022086381912, 0.003924618475139141, -0.006279670633375645, -0.006800901144742966, -0.024069536477327347, -0.0491829439997673, 0.022154269739985466, 0.03367771580815315, -0.020617803558707237, -0.012874708510935307, 0.03696155548095703, 0.00870954804122448, -0.0005393605097196996, 0.07290738075971603, -0.02696804516017437, -0.038439128547906876, -0.024979546666145325, 0.026779623702168465, 0.018555261194705963, -0.020233506336808205, 0.022818947210907936, -0.032406918704509735, -0.023035626858472824, -0.030047370120882988, -0.015548327006399632, -0.016178574413061142, 0.02665308490395546, 0.02044539898633957, 0.0630398690700531, 0.031236356124281883, -0.08220227062702179, 0.00901878997683525, 0.02423858270049095, -0.06018896400928497, 0.05360599607229233, 0.026119587942957878, 0.11813116073608398, -0.065767303109169, -0.06155964359641075, 0.005489481147378683, -0.004001092631369829, -0.045617591589689255, 0.014221073128283024, 0.009063188917934895, -0.031175697222352028, 0.0018810509936884046, 0.0013204381102696061, 0.07087374478578568, -0.0421065054833889, -0.011401875875890255, 0.0676833987236023, -0.003088371828198433, 0.04006658121943474, -0.054071515798568726, -0.0265598613768816, 0.020627431571483612, -0.022440260276198387, -0.043843645602464676, 0.05669931694865227, -0.021197255700826645, -0.010040336288511753, -0.01828586310148239, -0.022186512127518654, 0.006730447523295879, 0.08204370737075806, -0.01504591852426529, -0.03327048942446709, -0.015551168471574783, 0.029523665085434914, 0.043027639389038086, 0.055707622319459915, -0.029976656660437584, 0.027311060577630997, 0.059006474912166595, 0.03530474007129669, -0.023150818422436714, 0.03045867756009102, 0.023807866498827934, -0.030353182926774025, -0.015194381587207317, 0.02664501778781414, 0.0005098218098282814, -0.042212940752506256, 0.03829256445169449, 0.010680670849978924, -0.0019675157964229584, -0.06157810613512993, -0.048876386135816574, 0.043924883008003235, 0.0009719624067656696, -0.007012152578681707, 0.01989857479929924, 0.013826162554323673, -0.009987380355596542, 0.04988478869199753, -0.009789492003619671, 0.007771969772875309, -0.019987031817436218, -0.0215925183147192, 0.008291699923574924, -0.01665457710623741, 0.031474459916353226, 0.05143163353204727, -0.003650616854429245, 0.0896906778216362, -0.04469315707683563, 0.022912928834557533, -0.05679497867822647, -0.03719240799546242, 0.016568725928664207, 0.05135348066687584, 0.05346040427684784, 0.05368474870920181, 0.010417429730296135, -0.028810398653149605, 0.047489773482084274, 0.06472565233707428, 0.0439893938601017, 0.0013101584045216441, -0.022247962653636932, -0.025218762457370758, 0.030027853325009346, 0.05677483230829239, -0.05174868181347847, -0.014591734856367111, 0.00521058589220047, 0.028954042121767998, 0.005753984209150076, 0.023596206679940224, -0.030284788459539413, 0.04142095521092415, -0.04572983831167221, -0.04372524842619896, 0.04460621997714043, 0.02169749327003956, -0.0027141794562339783, 0.026113051921129227, 0.03165493533015251, 0.004121869802474976, 0.01376914419233799, 0.019231131300330162, 0.014297847636044025, -0.047661192715168, 0.015661532059311867, 0.004343600943684578, 0.04861067980527878, -0.057046085596084595, 0.02717752754688263, -0.00944652408361435, 0.012318875640630722, 0.04336818680167198, -0.037896495312452316, 0.02058117836713791, 0.04535963758826256, 0.03716865926980972, -0.037971362471580505, 0.021492594853043556, -0.0028847241774201393, 0.03783030807971954, 0.05142020061612129, 0.007305460516363382, 0.06633904576301575, 0.02099272422492504, 0.05091395601630211, 0.06921780109405518, 0.020577222108840942, 0.036074258387088776, 0.016002332791686058, 0.07062707841396332, 0.024043427780270576, -0.013338582590222359, 0.04306016489863396, -0.04208783060312271, 0.018558666110038757, -0.0517762117087841, -0.006430309731513262, -0.027927881106734276, -0.014766138978302479, 0.05188414826989174, 0.02322223410010338, -0.03094257414340973, -0.009227334521710873, 0.008975919336080551, -0.005106496158987284, 0.02601468749344349, -0.006303239613771439, 0.0034050727263092995, -0.00553075922653079, -0.02702394314110279, -0.03586621582508087, -0.07587078958749771, -0.05703030154109001, -0.02844618633389473, -0.019005918875336647, -0.015556462109088898, -0.08780236542224884, -0.007967100478708744, -0.08440659940242767, -0.025839850306510925, 0.03170003741979599, 0.0067026810720562935, -0.02560880407691002, -0.035475410521030426, 0.01854121685028076, -0.05040142685174942, -0.04003540053963661, -0.04716105759143829, -0.059622738510370255, -0.04679449275135994, -0.0786479115486145, 0.03480314835906029, 0.029812563210725784, -0.000643175037112087, -0.0035594135988503695, 0.024459214881062508, 0.0079764723777771, -0.021454308182001114, 0.04481491073966026, 0.06720046699047089, -0.03712634742259979, -0.06104804947972298, 0.030727293342351913, -0.014046913012862206, 0.016193155199289322, 0.026782827451825142, -0.030644280835986137, 0.08895561099052429, 0.07133842259645462, 0.007861519232392311, 0.028605272993445396, -0.01752377673983574, -0.06291889399290085, -0.06567029654979706, -0.020062753930687904, -0.044635314494371414, -0.003586777253076434, -0.04933428391814232, -0.043270181864500046, -0.032636236399412155, -0.03783879801630974, -0.001192775322124362, -0.011507165618240833, 0.02883951924741268, 0.02444133721292019, 0.04449401795864105, 0.023006023839116096, 0.03824570029973984, -0.03035297803580761, -0.03333620727062225, 0.05690230056643486, 0.009529744274914265, -0.0020969791803508997, -0.087860606610775, -0.005086232908070087, 0.027111701667308807, 0.020895609632134438, 0.008001557551324368, -0.0028901374898850918, 0.07119794934988022, -0.009739138185977936, 0.006313107442110777, 0.00976642221212387, -0.006894181482493877, -0.0055638933554291725, -0.0015686069382354617, -0.004124230705201626, 0.0028417184948921204, -0.021052852272987366, -0.040920719504356384, -0.006346195470541716, 0.02761814557015896, -0.05703601613640785, -0.05998357757925987, -0.015080858021974564, 0.03556493669748306, 0.04588716849684715, -0.0020647963974624872, -0.051352910697460175, -0.002641522092744708, -0.07130420207977295, -0.007889569737017155, 0.038063012063503265, 0.020201509818434715, -0.003579022828489542, 0.04646412655711174, 0.014661330729722977, -0.019098807126283646, 0.027912884950637817, 0.05679965391755104, 0.07705631107091904, 0.012592298910021782, -0.0787121057510376, -0.010580630041658878, -0.02692849189043045, 0.015228863805532455, -0.0037439262960106134, -0.017256848514080048, -0.01769430749118328, -0.09799641370773315, -0.019887050613760948, 0.011787103489041328, 0.013589479960501194, -0.016997288912534714, 0.03303840011358261, 0.007494446821510792, -0.0321519561111927, 0.00034157055779360235, 0.017055951058864594, 0.051334451884031296, -0.017878370359539986, 0.05574749410152435, -0.021573511883616447, 0.002464529825374484, -0.04988820105791092, 0.012498605996370316, -0.04868804290890694, -0.024458488449454308, 0.006008501164615154, 0.05025473237037659, -0.02160939946770668, 0.05421553552150726, 0.07396650314331055, 0.03305574506521225, -0.05296571925282478, 0.02919389307498932, 0.06811817735433578, -0.04627027362585068, -0.0435798317193985, 0.0012499969452619553, -0.0023701442405581474, -0.01696607656776905, -0.007336321286857128, -0.0051717497408390045, 0.0528932549059391, 0.03548726812005043, 0.003064903663471341, 0.005425639450550079, -0.006969807203859091, -0.009275250136852264, -0.03246806561946869, -0.046058520674705505, -0.0316116027534008, 0.010874327272176743, -0.02197769656777382, 0.019704720005393028, 0.025532947853207588, 0.031160732731223106, 0.0722346156835556, 0.02094181440770626, -0.02691153809428215, -0.009465365670621395, 0.026003817096352577, 0.011350433342158794, -0.018323926255106926, -0.07199545949697495, -0.049782659858465195, 0.023871073499321938, 0.050614405423402786, -0.019655007869005203, -0.06100659444928169, 0.015268274582922459, 0.04750094190239906, -0.0514029860496521, 0.06557990610599518, -0.007781059015542269, 0.05581948161125183, 0.057569470256567, -0.011310241185128689, 0.03064592182636261, -0.019280582666397095, -0.003817175980657339, 0.003374536521732807, 0.04372766241431236, -0.012695925310254097, -0.04049302265048027, -0.048918869346380234, 0.02271960861980915, 0.04359784349799156, 0.03373465687036514, 0.0442696213722229, -0.0372440330684185, -0.04431954771280289, 0.008205259218811989, 0.03156546875834465, -0.03943073749542236, -0.0038887660484761, 0.03339513763785362, 0.029875535517930984, -0.04592670500278473, -0.025421665981411934, -0.030917109921574593, -0.013888979330658913, 0.041768331080675125, 0.005210795905441046, -0.025948982685804367, -0.048438459634780884, 0.03979453817009926, -0.018363432958722115, -0.031153816729784012, -0.07057961821556091, 0.04752140864729881, -0.008147692307829857, -0.018546758219599724, 0.05960584804415703, 0.03239542618393898, 0.028747543692588806, 0.07167099416255951, 0.038873642683029175, 0.01746978424489498, -0.034663937985897064, 0.039952073246240616, -0.03796060010790825, -0.020224932581186295, 0.008802128955721855, -0.03013799525797367, -0.033814478665590286, -0.001312045264057815, -0.06206948310136795, -0.04195403307676315, -0.030947253108024597, 0.010233147069811821, 0.0013733108062297106, -0.017733776941895485, 0.002638209844008088, 0.04423155635595322, -0.010570782236754894, -0.03026491589844227, -0.050445303320884705, -0.013358421623706818, -0.07234092056751251, -0.05467298626899719, -0.005435972008854151, 0.005227662157267332, 0.031903497874736786, 0.03346744179725647, 0.02441323548555374, 0.02286687307059765, 0.018981702625751495, -0.03720366954803467, 0.011199407279491425, 0.021947801113128662, -0.041394419968128204, -0.020404819399118423, 0.04100727289915085, 0.01231540646404028, 0.024576520547270775, -0.030248994007706642, 0.03845056891441345, -0.002654047915711999, -0.0030238053295761347, -0.028943391516804695, 0.013183736242353916, 0.026515964418649673, -0.06991603225469589, -0.03383917734026909, -0.019770029932260513, -0.03159410133957863, 0.034925468266010284, -0.025455951690673828, -0.030524834990501404, 0.019485075026750565, 0.009845064952969551, 0.03831714764237404, -0.03132344037294388, -0.009847883135080338, 0.030503742396831512, -0.007240647915750742, 0.023527033627033234, -0.05314766988158226, 0.053840167820453644, -0.04394197463989258, 0.02759353443980217, -0.013477546162903309, 0.010819760151207447, -0.027689676731824875, 0.030529916286468506, -0.03239530324935913, -0.013262391090393066, -0.021640626713633537, 0.04817439243197441, -0.014465952292084694, 0.027519742026925087, -0.009505247697234154, 0.03335275501012802, -0.025692595168948174, 0.06752420216798782, -0.04564271494746208, 0.020310871303081512, -0.03743254393339157, 0.03187811002135277, -0.024625319987535477, 0.012724903412163258, -0.006788636092096567, -0.012516329996287823, 0.02711654081940651, 0.059027936309576035, 0.03216983377933502, 0.02339319698512554, -0.0063962871208786964, -0.012783392332494259, 0.012802637182176113, -0.04924490302801132, -0.01959308050572872, -0.020601730793714523, -0.004951495677232742, -0.01950155571103096, 0.05510903522372246, 0.03136727213859558, -0.054852090775966644, -0.07403122633695602, 0.033262282609939575, 0.022244036197662354, -0.0015515764243900776, 0.009049231186509132, 0.041443757712841034, 0.025157151743769646, 0.047008030116558075, -0.018306966871023178, -0.005011321511119604, -0.002741648815572262, -0.0488995760679245, 0.024464888498187065, -0.002284688875079155, 0.028162594884634018, 0.007455917540937662, -0.04245978966355324, -0.022824538871645927, 0.06700190901756287, 0.026720227673649788, 0.02612805925309658, 0.002859598258510232, -0.04839934781193733, 0.04453699663281441, 0.007515546400099993, -0.025734225288033485, 0.02872081659734249, 0.012900873087346554, -0.0304312352091074, 0.05925971642136574, -0.002209956059232354, -0.0006406594766303897, 0.044343508780002594, 0.023144688457250595, -0.02394753322005272, 0.06493215262889862, -0.03395838290452957, 0.012030710466206074, 0.03804008290171623, -0.07200993597507477, -0.013084144331514835, -0.045897528529167175, 0.05194807052612305, -0.06772910058498383, 0.029625272378325462, 0.05585900694131851, 0.005323372781276703, 0.02810220792889595, -0.0545952245593071, -0.06341607123613358, 0.019530249759554863, -0.03990896791219711, 0.06562851369380951, 0.0009605648228898644, -0.04137502610683441, 0.06537669897079468, 0.008490396663546562, -0.06836126744747162, 0.03562795743346214, 0.0250848401337862, 0.06478288024663925, 0.03696823865175247, 0.04725487902760506, -0.04058969393372536, -0.0062808445654809475, -0.040288619697093964, 0.00896401610225439, -0.052336372435092926, -0.007725648581981659, 0.037127647548913956, -0.037306930869817734, -0.025719281286001205, 0.0364355631172657, -0.00798007007688284, -0.012165490537881851, 0.04474510997533798, -0.054765623062849045, -0.03523993864655495, 0.004167337901890278, 0.015795240178704262, -0.041205957531929016, -0.007881141267716885, -0.03411520645022392, 0.013314515352249146, 0.014783323742449284, -0.0011720180045813322, -0.013759768567979336, -0.01783807761967182, 0.03451633080840111, -0.03168265148997307, -0.03476990759372711, 0.01587538793683052, 0.0012436250690370798, -0.0237249918282032, 0.04727490618824959, 0.00025438779266551137, 0.01687016710639, 0.02645130828022957, -0.00819358043372631, 0.024251766502857208, -0.025955716148018837, -0.014851804822683334, 0.023832514882087708, -0.008548012003302574, 0.022810185328125954, 0.009772836230695248, 0.040138594806194305, 0.03966997191309929, 0.03003586083650589, -0.00770232267677784, -0.03135570138692856, -0.03061158023774624, 0.016428351402282715, -0.04246337711811066, 0.00838263239711523, -0.00003117915184702724, -0.04737821966409683, -0.019299492239952087, 0.0085031408816576, -0.03880571946501732, 0.04233017563819885, -0.059586767107248306, 0.006716540548950434, 0.04323423653841019, -0.015050409361720085, -0.064649797976017, -0.10705158859491348, -0.018510503694415092, -0.05520981177687645, -0.011541925370693207, 0.05660204589366913, -0.03799132630228996, 0.041818901896476746, -0.04325655475258827, -0.03626922145485878, 0.04693721607327461, 0.058088768273591995, -0.06182260438799858, 0.06794437766075134, 0.04152318090200424, -0.046124111860990524, 0.008853618055582047, 0.023185348138213158, -0.0522591732442379, 0.004116170108318329, 0.020125262439250946, -0.0023438751231878996, 0.019941294565796852, 0.016834888607263565, -0.053377944976091385, -0.023204708471894264, -0.0736580416560173, -0.03839064761996269, -0.05109583958983421, 0.0009184658993035555, 0.04404820129275322 ]
Declan/WallStreetJournal_model_v6
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-0 results: [] --- <!-- 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__sst2__train-16-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6903 - Accuracy: 0.5091 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6934 | 1.0 | 7 | 0.7142 | 0.2857 | | 0.6703 | 2.0 | 14 | 0.7379 | 0.2857 | | 0.6282 | 3.0 | 21 | 0.7769 | 0.2857 | | 0.5193 | 4.0 | 28 | 0.8799 | 0.2857 | | 0.5104 | 5.0 | 35 | 0.8380 | 0.4286 | | 0.2504 | 6.0 | 42 | 0.8622 | 0.4286 | | 0.1794 | 7.0 | 49 | 0.9227 | 0.4286 | | 0.1156 | 8.0 | 56 | 0.8479 | 0.4286 | | 0.0709 | 9.0 | 63 | 1.0929 | 0.2857 | | 0.0471 | 10.0 | 70 | 1.2189 | 0.2857 | | 0.0288 | 11.0 | 77 | 1.2026 | 0.4286 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01165197603404522, 0.014216777868568897, -0.043979812413454056, 0.043529413640499115, 0.05197995901107788, 0.016556646674871445, -0.018732525408267975, -0.022703908383846283, -0.05628203973174095, 0.06365558505058289, 0.01521011721342802, -0.03235171362757683, 0.01131509244441986, 0.042264070361852646, -0.016220349818468094, -0.036687225103378296, -0.003040619660168886, -0.010846341028809547, -0.034036628901958466, -0.002465997589752078, 0.0041656880639493465, -0.015561411157250404, -0.015608934685587883, 0.004192259628325701, -0.004666436929255724, 0.017308643087744713, 0.007048742845654488, 0.022015593945980072, 0.03903336077928543, -0.06778321415185928, 0.0054158116690814495, -0.029840152710676193, -0.05126144737005234, -0.022715860977768898, -0.013596663251519203, -0.0171807948499918, -0.006688889116048813, 0.027809342369437218, 0.03686290979385376, 0.03578946366906166, 0.00844508409500122, 0.030910011380910873, -0.0010943746892735362, -0.01029482576996088, 0.06265506148338318, 0.011758252047002316, -0.03840731829404831, 0.00033089949283748865, 0.03946369141340256, -0.023678576573729515, -0.08004076033830643, -0.0463048592209816, -0.018651358783245087, 0.024486489593982697, -0.01712012104690075, -0.013369257561862469, -0.05939217284321785, 0.016836002469062805, 0.06570664048194885, -0.04566647857427597, -0.030343713238835335, 0.0009019615827128291, -0.07144146412611008, 0.0046421438455581665, 0.03762318566441536, -0.020701801404356956, 0.012972126714885235, -0.05028557777404785, 0.024969104677438736, -0.010821823962032795, 0.054450325667858124, -0.02090473100543022, 0.012549609877169132, -0.07143113762140274, -0.01919199898838997, -0.008913000114262104, 0.044715091586112976, 0.05746983736753464, -0.030673010274767876, 0.05202159285545349, 0.02987244538962841, -0.000977886258624494, 0.043725162744522095, -0.02945290505886078, 0.00983176939189434, 0.0340954028069973, -0.04554890841245651, 0.0006113555282354355, 0.017933007329702377, 0.02588769979774952, -0.037785161286592484, -0.03673622012138367, -0.029958872124552727, -0.03266602382063866, -0.0017371010035276413, 0.020017754286527634, 0.02700061723589897, 0.019288435578346252, 0.0393693633377552, 0.012038235552608967, 0.02631549723446369, 0.03812987729907036, -0.01726033166050911, 0.06746713817119598, -0.004778784699738026, -0.011290774680674076, -0.006770750507712364, -0.017804976552724838, -0.05208311229944229, 0.02020340785384178, 0.026344675570726395, -0.02032395824790001, -0.012532947584986687, 0.03744060918688774, 0.00458355201408267, 0.004385285545140505, 0.07809201627969742, -0.026262037456035614, -0.0410325713455677, -0.03271033242344856, 0.025879226624965668, 0.015983646735548973, -0.019437232986092567, 0.014805563725531101, -0.044889021664857864, -0.016936268657445908, -0.025834159925580025, -0.01779601164162159, -0.019069820642471313, 0.021448107436299324, 0.013489695265889168, 0.06414541602134705, 0.032320309430360794, -0.08765450119972229, 0.005523302126675844, 0.016771741211414337, -0.055735476315021515, 0.04738999903202057, 0.02457079477608204, 0.11474081873893738, -0.058388613164424896, -0.06745806336402893, 0.008505487814545631, -0.002344580367207527, -0.04079639911651611, 0.014446604996919632, 0.001116446452215314, -0.027870357036590576, 0.0064465198665857315, 0.0036784738767892122, 0.06963640451431274, -0.04203368350863457, -0.010617814026772976, 0.07542241364717484, 0.003924836870282888, 0.04688640683889389, -0.05639919638633728, -0.026532454416155815, 0.019221588969230652, -0.022563107311725616, -0.032448526471853256, 0.049010828137397766, -0.028187863528728485, -0.019193187355995178, -0.018107201904058456, -0.025640444830060005, 0.01063139084726572, 0.07481486350297928, -0.006813891232013702, -0.03344964608550072, -0.016909457743167877, 0.023438433185219765, 0.04666502773761749, 0.051729489117860794, -0.027064653113484383, 0.025955939665436745, 0.05843966454267502, 0.028316931799054146, -0.03285521641373634, 0.04041124880313873, 0.023932674899697304, -0.0264964047819376, -0.019962027668952942, 0.03165578842163086, 0.0029808073304593563, -0.04820025712251663, 0.03742408752441406, 0.013831599615514278, 0.004517678637057543, -0.06730937212705612, -0.04604349657893181, 0.039378490298986435, -0.0047362614423036575, -0.012361742556095123, 0.014412845484912395, 0.022060807794332504, -0.014838358387351036, 0.046067290008068085, -0.012271850369870663, 0.007041768170893192, -0.020970504730939865, -0.01955035887658596, 0.012102512642741203, -0.02120392583310604, 0.029474912211298943, 0.048107609152793884, -0.0035611013881862164, 0.09554098546504974, -0.04484691843390465, 0.02017161250114441, -0.05293035879731178, -0.03703394904732704, 0.01729472167789936, 0.05538259074091911, 0.05658251792192459, 0.056188058108091354, 0.009521367028355598, -0.02690841630101204, 0.04629005864262581, 0.07383663952350616, 0.045601096004247665, -0.004553423263132572, -0.032367583364248276, -0.016772111877799034, 0.040794603526592255, 0.05195599049329758, -0.04715719446539879, -0.014757531695067883, 0.012562739662826061, 0.0334906168282032, -0.0025846618227660656, 0.016249503940343857, -0.02614862285554409, 0.04016422852873802, -0.046718887984752655, -0.04187997058033943, 0.04334934428334236, 0.018608098849654198, 0.0004611156473401934, 0.029648590832948685, 0.027737269178032875, 0.009801873937249184, 0.023798445239663124, 0.02085193060338497, 0.019433319568634033, -0.053229667246341705, 0.022932667285203934, 0.005615411791950464, 0.05702238902449608, -0.05306658893823624, 0.03297029435634613, -0.016807859763503075, 0.01510677207261324, 0.04312758520245552, -0.03185715526342392, 0.02789197862148285, 0.050443604588508606, 0.035033438354730606, -0.03799474611878395, 0.023956527933478355, 0.004068527836352587, 0.03571784123778343, 0.04119810089468956, 0.008317091502249241, 0.07117564976215363, 0.02337649278342724, 0.043266210705041885, 0.0735468864440918, 0.020668726414442062, 0.03332122415304184, 0.012826114892959595, 0.07099029421806335, 0.01721762679517269, -0.010652262717485428, 0.045533157885074615, -0.045204803347587585, 0.021887514740228653, -0.05081038549542427, -0.004293206613510847, -0.023101193830370903, -0.008902334608137608, 0.05228111520409584, 0.027882391586899757, -0.03476489707827568, -0.01298389583826065, 0.015761638060212135, -0.007723578251898289, 0.02160748653113842, -0.005745462607592344, 0.010815062560141087, -0.00740788085386157, -0.020628252997994423, -0.026419539004564285, -0.06892604380846024, -0.05117373168468475, -0.028844419866800308, -0.015586688183248043, -0.02290344424545765, -0.08900602161884308, -0.005737898871302605, -0.08646246790885925, -0.022169802337884903, 0.02751072309911251, 0.007007200736552477, -0.02690981514751911, -0.03165557608008385, 0.022030847147107124, -0.04839204624295235, -0.039777159690856934, -0.04115761071443558, -0.059729982167482376, -0.04914103448390961, -0.08078255504369736, 0.03448894992470741, 0.035712942481040955, 0.0067518362775444984, 0.0008845769916661084, 0.02549983747303486, 0.01585358753800392, -0.029366251081228256, 0.039279755204916, 0.06478285044431686, -0.037425797432661057, -0.057092342525720596, 0.0323537141084671, -0.00976864155381918, 0.020091181620955467, 0.022318601608276367, -0.03056170418858528, 0.08972583711147308, 0.07280714809894562, 0.00887222308665514, 0.02060389518737793, -0.010255703702569008, -0.0623917430639267, -0.06718973815441132, -0.02536017820239067, -0.041245296597480774, -0.008392810821533203, -0.04692244529724121, -0.03802356496453285, -0.036305926740169525, -0.04335331916809082, 0.004801708273589611, -0.012654825113713741, 0.02585846744477749, 0.0195847786962986, 0.03678227588534355, 0.02047550491988659, 0.04418720677495003, -0.029795804992318153, -0.040166761726140976, 0.0583680085837841, 0.010497555136680603, 0.0059119462966918945, -0.08532373607158661, -0.002045372035354376, 0.027911538258194923, 0.0172390379011631, 0.016494600102305412, -0.005016910377889872, 0.0717926099896431, -0.01115663442760706, 0.0042356932535767555, 0.01363623421639204, -0.010465103201568127, -0.01203550398349762, -0.0016398739535361528, -0.003584207035601139, 0.0016277061076834798, -0.023064395412802696, -0.03275221586227417, -0.009361488744616508, 0.02879757434129715, -0.05832963436841965, -0.06097448617219925, -0.016419928520917892, 0.0329582579433918, 0.04214274510741234, -0.004911903291940689, -0.04635818302631378, -0.009154725819826126, -0.07447271794080734, -0.004551905672997236, 0.03731284290552139, 0.016432341188192368, -0.0035613097716122866, 0.04263569787144661, 0.01593385636806488, -0.007308268453925848, 0.03161788359284401, 0.05368693545460701, 0.07037266343832016, 0.011127880774438381, -0.08349546790122986, -0.0011987256584689021, -0.01597389578819275, 0.01274894643574953, -0.0094823082908988, -0.017748260870575905, -0.02260315977036953, -0.09969057142734528, -0.021654628217220306, 0.016982214525341988, 0.011507942341268063, -0.015954215079545975, 0.03341905400156975, 0.004256212152540684, -0.029537903144955635, -0.007091878913342953, 0.012460415251553059, 0.046013280749320984, -0.026846660301089287, 0.05114637687802315, -0.03143148496747017, 0.0007236609235405922, -0.058217596262693405, 0.01553337648510933, -0.054308101534843445, -0.022364893928170204, 0.013736852444708347, 0.046796996146440506, -0.028637688606977463, 0.05420512706041336, 0.07050706446170807, 0.04006204009056091, -0.050896160304546356, 0.03834572806954384, 0.0731658935546875, -0.041829049587249756, -0.04548116400837898, -0.0035067107528448105, 0.0025211782194674015, -0.01478427555412054, 0.0024555185809731483, -0.0017875161720439792, 0.0538412407040596, 0.026206975802779198, 0.002152007073163986, 0.0018112511606886983, -0.008480151183903217, -0.007032300345599651, -0.02571556717157364, -0.05073748156428337, -0.030351970344781876, 0.0018633289728313684, -0.028112981468439102, 0.022919509559869766, 0.026197995990514755, 0.03288358822464943, 0.0733269602060318, 0.02025708742439747, -0.04110632836818695, -0.002549039199948311, 0.02330259047448635, 0.00985697377473116, -0.0180218368768692, -0.06890083849430084, -0.04286997765302658, 0.028717273846268654, 0.048704054206609726, -0.02332412265241146, -0.060639239847660065, 0.014508457854390144, 0.050909604877233505, -0.05977679789066315, 0.058057162910699844, -0.0048662894405424595, 0.05282879248261452, 0.05686456337571144, -0.009039802476763725, 0.042153291404247284, -0.01914319023489952, -0.006322430446743965, -0.003306219121441245, 0.03967450186610222, -0.008770993910729885, -0.03358415514230728, -0.04814693704247475, 0.01985299214720726, 0.039794664829969406, 0.031247293576598167, 0.0446736216545105, -0.0342998206615448, -0.0416724719107151, 0.007121555507183075, 0.023666365072131157, -0.04114511236548424, -0.00780223123729229, 0.03909148648381233, 0.03145864978432655, -0.048431146889925, -0.022542595863342285, -0.022694963961839676, -0.014693684875965118, 0.039294905960559845, 0.006771871820092201, -0.020045066252350807, -0.04653739929199219, 0.03991660475730896, -0.015763938426971436, -0.028690343722701073, -0.06708510220050812, 0.04764775186777115, -0.012474799528717995, -0.023241136223077774, 0.05377556011080742, 0.03529553860425949, 0.02021601051092148, 0.07163435220718384, 0.03359534218907356, 0.014716822654008865, -0.033712562173604965, 0.040450889617204666, -0.03330375626683235, -0.019404517486691475, 0.00621216744184494, -0.029146647080779076, -0.036603156477212906, -0.001463984721340239, -0.063630610704422, -0.03616498038172722, -0.031122809275984764, 0.01706971414387226, 0.001164216548204422, -0.018499255180358887, -0.0011267601512372494, 0.05875425413250923, -0.006429420318454504, -0.0411146841943264, -0.046631962060928345, -0.015131577849388123, -0.06921101361513138, -0.051673274487257004, 0.001628814497962594, 0.006039773114025593, 0.03239971026778221, 0.03595934808254242, 0.02457001991569996, 0.017490742728114128, 0.02099180407822132, -0.04038488119840622, 0.014912023209035397, 0.018099196255207062, -0.04024540260434151, -0.01968497969210148, 0.037360429763793945, 0.011066594161093235, 0.025720594450831413, -0.03911897540092468, 0.035492293536663055, 0.0008312616846524179, -0.005111750680953264, -0.02405153028666973, 0.015700602903962135, 0.028646579012274742, -0.06370928138494492, -0.03492298349738121, -0.016532303765416145, -0.028069209307432175, 0.032408230006694794, -0.02431541495025158, -0.021333083510398865, 0.013540656305849552, 0.004764107521623373, 0.035371921956539154, -0.03480270877480507, -0.011327453888952732, 0.027717875316739082, -0.0020588370971381664, 0.01860099658370018, -0.055053528398275375, 0.061396341770887375, -0.03763747960329056, 0.024947360157966614, -0.020068185403943062, 0.011359462514519691, -0.02146247588098049, 0.02769020013511181, -0.02569148689508438, -0.022348519414663315, -0.01393457967787981, 0.05863051861524582, -0.012974075973033905, 0.02939511649310589, -0.009202653542160988, 0.03903907909989357, -0.027780573815107346, 0.06971857696771622, -0.03976782038807869, 0.019878258928656578, -0.04133925959467888, 0.02762855589389801, -0.019869986921548843, 0.01792098954319954, -0.014647791162133217, -0.018154669553041458, 0.03256057947874069, 0.06190652772784233, 0.033238235861063004, 0.03064393438398838, -0.0022689083125442266, -0.014931193552911282, 0.012756049633026123, -0.04200872406363487, -0.018193580210208893, -0.012563308700919151, -0.000995284877717495, -0.020506400614976883, 0.055330805480480194, 0.030598314478993416, -0.05763731524348259, -0.07554281502962112, 0.038612134754657745, 0.01675020344555378, -0.0015516391722485423, 0.0058707729913294315, 0.0479031577706337, 0.03340301290154457, 0.04148377105593681, -0.017560459673404694, -0.00669447984546423, -0.0011603517923504114, -0.05187207832932472, 0.02510727569460869, -0.004717216361314058, 0.02817494608461857, 0.014577933587133884, -0.043040983378887177, -0.022296860814094543, 0.05933763459324837, 0.026063168421387672, 0.024415655061602592, 0.0020136572420597076, -0.043763644993305206, 0.03721275180578232, 0.00732076819986105, -0.03516412526369095, 0.029478471726179123, 0.007881010882556438, -0.024221619591116905, 0.04583358019590378, -0.010060594417154789, 0.00234988727606833, 0.06089458242058754, 0.018305135890841484, -0.021115532144904137, 0.06995602697134018, -0.03714148700237274, 0.011595876887440681, 0.04204997792840004, -0.07572491466999054, -0.007189341355115175, -0.050484612584114075, 0.0576707161962986, -0.06780240684747696, 0.02322373539209366, 0.056554555892944336, -0.0008487876621074975, 0.028938673436641693, -0.05263879895210266, -0.05811180919408798, 0.01890501007437706, -0.040275078266859055, 0.06994893401861191, 0.012738036923110485, -0.04304659739136696, 0.052847061306238174, 0.012171090580523014, -0.06489533931016922, 0.03782487288117409, 0.028313562273979187, 0.05353212729096413, 0.03908180817961693, 0.04662453383207321, -0.0450349859893322, -0.002762270625680685, -0.03254886344075203, 0.014902685768902302, -0.050676245242357254, -0.013355404138565063, 0.036624517291784286, -0.04444560781121254, -0.025292731821537018, 0.029804740101099014, -0.013404564000666142, -0.01822469010949135, 0.051125749945640564, -0.05299403518438339, -0.040476299822330475, 0.015024715103209019, 0.020786087960004807, -0.0430392287671566, -0.01096615381538868, -0.03220946341753006, 0.010711527429521084, 0.009989144280552864, 0.003188616130501032, -0.019527113065123558, -0.01696043089032173, 0.028718916699290276, -0.043072015047073364, -0.032200124114751816, 0.022791078314185143, -0.00706084631383419, -0.021627277135849, 0.03913162276148796, 0.00869506411254406, 0.013286987319588661, 0.03142331540584564, -0.015009406954050064, 0.02356836572289467, -0.0353006049990654, -0.018322011455893517, 0.030917664989829063, -0.008452721871435642, 0.0215646680444479, 0.010026690550148487, 0.031437650322914124, 0.036828964948654175, 0.02330455742776394, -0.0025171476881951094, -0.03531031310558319, -0.03094222955405712, 0.014163699932396412, -0.042265843600034714, 0.0050331647507846355, -0.004987549502402544, -0.050714582204818726, -0.022518854588270187, 0.0011515844380483031, -0.04265488311648369, 0.03805644065141678, -0.06287164986133575, 0.00937392096966505, 0.045742373913526535, -0.01691140979528427, -0.06028050556778908, -0.11654698848724365, -0.014488598331809044, -0.055196721106767654, -0.013667437247931957, 0.05071726068854332, -0.035832833498716354, 0.04412369802594185, -0.05001458153128624, -0.031830329447984695, 0.03951539844274521, 0.0531974621117115, -0.05746351554989815, 0.06136419251561165, 0.04429994896054268, -0.04955987259745598, 0.011072049848735332, 0.024424783885478973, -0.05104923993349075, 0.0028277270030230284, 0.016614647582173347, -0.003758322214707732, 0.023205416277050972, 0.01543168630450964, -0.05965091288089752, -0.01917077600955963, -0.07134293764829636, -0.04003162682056427, -0.047258730977773666, 0.006599515676498413, 0.04671821370720863 ]
Declan/WallStreetJournal_model_v8
[ "pytorch", "bert", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "BertForMaskedLM" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-1 results: [] --- <!-- 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__sst2__train-16-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6012 - Accuracy: 0.6766 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6983 | 1.0 | 7 | 0.7036 | 0.2857 | | 0.6836 | 2.0 | 14 | 0.7181 | 0.2857 | | 0.645 | 3.0 | 21 | 0.7381 | 0.2857 | | 0.5902 | 4.0 | 28 | 0.7746 | 0.2857 | | 0.5799 | 5.0 | 35 | 0.7242 | 0.5714 | | 0.3584 | 6.0 | 42 | 0.6935 | 0.5714 | | 0.2596 | 7.0 | 49 | 0.7041 | 0.5714 | | 0.1815 | 8.0 | 56 | 0.5930 | 0.7143 | | 0.0827 | 9.0 | 63 | 0.6976 | 0.7143 | | 0.0613 | 10.0 | 70 | 0.7346 | 0.7143 | | 0.0356 | 11.0 | 77 | 0.6992 | 0.5714 | | 0.0158 | 12.0 | 84 | 0.7328 | 0.5714 | | 0.013 | 13.0 | 91 | 0.7819 | 0.5714 | | 0.0103 | 14.0 | 98 | 0.8589 | 0.5714 | | 0.0087 | 15.0 | 105 | 0.9177 | 0.5714 | | 0.0076 | 16.0 | 112 | 0.9519 | 0.5714 | | 0.0078 | 17.0 | 119 | 0.9556 | 0.5714 | | 0.006 | 18.0 | 126 | 0.9542 | 0.5714 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013316398486495018, 0.013647627085447311, -0.04543869197368622, 0.04336328059434891, 0.05252654850482941, 0.01617245562374592, -0.018083684146404266, -0.021973853930830956, -0.05540824308991432, 0.06388716399669647, 0.016085844486951828, -0.03254915773868561, 0.009445788338780403, 0.04404556751251221, -0.015867555513978004, -0.03669923171401024, -0.0020752488635480404, -0.012118207290768623, -0.03288135677576065, -0.0032278646249324083, 0.004736989736557007, -0.015041118487715721, -0.016109906136989594, 0.005800844635814428, -0.004763544537127018, 0.015417607501149178, 0.006890554446727037, 0.021738290786743164, 0.03827985003590584, -0.06916868686676025, 0.004924471955746412, -0.030161801725625992, -0.051709700375795364, -0.022620003670454025, -0.014113923534750938, -0.017678070813417435, -0.0048704491928219795, 0.02798694372177124, 0.03437628224492073, 0.0363277941942215, 0.009256142191588879, 0.02910352312028408, -0.002067748922854662, -0.01072460412979126, 0.0614532008767128, 0.00981405284255743, -0.03956345096230507, -0.0005645754281431437, 0.03843721002340317, -0.024210866540670395, -0.0812070369720459, -0.047365982085466385, -0.015706481412053108, 0.025972142815589905, -0.016564005985856056, -0.015065174549818039, -0.05878148600459099, 0.01632484421133995, 0.06597056984901428, -0.046586986631155014, -0.031114082783460617, 0.001405305229127407, -0.07167738676071167, 0.0064343963749706745, 0.036676015704870224, -0.019871264696121216, 0.014272610656917095, -0.05038566142320633, 0.024105088785290718, -0.009655561298131943, 0.054293304681777954, -0.02004292607307434, 0.01201916579157114, -0.07188247889280319, -0.019055070355534554, -0.009788262657821178, 0.044213488698005676, 0.05789244920015335, -0.03235816955566406, 0.052834607660770416, 0.028983943164348602, -0.0002918847312685102, 0.043625038117170334, -0.03016800992190838, 0.00775815499946475, 0.03315442055463791, -0.045836981385946274, 0.0007487167604267597, 0.01730267144739628, 0.026379967108368874, -0.03832966089248657, -0.036381643265485764, -0.029813211411237717, -0.03267005458474159, -0.0004069466085638851, 0.01954621821641922, 0.026021070778369904, 0.01854121871292591, 0.03936397656798363, 0.01231029350310564, 0.026584399864077568, 0.03869948908686638, -0.017574507743120193, 0.06765329837799072, -0.00493205850943923, -0.01046358235180378, -0.007492947392165661, -0.017448611557483673, -0.05124640092253685, 0.021518263965845108, 0.025684185326099396, -0.02137749083340168, -0.011085865087807178, 0.037425607442855835, 0.006177482195198536, 0.004841686692088842, 0.07845423370599747, -0.025560535490512848, -0.04097238928079605, -0.030272945761680603, 0.027039742097258568, 0.014931601472198963, -0.020135093480348587, 0.014125260524451733, -0.04661891609430313, -0.017494795843958855, -0.023274561390280724, -0.016735689714550972, -0.018514972180128098, 0.021588873118162155, 0.01416748482733965, 0.06468795984983444, 0.03263887017965317, -0.0888131782412529, 0.0032709212973713875, 0.016564350575208664, -0.055579815059900284, 0.04716550558805466, 0.02525359019637108, 0.11304255574941635, -0.05722352862358093, -0.06899676471948624, 0.007514048833400011, -0.001627515652216971, -0.04081083461642265, 0.014478377997875214, 0.0016207306180149317, -0.02762419357895851, 0.005794777534902096, 0.0029212748631834984, 0.06818664073944092, -0.040125876665115356, -0.01079982053488493, 0.07506143301725388, 0.00453018955886364, 0.04401426762342453, -0.05688880756497383, -0.02654133550822735, 0.016942067071795464, -0.020868035033345222, -0.031209688633680344, 0.04793309047818184, -0.02902218885719776, -0.017439648509025574, -0.01796300895512104, -0.023664742708206177, 0.0113106993958354, 0.07474153488874435, -0.008173813112080097, -0.03345666080713272, -0.017475977540016174, 0.024006744846701622, 0.04649185389280319, 0.05119156464934349, -0.027173278853297234, 0.02444647252559662, 0.054858751595020294, 0.027672190219163895, -0.033144742250442505, 0.03932984173297882, 0.026255745440721512, -0.0250259842723608, -0.020040692761540413, 0.03094078041613102, 0.0022662810515612364, -0.047306280583143234, 0.03639053553342819, 0.013295884244143963, 0.005148525349795818, -0.06776086241006851, -0.04601484164595604, 0.03889167681336403, -0.004830102436244488, -0.012362751178443432, 0.013962280936539173, 0.022175708785653114, -0.014752604067325592, 0.045365020632743835, -0.01236108411103487, 0.007960964925587177, -0.02170291729271412, -0.019819382578134537, 0.01312180981040001, -0.020638329908251762, 0.028687214478850365, 0.04879133403301239, -0.0018476668046787381, 0.092269167304039, -0.04586629569530487, 0.02060258388519287, -0.05558951944112778, -0.038026291877031326, 0.017323389649391174, 0.05444944277405739, 0.05827067419886589, 0.055062469094991684, 0.008910820819437504, -0.026941174641251564, 0.046127378940582275, 0.07448669523000717, 0.044087909162044525, -0.00428553344681859, -0.033166877925395966, -0.016894539818167686, 0.04022449627518654, 0.05259988456964493, -0.04855866730213165, -0.015278647653758526, 0.0132913738489151, 0.031163927167654037, -0.002839210443198681, 0.01666165515780449, -0.027048764750361443, 0.03992706164717674, -0.047565337270498276, -0.043306879699230194, 0.0427769236266613, 0.01756649650633335, 0.00012183735816506669, 0.030564382672309875, 0.02571207471191883, 0.01149644237011671, 0.024388855323195457, 0.020617114380002022, 0.020377667620778084, -0.05224853381514549, 0.02305440418422222, 0.0038176660891622305, 0.05695860832929611, -0.05226338282227516, 0.032744430005550385, -0.015351465903222561, 0.012994296848773956, 0.04174533858895302, -0.03156391531229019, 0.026536090299487114, 0.0506000891327858, 0.035918835550546646, -0.037893518805503845, 0.02507925033569336, 0.0040938290767371655, 0.03605140745639801, 0.04194473475217819, 0.00846761092543602, 0.07026856392621994, 0.02358882501721382, 0.043053243309259415, 0.07325034588575363, 0.0185532309114933, 0.033230721950531006, 0.013970699161291122, 0.07172293215990067, 0.016422230750322342, -0.011889495886862278, 0.046557262539863586, -0.04530930891633034, 0.02332085743546486, -0.04985850304365158, -0.003543004160746932, -0.023943165317177773, -0.007547054905444384, 0.05246048793196678, 0.026799127459526062, -0.03476355969905853, -0.011279528960585594, 0.01468668133020401, -0.008563497103750706, 0.021643351763486862, -0.0069339824840426445, 0.011749614030122757, -0.008481382392346859, -0.022599127143621445, -0.0264611653983593, -0.06878625601530075, -0.050368532538414, -0.029144147410988808, -0.016482030972838402, -0.022220967337489128, -0.08967485278844833, -0.005572285037487745, -0.08722253888845444, -0.021745547652244568, 0.027487820014357567, 0.008788938634097576, -0.026425587013363838, -0.031631141901016235, 0.0228069219738245, -0.048629652708768845, -0.03725394606590271, -0.04269039258360863, -0.05953984707593918, -0.04717329889535904, -0.08229869604110718, 0.03431130573153496, 0.03714553639292717, 0.0073785725980997086, 0.0018412305507808924, 0.02422821708023548, 0.015989594161510468, -0.02798345871269703, 0.03749355301260948, 0.06609218567609787, -0.03479185700416565, -0.057521410286426544, 0.03200332447886467, -0.01027363259345293, 0.019449524581432343, 0.020996805280447006, -0.031499046832323074, 0.08948791772127151, 0.07136198878288269, 0.008967374451458454, 0.021396586671471596, -0.010560297407209873, -0.06254346668720245, -0.0662459060549736, -0.025720413774251938, -0.04121334105730057, -0.008573256433010101, -0.04597872868180275, -0.038145218044519424, -0.03670775145292282, -0.04416331276297569, 0.004155043512582779, -0.012954059056937695, 0.026141125708818436, 0.02005610242486, 0.03635869175195694, 0.019922053441405296, 0.042663946747779846, -0.03034018911421299, -0.040304142981767654, 0.057838425040245056, 0.01073544006794691, 0.006083518732339144, -0.08598964661359787, -0.0014486414147540927, 0.027495065703988075, 0.016695726662874222, 0.016123197972774506, -0.004279667977243662, 0.07350316643714905, -0.011128661222755909, 0.005029068328440189, 0.013938146643340588, -0.010272171348333359, -0.011198338121175766, -0.0003722794645000249, -0.0025011261459439993, 0.001957021653652191, -0.024184921756386757, -0.03256942704319954, -0.009325752966105938, 0.02824470028281212, -0.05812155455350876, -0.05987707898020744, -0.016676874831318855, 0.03352324664592743, 0.04076094552874565, -0.00498040858656168, -0.04746812954545021, -0.0073831090703606606, -0.07317959517240524, -0.005744739435613155, 0.037598662078380585, 0.01723296009004116, -0.0034166653640568256, 0.04289303719997406, 0.015834832563996315, -0.009323371574282646, 0.030943196266889572, 0.05584019050002098, 0.07145112007856369, 0.009897306561470032, -0.0837932750582695, -0.0022454559803009033, -0.016684215515851974, 0.011590797454118729, -0.010272118262946606, -0.018081577494740486, -0.023425500839948654, -0.09840606153011322, -0.020881982520222664, 0.016614990308880806, 0.013326517306268215, -0.01437007449567318, 0.03466641530394554, 0.003698156913742423, -0.030647901818156242, -0.007145423907786608, 0.012921595014631748, 0.046198807656764984, -0.02819588966667652, 0.051612891256809235, -0.03007647767663002, 0.00022747449111193419, -0.058400847017765045, 0.01703699864447117, -0.05241291970014572, -0.022686276584863663, 0.013139701448380947, 0.04697507619857788, -0.027670353651046753, 0.05345359817147255, 0.0705999881029129, 0.03957362473011017, -0.05207329988479614, 0.03912562504410744, 0.0713975802063942, -0.04247988387942314, -0.0459287092089653, -0.007288438733667135, 0.003227791516110301, -0.014619112946093082, 0.0029090577736496925, 0.000504496565554291, 0.05498303100466728, 0.025126241147518158, 0.004343825858086348, 0.0009329977328889072, -0.008134204894304276, -0.0073438952676951885, -0.026804013177752495, -0.05005199462175369, -0.030297746881842613, 0.0030920275021344423, -0.02839817851781845, 0.02141735330224037, 0.02629002556204796, 0.03285803645849228, 0.07392812520265579, 0.021121181547641754, -0.04030466824769974, -0.0012295449851080775, 0.023872798308730125, 0.011647208593785763, -0.01750800386071205, -0.06900379806756973, -0.04404233768582344, 0.028116442263126373, 0.04961885139346123, -0.021965831518173218, -0.061011821031570435, 0.014538760297000408, 0.051482878625392914, -0.05978408828377724, 0.059289898723363876, -0.005047281738370657, 0.054312609136104584, 0.057142045348882675, -0.008998474106192589, 0.041856445372104645, -0.019693367183208466, -0.005890278145670891, -0.0031765750609338284, 0.03967278078198433, -0.00845651887357235, -0.03294907510280609, -0.048731330782175064, 0.02063625492155552, 0.0379430390894413, 0.03276986628770828, 0.04513334482908249, -0.035089053213596344, -0.04147087037563324, 0.00548734562471509, 0.02346564643085003, -0.04123929515480995, -0.007642958778887987, 0.03948787972331047, 0.03137712553143501, -0.04941210895776749, -0.02195197530090809, -0.023442355915904045, -0.014311548322439194, 0.03982739523053169, 0.006500073242932558, -0.021269643679261208, -0.045526809990406036, 0.0395841971039772, -0.01619385927915573, -0.028236936777830124, -0.06735503673553467, 0.04811236262321472, -0.014214364811778069, -0.024720413610339165, 0.05542157590389252, 0.0353679433465004, 0.020100584253668785, 0.07139147818088531, 0.03443242609500885, 0.0157631728798151, -0.033681631088256836, 0.04185671731829643, -0.033411890268325806, -0.019689837470650673, 0.005346312187612057, -0.0314093716442585, -0.03671581298112869, -0.0009920720476657152, -0.06396860629320145, -0.036799415946006775, -0.03192347660660744, 0.016429278999567032, 0.001802488579414785, -0.019760679453611374, -0.0007009581895545125, 0.05923983454704285, -0.0063579510897397995, -0.03989493474364281, -0.046397220343351364, -0.014989327639341354, -0.06805261224508286, -0.050935328006744385, 0.0003258858050685376, 0.006617275066673756, 0.032470934092998505, 0.03509620204567909, 0.023721370846033096, 0.018709762021899223, 0.021057656034827232, -0.04059240221977234, 0.01633252017199993, 0.017901943996548653, -0.03876529633998871, -0.021192608401179314, 0.03662549704313278, 0.011049219407141209, 0.027015287429094315, -0.04086089879274368, 0.03427943214774132, 0.0015444090822711587, -0.004591262899339199, -0.023313261568546295, 0.016704855486750603, 0.03123597986996174, -0.0644664391875267, -0.035297393798828125, -0.017021777108311653, -0.027357982471585274, 0.032536085695028305, -0.024751534685492516, -0.020816732197999954, 0.01352752186357975, 0.0034531294368207455, 0.034762993454933167, -0.03356243297457695, -0.012588485144078732, 0.027133619412779808, -0.0027758220676332712, 0.019662339240312576, -0.054400552064180374, 0.060235150158405304, -0.03610062226653099, 0.023269236087799072, -0.020614519715309143, 0.010449113324284554, -0.02051473967730999, 0.024986088275909424, -0.025565611198544502, -0.023228175938129425, -0.014092717319726944, 0.05824214965105057, -0.01313301082700491, 0.03173104301095009, -0.008643586188554764, 0.03699005767703056, -0.027956385165452957, 0.07003515958786011, -0.039842620491981506, 0.019945189356803894, -0.042272355407476425, 0.027108732610940933, -0.01910698041319847, 0.018609745427966118, -0.014573881402611732, -0.01800055429339409, 0.030727725476026535, 0.061982061713933945, 0.035233017057180405, 0.03036133386194706, -0.0024976248387247324, -0.014074052684009075, 0.014735163189470768, -0.0415395125746727, -0.01952393166720867, -0.012725543230772018, 0.000739137118216604, -0.017386544495821, 0.05377606302499771, 0.03011135198175907, -0.056810639798641205, -0.07376336306333542, 0.0382181815803051, 0.01689266599714756, -0.0019980173092335463, 0.006191255524754524, 0.047269124537706375, 0.032904792577028275, 0.04289167374372482, -0.017430102452635765, -0.005901442375034094, -0.0003996402083430439, -0.05240205302834511, 0.024951759725809097, -0.00520035857334733, 0.027669774368405342, 0.01346996147185564, -0.043446797877550125, -0.02318975143134594, 0.06005563586950302, 0.026535142213106155, 0.02484978549182415, 0.001180383376777172, -0.04382422938942909, 0.0368705578148365, 0.0074908919632434845, -0.035551972687244415, 0.029784582555294037, 0.008949392475187778, -0.02373369038105011, 0.046584904193878174, -0.010230501182377338, 0.001957047265022993, 0.06043672561645508, 0.018100624904036522, -0.021026611328125, 0.07002753019332886, -0.037649005651474, 0.01093661691993475, 0.04295477271080017, -0.07707708328962326, -0.00734555721282959, -0.05187850818037987, 0.05933251976966858, -0.06872578710317612, 0.02352874167263508, 0.05612930655479431, -0.0031436372082680464, 0.029674410820007324, -0.052412137389183044, -0.05942036956548691, 0.019664518535137177, -0.03887033089995384, 0.06931131333112717, 0.011594627052545547, -0.04270370677113533, 0.05266977474093437, 0.012590425089001656, -0.06448669731616974, 0.03753839433193207, 0.026595737785100937, 0.05393839627504349, 0.03987687826156616, 0.04520818591117859, -0.0442492850124836, -0.004296508617699146, -0.03392937779426575, 0.016495326533913612, -0.05190921574831009, -0.015339733101427555, 0.03677663579583168, -0.04468061402440071, -0.02562076225876808, 0.029498929157853127, -0.01305339951068163, -0.020099692046642303, 0.05075227469205856, -0.052230123430490494, -0.040249958634376526, 0.01339261420071125, 0.019572788849473, -0.04548647627234459, -0.01318677980452776, -0.03214766085147858, 0.010501829907298088, 0.011011791415512562, 0.0031793981324881315, -0.020114848390221596, -0.014846539124846458, 0.02857430838048458, -0.04343217611312866, -0.03136279806494713, 0.023770304396748543, -0.007391462102532387, -0.022046945989131927, 0.04029136896133423, 0.005903996527194977, 0.013471731916069984, 0.03138629347085953, -0.013871976174414158, 0.022548768669366837, -0.03419642150402069, -0.020484164357185364, 0.03180934116244316, -0.0072278790175914764, 0.019174326211214066, 0.00939164962619543, 0.031445927917957306, 0.037054046988487244, 0.023821696639060974, -0.0022644801065325737, -0.03539637103676796, -0.03128182515501976, 0.014200432226061821, -0.042568814009428024, 0.0022362119052559137, -0.004763207398355007, -0.05006583780050278, -0.025588221848011017, 0.0029435704927891493, -0.04342231526970863, 0.03651956468820572, -0.062300264835357666, 0.008365435525774956, 0.044481899589300156, -0.017189061269164085, -0.06000247225165367, -0.11690441519021988, -0.01593562215566635, -0.05532364547252655, -0.013896869495511055, 0.0507696196436882, -0.03645126149058342, 0.0449870340526104, -0.05035979300737381, -0.030846448615193367, 0.04133562371134758, 0.053030095994472504, -0.05934922769665718, 0.060098689049482346, 0.04384031146764755, -0.051073648035526276, 0.010811187326908112, 0.025168990716338158, -0.05214396119117737, 0.003897798480466008, 0.016346221789717674, -0.0023527969606220722, 0.022306028753519058, 0.015167247503995895, -0.06061878055334091, -0.02014058828353882, -0.07090941071510315, -0.04117686301469803, -0.04843549802899361, 0.006717120762914419, 0.04603790491819382 ]
Declan/test_model
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-2 results: [] --- <!-- 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__sst2__train-16-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6748 - Accuracy: 0.6315 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7043 | 1.0 | 7 | 0.7054 | 0.2857 | | 0.6711 | 2.0 | 14 | 0.7208 | 0.2857 | | 0.6311 | 3.0 | 21 | 0.7365 | 0.2857 | | 0.551 | 4.0 | 28 | 0.7657 | 0.5714 | | 0.5599 | 5.0 | 35 | 0.6915 | 0.5714 | | 0.3167 | 6.0 | 42 | 0.7134 | 0.5714 | | 0.2489 | 7.0 | 49 | 0.7892 | 0.5714 | | 0.1985 | 8.0 | 56 | 0.6756 | 0.7143 | | 0.0864 | 9.0 | 63 | 0.8059 | 0.5714 | | 0.0903 | 10.0 | 70 | 0.8165 | 0.7143 | | 0.0429 | 11.0 | 77 | 0.7947 | 0.7143 | | 0.0186 | 12.0 | 84 | 0.8570 | 0.7143 | | 0.0146 | 13.0 | 91 | 0.9346 | 0.7143 | | 0.011 | 14.0 | 98 | 0.9804 | 0.7143 | | 0.0098 | 15.0 | 105 | 1.0136 | 0.7143 | | 0.0086 | 16.0 | 112 | 1.0424 | 0.7143 | | 0.0089 | 17.0 | 119 | 1.0736 | 0.7143 | | 0.0068 | 18.0 | 126 | 1.0808 | 0.7143 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013336359523236752, 0.012236352078616619, -0.045418187975883484, 0.043733082711696625, 0.05554964393377304, 0.01611056737601757, -0.019223477691411972, -0.020388536155223846, -0.055597249418497086, 0.06419763714075089, 0.015244018286466599, -0.030896678566932678, 0.009139562025666237, 0.04651946201920509, -0.01591602899134159, -0.036990318447351456, -0.0003205970278941095, -0.011239154264330864, -0.030542893335223198, -0.006730055436491966, 0.0037862379103899, -0.014005607925355434, -0.01516451220959425, 0.007882124744355679, -0.004210044164210558, 0.011960526928305626, 0.005652905907481909, 0.021952301263809204, 0.03712465986609459, -0.06916170567274094, 0.005237243603914976, -0.029883533716201782, -0.05082644894719124, -0.022298550233244896, -0.012424347922205925, -0.019148709252476692, -0.0052643087692558765, 0.02853505313396454, 0.034544508904218674, 0.03319792076945305, 0.008713155053555965, 0.030396824702620506, -0.004376110155135393, -0.009983863681554794, 0.0625976100564003, 0.008290222845971584, -0.03988540917634964, -0.0009671490406617522, 0.03651648387312889, -0.02531556785106659, -0.08311612159013748, -0.04767868295311928, -0.013134712353348732, 0.025849776342511177, -0.013977392576634884, -0.015348427928984165, -0.05910767614841461, 0.016291543841362, 0.06707387417554855, -0.04865672066807747, -0.029858754947781563, 0.0008344592642970383, -0.07190116494894028, 0.0060755787417292595, 0.037105198949575424, -0.02048674039542675, 0.015521029010415077, -0.050012700259685516, 0.0232093445956707, -0.007092238403856754, 0.05519569292664528, -0.019913338124752045, 0.01307805348187685, -0.07186291366815567, -0.019329329952597618, -0.010917872190475464, 0.04290969297289848, 0.05952583625912666, -0.03304339200258255, 0.053751297295093536, 0.027226615697145462, 0.0007661462877877057, 0.04173838347196579, -0.029436029493808746, 0.007497743237763643, 0.03431720286607742, -0.046372924000024796, 0.0012373625067993999, 0.015881475061178207, 0.026774246245622635, -0.03841550275683403, -0.036244552582502365, -0.029693342745304108, -0.03129624202847481, 0.0006094464333727956, 0.020486650988459587, 0.026601742953062057, 0.01767241582274437, 0.038214582949876785, 0.012938194908201694, 0.02449725568294525, 0.03729831054806709, -0.0171896293759346, 0.06877781450748444, -0.004113552160561085, -0.009869673289358616, -0.007218352053314447, -0.016188669949769974, -0.050924692302942276, 0.022001873701810837, 0.02423093654215336, -0.022299617528915405, -0.009158754721283913, 0.0378667414188385, 0.007354977075010538, 0.005706882104277611, 0.07759874314069748, -0.026331769302487373, -0.0401114746928215, -0.02957732416689396, 0.029684582725167274, 0.013606728985905647, -0.020987290889024734, 0.01537371426820755, -0.04985106736421585, -0.018178394064307213, -0.02230103500187397, -0.016540279611945152, -0.017826898023486137, 0.02196114882826805, 0.01303356233984232, 0.06461207568645477, 0.032762669026851654, -0.08826696127653122, 0.002177248243242502, 0.018469659611582756, -0.058267947286367416, 0.048097893595695496, 0.028392359614372253, 0.1121278628706932, -0.05604000762104988, -0.06892955303192139, 0.005396932829171419, -0.001244576065801084, -0.04187561571598053, 0.014587197452783585, 0.0027043349109590054, -0.02820694074034691, 0.004834880121052265, 0.002144198166206479, 0.06905238330364227, -0.039888348430395126, -0.011783021502196789, 0.07501119375228882, 0.0023951383773237467, 0.04140857234597206, -0.057516004890203476, -0.025357073172926903, 0.015418527647852898, -0.02052978239953518, -0.030238652601838112, 0.04733298346400261, -0.02821880765259266, -0.016209062188863754, -0.02092421054840088, -0.020372673869132996, 0.012448201887309551, 0.07656057178974152, -0.00873475894331932, -0.034425392746925354, -0.017304347828030586, 0.023479990661144257, 0.04595950245857239, 0.05103495344519615, -0.02676212787628174, 0.023765604943037033, 0.05373966693878174, 0.02656475268304348, -0.03470661863684654, 0.039380867034196854, 0.027490444481372833, -0.023774661123752594, -0.01934322528541088, 0.032208796590566635, 0.0009285358828492463, -0.046059831976890564, 0.03455616161227226, 0.012829694896936417, 0.004340361338108778, -0.06742805987596512, -0.04510252922773361, 0.04005410894751549, -0.0063872444443404675, -0.014335419051349163, 0.014222954399883747, 0.02127373032271862, -0.014702069573104382, 0.04554339125752449, -0.012299524620175362, 0.006490792613476515, -0.0233074352145195, -0.01696372777223587, 0.01304652076214552, -0.022538186982274055, 0.02906348928809166, 0.048408858478069305, -0.0016733012162148952, 0.09113463759422302, -0.04509922116994858, 0.02197767049074173, -0.05602381378412247, -0.04108048602938652, 0.014496582560241222, 0.05596717819571495, 0.06022530794143677, 0.05639718845486641, 0.010448060929775238, -0.027416756376624107, 0.04661833867430687, 0.07508337497711182, 0.04344254359602928, -0.003918691072613001, -0.03459971025586128, -0.018056683242321014, 0.03772316500544548, 0.0524611696600914, -0.04903564229607582, -0.015681816264986992, 0.013164563104510307, 0.03190307319164276, -0.0032086034771054983, 0.017329098656773567, -0.02783481404185295, 0.039906371384859085, -0.04659300297498703, -0.04404928535223007, 0.04098252207040787, 0.017547355964779854, 0.001662715687416494, 0.03132740035653114, 0.023858802393078804, 0.012561884708702564, 0.022357100620865822, 0.019911084324121475, 0.021313294768333435, -0.053200699388980865, 0.024534085765480995, 0.0026444627437740564, 0.05899345874786377, -0.05099210888147354, 0.03331487625837326, -0.014955711551010609, 0.011170846410095692, 0.03983938321471214, -0.03233442083001137, 0.02621852234005928, 0.05131709948182106, 0.03617316111922264, -0.0365631990134716, 0.02569366618990898, 0.0037784406449645758, 0.03633939474821091, 0.041079044342041016, 0.009700285270810127, 0.07179895788431168, 0.023882150650024414, 0.04550676792860031, 0.07089538127183914, 0.018517425283789635, 0.03223823383450508, 0.013945738784968853, 0.07175403833389282, 0.016066955402493477, -0.011995699256658554, 0.048456110060214996, -0.04402358829975128, 0.024222170934081078, -0.04993542283773422, -0.0038251145742833614, -0.025000829249620438, -0.007586302701383829, 0.05097945034503937, 0.027633098885416985, -0.03303186967968941, -0.009381603449583054, 0.013952632434666157, -0.01003180630505085, 0.02395215630531311, -0.008381707593798637, 0.012293646112084389, -0.00703207403421402, -0.021191325038671494, -0.02781021222472191, -0.0691903680562973, -0.04868154972791672, -0.02822965942323208, -0.016833288595080376, -0.020678922533988953, -0.08707322180271149, -0.00487320264801383, -0.08771804720163345, -0.021310023963451385, 0.027266602963209152, 0.00814778171479702, -0.02479083649814129, -0.03058289736509323, 0.02478048764169216, -0.04849639907479286, -0.036026157438755035, -0.04192390292882919, -0.05922142043709755, -0.04440395161509514, -0.0829450711607933, 0.03147125616669655, 0.038185372948646545, 0.00966047402471304, 0.0018230671994388103, 0.023419873788952827, 0.01701985113322735, -0.028272021561861038, 0.038763534277677536, 0.0651278868317604, -0.034740645438432693, -0.0591394416987896, 0.03172276169061661, -0.011481132358312607, 0.018494604155421257, 0.02149379625916481, -0.03139653429389, 0.08779627829790115, 0.06886550039052963, 0.008907514624297619, 0.021438853815197945, -0.010522590950131416, -0.06162983924150467, -0.06505133956670761, -0.02826116234064102, -0.0427270345389843, -0.010423666797578335, -0.04762175306677818, -0.03703856095671654, -0.03579935058951378, -0.04549916461110115, 0.0030716238543391228, -0.013162187300622463, 0.025372233241796494, 0.0217516478151083, 0.035004664212465286, 0.017508530989289284, 0.0420699268579483, -0.03259417042136192, -0.038851674646139145, 0.057327382266521454, 0.009176529012620449, 0.0057908534072339535, -0.08671697974205017, -0.0009405663586221635, 0.02904990129172802, 0.01578449457883835, 0.015358556061983109, -0.002944367006421089, 0.07571001350879669, -0.010460304096341133, 0.006100223399698734, 0.01559370569884777, -0.010633439756929874, -0.008466571569442749, -0.001277136616408825, -0.0007237576646730304, 0.003037789836525917, -0.023972252383828163, -0.03409264609217644, -0.010946247726678848, 0.02594212256371975, -0.056595753878355026, -0.058799851685762405, -0.014607417397201061, 0.033176057040691376, 0.04078872129321098, -0.0036113327369093895, -0.04857845604419708, -0.006569301709532738, -0.07197849452495575, -0.006123876199126244, 0.03461843356490135, 0.017495514824986458, -0.004315027967095375, 0.0442393496632576, 0.016983652487397194, -0.011524133384227753, 0.029683494940400124, 0.05733681470155716, 0.07295673340559006, 0.010503820143640041, -0.08405423909425735, -0.004011805169284344, -0.016723208129405975, 0.012253318913280964, -0.0103133050724864, -0.018385333940386772, -0.024808557704091072, -0.09830916672945023, -0.0201279167085886, 0.015271755866706371, 0.015687886625528336, -0.014427806250751019, 0.036229103803634644, 0.0031975966412574053, -0.02971239574253559, -0.007105949800461531, 0.013496117666363716, 0.04869532212615013, -0.027136188000440598, 0.051639024168252945, -0.029791738837957382, 0.0020775238517671824, -0.0577552430331707, 0.016703825443983078, -0.0529322512447834, -0.025282923132181168, 0.013185139745473862, 0.04844072088599205, -0.028061704710125923, 0.05273239314556122, 0.0703640952706337, 0.037613220512866974, -0.0530758798122406, 0.04028414189815521, 0.06938791275024414, -0.04339241236448288, -0.04662460833787918, -0.01041884534060955, 0.00547951553016901, -0.015497409738600254, 0.0024555292911827564, 0.004073575604707003, 0.05540979281067848, 0.023487195372581482, 0.0038903355598449707, 0.00024411176855210215, -0.0068791150115430355, -0.005990253761410713, -0.028000708669424057, -0.04750729352235794, -0.030069254338741302, 0.004400171805173159, -0.026658371090888977, 0.018677212297916412, 0.02598610892891884, 0.03344200924038887, 0.07398459315299988, 0.021502412855625153, -0.03991050645709038, -0.0021744666155427694, 0.0246407613158226, 0.01366119459271431, -0.01617046818137169, -0.06827162206172943, -0.044317733496427536, 0.02998153120279312, 0.04801344871520996, -0.021007616072893143, -0.06166975200176239, 0.01557055301964283, 0.04934081807732582, -0.0616004504263401, 0.05950358882546425, -0.004260763991624117, 0.0537923127412796, 0.05669238790869713, -0.010187104344367981, 0.04086633026599884, -0.018840644508600235, -0.006765665952116251, -0.0017589993076398969, 0.038561899214982986, -0.0075250896625220776, -0.03240901604294777, -0.050792913883924484, 0.0199934933334589, 0.03687506541609764, 0.033006466925144196, 0.04544975608587265, -0.035534098744392395, -0.041031841188669205, 0.0044557624496519566, 0.021810537204146385, -0.04169388487935066, -0.008902594447135925, 0.0404248982667923, 0.029958968982100487, -0.048276886343955994, -0.021582918241620064, -0.024963155388832092, -0.012547102756798267, 0.04077684134244919, 0.0065107280388474464, -0.021455081179738045, -0.045714087784290314, 0.03945743292570114, -0.01766926608979702, -0.02818181924521923, -0.06652764230966568, 0.0478532500565052, -0.014845609664916992, -0.02398141287267208, 0.05571667477488518, 0.03503543511033058, 0.02008533664047718, 0.07108199596405029, 0.03503527492284775, 0.01672244258224964, -0.033052053302526474, 0.04241050407290459, -0.034818485379219055, -0.021618301048874855, 0.0042671808041632175, -0.03212074935436249, -0.03827947378158569, 0.0013981929514557123, -0.0637078657746315, -0.03814311325550079, -0.03285878524184227, 0.015953009948134422, 0.00007305054896278307, -0.01844872534275055, 0.00027736369520425797, 0.059086982160806656, -0.0063507747836411, -0.041070953011512756, -0.04567980766296387, -0.014921138994395733, -0.06761699914932251, -0.05012273043394089, 0.00020019756630063057, 0.006003064569085836, 0.031628429889678955, 0.03485366702079773, 0.024915030226111412, 0.0176982544362545, 0.0207891333848238, -0.04313240945339203, 0.015568881295621395, 0.01738319918513298, -0.037231095135211945, -0.020793015137314796, 0.03732948377728462, 0.010825117118656635, 0.02617691084742546, -0.04094943776726723, 0.033171433955430984, 0.0006309120217338204, -0.004646275658160448, -0.024028416723012924, 0.016630664467811584, 0.03165299445390701, -0.06392599642276764, -0.0351085364818573, -0.0181232001632452, -0.02677043154835701, 0.03161609545350075, -0.025165634229779243, -0.020151469856500626, 0.01364503800868988, 0.0032784310169517994, 0.03509318083524704, -0.03201933577656746, -0.01237970869988203, 0.028058048337697983, -0.0049871960654854774, 0.019364630803465843, -0.05389712005853653, 0.059583425521850586, -0.03522907942533493, 0.02280735783278942, -0.02020600065588951, 0.010655315592885017, -0.02150527946650982, 0.022783922031521797, -0.02709166333079338, -0.022509686648845673, -0.014255638234317303, 0.05743667483329773, -0.012839453294873238, 0.03289739415049553, -0.007713434752076864, 0.036882832646369934, -0.02745102532207966, 0.06936963647603989, -0.03951840475201607, 0.019993668422102928, -0.04389457404613495, 0.02783431112766266, -0.01689724065363407, 0.019080722704529762, -0.016125841066241264, -0.017362071201205254, 0.031153850257396698, 0.061847854405641556, 0.035369593650102615, 0.02885626070201397, -0.003342545824125409, -0.012098044157028198, 0.017195265740156174, -0.04019535332918167, -0.019672425463795662, -0.01321613509207964, 0.0023453717585653067, -0.01653761975467205, 0.05459802970290184, 0.029926661401987076, -0.05538204312324524, -0.0723232701420784, 0.03683468699455261, 0.01616576872766018, -0.0010994271142408252, 0.005322696175426245, 0.046584200114011765, 0.03177658095955849, 0.042579736560583115, -0.016889402642846107, -0.00541544146835804, -0.0005826319684274495, -0.052008237689733505, 0.02530095912516117, -0.005380081478506327, 0.025386936962604523, 0.013191851787269115, -0.04462900757789612, -0.02483697049319744, 0.059371910989284515, 0.02651616558432579, 0.02491363324224949, 0.00047790544340386987, -0.04405311495065689, 0.036538004875183105, 0.00730336457490921, -0.03487614169716835, 0.03075885958969593, 0.009703013114631176, -0.024495378136634827, 0.04514005407691002, -0.012461580336093903, -0.0008331011631526053, 0.060838714241981506, 0.01866230182349682, -0.023041434586048126, 0.0712418183684349, -0.038515571504831314, 0.012179811485111713, 0.04332903400063515, -0.07947743684053421, -0.008386252447962761, -0.0523654967546463, 0.05883222818374634, -0.0710400715470314, 0.024578267708420753, 0.05702832341194153, -0.0038250458892434835, 0.03048543632030487, -0.05356207862496376, -0.0610310398042202, 0.017682194709777832, -0.03736134245991707, 0.0686044842004776, 0.010959552600979805, -0.04257712885737419, 0.0544121153652668, 0.0124266492202878, -0.06329931318759918, 0.037915948778390884, 0.024518953636288643, 0.05346575006842613, 0.040112949907779694, 0.04391233250498772, -0.045302864164114, -0.0031605700496584177, -0.03606671839952469, 0.01705431006848812, -0.05230245366692543, -0.0183870792388916, 0.037331949919462204, -0.04588044062256813, -0.024003563448786736, 0.029054781422019005, -0.013874504715204239, -0.020695865154266357, 0.050651200115680695, -0.052359454333782196, -0.04009507969021797, 0.011882570572197437, 0.01828179508447647, -0.045831337571144104, -0.013848511502146721, -0.03092094138264656, 0.010086159221827984, 0.01212248019874096, 0.0062505463138222694, -0.01940886490046978, -0.012957397848367691, 0.028885161504149437, -0.04179826006293297, -0.03151290491223335, 0.02358858659863472, -0.006340060383081436, -0.023371564224362373, 0.04178478941321373, 0.0032670143991708755, 0.0145490113645792, 0.03174195811152458, -0.010931181721389294, 0.023159662261605263, -0.032569508999586105, -0.0195839274674654, 0.03202544525265694, -0.006731532514095306, 0.01770712435245514, 0.008511500433087349, 0.02879333682358265, 0.03600700944662094, 0.024636495858430862, -0.0011752004502341151, -0.03485807776451111, -0.03076709248125553, 0.015104756690561771, -0.043119847774505615, 0.00200502946972847, -0.005110224708914757, -0.05053587630391121, -0.027321970090270042, 0.003992545884102583, -0.042128536850214005, 0.03749772161245346, -0.06223057955503464, 0.006684646941721439, 0.043444208800792694, -0.017099857330322266, -0.061052728444337845, -0.11583558470010757, -0.01653159223496914, -0.055678579956293106, -0.014041358605027199, 0.05152261257171631, -0.03591737896203995, 0.043817054480314255, -0.050409864634275436, -0.031135233119130135, 0.04094875231385231, 0.05390615016222, -0.06096616014838219, 0.06073633208870888, 0.04514642059803009, -0.050984274595975876, 0.00842235516756773, 0.024667464196681976, -0.053788039833307266, 0.002588036237284541, 0.017207732424139977, -0.00012150259135523811, 0.021104350686073303, 0.016107700765132904, -0.061540503054857254, -0.021800188347697258, -0.07038861513137817, -0.041740886867046356, -0.04971320927143097, 0.007060810457915068, 0.04446164891123772 ]
Declan/test_push
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-3 results: [] --- <!-- 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__sst2__train-16-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7887 - Accuracy: 0.6458 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6928 | 1.0 | 7 | 0.6973 | 0.4286 | | 0.675 | 2.0 | 14 | 0.7001 | 0.4286 | | 0.6513 | 3.0 | 21 | 0.6959 | 0.4286 | | 0.5702 | 4.0 | 28 | 0.6993 | 0.4286 | | 0.5389 | 5.0 | 35 | 0.6020 | 0.7143 | | 0.3386 | 6.0 | 42 | 0.5326 | 0.5714 | | 0.2596 | 7.0 | 49 | 0.4943 | 0.7143 | | 0.1633 | 8.0 | 56 | 0.3589 | 0.8571 | | 0.1086 | 9.0 | 63 | 0.2924 | 0.8571 | | 0.0641 | 10.0 | 70 | 0.2687 | 0.8571 | | 0.0409 | 11.0 | 77 | 0.2202 | 0.8571 | | 0.0181 | 12.0 | 84 | 0.2445 | 0.8571 | | 0.0141 | 13.0 | 91 | 0.2885 | 0.8571 | | 0.0108 | 14.0 | 98 | 0.3069 | 0.8571 | | 0.009 | 15.0 | 105 | 0.3006 | 0.8571 | | 0.0084 | 16.0 | 112 | 0.2834 | 0.8571 | | 0.0088 | 17.0 | 119 | 0.2736 | 0.8571 | | 0.0062 | 18.0 | 126 | 0.2579 | 0.8571 | | 0.0058 | 19.0 | 133 | 0.2609 | 0.8571 | | 0.0057 | 20.0 | 140 | 0.2563 | 0.8571 | | 0.0049 | 21.0 | 147 | 0.2582 | 0.8571 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014048822224140167, 0.011127854697406292, -0.04650751128792763, 0.04114289954304695, 0.053471989929676056, 0.017732370644807816, -0.018848761916160583, -0.022145899012684822, -0.05626457929611206, 0.0649711936712265, 0.016089949756860733, -0.032817937433719635, 0.008959349244832993, 0.04276483133435249, -0.015189861878752708, -0.03543916717171669, 0.0006955033750273287, -0.013669167645275593, -0.031241031363606453, -0.003517532255500555, 0.004393300507217646, -0.012246791273355484, -0.01524434331804514, 0.005734674166887999, -0.006442369893193245, 0.014928944408893585, 0.0037065541837364435, 0.02295568957924843, 0.038259733468294144, -0.06937017291784286, 0.0057566119357943535, -0.030839048326015472, -0.05299250781536102, -0.023157451301813126, -0.012818139046430588, -0.0187454205006361, -0.00253137550316751, 0.027291838079690933, 0.031845398247241974, 0.036822110414505005, 0.008549094200134277, 0.03146668151021004, 0.0006583237554877996, -0.010775714181363583, 0.06180943548679352, 0.009008631110191345, -0.04118044674396515, 0.0013289096532389522, 0.03992521017789841, -0.024073606356978416, -0.08052948862314224, -0.046748824417591095, -0.015532739460468292, 0.026423713192343712, -0.017160065472126007, -0.01518862135708332, -0.05574870854616165, 0.013032237067818642, 0.06573985517024994, -0.04657553508877754, -0.03022594191133976, 0.0029410473071038723, -0.0706084594130516, 0.005761030595749617, 0.03508080914616585, -0.02129344642162323, 0.013357673771679401, -0.05177031457424164, 0.02542290650308132, -0.00985992606729269, 0.05551638454198837, -0.019397741183638573, 0.012042188085615635, -0.07253516465425491, -0.019170401617884636, -0.00988005381077528, 0.04232579097151756, 0.059069983661174774, -0.03113589994609356, 0.05344408005475998, 0.027651043608784676, -0.00046940482570789754, 0.0440739281475544, -0.031775809824466705, 0.009965737350285053, 0.0339420884847641, -0.04436987265944481, -0.0006025628536008298, 0.01732708141207695, 0.027334503829479218, -0.03491377457976341, -0.03393255174160004, -0.028160886839032173, -0.03235345706343651, -0.001284826430492103, 0.019660688936710358, 0.026130573824048042, 0.018475983291864395, 0.038359012454748154, 0.011336730793118477, 0.02285257913172245, 0.0369655042886734, -0.020358063280582428, 0.06710003316402435, -0.0035966814029961824, -0.009086769074201584, -0.004663517698645592, -0.016209760680794716, -0.05096271634101868, 0.021665718406438828, 0.02539442479610443, -0.02093951590359211, -0.01389025803655386, 0.03744885325431824, 0.008721730671823025, 0.004436665680259466, 0.07595175504684448, -0.025906026363372803, -0.040123652666807175, -0.033041201531887054, 0.025903424248099327, 0.014927889220416546, -0.019618427380919456, 0.01397736370563507, -0.046644117683172226, -0.017227422446012497, -0.023817280307412148, -0.017195941880345345, -0.01923225261271, 0.018817171454429626, 0.014384462498128414, 0.06559447944164276, 0.03216123953461647, -0.08873729407787323, 0.004132173024117947, 0.015706365928053856, -0.05612355098128319, 0.04782535135746002, 0.02595624141395092, 0.11743451654911041, -0.05655411630868912, -0.07052332907915115, 0.005536556243896484, -0.0021144042257219553, -0.04084344208240509, 0.016132602468132973, 0.0013953042216598988, -0.02688676491379738, 0.005823920946568251, 0.001772048999555409, 0.06883300840854645, -0.0413372665643692, -0.010927654802799225, 0.07452063262462616, 0.004543753806501627, 0.04175031930208206, -0.057110823690891266, -0.026531709358096123, 0.018821116536855698, -0.023954089730978012, -0.03295005485415459, 0.04949244111776352, -0.02960999310016632, -0.018353044986724854, -0.01986929588019848, -0.024421997368335724, 0.011563497595489025, 0.07408557832241058, -0.008233304135501385, -0.03387623652815819, -0.018497442826628685, 0.024800147861242294, 0.04577372968196869, 0.04887615516781807, -0.02671905979514122, 0.025293992832303047, 0.055394623428583145, 0.02615453489124775, -0.03495590761303902, 0.039394620805978775, 0.025936366990208626, -0.026389651000499725, -0.020365430042147636, 0.03020140901207924, 0.0021954786498099566, -0.046619612723588943, 0.036564383655786514, 0.012127568013966084, 0.004449228290468454, -0.0685589462518692, -0.04778221994638443, 0.038203783333301544, -0.003117607906460762, -0.012604277580976486, 0.014364214614033699, 0.022699162364006042, -0.014844084158539772, 0.04539618268609047, -0.012834078632295132, 0.005526977125555277, -0.02459048107266426, -0.018474837765097618, 0.013162262737751007, -0.020809555426239967, 0.028708565980196, 0.04809734597802162, -0.0033572243992239237, 0.09292633086442947, -0.04522189125418663, 0.023351671174168587, -0.053480058908462524, -0.040063925087451935, 0.01949048601090908, 0.0562862902879715, 0.05756897106766701, 0.056226059794425964, 0.006315907929092646, -0.02684139274060726, 0.045869939029216766, 0.07445801049470901, 0.045720867812633514, -0.0032596266828477383, -0.03326072543859482, -0.016299355775117874, 0.041430093348026276, 0.05108528584241867, -0.04922512173652649, -0.016601450741291046, 0.015342394821345806, 0.03155146539211273, -0.0020375261083245277, 0.01861967146396637, -0.02636162005364895, 0.04205474257469177, -0.04711386561393738, -0.04514668881893158, 0.04254041612148285, 0.018995169550180435, 0.002043618820607662, 0.029759926721453667, 0.024680187925696373, 0.01359102688729763, 0.024677695706486702, 0.020386751741170883, 0.01861700974404812, -0.05421469733119011, 0.026714947074651718, 0.004060703795403242, 0.05682997778058052, -0.05077002942562103, 0.031651243567466736, -0.015918193385004997, 0.012364768423140049, 0.04069330915808678, -0.033003680408000946, 0.02579868957400322, 0.0525248721241951, 0.03762334585189819, -0.038987234234809875, 0.025696247816085815, 0.0014522523852065206, 0.034808509051799774, 0.04161052778363228, 0.00809836108237505, 0.07020459324121475, 0.02267962507903576, 0.04568999260663986, 0.07564456015825272, 0.01878928579390049, 0.033621832728385925, 0.014858504757285118, 0.07226262241601944, 0.017572971060872078, -0.010005258023738861, 0.047048524022102356, -0.04535814747214317, 0.02431359700858593, -0.05176541581749916, -0.0049704285338521, -0.026141108945012093, -0.007362550590187311, 0.049281198531389236, 0.028903407976031303, -0.03483957052230835, -0.01153458934277296, 0.01343920361250639, -0.008145371451973915, 0.02207724004983902, -0.004905062727630138, 0.011074142530560493, -0.007453658152371645, -0.022231392562389374, -0.029328083619475365, -0.06892438977956772, -0.04965835437178612, -0.030931152403354645, -0.016159143298864365, -0.02214626967906952, -0.08724603056907654, -0.0048242718912661076, -0.08588553220033646, -0.02158956415951252, 0.029244277626276016, 0.007604501210153103, -0.025106268003582954, -0.03179578855633736, 0.022737277671694756, -0.0492878295481205, -0.038781896233558655, -0.04342750087380409, -0.0602317675948143, -0.048477571457624435, -0.08184950798749924, 0.034281834959983826, 0.03432402387261391, 0.006853954400867224, 0.00030828104354441166, 0.023147786036133766, 0.017161846160888672, -0.027704644948244095, 0.03574935719370842, 0.06620962917804718, -0.03449087589979172, -0.056084562093019485, 0.03034280054271221, -0.009131059981882572, 0.017702478915452957, 0.022758133709430695, -0.032810743898153305, 0.08992249518632889, 0.07030556350946426, 0.008495421148836613, 0.021354228258132935, -0.009912990964949131, -0.06413093954324722, -0.06628736853599548, -0.02793765254318714, -0.04333633929491043, -0.00930797029286623, -0.046595316380262375, -0.03864904120564461, -0.036033015698194504, -0.04467954859137535, 0.004025760572403669, -0.015070781111717224, 0.02497998997569084, 0.020111432299017906, 0.03865593299269676, 0.019699307158589363, 0.04221923276782036, -0.032416053116321564, -0.03920292854309082, 0.05745524540543556, 0.012191472575068474, 0.006421533413231373, -0.08526327461004257, -0.002948761684820056, 0.026390228420495987, 0.01798176020383835, 0.015512221492826939, -0.007053461857140064, 0.0728863924741745, -0.008995662443339825, 0.006735282018780708, 0.014077926985919476, -0.008818871341645718, -0.01043828297406435, -0.0000686277708155103, 0.00007662280404474586, 0.0010821270989254117, -0.02409815974533558, -0.030085809528827667, -0.007741790730506182, 0.028875743970274925, -0.05815675109624863, -0.05982768163084984, -0.0165182463824749, 0.03244060277938843, 0.03986462205648422, -0.0023911225143820047, -0.04869680851697922, -0.0054346369579434395, -0.07317773252725601, -0.00618645828217268, 0.03837916627526283, 0.015094953589141369, -0.0014828740386292338, 0.04289480671286583, 0.016026701778173447, -0.009112510830163956, 0.02841722033917904, 0.055545322597026825, 0.07182375341653824, 0.009838036261498928, -0.08346032351255417, -0.001195208285935223, -0.01717078499495983, 0.01426229439675808, -0.010770081542432308, -0.01747850514948368, -0.022554509341716766, -0.09901099652051926, -0.020345911383628845, 0.016095921397209167, 0.010225365869700909, -0.01453232392668724, 0.03704217076301575, 0.0037090040277689695, -0.028550907969474792, -0.007907596416771412, 0.013408932834863663, 0.04544370248913765, -0.027187945321202278, 0.053114067763090134, -0.028310652822256088, 0.00009302463877247646, -0.05913151800632477, 0.01583414152264595, -0.052444323897361755, -0.024985255673527718, 0.013287032954394817, 0.04768950492143631, -0.028764309361577034, 0.05515214055776596, 0.07299429178237915, 0.03783620148897171, -0.05084376037120819, 0.03840025141835213, 0.07216011732816696, -0.04024495184421539, -0.047167010605335236, -0.0062483446672558784, 0.002482607029378414, -0.012406868860125542, 0.0049589271657168865, -0.001568651176057756, 0.05226423591375351, 0.027284475043416023, 0.00376338604837656, 0.0001273067609872669, -0.008677664212882519, -0.006974469870328903, -0.02664782479405403, -0.04826786741614342, -0.030603663995862007, 0.0032393934670835733, -0.026484545320272446, 0.02027018927037716, 0.02624993771314621, 0.031025657430291176, 0.07215069979429245, 0.019833622500300407, -0.038643646985292435, -0.00209508347325027, 0.025094693526625633, 0.011083093471825123, -0.018783122301101685, -0.0694054439663887, -0.041071951389312744, 0.02906850539147854, 0.04890879988670349, -0.022998519241809845, -0.06160210818052292, 0.012932533398270607, 0.050208065658807755, -0.05958830937743187, 0.05795898288488388, -0.0044677043333649635, 0.05186929926276207, 0.0577130988240242, -0.009886576794087887, 0.0398801825940609, -0.020941201597452164, -0.005883920472115278, -0.004104624502360821, 0.04175644367933273, -0.009400212205946445, -0.03267156332731247, -0.050373487174510956, 0.02311570942401886, 0.0370340496301651, 0.030600031837821007, 0.046468500047922134, -0.03551986813545227, -0.04361386224627495, 0.005495188757777214, 0.022988198325037956, -0.04254095256328583, -0.007792280986905098, 0.04084097594022751, 0.032131753861904144, -0.04846309870481491, -0.022082971408963203, -0.023315535858273506, -0.013998462818562984, 0.039244554936885834, 0.008577941916882992, -0.02081518992781639, -0.04203399643301964, 0.03735189512372017, -0.017910998314619064, -0.02898985706269741, -0.06400511413812637, 0.050908684730529785, -0.014790624380111694, -0.02329280786216259, 0.05628087371587753, 0.03646667301654816, 0.02005128189921379, 0.07150769233703613, 0.034970901906490326, 0.015028557740151882, -0.03418721258640289, 0.041113823652267456, -0.03406694903969765, -0.02014612965285778, 0.005731367040425539, -0.03194047138094902, -0.03842722997069359, -0.0019103704253211617, -0.0602833554148674, -0.0357467457652092, -0.030142925679683685, 0.016734544187784195, 0.0007706034230068326, -0.01924819126725197, 0.0017388672567903996, 0.059274040162563324, -0.0050958795472979546, -0.039108049124479294, -0.046270254999399185, -0.01574886403977871, -0.06708797812461853, -0.054285164922475815, -0.0006790521438233554, 0.007576928474009037, 0.03088495321571827, 0.03510845825076103, 0.02326466329395771, 0.01868598535656929, 0.01958184316754341, -0.041992392390966415, 0.015574109740555286, 0.016661718487739563, -0.03941113501787186, -0.021254101768136024, 0.03531590849161148, 0.010480305179953575, 0.02510322630405426, -0.03708428516983986, 0.032911986112594604, -0.00021776105859316885, -0.005914508830755949, -0.02301468327641487, 0.013965661637485027, 0.03093908354640007, -0.061426132917404175, -0.035185158252716064, -0.01693849451839924, -0.027974454686045647, 0.033318471163511276, -0.023393109440803528, -0.022941648960113525, 0.010926405899226665, 0.0035828035324811935, 0.03521500527858734, -0.03127371519804001, -0.015420665964484215, 0.028791557997465134, -0.0020258715376257896, 0.01913924515247345, -0.0553554967045784, 0.06140682473778725, -0.03739328682422638, 0.02369844540953636, -0.02077358402311802, 0.010056715458631516, -0.021006427705287933, 0.023504450917243958, -0.023319324478507042, -0.022696835920214653, -0.011788402684032917, 0.0543929785490036, -0.013239922933280468, 0.03125475347042084, -0.009861388243734837, 0.037186652421951294, -0.0271564032882452, 0.06940653920173645, -0.03975461795926094, 0.018780795857310295, -0.04106202721595764, 0.027491282671689987, -0.020466376096010208, 0.017129939049482346, -0.013478168286383152, -0.01889563724398613, 0.03230084478855133, 0.06318313628435135, 0.03360436111688614, 0.02962314710021019, -0.0059913829900324345, -0.015248609706759453, 0.014759207144379616, -0.041350457817316055, -0.018476862460374832, -0.01286970917135477, 0.0015480311121791601, -0.01691972278058529, 0.05481093376874924, 0.03131610155105591, -0.05583662539720535, -0.07440783828496933, 0.037350017577409744, 0.01838187873363495, -0.001813232316635549, 0.005987565033137798, 0.04510994628071785, 0.03145839273929596, 0.04245965927839279, -0.01887119933962822, -0.004665832035243511, 0.00014581704454030842, -0.05089063569903374, 0.025709480047225952, -0.005683945491909981, 0.02652173861861229, 0.014006424695253372, -0.044556185603141785, -0.022924508899450302, 0.061683956533670425, 0.02682562731206417, 0.024432284757494926, 0.0013138380600139499, -0.04526504874229431, 0.03876088187098503, 0.008369864895939827, -0.03676075115799904, 0.031933657824993134, 0.007766766007989645, -0.02471284754574299, 0.04579196125268936, -0.008301402442157269, 0.00282770162448287, 0.06087471917271614, 0.019194206222891808, -0.02539338916540146, 0.06878002732992172, -0.03737441077828407, 0.011459950357675552, 0.042283330112695694, -0.0776851624250412, -0.006681655067950487, -0.05378652364015579, 0.05867575481534004, -0.06699126213788986, 0.023470068350434303, 0.05552597716450691, -0.0032950323075056076, 0.02844618633389473, -0.05354706570506096, -0.060053907334804535, 0.01930195465683937, -0.0390457808971405, 0.07012350857257843, 0.011264396831393242, -0.0451226569712162, 0.052948277443647385, 0.010913265869021416, -0.0645887479186058, 0.03800822049379349, 0.02683563157916069, 0.05577155202627182, 0.039462924003601074, 0.04662919417023659, -0.04685642942786217, -0.004099895711988211, -0.03484763577580452, 0.01663176901638508, -0.04895111173391342, -0.0150111373513937, 0.03369094431400299, -0.04359833523631096, -0.025819988921284676, 0.0313277430832386, -0.01425106544047594, -0.019800951704382896, 0.05262702703475952, -0.05364641174674034, -0.04073615372180939, 0.012891571968793869, 0.01915832608938217, -0.04526678845286369, -0.014832577668130398, -0.03187199681997299, 0.011378642171621323, 0.012363907881081104, 0.003839653916656971, -0.021123595535755157, -0.015064401552081108, 0.02965298667550087, -0.04197653383016586, -0.03268377482891083, 0.02444314770400524, -0.007374943699687719, -0.02263026311993599, 0.03950786963105202, 0.00785045325756073, 0.012576804496347904, 0.03167227283120155, -0.012168650515377522, 0.02257293462753296, -0.03650277107954025, -0.01892537623643875, 0.030853429809212685, -0.007894429378211498, 0.02088916301727295, 0.008728628046810627, 0.028473077341914177, 0.03507986292243004, 0.021521328017115593, -0.001476772828027606, -0.03562823683023453, -0.03009018860757351, 0.014601325616240501, -0.04330320283770561, 0.0018321332754567266, -0.004716867581009865, -0.05277916043996811, -0.024503560736775398, 0.005419673398137093, -0.044132012873888016, 0.038219206035137177, -0.0631505697965622, 0.006987641099840403, 0.045152775943279266, -0.016220202669501305, -0.060372550040483475, -0.11442316323518753, -0.013506080023944378, -0.054347340017557144, -0.014106985181570053, 0.049188751727342606, -0.03599711135029793, 0.04442637041211128, -0.0512007474899292, -0.03085174970328808, 0.04190148413181305, 0.05262038856744766, -0.05788395181298256, 0.059945229440927505, 0.04747580364346504, -0.05107568949460983, 0.010829766280949116, 0.022162122651934624, -0.05183497443795204, 0.0038626983296126127, 0.016990680247545242, -0.000321167433867231, 0.021813513711094856, 0.01573430746793747, -0.06072903051972389, -0.018136195838451385, -0.07101231068372726, -0.04138629138469696, -0.04742904007434845, 0.006563547533005476, 0.046692490577697754 ]
DeepBasak/Slack
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-4 results: [] --- <!-- 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__sst2__train-16-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1501 - Accuracy: 0.6387 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7043 | 1.0 | 7 | 0.7139 | 0.2857 | | 0.68 | 2.0 | 14 | 0.7398 | 0.2857 | | 0.641 | 3.0 | 21 | 0.7723 | 0.2857 | | 0.5424 | 4.0 | 28 | 0.8391 | 0.2857 | | 0.5988 | 5.0 | 35 | 0.7761 | 0.2857 | | 0.3698 | 6.0 | 42 | 0.7707 | 0.4286 | | 0.3204 | 7.0 | 49 | 0.8290 | 0.4286 | | 0.2882 | 8.0 | 56 | 0.6551 | 0.5714 | | 0.1512 | 9.0 | 63 | 0.5652 | 0.5714 | | 0.1302 | 10.0 | 70 | 0.5278 | 0.5714 | | 0.1043 | 11.0 | 77 | 0.4987 | 0.7143 | | 0.0272 | 12.0 | 84 | 0.5278 | 0.5714 | | 0.0201 | 13.0 | 91 | 0.5307 | 0.5714 | | 0.0129 | 14.0 | 98 | 0.5382 | 0.5714 | | 0.0117 | 15.0 | 105 | 0.5227 | 0.5714 | | 0.0094 | 16.0 | 112 | 0.5066 | 0.7143 | | 0.0104 | 17.0 | 119 | 0.4869 | 0.7143 | | 0.0069 | 18.0 | 126 | 0.4786 | 0.7143 | | 0.0062 | 19.0 | 133 | 0.4707 | 0.7143 | | 0.0065 | 20.0 | 140 | 0.4669 | 0.7143 | | 0.0051 | 21.0 | 147 | 0.4686 | 0.7143 | | 0.0049 | 22.0 | 154 | 0.4784 | 0.7143 | | 0.0046 | 23.0 | 161 | 0.4839 | 0.7143 | | 0.0039 | 24.0 | 168 | 0.4823 | 0.7143 | | 0.0044 | 25.0 | 175 | 0.4791 | 0.7143 | | 0.0037 | 26.0 | 182 | 0.4778 | 0.7143 | | 0.0038 | 27.0 | 189 | 0.4770 | 0.7143 | | 0.0036 | 28.0 | 196 | 0.4750 | 0.7143 | | 0.0031 | 29.0 | 203 | 0.4766 | 0.7143 | | 0.0031 | 30.0 | 210 | 0.4754 | 0.7143 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012162203900516033, 0.013494698330760002, -0.04574322700500488, 0.04268665239214897, 0.05242703855037689, 0.017430268228054047, -0.01865854300558567, -0.02244928851723671, -0.05601782351732254, 0.06413421034812927, 0.01583472639322281, -0.03383634239435196, 0.010576133616268635, 0.04408164322376251, -0.016004113480448723, -0.036706965416669846, -0.0024467497132718563, -0.011251543648540974, -0.032944586127996445, -0.0028902380727231503, 0.004004643764346838, -0.01502459216862917, -0.016409369185566902, 0.004886312410235405, -0.004007868934422731, 0.014618027955293655, 0.0055709583684802055, 0.02218852937221527, 0.03664020821452141, -0.06878925859928131, 0.005326271988451481, -0.029537850990891457, -0.05194505304098129, -0.022074583917856216, -0.014246737584471703, -0.016782818362116814, -0.004662632010877132, 0.027967846021056175, 0.0351085290312767, 0.03548822179436684, 0.008580177091062069, 0.030807556584477425, -0.002167366212233901, -0.010912708938121796, 0.06281229853630066, 0.009747016243636608, -0.040383271872997284, 0.00018989204545505345, 0.03870874270796776, -0.024680541828274727, -0.08033905923366547, -0.047619301825761795, -0.01650402694940567, 0.024616455659270287, -0.017475968226790428, -0.014690319076180458, -0.0601680651307106, 0.01674097590148449, 0.0668102353811264, -0.047061748802661896, -0.03149045631289482, 0.0015076140407472849, -0.07297290116548538, 0.00493529811501503, 0.03805390000343323, -0.021304624155163765, 0.01399299781769514, -0.04956183582544327, 0.024166565388441086, -0.00963856466114521, 0.054557982832193375, -0.02039169892668724, 0.012150891125202179, -0.07114631682634354, -0.017970215529203415, -0.01038675382733345, 0.045051004737615585, 0.057524967938661575, -0.03251667320728302, 0.05214102566242218, 0.028685765340924263, -0.0012141253100708127, 0.04381459206342697, -0.03051878698170185, 0.00854478869587183, 0.032544877380132675, -0.04631342366337776, 0.0007614031783305109, 0.017399337142705917, 0.026860209181904793, -0.0369144007563591, -0.03618627414107323, -0.030133631080389023, -0.032570771872997284, -0.0015610147966071963, 0.01951298676431179, 0.02679210528731346, 0.018364105373620987, 0.03806237876415253, 0.012644175440073013, 0.024141985923051834, 0.03815603628754616, -0.017444761469960213, 0.06746227294206619, -0.005443821661174297, -0.00988464429974556, -0.007414589170366526, -0.01637079380452633, -0.05033247917890549, 0.022294742986559868, 0.026519376784563065, -0.021299133077263832, -0.011566578410565853, 0.03760329633951187, 0.005731743294745684, 0.00413408363237977, 0.07770544290542603, -0.024838639423251152, -0.04022141918540001, -0.03072541579604149, 0.026840826496481895, 0.01592383161187172, -0.0203237347304821, 0.01494179479777813, -0.04590647667646408, -0.01747206784784794, -0.024137163534760475, -0.017517097294330597, -0.018142350018024445, 0.02155410870909691, 0.014123030938208103, 0.06508028507232666, 0.032371636480093, -0.0879945307970047, 0.004224890843033791, 0.016531184315681458, -0.055687323212623596, 0.047458529472351074, 0.024638565257191658, 0.11410640180110931, -0.05693100765347481, -0.06853361427783966, 0.007255097385495901, -0.0011032972251996398, -0.04194284602999687, 0.013613492250442505, 0.0002689587709028274, -0.027601584792137146, 0.006335730664432049, 0.003465065034106374, 0.06878533214330673, -0.04210243001580238, -0.008935658261179924, 0.07412667572498322, 0.003788514295592904, 0.04499472305178642, -0.056516312062740326, -0.026761911809444427, 0.016827518120408058, -0.02156149409711361, -0.03225421532988548, 0.04874161630868912, -0.028009692206978798, -0.018267236649990082, -0.01870901882648468, -0.023755958303809166, 0.01217538770288229, 0.07464193552732468, -0.00656731566414237, -0.03445965796709061, -0.017089026048779488, 0.023978309705853462, 0.046794187277555466, 0.05190528929233551, -0.026491768658161163, 0.02512737549841404, 0.05502411350607872, 0.02752872183918953, -0.03352367877960205, 0.038432154804468155, 0.025740666314959526, -0.024972114711999893, -0.020027972757816315, 0.03199474886059761, 0.0036097196862101555, -0.0477619506418705, 0.03672242537140846, 0.012711846269667149, 0.004785643424838781, -0.06827463209629059, -0.045684318989515305, 0.03997725620865822, -0.004870104603469372, -0.012827732600271702, 0.014045566320419312, 0.02202930860221386, -0.013453107327222824, 0.04640460014343262, -0.012640727683901787, 0.007315570488572121, -0.023456711322069168, -0.019658051431179047, 0.013467766344547272, -0.021286005154252052, 0.028985047712922096, 0.0488845519721508, -0.0016696229577064514, 0.09343183040618896, -0.04572117701172829, 0.020870065316557884, -0.055314697325229645, -0.03756161034107208, 0.017323343083262444, 0.05552557855844498, 0.057670507580041885, 0.054770492017269135, 0.00874362699687481, -0.027043599635362625, 0.04761393740773201, 0.07369750738143921, 0.044155459851026535, -0.004345460329204798, -0.03241424635052681, -0.017905332148075104, 0.041007719933986664, 0.05196140334010124, -0.04882274568080902, -0.014830525033175945, 0.013205020688474178, 0.03119530901312828, -0.0037981050554662943, 0.0180297140032053, -0.025971338152885437, 0.04012706130743027, -0.04809372499585152, -0.04302443936467171, 0.04368101432919502, 0.017665553838014603, 0.0007343146135099232, 0.030951879918575287, 0.02568068355321884, 0.011096491478383541, 0.023736663162708282, 0.01978190988302231, 0.020566696301102638, -0.052299246191978455, 0.02344965562224388, 0.005156843923032284, 0.0576193705201149, -0.05267615243792534, 0.031889207661151886, -0.015888264402747154, 0.014035369269549847, 0.04120377451181412, -0.03229767829179764, 0.026380371302366257, 0.05013365298509598, 0.035897139459848404, -0.03806073218584061, 0.026197334751486778, 0.003174874000251293, 0.03350717946887016, 0.04237291216850281, 0.008842826820909977, 0.06984133273363113, 0.0226126741617918, 0.04293566569685936, 0.0739474669098854, 0.018788935616612434, 0.03352484107017517, 0.013210944831371307, 0.07130147516727448, 0.016362188383936882, -0.011764117516577244, 0.04668739065527916, -0.04548492655158043, 0.024226505309343338, -0.05058269202709198, -0.004065326880663633, -0.02403739094734192, -0.008370921947062016, 0.051780492067337036, 0.02549523301422596, -0.035921283066272736, -0.012746493332087994, 0.0145401731133461, -0.008243389427661896, 0.02269873209297657, -0.007140307687222958, 0.0122830206528306, -0.00815475732088089, -0.02256803959608078, -0.028246885165572166, -0.06959356367588043, -0.05045927315950394, -0.029588520526885986, -0.016176138073205948, -0.021438097581267357, -0.08913672715425491, -0.004582682158797979, -0.08524834364652634, -0.02255992405116558, 0.0278182253241539, 0.006895135156810284, -0.02658926695585251, -0.03181682899594307, 0.023898664861917496, -0.04816698282957077, -0.03904213383793831, -0.042281828820705414, -0.05927666276693344, -0.04805215820670128, -0.08301655203104019, 0.033544156700372696, 0.03544221073389053, 0.007858115248382092, 0.0022323252633213997, 0.024546047672629356, 0.01643151417374611, -0.029076391831040382, 0.037695106118917465, 0.06572035700082779, -0.03465244546532631, -0.056068092584609985, 0.03334667906165123, -0.009841203689575195, 0.018564686179161072, 0.021330196410417557, -0.03113807737827301, 0.08932337909936905, 0.07160500437021255, 0.007011330220848322, 0.021292345598340034, -0.011009015142917633, -0.06315199285745621, -0.0654306635260582, -0.026767278090119362, -0.04191623255610466, -0.009368323720991611, -0.04721217229962349, -0.03832019120454788, -0.03566250577569008, -0.04431020841002464, 0.003671091515570879, -0.014211461879312992, 0.02613077498972416, 0.0204643364995718, 0.03606582432985306, 0.0199859831482172, 0.04285923019051552, -0.02880602516233921, -0.04123419523239136, 0.058197665959596634, 0.010886046104133129, 0.0067174299620091915, -0.08437618613243103, -0.0021911822259426117, 0.0270541999489069, 0.016339940950274467, 0.01589178293943405, -0.004141930025070906, 0.07327438145875931, -0.009944387711584568, 0.0032556583173573017, 0.013411195017397404, -0.010302666574716568, -0.011274183169007301, -0.0018648947589099407, -0.0027448523323982954, 0.0013052050489932299, -0.022945696488022804, -0.03318324312567711, -0.009976808913052082, 0.02836521528661251, -0.05804001912474632, -0.06042679771780968, -0.01608923263847828, 0.03433777019381523, 0.04264190420508385, -0.004063309635967016, -0.04733077809214592, -0.007368084508925676, -0.07371339946985245, -0.0057383752427995205, 0.03698126599192619, 0.01696440577507019, -0.003955497872084379, 0.042329251766204834, 0.015274320729076862, -0.007492870558053255, 0.030325712636113167, 0.056505411863327026, 0.07155699282884598, 0.009977113455533981, -0.08315595984458923, -0.0019110619323328137, -0.017024748027324677, 0.01198277622461319, -0.008750605396926403, -0.01773986406624317, -0.022880656644701958, -0.09784327447414398, -0.019932828843593597, 0.01759401708841324, 0.01202374417334795, -0.015325559303164482, 0.03561890870332718, 0.00258532352745533, -0.029590480029582977, -0.007162165362387896, 0.01269566547125578, 0.04572108015418053, -0.028460273519158363, 0.05204378068447113, -0.0304231196641922, 0.0015650446293875575, -0.057759955525398254, 0.01689753122627735, -0.052180930972099304, -0.023143351078033447, 0.013894697651267052, 0.047016043215990067, -0.02828279323875904, 0.05379056558012962, 0.0718914195895195, 0.04102548956871033, -0.05223710462450981, 0.038275182247161865, 0.07107321172952652, -0.041653599590063095, -0.045489199459552765, -0.007067359518259764, 0.003053882624953985, -0.014606564305722713, 0.0029238977003842592, 0.0004281166475266218, 0.055031221359968185, 0.025727394968271255, 0.0029668028000742197, 0.001901597948744893, -0.007935485802590847, -0.007990600541234016, -0.025584114715456963, -0.04973594844341278, -0.029637737199664116, 0.0028851258102804422, -0.028031524270772934, 0.02242576703429222, 0.02558973804116249, 0.032452210783958435, 0.07401711493730545, 0.02075273171067238, -0.040100567042827606, -0.00333116902038455, 0.024092834442853928, 0.011028081178665161, -0.01719730719923973, -0.06813617795705795, -0.042799077928066254, 0.02960810624063015, 0.048751238733530045, -0.023260975256562233, -0.06202371418476105, 0.015482725575566292, 0.050833459943532944, -0.0596737377345562, 0.05826406180858612, -0.005063088145107031, 0.053789667785167694, 0.055852774530649185, -0.00895590241998434, 0.042448095977306366, -0.019417984411120415, -0.00594866368919611, -0.0029350416734814644, 0.038458772003650665, -0.00970973540097475, -0.033506978303194046, -0.048421114683151245, 0.020064344629645348, 0.03813844546675682, 0.03139236941933632, 0.0441521555185318, -0.0347273051738739, -0.042921457439661026, 0.006733610760420561, 0.022982371971011162, -0.041388366371393204, -0.007235257886350155, 0.03970254585146904, 0.03039994277060032, -0.04899651184678078, -0.023159747943282127, -0.023047111928462982, -0.012864433228969574, 0.040088824927806854, 0.007429849356412888, -0.02023058570921421, -0.04544414207339287, 0.03919687867164612, -0.01714864932000637, -0.027909228578209877, -0.06714776158332825, 0.04695149511098862, -0.014390788972377777, -0.02395511046051979, 0.0556265152990818, 0.03397764638066292, 0.019966715946793556, 0.07217178493738174, 0.03595921769738197, 0.015392345376312733, -0.03441696614027023, 0.04174971953034401, -0.03329790011048317, -0.01979905366897583, 0.004081600345671177, -0.030692532658576965, -0.03620382398366928, -0.0007081470103003085, -0.06485310196876526, -0.03622473403811455, -0.03032562881708145, 0.017329642549157143, 0.0008337810286320746, -0.01978394202888012, -0.0004722799058072269, 0.05950890854001045, -0.0061753178015351295, -0.04008207842707634, -0.047166019678115845, -0.014627303928136826, -0.06831129640340805, -0.05086708813905716, 0.0008731274283491075, 0.006061592139303684, 0.033388569951057434, 0.03461639955639839, 0.02518724836409092, 0.018811523914337158, 0.019732201471924782, -0.04224985092878342, 0.01611883006989956, 0.017798075452446938, -0.03958306834101677, -0.019972017034888268, 0.03664816543459892, 0.011437095701694489, 0.026414470747113228, -0.03964172303676605, 0.036318160593509674, 0.0006592764402739704, -0.005330471321940422, -0.024326685816049576, 0.016172070056200027, 0.029996922239661217, -0.0627812072634697, -0.03553493320941925, -0.017191899940371513, -0.028060967102646828, 0.03207214176654816, -0.02561775967478752, -0.02141616679728031, 0.013211125507950783, 0.004345262888818979, 0.034831054508686066, -0.03356802836060524, -0.012410189025104046, 0.029108284041285515, -0.002613186603412032, 0.018474934622645378, -0.05562407150864601, 0.06150069087743759, -0.036719910800457, 0.02412082813680172, -0.021577006205916405, 0.010094807483255863, -0.020211990922689438, 0.02438437007367611, -0.025684142485260963, -0.023560699075460434, -0.013552045449614525, 0.0570589043200016, -0.012602459639310837, 0.0309407077729702, -0.008082781918346882, 0.03764244541525841, -0.027763038873672485, 0.07029351592063904, -0.03944065049290657, 0.019955139607191086, -0.0419817715883255, 0.027757681906223297, -0.01989719644188881, 0.019700104370713234, -0.014757390134036541, -0.017782477661967278, 0.03150324150919914, 0.06123579666018486, 0.034806858748197556, 0.02900581806898117, -0.003600907977670431, -0.014287824742496014, 0.013822604902088642, -0.04143565148115158, -0.01914190500974655, -0.013178510591387749, 0.0008954053046181798, -0.018439410254359245, 0.05555132403969765, 0.02963383123278618, -0.0570719838142395, -0.07402576506137848, 0.038445618003606796, 0.01590435765683651, -0.0007687386241741478, 0.005777712445706129, 0.04774047061800957, 0.033201709389686584, 0.04207523539662361, -0.017682544887065887, -0.0047384463250637054, 0.0019723926670849323, -0.05193657428026199, 0.02504917047917843, -0.004257171414792538, 0.02870868146419525, 0.013667155057191849, -0.04310313239693642, -0.023179112002253532, 0.05996755510568619, 0.02682746946811676, 0.025151750072836876, 0.0004137546056881547, -0.04476741701364517, 0.03742200881242752, 0.0072896140627563, -0.03599676489830017, 0.029972868040204048, 0.00912837777286768, -0.023029882460832596, 0.04604386165738106, -0.010147089138627052, 0.001733817276544869, 0.060701191425323486, 0.018284903839230537, -0.02173171378672123, 0.06951574981212616, -0.03686338663101196, 0.01123115699738264, 0.04277088865637779, -0.07749229669570923, -0.007472696714103222, -0.051700495183467865, 0.057826582342386246, -0.06888888776302338, 0.023238666355609894, 0.05658365413546562, -0.0024563074111938477, 0.029539508745074272, -0.05209493264555931, -0.05907854065299034, 0.018031522631645203, -0.03867289796471596, 0.06902803480625153, 0.011036772280931473, -0.0445171594619751, 0.05242112651467323, 0.01181667111814022, -0.06519018858671188, 0.0360686331987381, 0.026664836332201958, 0.053141865879297256, 0.03944079950451851, 0.04502065107226372, -0.04470107704401016, -0.002337382873520255, -0.034298401325941086, 0.016952769830822945, -0.050299838185310364, -0.014938645996153355, 0.037530895322561264, -0.044708676636219025, -0.026151735335588455, 0.03018648363649845, -0.01297672651708126, -0.020217204466462135, 0.05158447101712227, -0.05282158404588699, -0.03947438299655914, 0.013732247054576874, 0.019587725400924683, -0.044437725096940994, -0.013828154653310776, -0.033238720148801804, 0.01207768451422453, 0.010088912211358547, 0.003404417308047414, -0.01997997611761093, -0.015282264910638332, 0.029301898553967476, -0.04297196492552757, -0.032308291643857956, 0.02217528596520424, -0.007242232095450163, -0.023174038156867027, 0.03972926363348961, 0.006681975442916155, 0.012851284816861153, 0.03136320784687996, -0.014151307754218578, 0.022362206131219864, -0.03427818790078163, -0.01830155961215496, 0.02992994524538517, -0.0072664725594222546, 0.019479472190141678, 0.01009321492165327, 0.03163469582796097, 0.036363113671541214, 0.02422293648123741, -0.0027707938570529222, -0.03534705936908722, -0.030709218233823776, 0.01632719859480858, -0.041409749537706375, 0.003948762081563473, -0.004829342942684889, -0.05076848343014717, -0.02493426389992237, 0.0023201629519462585, -0.04363827034831047, 0.03846574202179909, -0.06349992752075195, 0.00950811430811882, 0.04505712166428566, -0.017045630142092705, -0.0596914142370224, -0.11554152518510818, -0.015292927622795105, -0.055363498628139496, -0.01496104709804058, 0.05108866095542908, -0.03632104769349098, 0.04432058706879616, -0.050353892147541046, -0.03020714782178402, 0.040313269942998886, 0.0522846095263958, -0.05810823664069176, 0.06059122458100319, 0.044838037341833115, -0.051088638603687286, 0.0108877532184124, 0.025594400241971016, -0.05032140761613846, 0.0036129059735685587, 0.016615815460681915, -0.002653224393725395, 0.021360503509640694, 0.01586260087788105, -0.06074294447898865, -0.020599940791726112, -0.0703820213675499, -0.0407295897603035, -0.04714890196919441, 0.007447165437042713, 0.04668118432164192 ]
DeepChem/ChemBERTa-10M-MLM
[ "pytorch", "roberta", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "RobertaForMaskedLM" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
90
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-5 results: [] --- <!-- 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__sst2__train-16-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6537 - Accuracy: 0.6332 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6925 | 1.0 | 7 | 0.6966 | 0.2857 | | 0.6703 | 2.0 | 14 | 0.7045 | 0.2857 | | 0.6404 | 3.0 | 21 | 0.7205 | 0.2857 | | 0.555 | 4.0 | 28 | 0.7548 | 0.2857 | | 0.5179 | 5.0 | 35 | 0.6745 | 0.5714 | | 0.3038 | 6.0 | 42 | 0.7260 | 0.5714 | | 0.2089 | 7.0 | 49 | 0.8016 | 0.5714 | | 0.1303 | 8.0 | 56 | 0.8202 | 0.5714 | | 0.0899 | 9.0 | 63 | 0.9966 | 0.5714 | | 0.0552 | 10.0 | 70 | 1.1887 | 0.5714 | | 0.0333 | 11.0 | 77 | 1.2163 | 0.5714 | | 0.0169 | 12.0 | 84 | 1.2874 | 0.5714 | | 0.0136 | 13.0 | 91 | 1.3598 | 0.5714 | | 0.0103 | 14.0 | 98 | 1.4237 | 0.5714 | | 0.0089 | 15.0 | 105 | 1.4758 | 0.5714 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.011521026492118835, 0.01373429223895073, -0.04363846406340599, 0.041004665195941925, 0.05228312686085701, 0.01651681587100029, -0.01962260529398918, -0.02244953066110611, -0.05564124882221222, 0.06395994126796722, 0.016461530700325966, -0.033061373978853226, 0.009590147994458675, 0.044305454939603806, -0.015005834400653839, -0.03630237653851509, -0.0017418371280655265, -0.011737193912267685, -0.032574158161878586, -0.0027149436064064503, 0.004015093669295311, -0.015105683356523514, -0.01648598164319992, 0.003917066380381584, -0.004318200051784515, 0.016345804557204247, 0.006638455204665661, 0.02143210731446743, 0.03837300464510918, -0.0693332776427269, 0.006320927292108536, -0.030128926038742065, -0.05188630521297455, -0.02323821745812893, -0.013146152719855309, -0.017520491033792496, -0.005653294734656811, 0.026560505852103233, 0.03434222936630249, 0.03657829388976097, 0.008657122030854225, 0.03151319548487663, -0.0027980732265859842, -0.010498236864805222, 0.06225086376070976, 0.009963521733880043, -0.03943268582224846, 0.00019720107957255095, 0.03887727111577988, -0.02327929437160492, -0.0807681605219841, -0.04692668467760086, -0.016753338277339935, 0.024481581524014473, -0.018162919208407402, -0.015247783623635769, -0.06005530804395676, 0.0170790683478117, 0.06527558714151382, -0.04668434336781502, -0.031074658036231995, 0.0011115814559161663, -0.0722612738609314, 0.0050371550023555756, 0.03595184534788132, -0.020387711003422737, 0.013686508871614933, -0.04965244606137276, 0.025266233831644058, -0.010261022485792637, 0.053784918040037155, -0.01969164051115513, 0.011470167897641659, -0.07148025929927826, -0.018234573304653168, -0.010091179981827736, 0.0431237556040287, 0.0583391934633255, -0.03232627734541893, 0.05107457563281059, 0.030412966385483742, -0.0010999840451404452, 0.04389988258481026, -0.03079642914235592, 0.009444563649594784, 0.03306926414370537, -0.045144516974687576, -0.00026375657762400806, 0.01675398461520672, 0.026557141914963722, -0.03788400813937187, -0.036757830530405045, -0.029641499742865562, -0.03251877427101135, -0.0022772839292883873, 0.019170895218849182, 0.025859026238322258, 0.018126480281352997, 0.03828173503279686, 0.01194799318909645, 0.025626281276345253, 0.03830292448401451, -0.016630766913294792, 0.06795001029968262, -0.005642981734126806, -0.010464709252119064, -0.0050764852203428745, -0.017496565356850624, -0.051642827689647675, 0.021648023277521133, 0.0261361263692379, -0.020187707617878914, -0.012442841194570065, 0.03749817609786987, 0.004697741940617561, 0.005902211647480726, 0.07763847708702087, -0.02569678984582424, -0.04097391292452812, -0.029768837615847588, 0.02618066407740116, 0.0159642044454813, -0.018860654905438423, 0.01513234619051218, -0.04566226899623871, -0.017238032072782516, -0.02495053969323635, -0.018189283087849617, -0.0204151663929224, 0.022478066384792328, 0.014602012932300568, 0.06507465243339539, 0.03233834728598595, -0.08748801797628403, 0.00405622273683548, 0.015782320871949196, -0.055625367909669876, 0.04802560433745384, 0.02444285899400711, 0.11436282843351364, -0.056260574609041214, -0.07002098113298416, 0.007494200021028519, -0.0015904656611382961, -0.04168960824608803, 0.013586971908807755, 0.0009323004051111639, -0.02702009119093418, 0.005187372211366892, 0.003964862320572138, 0.06887496262788773, -0.04008191451430321, -0.009105231612920761, 0.07350638508796692, 0.004439282231032848, 0.04452734813094139, -0.05575082078576088, -0.026282479986548424, 0.017495959997177124, -0.02257305011153221, -0.031790006905794144, 0.04820845648646355, -0.029050607234239578, -0.01936906948685646, -0.019578609615564346, -0.02401559054851532, 0.012935190461575985, 0.07421506196260452, -0.007194446865469217, -0.03328533098101616, -0.018203891813755035, 0.022917285561561584, 0.047840654850006104, 0.051924485713243484, -0.026688117533922195, 0.024870187044143677, 0.05633370578289032, 0.028328340500593185, -0.033792249858379364, 0.04001260921359062, 0.025036126375198364, -0.025252025574445724, -0.019452370703220367, 0.03191808611154556, 0.003892419161275029, -0.04751996323466301, 0.038878779858350754, 0.013880295678973198, 0.005488340277224779, -0.06844353675842285, -0.045100267976522446, 0.03981121629476547, -0.0054450854659080505, -0.011620250530540943, 0.01260892953723669, 0.022712402045726776, -0.01458929292857647, 0.04582524672150612, -0.011986448429524899, 0.0088998107239604, -0.022569434717297554, -0.019239265471696854, 0.013726902194321156, -0.021160045638680458, 0.028261879459023476, 0.04803420603275299, -0.0013536555925384164, 0.09397077560424805, -0.04712165147066116, 0.020816393196582794, -0.05495276674628258, -0.03712205961346626, 0.018595939502120018, 0.05646964907646179, 0.05621502175927162, 0.0554184690117836, 0.008001066744327545, -0.0263332799077034, 0.04652591794729233, 0.0726819634437561, 0.045147813856601715, -0.006548549048602581, -0.032353006303310394, -0.01772894710302353, 0.04196818545460701, 0.05273047834634781, -0.04934946447610855, -0.013357378542423248, 0.011996325105428696, 0.03198976069688797, -0.002727579791098833, 0.01646331511437893, -0.025508085265755653, 0.03922217711806297, -0.04719433933496475, -0.041849490255117416, 0.04305136948823929, 0.017681743949651718, 0.0014505712315440178, 0.02999715320765972, 0.02502688579261303, 0.01087297685444355, 0.02390385791659355, 0.019816827028989792, 0.018308648839592934, -0.05235162004828453, 0.02456047758460045, 0.004415502771735191, 0.05699373036623001, -0.05275995656847954, 0.03305647522211075, -0.017797715961933136, 0.01438106968998909, 0.04196872189640999, -0.032079968601465225, 0.026174884289503098, 0.05059601366519928, 0.03541231155395508, -0.03785334527492523, 0.025011319667100906, 0.003693841863423586, 0.03527900576591492, 0.04152952507138252, 0.009144687093794346, 0.06958354264497757, 0.022600984200835228, 0.042148981243371964, 0.07441883534193039, 0.019330617040395737, 0.03390171751379967, 0.012661703862249851, 0.07133780419826508, 0.017324645072221756, -0.011052913032472134, 0.04714881628751755, -0.045502226799726486, 0.021551478654146194, -0.050651662051677704, -0.0038556421641260386, -0.02518269792199135, -0.007848186418414116, 0.05162176489830017, 0.02866950072348118, -0.03647858276963234, -0.012569529004395008, 0.016112111508846283, -0.008065528236329556, 0.021131467074155807, -0.00611097551882267, 0.009631014429032803, -0.0068458374589681625, -0.021282847970724106, -0.02679942362010479, -0.06903331726789474, -0.05096893385052681, -0.030429348349571228, -0.015467919409275055, -0.021862532943487167, -0.09150662273168564, -0.00498614739626646, -0.08680728822946548, -0.022534918040037155, 0.027557319030165672, 0.008165792562067509, -0.026314886286854744, -0.03100425750017166, 0.022255726158618927, -0.04829755425453186, -0.03922779858112335, -0.04286579042673111, -0.05989254638552666, -0.04846878722310066, -0.08262265473604202, 0.03464055806398392, 0.036609310656785965, 0.008292438462376595, 0.0017788143595680594, 0.025420155376195908, 0.016692159697413445, -0.029096750542521477, 0.03745231777429581, 0.06416044384241104, -0.037308380007743835, -0.05846390128135681, 0.03245755285024643, -0.009878252632915974, 0.01793586276471615, 0.02317121811211109, -0.0303814597427845, 0.08951310813426971, 0.07207144051790237, 0.008620038628578186, 0.022248907014727592, -0.009808293543756008, -0.06252007931470871, -0.06507456302642822, -0.025869639590382576, -0.04093459993600845, -0.008694365620613098, -0.04547995328903198, -0.037980519235134125, -0.036407146602869034, -0.04354332387447357, 0.0052214572206139565, -0.012584096752107143, 0.0253369752317667, 0.02079550363123417, 0.037838805466890335, 0.02070506475865841, 0.043926239013671875, -0.02944301627576351, -0.040196262300014496, 0.058015692979097366, 0.01137849222868681, 0.004817605018615723, -0.08519995212554932, -0.002831018529832363, 0.02721192128956318, 0.01575648784637451, 0.016313305124640465, -0.004840088076889515, 0.07245120406150818, -0.011412936262786388, 0.003763817483559251, 0.013187112286686897, -0.010110045783221722, -0.011393547058105469, -0.0013844179920852184, -0.004521484021097422, 0.0021033918019384146, -0.02365831471979618, -0.033521268516778946, -0.00879873801022768, 0.029137371107935905, -0.05721307918429375, -0.06104963645339012, -0.01747610978782177, 0.03356480598449707, 0.04073890671133995, -0.004437109921127558, -0.04792352393269539, -0.00807704497128725, -0.07451918721199036, -0.0035846352111548185, 0.0386308990418911, 0.016526291146874428, -0.0029859619680792093, 0.04280855134129524, 0.014691843651235104, -0.008401635102927685, 0.030534254387021065, 0.0547800175845623, 0.06990523636341095, 0.00898181926459074, -0.08320263028144836, -0.0018114169361069798, -0.016670698300004005, 0.011597365140914917, -0.009723850525915623, -0.018694354221224785, -0.023411240428686142, -0.09870388358831406, -0.021491503342986107, 0.017161570489406586, 0.012764192186295986, -0.01654268428683281, 0.03461126238107681, 0.0037292500492185354, -0.030199281871318817, -0.008064442314207554, 0.012349188327789307, 0.04725607857108116, -0.029191572219133377, 0.05147034302353859, -0.02953406795859337, 0.0008645859779790044, -0.05823115259408951, 0.01658109575510025, -0.05162123590707779, -0.02160620130598545, 0.013314404524862766, 0.04651835188269615, -0.02609103173017502, 0.05463089793920517, 0.069342240691185, 0.04084364324808121, -0.05178922042250633, 0.0377417728304863, 0.0733715072274208, -0.04244226589798927, -0.04538337513804436, -0.006849124561995268, 0.0022049995604902506, -0.014076782390475273, 0.002790812635794282, -0.0012116950238123536, 0.05322757735848427, 0.02577960304915905, 0.002399543998762965, 0.0006981455371715128, -0.00777479587122798, -0.0069179474376142025, -0.02624773047864437, -0.05020122602581978, -0.030544742941856384, 0.0028385885525494814, -0.028488842770457268, 0.02290041744709015, 0.025058109313249588, 0.03227941319346428, 0.07403614372015, 0.018989907577633858, -0.0416812039911747, -0.002137617440894246, 0.02185947820544243, 0.01130711194127798, -0.016191648319363594, -0.06920041888952255, -0.04370517656207085, 0.0285995751619339, 0.04925601929426193, -0.02310919389128685, -0.06148957461118698, 0.014874705113470554, 0.05191430076956749, -0.05909093841910362, 0.059269197285175323, -0.0051621804013848305, 0.05378774181008339, 0.0554923377931118, -0.008443770930171013, 0.04265168309211731, -0.019887054339051247, -0.00540003040805459, -0.004585655406117439, 0.038858842104673386, -0.008798523806035519, -0.032692424952983856, -0.04903218150138855, 0.02079717256128788, 0.037965595722198486, 0.03229744732379913, 0.04478205740451813, -0.03465443104505539, -0.04297909140586853, 0.006515995133668184, 0.022197403013706207, -0.04130395129323006, -0.007590936962515116, 0.0398484542965889, 0.03164802864193916, -0.04695843532681465, -0.022031083703041077, -0.022681739181280136, -0.013921828009188175, 0.03894132375717163, 0.008186851628124714, -0.02074599824845791, -0.04501372203230858, 0.04030556604266167, -0.016299769282341003, -0.028495628386735916, -0.06620544195175171, 0.04754578322172165, -0.014822368510067463, -0.023151502013206482, 0.053955841809511185, 0.03484548628330231, 0.019405385479331017, 0.07253911346197128, 0.03432819992303848, 0.0149203697219491, -0.03388858586549759, 0.04168901592493057, -0.032793767750263214, -0.019127584993839264, 0.0041830395348370075, -0.031052615493535995, -0.03647542744874954, 0.00031096424208953977, -0.06507687270641327, -0.03671262413263321, -0.03030943125486374, 0.01737714372575283, 0.0017026581335812807, -0.019554944708943367, -0.0004023009678348899, 0.05912216380238533, -0.0077309017069637775, -0.04079259932041168, -0.04597557708621025, -0.013601446524262428, -0.06859028339385986, -0.0514635294675827, -0.0007731476216576993, 0.007056988310068846, 0.033874593675136566, 0.03471667692065239, 0.02422441728413105, 0.019261538982391357, 0.019756272435188293, -0.039556749165058136, 0.014457905665040016, 0.01734289713203907, -0.04031693562865257, -0.0209173746407032, 0.03644052520394325, 0.010919172316789627, 0.025984538719058037, -0.0397021509706974, 0.034607768058776855, 0.001856192946434021, -0.004455962218344212, -0.024756982922554016, 0.015866994857788086, 0.03096053935587406, -0.062371768057346344, -0.036154501140117645, -0.01655949279665947, -0.026627426967024803, 0.031047655269503593, -0.02567382901906967, -0.021050533279776573, 0.013297158293426037, 0.003315049223601818, 0.03554936870932579, -0.0354744978249073, -0.012238669209182262, 0.027668477967381477, -0.0013069012202322483, 0.01852882280945778, -0.054657306522130966, 0.0622740276157856, -0.035472434014081955, 0.023081226274371147, -0.021160004660487175, 0.009938850067555904, -0.02084255963563919, 0.027047814801335335, -0.025364868342876434, -0.023580264300107956, -0.013225214555859566, 0.05840764939785004, -0.012338043190538883, 0.03146582096815109, -0.008799542672932148, 0.037740133702754974, -0.028534749522805214, 0.07050453871488571, -0.039775412529706955, 0.01985890232026577, -0.041494328528642654, 0.027808014303445816, -0.019300473853945732, 0.01806282438337803, -0.014130362309515476, -0.019455669447779655, 0.03208718076348305, 0.06257542222738266, 0.03439987450838089, 0.030558859929442406, -0.002697103191167116, -0.013799630105495453, 0.012222661636769772, -0.04169318452477455, -0.019906582310795784, -0.011376246809959412, 0.0006539480527862906, -0.019892998039722443, 0.054249171167612076, 0.030159883201122284, -0.057485636323690414, -0.07396458089351654, 0.03735155239701271, 0.017170090228319168, -0.00017833319725468755, 0.0050328741781413555, 0.04791353642940521, 0.033586300909519196, 0.0416586771607399, -0.017253560945391655, -0.00483670411631465, 0.000928458059206605, -0.051735393702983856, 0.025766894221305847, -0.003432207042351365, 0.028112005442380905, 0.015348506160080433, -0.043166179209947586, -0.02325872890651226, 0.05915592983365059, 0.02683093585073948, 0.024327585473656654, 0.0016976104816421866, -0.044552020728588104, 0.03683195263147354, 0.007800739258527756, -0.035156700760126114, 0.030527230352163315, 0.00895481463521719, -0.023462271317839622, 0.04635004699230194, -0.010136815719306469, 0.0023014224134385586, 0.06176599860191345, 0.01751043274998665, -0.02146305702626705, 0.07012523710727692, -0.037892039865255356, 0.010907103307545185, 0.042709555476903915, -0.07671131938695908, -0.006581575144082308, -0.051695000380277634, 0.058207783848047256, -0.0681336373090744, 0.02324073761701584, 0.05617639422416687, -0.001900091883726418, 0.027697265148162842, -0.05176291987299919, -0.06036257743835449, 0.01806049235165119, -0.04066425561904907, 0.06953486055135727, 0.011633089743554592, -0.044915150851011276, 0.05363466590642929, 0.012204492464661598, -0.0653214380145073, 0.03687324747443199, 0.027391484007239342, 0.05508158728480339, 0.03956640511751175, 0.04637395218014717, -0.04423917829990387, -0.0025116256438195705, -0.03345027565956116, 0.015698442235589027, -0.05123985931277275, -0.01510581560432911, 0.03667708858847618, -0.044377103447914124, -0.025257542729377747, 0.030703173950314522, -0.013935783877968788, -0.019398296251893044, 0.052629150450229645, -0.05297740548849106, -0.03849757835268974, 0.013432574458420277, 0.018592869862914085, -0.04432394355535507, -0.013612079434096813, -0.0312771275639534, 0.012106990441679955, 0.010157229378819466, 0.0024656737223267555, -0.01989372819662094, -0.01580987311899662, 0.028467930853366852, -0.042439963668584824, -0.032556939870119095, 0.022101089358329773, -0.008018381893634796, -0.0223500095307827, 0.039550550282001495, 0.008479790762066841, 0.012849299237132072, 0.030418749898672104, -0.013425755314528942, 0.024614956229925156, -0.03497043997049332, -0.017902877181768417, 0.0315215140581131, -0.006747364066541195, 0.02007848396897316, 0.010730726644396782, 0.03232245147228241, 0.03700708597898483, 0.022886553779244423, -0.001056567532941699, -0.03406225144863129, -0.030795438215136528, 0.01481158658862114, -0.04167688637971878, 0.005339792463928461, -0.005501817911863327, -0.05179325491189957, -0.02352236956357956, 0.0018538380973041058, -0.04266803339123726, 0.03886919841170311, -0.06304647773504257, 0.008252263069152832, 0.04596902057528496, -0.017811326310038567, -0.0586666613817215, -0.11571651697158813, -0.014814788475632668, -0.05677628144621849, -0.014405456371605396, 0.05178666114807129, -0.037308190017938614, 0.04491176828742027, -0.05043568089604378, -0.03123626299202442, 0.0394270122051239, 0.05289388447999954, -0.057048503309488297, 0.06030663847923279, 0.044076427817344666, -0.05061272531747818, 0.011391175910830498, 0.02354377880692482, -0.05150674283504486, 0.0018979288870468736, 0.016071446239948273, -0.0029083199333399534, 0.022653678432106972, 0.014908002689480782, -0.060182224959135056, -0.020203707739710808, -0.0706833004951477, -0.039729900658130646, -0.04657788947224617, 0.006664449814707041, 0.047002051025629044 ]
DeepChem/ChemBERTa-10M-MTR
[ "pytorch", "roberta", "arxiv:1910.09700", "transformers" ]
null
{ "architectures": [ "RobertaForRegression" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
708
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-6 results: [] --- <!-- 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__sst2__train-16-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8356 - Accuracy: 0.6480 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6978 | 1.0 | 7 | 0.6807 | 0.4286 | | 0.6482 | 2.0 | 14 | 0.6775 | 0.4286 | | 0.6051 | 3.0 | 21 | 0.6623 | 0.5714 | | 0.486 | 4.0 | 28 | 0.6710 | 0.5714 | | 0.4612 | 5.0 | 35 | 0.5325 | 0.7143 | | 0.2233 | 6.0 | 42 | 0.4992 | 0.7143 | | 0.1328 | 7.0 | 49 | 0.4753 | 0.7143 | | 0.0905 | 8.0 | 56 | 0.2416 | 1.0 | | 0.0413 | 9.0 | 63 | 0.2079 | 1.0 | | 0.0356 | 10.0 | 70 | 0.2234 | 0.8571 | | 0.0217 | 11.0 | 77 | 0.2639 | 0.8571 | | 0.0121 | 12.0 | 84 | 0.2977 | 0.8571 | | 0.0105 | 13.0 | 91 | 0.3468 | 0.8571 | | 0.0085 | 14.0 | 98 | 0.3912 | 0.8571 | | 0.0077 | 15.0 | 105 | 0.4000 | 0.8571 | | 0.0071 | 16.0 | 112 | 0.4015 | 0.8571 | | 0.0078 | 17.0 | 119 | 0.3865 | 0.8571 | | 0.0059 | 18.0 | 126 | 0.3603 | 0.8571 | | 0.0051 | 19.0 | 133 | 0.3231 | 0.8571 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012891308404505253, 0.013537386432290077, -0.04398685321211815, 0.04260573908686638, 0.052367277443408966, 0.01694796234369278, -0.018632760271430016, -0.02268918603658676, -0.05652894824743271, 0.06402960419654846, 0.01627008430659771, -0.03263991326093674, 0.010081573389470577, 0.043465837836265564, -0.014864202588796616, -0.03600515052676201, -0.0017788378754630685, -0.010656939819455147, -0.03284072503447533, -0.0025656267534941435, 0.003860349068418145, -0.016393747180700302, -0.015251991339027882, 0.004307423252612352, -0.004440282471477985, 0.015178080648183823, 0.006115049123764038, 0.02260035090148449, 0.038662057369947433, -0.06886474788188934, 0.00667776633054018, -0.029745031148195267, -0.05120595917105675, -0.02272780053317547, -0.013629710301756859, -0.017888901755213737, -0.005169962532818317, 0.027860376983880997, 0.035852327942848206, 0.0357079952955246, 0.008370433002710342, 0.030629267916083336, -0.0018592725973576307, -0.01119584497064352, 0.062407270073890686, 0.010598891414701939, -0.03933092951774597, -0.00023944088025018573, 0.039629705250263214, -0.02386574074625969, -0.07976015657186508, -0.04595993086695671, -0.017660044133663177, 0.024354642257094383, -0.016115305945277214, -0.014140377752482891, -0.059939052909612656, 0.01734190061688423, 0.06582192331552505, -0.04649847745895386, -0.030205460265278816, 0.0006139668403193355, -0.07216659188270569, 0.0046354662626981735, 0.03701723739504814, -0.02054119110107422, 0.013973399065434933, -0.04950091615319252, 0.02534409798681736, -0.009731171652674675, 0.053815342485904694, -0.02016526274383068, 0.01191203948110342, -0.07131069153547287, -0.019489455968141556, -0.010712641291320324, 0.0437428317964077, 0.05840430408716202, -0.031279973685741425, 0.05085568502545357, 0.02973368763923645, -0.0010932200821116567, 0.04356525465846062, -0.030196798965334892, 0.008961088955402374, 0.03391942381858826, -0.04582617059350014, 0.0007241298444569111, 0.016836311668157578, 0.02698114886879921, -0.038985446095466614, -0.03738415241241455, -0.03065904788672924, -0.032525599002838135, -0.0005547797190956771, 0.020157549530267715, 0.02627493254840374, 0.017800426110625267, 0.03895845264196396, 0.01347386371344328, 0.02608906291425228, 0.03808951750397682, -0.017013734206557274, 0.0675731897354126, -0.004708539694547653, -0.01160278171300888, -0.005796439945697784, -0.018420841544866562, -0.050857845693826675, 0.020432686433196068, 0.027640633285045624, -0.020653702318668365, -0.011608018539845943, 0.03847901150584221, 0.004699524957686663, 0.005203819368034601, 0.07721447944641113, -0.02536591701209545, -0.04109920933842659, -0.03283198922872543, 0.02601589821279049, 0.015582486987113953, -0.018507124856114388, 0.015441413037478924, -0.04552958160638809, -0.01730593666434288, -0.025605911388993263, -0.01738855242729187, -0.020810483023524284, 0.022102488204836845, 0.014243573881685734, 0.06473889946937561, 0.03247658163309097, -0.08671940863132477, 0.0054983338341116905, 0.01622244343161583, -0.055764056742191315, 0.0475008562207222, 0.0245713721960783, 0.11431735754013062, -0.05792436748743057, -0.06738980859518051, 0.00828554667532444, -0.0013903648359701037, -0.04163194075226784, 0.013904073275625706, 0.000762319250497967, -0.0272683035582304, 0.005050599575042725, 0.004208747297525406, 0.06990018486976624, -0.04024214297533035, -0.010186227038502693, 0.07326728850603104, 0.0038142972625792027, 0.044887129217386246, -0.05636117234826088, -0.02545986697077751, 0.01783086359500885, -0.022446922957897186, -0.03349838778376579, 0.04951374605298042, -0.028107594698667526, -0.01885746419429779, -0.01921078749001026, -0.024168239906430244, 0.01255643181502819, 0.07424177974462509, -0.0074550616554915905, -0.033181387931108475, -0.017748700454831123, 0.024321548640727997, 0.046483587473630905, 0.05165650323033333, -0.026554469019174576, 0.026036595925688744, 0.05801616609096527, 0.02743682451546192, -0.03335784003138542, 0.04045682027935982, 0.023610878735780716, -0.026141686365008354, -0.019574210047721863, 0.03325260058045387, 0.002263347851112485, -0.047714557498693466, 0.03953678533434868, 0.013166307471692562, 0.004323025234043598, -0.068700410425663, -0.04536209627985954, 0.03903014585375786, -0.005300321616232395, -0.01061226800084114, 0.01458397600799799, 0.023161079734563828, -0.013600427657365799, 0.04547996073961258, -0.010518238879740238, 0.007730207405984402, -0.0220357496291399, -0.01924268528819084, 0.012361869215965271, -0.021552354097366333, 0.02888163924217224, 0.04857604578137398, -0.002360818674787879, 0.0950949564576149, -0.045827753841876984, 0.0195473600178957, -0.05346408113837242, -0.03634757921099663, 0.018942415714263916, 0.055269625037908554, 0.05639469996094704, 0.05623852461576462, 0.00872774701565504, -0.026539692655205727, 0.04626575857400894, 0.07312919199466705, 0.04502546787261963, -0.005735293030738831, -0.03338279947638512, -0.017284099012613297, 0.041446179151535034, 0.052012085914611816, -0.048438962548971176, -0.013522429391741753, 0.011173953302204609, 0.031475979834795, -0.003384289098903537, 0.016162393614649773, -0.0262812040746212, 0.039225924760103226, -0.046771250665187836, -0.04235898330807686, 0.04356923699378967, 0.01908878982067108, 0.0006212715525180101, 0.029613107442855835, 0.026739563792943954, 0.01008598506450653, 0.023775000125169754, 0.02076347917318344, 0.018742313608527184, -0.05298612639307976, 0.022812573239207268, 0.004721952602267265, 0.057301588356494904, -0.052636969834566116, 0.03237760439515114, -0.01650414802134037, 0.014976044185459614, 0.04220880940556526, -0.033540163189172745, 0.026921436190605164, 0.051127299666404724, 0.03426187112927437, -0.03629498556256294, 0.025975674390792847, 0.0026448045391589403, 0.03466494381427765, 0.04013843089342117, 0.008637302555143833, 0.07112810760736465, 0.023006433621048927, 0.04331202432513237, 0.07408835738897324, 0.01939443312585354, 0.03361364081501961, 0.012068171985447407, 0.0704268217086792, 0.017827192321419716, -0.009264536201953888, 0.046387962996959686, -0.04499354958534241, 0.02272721193730831, -0.05051270127296448, -0.0038269171491265297, -0.02378215827047825, -0.0087113743647933, 0.05255233496427536, 0.026931961998343468, -0.035315170884132385, -0.012248937040567398, 0.01557266153395176, -0.008725753985345364, 0.021656697615981102, -0.0057585276663303375, 0.010006262920796871, -0.007244431413710117, -0.0202377587556839, -0.027307776734232903, -0.0702088475227356, -0.050856493413448334, -0.02928527444601059, -0.015256357379257679, -0.02128918096423149, -0.08895600587129593, -0.004372531548142433, -0.08691242337226868, -0.022074881941080093, 0.026968801394104958, 0.0077866604551672935, -0.026592589914798737, -0.031682565808296204, 0.023144705221056938, -0.04715610668063164, -0.03999585658311844, -0.04175596311688423, -0.06006530299782753, -0.04919210448861122, -0.08191955089569092, 0.03458964452147484, 0.03613954782485962, 0.007818536832928658, 0.0004471951106097549, 0.026131080463528633, 0.0166491512209177, -0.028066368773579597, 0.0382496602833271, 0.06475876271724701, -0.03651640936732292, -0.05831506848335266, 0.03109489008784294, -0.009819532744586468, 0.01829851046204567, 0.021706920117139816, -0.030594222247600555, 0.09064792096614838, 0.07271601259708405, 0.007761131040751934, 0.021469449624419212, -0.011020874604582787, -0.06235110014677048, -0.06576221436262131, -0.025001749396324158, -0.04204816371202469, -0.009550482034683228, -0.04615363851189613, -0.038824696093797684, -0.03605811670422554, -0.04295220971107483, 0.005447416100651026, -0.013021276332437992, 0.025980329141020775, 0.020913129672408104, 0.03752139210700989, 0.02040756493806839, 0.044588424265384674, -0.02880343236029148, -0.03913635388016701, 0.05825905129313469, 0.011045098304748535, 0.005174822639673948, -0.0848536491394043, -0.002724887104704976, 0.027519958093762398, 0.016938449814915657, 0.016094345599412918, -0.00488410284742713, 0.07206430286169052, -0.010620053857564926, 0.003367908764630556, 0.013991684652864933, -0.010028835386037827, -0.011093895882368088, -0.002040422521531582, -0.004416983108967543, 0.0028758023399859667, -0.022543927654623985, -0.0336240716278553, -0.00884684082120657, 0.027691183611750603, -0.057747166603803635, -0.06068652868270874, -0.01652376912534237, 0.03344707190990448, 0.04149460047483444, -0.0042791166342794895, -0.04785323888063431, -0.007488102652132511, -0.0741964653134346, -0.004579908214509487, 0.037021078169345856, 0.01659136638045311, -0.00419323006644845, 0.043361496180295944, 0.015868840739130974, -0.007998388260602951, 0.03036019392311573, 0.05456959456205368, 0.07093627750873566, 0.009786461479961872, -0.08390478044748306, -0.0020117757376283407, -0.016349203884601593, 0.012014525011181831, -0.009802592918276787, -0.017047123983502388, -0.02330644614994526, -0.09849197417497635, -0.022200630977749825, 0.01649237424135208, 0.011976762674748898, -0.016292786225676537, 0.03374367207288742, 0.0045388685539364815, -0.030349157750606537, -0.00667060911655426, 0.012346661649644375, 0.04663001000881195, -0.028274158015847206, 0.052616458386182785, -0.03085637278854847, 0.0010306264739483595, -0.058218322694301605, 0.01682242751121521, -0.05372852459549904, -0.024160416796803474, 0.013237695209681988, 0.046082545071840286, -0.028166890144348145, 0.054779525846242905, 0.07030554860830307, 0.04028971120715141, -0.052011940628290176, 0.037586405873298645, 0.07299685478210449, -0.04230302944779396, -0.04478660970926285, -0.005902196746319532, 0.002007584786042571, -0.014866501092910767, 0.001606198726221919, -0.0020931134931743145, 0.05350179970264435, 0.024674657732248306, 0.002521592192351818, 0.0011355149326846004, -0.008050148375332355, -0.006304115988314152, -0.02732369676232338, -0.05007057636976242, -0.030348556116223335, 0.0028688886668533087, -0.02834874577820301, 0.023237990215420723, 0.025250524282455444, 0.03175007924437523, 0.07325930893421173, 0.01987813599407673, -0.04073753207921982, -0.0010599156375974417, 0.022942183539271355, 0.011241516098380089, -0.017667585983872414, -0.06911307573318481, -0.04325034096837044, 0.02816859260201454, 0.04926736280322075, -0.02309664897620678, -0.06271885335445404, 0.014958626590669155, 0.05004445090889931, -0.05905410647392273, 0.058250755071640015, -0.005590702872723341, 0.0542742982506752, 0.056429941207170486, -0.008890829049050808, 0.04232016205787659, -0.020277179777622223, -0.0061888559721410275, -0.0030136816203594208, 0.03927505761384964, -0.009272904135286808, -0.03298400714993477, -0.04804884269833565, 0.019224215298891068, 0.03860827907919884, 0.03204561024904251, 0.0434398278594017, -0.03480333462357521, -0.043302420526742935, 0.00691527733579278, 0.02275880239903927, -0.04127807542681694, -0.008238706737756729, 0.03886789828538895, 0.030282767489552498, -0.04819289222359657, -0.02205866575241089, -0.023480020463466644, -0.014983275905251503, 0.03922256827354431, 0.0070406412705779076, -0.01984185352921486, -0.046058908104896545, 0.03857319429516792, -0.01664021797478199, -0.02852078154683113, -0.06763491779565811, 0.048048630356788635, -0.012991786003112793, -0.02271721139550209, 0.05383390560746193, 0.03615033999085426, 0.019264288246631622, 0.07194282114505768, 0.0340723842382431, 0.015457144007086754, -0.0327523835003376, 0.041170213371515274, -0.033812135457992554, -0.0203898623585701, 0.006065187510102987, -0.030805477872490883, -0.03555987402796745, 0.00009342331759398803, -0.064438596367836, -0.03664910048246384, -0.029759669676423073, 0.017240237444639206, 0.0012582894414663315, -0.018770167604088783, -0.0004447966639418155, 0.059119027107954025, -0.00653544906526804, -0.041172683238983154, -0.04748868942260742, -0.014072097837924957, -0.06923515349626541, -0.05083608627319336, -0.00040800284477882087, 0.006682196166366339, 0.033714503049850464, 0.034470658749341965, 0.024411536753177643, 0.01835324615240097, 0.02003377676010132, -0.040137920528650284, 0.014862742274999619, 0.01825564168393612, -0.04115457460284233, -0.01905071921646595, 0.037050653249025345, 0.011446070857346058, 0.026833990588784218, -0.039500731974840164, 0.03504014015197754, 0.0005053013446740806, -0.005213731434196234, -0.02481703832745552, 0.016250263899564743, 0.0291792880743742, -0.061678241938352585, -0.03552216291427612, -0.017084084451198578, -0.02742423489689827, 0.03077937662601471, -0.024430986493825912, -0.021141614764928818, 0.013200577348470688, 0.004258390516042709, 0.03575977310538292, -0.03399066627025604, -0.011865201406180859, 0.027987457811832428, -0.0014696847647428513, 0.01838630996644497, -0.05584554374217987, 0.06168239191174507, -0.03622850030660629, 0.025018811225891113, -0.021044239401817322, 0.009783688932657242, -0.021996865049004555, 0.02668651007115841, -0.026459485292434692, -0.02374839037656784, -0.012720643542706966, 0.05776091292500496, -0.012987707741558552, 0.030867867171764374, -0.008847266435623169, 0.03870879486203194, -0.028959305956959724, 0.07065477967262268, -0.03946217894554138, 0.019006865099072456, -0.04112457111477852, 0.028884967789053917, -0.01914622262120247, 0.019122682511806488, -0.013267689384520054, -0.01784169115126133, 0.0324208103120327, 0.06281737983226776, 0.032114993780851364, 0.030445566400885582, -0.0010973529424518347, -0.014091678895056248, 0.012976409867405891, -0.040679167956113815, -0.019234435632824898, -0.01290111243724823, -0.00033200083998963237, -0.019558412954211235, 0.05571366474032402, 0.030830858275294304, -0.05634761229157448, -0.0746041014790535, 0.038080308586359024, 0.017488550394773483, -0.0012827464379370213, 0.005316688679158688, 0.04879509657621384, 0.03329263627529144, 0.04135746881365776, -0.016614386811852455, -0.006019177846610546, -0.00009017198317451403, -0.0521555058658123, 0.024666044861078262, -0.004980427213013172, 0.02829570695757866, 0.014870322309434414, -0.04289526119828224, -0.023323535919189453, 0.05978787690401077, 0.025983871892094612, 0.02498232014477253, 0.0021152698900550604, -0.04386132210493088, 0.037287455052137375, 0.007516070269048214, -0.03416597098112106, 0.029710104689002037, 0.008990427479147911, -0.02436334639787674, 0.045914653688669205, -0.009762332774698734, 0.002223686082288623, 0.06130483001470566, 0.017804311588406563, -0.02086517959833145, 0.07029657810926437, -0.03830546513199806, 0.012171976268291473, 0.04250312224030495, -0.07778680324554443, -0.007556017953902483, -0.05205880105495453, 0.05746544525027275, -0.06915334612131119, 0.023648060858249664, 0.056813426315784454, -0.0018997157458215952, 0.02914503961801529, -0.05386847257614136, -0.05982758477330208, 0.017226021736860275, -0.0406227745115757, 0.06800409406423569, 0.01166549976915121, -0.04357441887259483, 0.05223831906914711, 0.012141718529164791, -0.06430257111787796, 0.0363900288939476, 0.02773238718509674, 0.053945623338222504, 0.039621204137802124, 0.04638990759849548, -0.04471863433718681, -0.002631163690239191, -0.0338742621243, 0.015351754613220692, -0.050076328217983246, -0.014011967927217484, 0.03541922569274902, -0.04436296224594116, -0.02448105439543724, 0.029924465343356133, -0.014357781037688255, -0.018631087616086006, 0.052162572741508484, -0.05264730751514435, -0.04078422859311104, 0.01424452755600214, 0.019523100927472115, -0.04350566491484642, -0.012846402823925018, -0.03113364987075329, 0.010424371808767319, 0.010319354943931103, 0.0034397710114717484, -0.020594831556081772, -0.016452360898256302, 0.0286765918135643, -0.041525907814502716, -0.03339698165655136, 0.02194419503211975, -0.00745863001793623, -0.022531304508447647, 0.03922436386346817, 0.007920044474303722, 0.013332182541489601, 0.031339049339294434, -0.012911336496472359, 0.023007605224847794, -0.03466574475169182, -0.017709331586956978, 0.03159579262137413, -0.008395564742386341, 0.02049185149371624, 0.010460742749273777, 0.03129778802394867, 0.03719574958086014, 0.024162475019693375, -0.001708970288746059, -0.034919168800115585, -0.03037453070282936, 0.014869500882923603, -0.04171575978398323, 0.004501702729612589, -0.00438433513045311, -0.05171125382184982, -0.023572633042931557, 0.0015295172343030572, -0.04283387213945389, 0.038731593638658524, -0.06362149864435196, 0.008730873465538025, 0.0452159121632576, -0.017377426847815514, -0.060255635529756546, -0.11562278866767883, -0.014608091674745083, -0.05643113702535629, -0.014648943208158016, 0.0513978935778141, -0.037326060235500336, 0.044394951313734055, -0.05021790415048599, -0.031235918402671814, 0.03769117593765259, 0.05346846207976341, -0.05746245011687279, 0.06142411753535271, 0.04419177025556564, -0.04958720877766609, 0.009851469658315182, 0.023140938952565193, -0.052415862679481506, 0.002522694878280163, 0.01658756658434868, -0.0037044778000563383, 0.02309073880314827, 0.014718279242515564, -0.06039454787969589, -0.019773518666625023, -0.07122018933296204, -0.039566583931446075, -0.04667332023382187, 0.006586847361177206, 0.04682601988315582 ]
DeepChem/ChemBERTa-5M-MLM
[ "pytorch", "roberta", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "RobertaForMaskedLM" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
29
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-7 results: [] --- <!-- 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__sst2__train-16-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6952 - Accuracy: 0.5025 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6949 | 1.0 | 7 | 0.7252 | 0.2857 | | 0.6678 | 2.0 | 14 | 0.7550 | 0.2857 | | 0.6299 | 3.0 | 21 | 0.8004 | 0.2857 | | 0.5596 | 4.0 | 28 | 0.8508 | 0.2857 | | 0.5667 | 5.0 | 35 | 0.8464 | 0.2857 | | 0.367 | 6.0 | 42 | 0.8515 | 0.2857 | | 0.2706 | 7.0 | 49 | 0.9574 | 0.2857 | | 0.2163 | 8.0 | 56 | 0.9710 | 0.4286 | | 0.1024 | 9.0 | 63 | 1.1607 | 0.1429 | | 0.1046 | 10.0 | 70 | 1.3779 | 0.1429 | | 0.0483 | 11.0 | 77 | 1.4876 | 0.1429 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013273577205836773, 0.014858677051961422, -0.04426555335521698, 0.04244958236813545, 0.05243188515305519, 0.016493085771799088, -0.0184760931879282, -0.02231992967426777, -0.05598285421729088, 0.06377723067998886, 0.015925923362374306, -0.03275736793875694, 0.010284021496772766, 0.04415862262248993, -0.014126546680927277, -0.037500347942113876, -0.002559415763244033, -0.01159292459487915, -0.03378013148903847, -0.0025709380861371756, 0.004835500847548246, -0.016358399763703346, -0.01631888747215271, 0.0037090936675667763, -0.005253303330391645, 0.016294701024889946, 0.006878698710352182, 0.021322092041373253, 0.038593590259552, -0.06792696565389633, 0.005612935405224562, -0.02970930002629757, -0.05153181403875351, -0.023137560114264488, -0.01323859952390194, -0.017491484060883522, -0.0064796325750648975, 0.02702779322862625, 0.035200294107198715, 0.035873573273420334, 0.00849181693047285, 0.030959496274590492, -0.0027878619730472565, -0.010764522477984428, 0.062121931463479996, 0.010055218823254108, -0.038640860468149185, -0.0002250541583634913, 0.04015428200364113, -0.023930536583065987, -0.08027027547359467, -0.04589741304516792, -0.017216509208083153, 0.02484557218849659, -0.016787748783826828, -0.014564137905836105, -0.0599045604467392, 0.015532189048826694, 0.06573227792978287, -0.045283444225788116, -0.030022788792848587, 0.00048556074034422636, -0.07256096601486206, 0.005220046266913414, 0.03713367134332657, -0.019902575761079788, 0.013015830889344215, -0.05044832453131676, 0.024993836879730225, -0.010629715397953987, 0.0543479286134243, -0.020089762285351753, 0.01205413043498993, -0.0721132755279541, -0.01933291181921959, -0.009815271943807602, 0.043984733521938324, 0.057841815054416656, -0.03146101534366608, 0.051782090216875076, 0.029646148905158043, -0.0010567951248958707, 0.04358064383268356, -0.03043394163250923, 0.009276531636714935, 0.032609015703201294, -0.04585597291588783, -0.00017188423953484744, 0.017403585836291313, 0.02612125314772129, -0.03720894455909729, -0.03669470548629761, -0.02960561402142048, -0.03319273144006729, -0.0011748187243938446, 0.018917059525847435, 0.026040829718112946, 0.01772286184132099, 0.0387357622385025, 0.012343330308794975, 0.02650611847639084, 0.037394341081380844, -0.017245251685380936, 0.06806278228759766, -0.005584993399679661, -0.010543134063482285, -0.006315023172646761, -0.017650458961725235, -0.052023448050022125, 0.020973902195692062, 0.02653355523943901, -0.020826073363423347, -0.011969528160989285, 0.03705740347504616, 0.005015442613512278, 0.005500758066773415, 0.07796400785446167, -0.02560458332300186, -0.04212433844804764, -0.03214048594236374, 0.025381455197930336, 0.01572449505329132, -0.019466901198029518, 0.01477544754743576, -0.04519053176045418, -0.01729537360370159, -0.024507880210876465, -0.017592228949069977, -0.01923215202987194, 0.022595198825001717, 0.01450458262115717, 0.06488935649394989, 0.032585449516773224, -0.08880587667226791, 0.004761928226798773, 0.016686592251062393, -0.055755265057086945, 0.0472329817712307, 0.02394956909120083, 0.11363518238067627, -0.05777004733681679, -0.06907936185598373, 0.007594454567879438, -0.0013290693750604987, -0.04095076397061348, 0.013470366597175598, 0.0011358668562024832, -0.02705678716301918, 0.006022940389811993, 0.0034254668280482292, 0.06943046301603317, -0.040966469794511795, -0.011062327772378922, 0.07524185627698898, 0.0043162270449101925, 0.04597853496670723, -0.0556192509829998, -0.027551716193556786, 0.01801288314163685, -0.021860310807824135, -0.032987866550683975, 0.048905257135629654, -0.028634971007704735, -0.018377307802438736, -0.018261132761836052, -0.02491285838186741, 0.011320997960865498, 0.07436428219079971, -0.007832237519323826, -0.03257976099848747, -0.01744147762656212, 0.022943906486034393, 0.047214530408382416, 0.05073703080415726, -0.02697150781750679, 0.025006914511322975, 0.056131359189748764, 0.02838645875453949, -0.03272698074579239, 0.039577335119247437, 0.025034692138433456, -0.024703936651349068, -0.019343560561537743, 0.03161109983921051, 0.003957875072956085, -0.047501593828201294, 0.03801514953374863, 0.01315850019454956, 0.0049699149094522, -0.06773324310779572, -0.046219974756240845, 0.03927357867360115, -0.004144934471696615, -0.01225581206381321, 0.01360367238521576, 0.022477004677057266, -0.014120065607130527, 0.045419007539749146, -0.011835300363600254, 0.007433652877807617, -0.022537335753440857, -0.01987038366496563, 0.013657335191965103, -0.021254653111100197, 0.029081381857395172, 0.0487525500357151, -0.002082343678921461, 0.09400911629199982, -0.04586184769868851, 0.01933126524090767, -0.055224522948265076, -0.03742159530520439, 0.017026124522089958, 0.05628743767738342, 0.05603650584816933, 0.05660627782344818, 0.008617517538368702, -0.02750251442193985, 0.04675555229187012, 0.07304134219884872, 0.046035103499889374, -0.005518716294318438, -0.03279997408390045, -0.016939017921686172, 0.04125581309199333, 0.05200252681970596, -0.048508401960134506, -0.015210850164294243, 0.01203890610486269, 0.031387101858854294, -0.003822688478976488, 0.01676834560930729, -0.026244768872857094, 0.03959421068429947, -0.04596119374036789, -0.04253697767853737, 0.042935583740472794, 0.01785220392048359, 0.0014549745246767998, 0.02982989326119423, 0.026813648641109467, 0.010290057398378849, 0.024710580706596375, 0.02060817740857601, 0.018785420805215836, -0.052477430552244186, 0.02325189672410488, 0.005147404037415981, 0.05663205683231354, -0.05330980196595192, 0.033318862318992615, -0.016422297805547714, 0.014306689612567425, 0.04320123791694641, -0.031064175069332123, 0.02747271955013275, 0.051010437309741974, 0.03487511724233627, -0.03760429844260216, 0.025192201137542725, 0.0031110497657209635, 0.03461611643433571, 0.04108721762895584, 0.008618928492069244, 0.07000324875116348, 0.023333897814154625, 0.043451953679323196, 0.0736984834074974, 0.020033420994877815, 0.03313162922859192, 0.01319930050522089, 0.07006964832544327, 0.017100706696510315, -0.011171868070960045, 0.04697122797369957, -0.04543372988700867, 0.022132689133286476, -0.04937637969851494, -0.0037323308642953634, -0.02396242879331112, -0.00803433172404766, 0.05271691828966141, 0.027509594336152077, -0.035514526069164276, -0.012308921664953232, 0.01563255488872528, -0.007298812735825777, 0.020928040146827698, -0.005832662805914879, 0.011076166294515133, -0.007446187548339367, -0.021137448027729988, -0.027080483734607697, -0.06934503465890884, -0.0510016568005085, -0.030117277055978775, -0.0163215771317482, -0.022262169048190117, -0.089963898062706, -0.00497400900349021, -0.08724718540906906, -0.02156796306371689, 0.027033861726522446, 0.007847921922802925, -0.026705408468842506, -0.031397104263305664, 0.022867683321237564, -0.04886581748723984, -0.03933229669928551, -0.04269324243068695, -0.059671156108379364, -0.04883723333477974, -0.0815175473690033, 0.03466130420565605, 0.0361025370657444, 0.005669455509632826, 0.0023481345269829035, 0.02548818849027157, 0.01765628717839718, -0.02773475833237171, 0.037954822182655334, 0.06520535051822662, -0.036935459822416306, -0.05749576911330223, 0.03311373293399811, -0.010226821526885033, 0.018785562366247177, 0.022075142711400986, -0.031052501872181892, 0.08920123428106308, 0.07186585664749146, 0.00763519573956728, 0.022532610222697258, -0.009630604647099972, -0.06250903010368347, -0.0662735104560852, -0.024631990119814873, -0.04104512929916382, -0.007599156349897385, -0.04636799171566963, -0.03740186616778374, -0.03740393742918968, -0.042401667684316635, 0.004916002042591572, -0.012087036855518818, 0.025285769253969193, 0.02017192170023918, 0.03674928471446037, 0.02026183530688286, 0.04359376057982445, -0.029470982030034065, -0.03929070010781288, 0.058198872953653336, 0.010365917347371578, 0.00548968743532896, -0.0857296884059906, -0.0018713028402999043, 0.026830166578292847, 0.016254635527729988, 0.01573282480239868, -0.004800678230822086, 0.07210731506347656, -0.011186834424734116, 0.004624338820576668, 0.013292785733938217, -0.010879358276724815, -0.01124056801199913, -0.0005101910210214555, -0.004043636377900839, 0.002814066829159856, -0.022891433909535408, -0.032914504408836365, -0.009259872138500214, 0.02865738794207573, -0.058035898953676224, -0.06025291234254837, -0.017444871366024017, 0.0342739038169384, 0.04150216281414032, -0.00447913957759738, -0.04773241654038429, -0.008046257309615612, -0.07363630086183548, -0.004164676181972027, 0.038397327065467834, 0.017460018396377563, -0.0024063352029770613, 0.04238910600543022, 0.01544677559286356, -0.007904383353888988, 0.029935993254184723, 0.05610906332731247, 0.07000605016946793, 0.008815406821668148, -0.08353883028030396, -0.002441264921799302, -0.016454046592116356, 0.012282809242606163, -0.010363667272031307, -0.01787399873137474, -0.021967006847262383, -0.09921779483556747, -0.02155585028231144, 0.017314517870545387, 0.011733315885066986, -0.01586984284222126, 0.033902425318956375, 0.004073246382176876, -0.030307533219456673, -0.007554474286735058, 0.012023866176605225, 0.04643921181559563, -0.027500316500663757, 0.051260415464639664, -0.030573338270187378, 0.00047833219286985695, -0.05837944522500038, 0.01606324128806591, -0.05331898853182793, -0.021722564473748207, 0.012635936960577965, 0.04657648503780365, -0.027356695383787155, 0.053283460438251495, 0.06933832913637161, 0.0409407839179039, -0.05131528899073601, 0.03828153386712074, 0.07305733114480972, -0.042982012033462524, -0.04517161473631859, -0.005516962148249149, 0.0015859936829656363, -0.014736611396074295, 0.0021212950814515352, -0.001990780932828784, 0.054435037076473236, 0.025542274117469788, 0.002610227093100548, 0.000007743877176835667, -0.008499992080032825, -0.007704775780439377, -0.026361873373389244, -0.04959583282470703, -0.02993112802505493, 0.003632938489317894, -0.02789975516498089, 0.023387840017676353, 0.02604648843407631, 0.03266562893986702, 0.07456208765506744, 0.01901964657008648, -0.040533747524023056, -0.0016281070420518517, 0.022950662299990654, 0.009811974130570889, -0.017933910712599754, -0.06925854086875916, -0.04319559782743454, 0.028983935713768005, 0.04950709640979767, -0.0219033882021904, -0.061402447521686554, 0.014681429602205753, 0.05124732479453087, -0.059015367180109024, 0.05879798159003258, -0.005046558566391468, 0.05373493209481239, 0.05658838897943497, -0.008481321856379509, 0.04216410219669342, -0.019536511972546577, -0.006340441759675741, -0.0028900487814098597, 0.039610497653484344, -0.008132727816700935, -0.03327154740691185, -0.0483483225107193, 0.019991835579276085, 0.03943167254328728, 0.03145694360136986, 0.04420970007777214, -0.03428690880537033, -0.041991181671619415, 0.006509582512080669, 0.023118000477552414, -0.04080721735954285, -0.007759726140648127, 0.03893585503101349, 0.031114576384425163, -0.04755406826734543, -0.022290047258138657, -0.023119304329156876, -0.014490334317088127, 0.03891358524560928, 0.007249601185321808, -0.0198246818035841, -0.045857977122068405, 0.03919682279229164, -0.016711736097931862, -0.028100810945034027, -0.06734731793403625, 0.048271626234054565, -0.013575471006333828, -0.024564938619732857, 0.054710838943719864, 0.03545074909925461, 0.020430514588952065, 0.0723128542304039, 0.03446323424577713, 0.015108952298760414, -0.03306468948721886, 0.04161376506090164, -0.03321966528892517, -0.02041690982878208, 0.005962178576737642, -0.03069610707461834, -0.03672773763537407, -0.0004306477203499526, -0.06441021710634232, -0.036788638681173325, -0.03094000369310379, 0.017315752804279327, 0.0023811820428818464, -0.019665105268359184, -0.001254009548574686, 0.05845378711819649, -0.0058059836737811565, -0.041369955986738205, -0.04627944156527519, -0.013905884698033333, -0.06875553727149963, -0.05183114856481552, -0.001039567869156599, 0.006201886106282473, 0.03293269872665405, 0.03590535745024681, 0.02432538941502571, 0.01778222620487213, 0.020526830106973648, -0.04060138389468193, 0.015052481554448605, 0.018972372636198997, -0.04043467342853546, -0.020049987360835075, 0.03649327531456947, 0.011625354178249836, 0.025092994794249535, -0.03909245505928993, 0.03431478887796402, 0.00032937462674453855, -0.005583541467785835, -0.024374691769480705, 0.0165253859013319, 0.030493129044771194, -0.06366357207298279, -0.03610953316092491, -0.017034899443387985, -0.027242479845881462, 0.03252050653100014, -0.024389026686549187, -0.020307855680584908, 0.013508197851479053, 0.0038039616774767637, 0.03557724505662918, -0.03415006026625633, -0.011947477236390114, 0.027611980214715004, -0.0022745151072740555, 0.018669242039322853, -0.05565305054187775, 0.062264736741781235, -0.03643272817134857, 0.02434496022760868, -0.01960982009768486, 0.009852055460214615, -0.02110288292169571, 0.02632628194987774, -0.025429779663681984, -0.022820787504315376, -0.013256357982754707, 0.05797484144568443, -0.012937663123011589, 0.030286550521850586, -0.008177263662219048, 0.03812212124466896, -0.02760741114616394, 0.0707324892282486, -0.03998759016394615, 0.02001883275806904, -0.040884293615818024, 0.02716614119708538, -0.019463779404759407, 0.0187576562166214, -0.014482873491942883, -0.018863476812839508, 0.03220395743846893, 0.062370918691158295, 0.0336650125682354, 0.029952775686979294, -0.0027061852160841227, -0.014567621052265167, 0.013275929726660252, -0.04130586236715317, -0.018161088228225708, -0.012036606669425964, 0.00008462219557259232, -0.0191821102052927, 0.055091239511966705, 0.030232882127165794, -0.05763612315058708, -0.07540958374738693, 0.038933467119932175, 0.018255190923810005, -0.0008970469934865832, 0.006281514652073383, 0.047608308494091034, 0.03239590302109718, 0.04185176268219948, -0.0167867299169302, -0.006446484941989183, -0.000161466421559453, -0.05171622335910797, 0.024256322532892227, -0.004461349919438362, 0.027151992544531822, 0.014262602664530277, -0.04345143586397171, -0.022699084132909775, 0.05945669487118721, 0.026615872979164124, 0.024805685505270958, 0.0026617529802024364, -0.044223953038454056, 0.03695881366729736, 0.006979210302233696, -0.03507280722260475, 0.03024415671825409, 0.008584312163293362, -0.023241519927978516, 0.04557868465781212, -0.00963726919144392, 0.0017396904295310378, 0.060941487550735474, 0.01769753359258175, -0.020873012021183968, 0.06935485452413559, -0.03788342326879501, 0.011261695064604282, 0.04197603836655617, -0.07688313722610474, -0.006655227858573198, -0.0514129176735878, 0.058337993919849396, -0.06884326785802841, 0.023165060207247734, 0.0568401925265789, -0.0020946990698575974, 0.02899743802845478, -0.053978417068719864, -0.05988137051463127, 0.01841280423104763, -0.03962309658527374, 0.0693981945514679, 0.011735406704246998, -0.044046685099601746, 0.05327090620994568, 0.01302405446767807, -0.0645546168088913, 0.03701164200901985, 0.026629645377397537, 0.053905095905065536, 0.03970152884721756, 0.04689667001366615, -0.04388951137661934, -0.0038281341549009085, -0.032749105244874954, 0.015843473374843597, -0.05083203688263893, -0.014268694445490837, 0.036485038697719574, -0.04481573775410652, -0.025419143959879875, 0.028918294236063957, -0.014015004970133305, -0.01898294687271118, 0.05140174925327301, -0.05264043062925339, -0.04003611579537392, 0.013902988284826279, 0.019607605412602425, -0.043921854346990585, -0.01257299818098545, -0.03189253807067871, 0.009801456704735756, 0.010707062669098377, 0.0028423708863556385, -0.019718756899237633, -0.01582074910402298, 0.028853002935647964, -0.04377567768096924, -0.032024260610342026, 0.02226545475423336, -0.0076225739903748035, -0.022088568657636642, 0.03954482078552246, 0.008274741470813751, 0.012927258387207985, 0.031085610389709473, -0.014388562180101871, 0.023218853399157524, -0.03452957049012184, -0.019002826884388924, 0.03134039789438248, -0.007528204005211592, 0.02194707840681076, 0.0100560886785388, 0.03159945830702782, 0.03773655742406845, 0.023893829435110092, -0.0013847185764461756, -0.03405705839395523, -0.031757693737745285, 0.014614827930927277, -0.04245125874876976, 0.005260105710476637, -0.00563758285716176, -0.05156905576586723, -0.023398160934448242, 0.00307276239618659, -0.04310612007975578, 0.03739192336797714, -0.06278213113546371, 0.007501351181417704, 0.04611846059560776, -0.017273105680942535, -0.06005356088280678, -0.11610833555459976, -0.014159489423036575, -0.05631834268569946, -0.01314869336783886, 0.05032273754477501, -0.03638101741671562, 0.045841217041015625, -0.05040520429611206, -0.03059094212949276, 0.03947712853550911, 0.053373195230960846, -0.05726008117198944, 0.061082907021045685, 0.04422560706734657, -0.05034258961677551, 0.01147809624671936, 0.023591702803969383, -0.05127919092774391, 0.00242494884878397, 0.014651184901595116, -0.0028289472684264183, 0.02311672270298004, 0.014939596876502037, -0.05998799577355385, -0.0193808414041996, -0.07128547877073288, -0.04000836983323097, -0.04719681292772293, 0.006154416128993034, 0.04654611274600029 ]
DeepChem/ChemBERTa-5M-MTR
[ "pytorch", "roberta", "transformers" ]
null
{ "architectures": [ "RobertaForRegression" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
13
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-8 results: [] --- <!-- 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__sst2__train-16-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6895 - Accuracy: 0.5222 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6899 | 1.0 | 7 | 0.7055 | 0.2857 | | 0.6793 | 2.0 | 14 | 0.7205 | 0.2857 | | 0.6291 | 3.0 | 21 | 0.7460 | 0.2857 | | 0.5659 | 4.0 | 28 | 0.8041 | 0.2857 | | 0.5607 | 5.0 | 35 | 0.7785 | 0.4286 | | 0.3349 | 6.0 | 42 | 0.8163 | 0.4286 | | 0.2436 | 7.0 | 49 | 0.9101 | 0.2857 | | 0.1734 | 8.0 | 56 | 0.8632 | 0.5714 | | 0.1122 | 9.0 | 63 | 0.9851 | 0.5714 | | 0.0661 | 10.0 | 70 | 1.0835 | 0.5714 | | 0.0407 | 11.0 | 77 | 1.1656 | 0.5714 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012458860874176025, 0.014342011883854866, -0.0449417419731617, 0.043367210775613785, 0.05223163589835167, 0.016644589602947235, -0.017922131344676018, -0.02241847664117813, -0.05571431666612625, 0.06413472443819046, 0.01653028093278408, -0.03266123682260513, 0.009386295452713966, 0.042931295931339264, -0.014947672374546528, -0.03687022626399994, -0.0020909500308334827, -0.011882513761520386, -0.03353770077228546, -0.0036229752004146576, 0.004345762077718973, -0.015766292810440063, -0.016208074986934662, 0.00508539006114006, -0.004268609918653965, 0.01680067926645279, 0.006596720777451992, 0.021990323439240456, 0.03798837959766388, -0.0676572322845459, 0.00488096009939909, -0.030037449672818184, -0.05174274742603302, -0.02251400426030159, -0.013757605105638504, -0.01788090169429779, -0.005442836321890354, 0.027748767286539078, 0.03640126436948776, 0.036142367869615555, 0.00864973571151495, 0.031188424676656723, -0.00127368641551584, -0.010911481454968452, 0.0630626380443573, 0.01098860614001751, -0.0390624925494194, -0.0004936233162879944, 0.0392749197781086, -0.024179711937904358, -0.07968887686729431, -0.04649485647678375, -0.016827845945954323, 0.02464975230395794, -0.016216127201914787, -0.013674572110176086, -0.059908509254455566, 0.016298547387123108, 0.06580604612827301, -0.04585994407534599, -0.031168172135949135, 0.0005719270557165146, -0.072024405002594, 0.0055612861178815365, 0.03745023161172867, -0.019386256113648415, 0.013610276393592358, -0.049962982535362244, 0.025429414585232735, -0.010394211858510971, 0.0543704517185688, -0.020279403775930405, 0.012156324461102486, -0.07220570743083954, -0.019076887518167496, -0.009362570941448212, 0.04508782923221588, 0.0567755401134491, -0.032000236213207245, 0.05231188237667084, 0.030443772673606873, -0.0010070677381008863, 0.04405625909566879, -0.030281266197562218, 0.008471684530377388, 0.032570164650678635, -0.04671303555369377, -0.0007222490385174751, 0.018062876537442207, 0.026225408539175987, -0.036646436899900436, -0.03638138994574547, -0.03042863868176937, -0.03239883854985237, -0.0009719816735014319, 0.019542178139090538, 0.02678835205733776, 0.017315039411187172, 0.038481879979372025, 0.012661431916058064, 0.025435518473386765, 0.03794325888156891, -0.01843302883207798, 0.06726812571287155, -0.005087137222290039, -0.009988632053136826, -0.0060118623077869415, -0.01730075664818287, -0.05112630873918533, 0.0211313646286726, 0.026700131595134735, -0.02109355293214321, -0.01170389074832201, 0.038415923714637756, 0.005026967264711857, 0.005319870077073574, 0.07900344580411911, -0.0251165684312582, -0.041053466498851776, -0.03167827054858208, 0.02560723014175892, 0.014921211637556553, -0.02036559209227562, 0.01573225110769272, -0.04490257054567337, -0.017296206206083298, -0.02407274954020977, -0.017495322972536087, -0.019893666729331017, 0.0210285447537899, 0.014623571187257767, 0.06418289989233017, 0.03262031450867653, -0.08926204591989517, 0.004628543276339769, 0.016607405617833138, -0.05677521601319313, 0.04698964208364487, 0.02344530262053013, 0.11356678605079651, -0.05794013291597366, -0.06801041215658188, 0.008076010271906853, -0.000949958513956517, -0.04093291610479355, 0.012989210896193981, 0.001902626478113234, -0.02658245339989662, 0.006026627961546183, 0.0038776188157498837, 0.06871456652879715, -0.042281974107027054, -0.009258153848350048, 0.0751207247376442, 0.004291342105716467, 0.04530845582485199, -0.05627026408910751, -0.027528317645192146, 0.017014678567647934, -0.020783493295311928, -0.033032048493623734, 0.04941556602716446, -0.02794814296066761, -0.017712419852614403, -0.018566854298114777, -0.024579863995313644, 0.011613573879003525, 0.07488106936216354, -0.007727238815277815, -0.03308403119444847, -0.017466319724917412, 0.02416239306330681, 0.04656839743256569, 0.051883015781641006, -0.02694837562739849, 0.024933714419603348, 0.055804841220378876, 0.027754997834563255, -0.0323987677693367, 0.03977733105421066, 0.024775927886366844, -0.026023924350738525, -0.020325953140854836, 0.031995076686143875, 0.00399654870852828, -0.048514001071453094, 0.03728427737951279, 0.013322447426617146, 0.004476885311305523, -0.06778587400913239, -0.04625650867819786, 0.03969159349799156, -0.00532084796577692, -0.012855912558734417, 0.013428978621959686, 0.02182537503540516, -0.01453393790870905, 0.046611055731773376, -0.012569344602525234, 0.007241187151521444, -0.022098597139120102, -0.01937510445713997, 0.013135075569152832, -0.02100961282849312, 0.02849048562347889, 0.048367131501436234, -0.002027742099016905, 0.09402277320623398, -0.045790575444698334, 0.020211592316627502, -0.05611726641654968, -0.03712838143110275, 0.017329290509223938, 0.055709365755319595, 0.05591024085879326, 0.055593982338905334, 0.008629141375422478, -0.027329308912158012, 0.046149447560310364, 0.07366356253623962, 0.04511350393295288, -0.003781982697546482, -0.03289559856057167, -0.01825275830924511, 0.041118375957012177, 0.051138199865818024, -0.04791468009352684, -0.01543866004794836, 0.012413200922310352, 0.03139781206846237, -0.00483970670029521, 0.016779936850070953, -0.025606581941246986, 0.0403006449341774, -0.046500105410814285, -0.04179872199892998, 0.042403124272823334, 0.017286546528339386, 0.00027711185975931585, 0.029863931238651276, 0.026061849668622017, 0.010899662040174007, 0.024027841165661812, 0.01947428472340107, 0.019344281405210495, -0.0526815801858902, 0.023899082094430923, 0.00541860144585371, 0.05728672072291374, -0.05376357212662697, 0.03257922828197479, -0.015479808673262596, 0.014828610233962536, 0.04181660711765289, -0.031236065551638603, 0.026767274364829063, 0.051177728921175, 0.03568767383694649, -0.03879907354712486, 0.02539505437016487, 0.002872498007491231, 0.034290798008441925, 0.04105077683925629, 0.00815119594335556, 0.07074086368083954, 0.022619884461164474, 0.04273199662566185, 0.07355763763189316, 0.01943965256214142, 0.032487038522958755, 0.01443838607519865, 0.07054325938224792, 0.016548113897442818, -0.012049425393342972, 0.04689585044980049, -0.04524041712284088, 0.022747721523046494, -0.04952703416347504, -0.002933662850409746, -0.02440531738102436, -0.00911171268671751, 0.05350866541266441, 0.026546597480773926, -0.034429941326379776, -0.011537007056176662, 0.015636945143342018, -0.008353077806532383, 0.02192993462085724, -0.006510199047625065, 0.011741384863853455, -0.008078486658632755, -0.022409269586205482, -0.028013287112116814, -0.06945884972810745, -0.05150264874100685, -0.030094001442193985, -0.01628413237631321, -0.02304759807884693, -0.08955047279596329, -0.0052981143817305565, -0.08697956055402756, -0.02208557166159153, 0.027312295511364937, 0.008017628453671932, -0.02636799030005932, -0.031238054856657982, 0.022323327139019966, -0.04827564209699631, -0.0389438159763813, -0.04149739071726799, -0.05917302519083023, -0.048525404185056686, -0.08137025684118271, 0.03407870605587959, 0.03585240989923477, 0.006961601320654154, 0.0015830252086743712, 0.025335362181067467, 0.01611812599003315, -0.028481272980570793, 0.037369247525930405, 0.06561201810836792, -0.03683661296963692, -0.05681059509515762, 0.033165451139211655, -0.008856095373630524, 0.019790491089224815, 0.021114418283104897, -0.03090871125459671, 0.08895048499107361, 0.07252121716737747, 0.00875710416585207, 0.02185145393013954, -0.009925142861902714, -0.06288667768239975, -0.06673253327608109, -0.025731611996889114, -0.04116874933242798, -0.008275766856968403, -0.0467565655708313, -0.037899453192949295, -0.03666066750884056, -0.04317988082766533, 0.004733758512884378, -0.013434971682727337, 0.02518634684383869, 0.019777417182922363, 0.036003079265356064, 0.020451698452234268, 0.04295608401298523, -0.029409855604171753, -0.03997061029076576, 0.05817873775959015, 0.00973769836127758, 0.005904639605432749, -0.08523861318826675, -0.002470481675118208, 0.02689506858587265, 0.01721946708858013, 0.016410483047366142, -0.004840114153921604, 0.07252693176269531, -0.011264664120972157, 0.004657480400055647, 0.012265652418136597, -0.010822667740285397, -0.011617938056588173, -0.0007746721967123449, -0.0037839494179934263, 0.002078908495604992, -0.023623192682862282, -0.0339086577296257, -0.009191478602588177, 0.028801627457141876, -0.05897092446684837, -0.06024118885397911, -0.016227614134550095, 0.03502371534705162, 0.042012184858322144, -0.005195578560233116, -0.04669486731290817, -0.007645918056368828, -0.07326478511095047, -0.0044689662754535675, 0.037416428327560425, 0.017463436350226402, -0.0037288516759872437, 0.042379628866910934, 0.015419850125908852, -0.008083943277597427, 0.03125515952706337, 0.056519459933042526, 0.07025972753763199, 0.009420606307685375, -0.08425823599100113, -0.0017168056219816208, -0.016748478636145592, 0.01119158137589693, -0.009458085522055626, -0.01810229755938053, -0.02299848198890686, -0.09931576997041702, -0.020349137485027313, 0.01737307198345661, 0.012101072818040848, -0.015389017760753632, 0.033987510949373245, 0.003613401437178254, -0.02977501042187214, -0.006710012909024954, 0.012307572178542614, 0.046987999230623245, -0.027751557528972626, 0.05197674408555031, -0.030654622241854668, 0.00011416107736295089, -0.058355048298835754, 0.01601489447057247, -0.05380455031991005, -0.022398674860596657, 0.01273753959685564, 0.04639238491654396, -0.027294019237160683, 0.05306718125939369, 0.07075485587120056, 0.04142718017101288, -0.05153780058026314, 0.039060670882463455, 0.07251591980457306, -0.04238429665565491, -0.04581921547651291, -0.005862102843821049, 0.0018300466472283006, -0.015171850100159645, 0.002914403099566698, -0.0012593066785484552, 0.05552069842815399, 0.02550291083753109, 0.00394026143476367, 0.001623589196242392, -0.0077917012386024, -0.008034167811274529, -0.026996299624443054, -0.0499933660030365, -0.029619665816426277, 0.0033586632926017046, -0.027599547058343887, 0.02190735563635826, 0.026574835181236267, 0.03308511897921562, 0.07517393678426743, 0.02019168809056282, -0.039972949773073196, -0.003332501742988825, 0.023753216490149498, 0.009947278536856174, -0.017586497589945793, -0.06895854324102402, -0.04212946817278862, 0.029344182461500168, 0.04927758127450943, -0.02216515503823757, -0.06074689328670502, 0.014616797678172588, 0.052048251032829285, -0.0596097894012928, 0.058304183185100555, -0.004880956839770079, 0.05384638160467148, 0.056806761771440506, -0.008524513803422451, 0.0417851060628891, -0.019181538373231888, -0.006085366476327181, -0.0026397479232400656, 0.039812058210372925, -0.009492051787674427, -0.03341551870107651, -0.04849342629313469, 0.020529137924313545, 0.03988008573651314, 0.03180662542581558, 0.04416400566697121, -0.035188816487789154, -0.04075467213988304, 0.006995646748691797, 0.02352556213736534, -0.04096151888370514, -0.0069651217199862, 0.03872918710112572, 0.031087880954146385, -0.04872981458902359, -0.02249016799032688, -0.022610297426581383, -0.014440950006246567, 0.03911435976624489, 0.0069353217259049416, -0.019776949658989906, -0.04681231826543808, 0.039405226707458496, -0.016092048957943916, -0.02762182056903839, -0.06690128892660141, 0.04839892312884331, -0.013440989889204502, -0.024588963016867638, 0.05475135147571564, 0.035246916115283966, 0.01982022449374199, 0.0715450868010521, 0.033462703227996826, 0.015030902810394764, -0.03411201387643814, 0.04150087386369705, -0.03222404792904854, -0.019802900031208992, 0.005585630424320698, -0.03127281740307808, -0.0374448262155056, -0.0010108555434271693, -0.06395168602466583, -0.036813851445913315, -0.030582189559936523, 0.017079997807741165, 0.0009823987493291497, -0.018638091161847115, -0.0007379120797850192, 0.059750139713287354, -0.0056106094270944595, -0.04130590707063675, -0.04662669822573662, -0.014588173478841782, -0.06895668804645538, -0.05068500339984894, -0.0009911144152283669, 0.005733513738960028, 0.03342711552977562, 0.036207932978868484, 0.02429955080151558, 0.01777707412838936, 0.020240746438503265, -0.041502345353364944, 0.015311547555029392, 0.019001197069883347, -0.04026854410767555, -0.019864510744810104, 0.03638847544789314, 0.011470410972833633, 0.025456951931118965, -0.040978461503982544, 0.036079730838537216, 0.0006609364063479006, -0.004713675007224083, -0.023482374846935272, 0.01593157835304737, 0.029511112719774246, -0.06423132121562958, -0.036031417548656464, -0.017554398626089096, -0.026635654270648956, 0.03363223373889923, -0.025534609332680702, -0.020604712888598442, 0.014039181172847748, 0.0049130478873848915, 0.03446384519338608, -0.03400760516524315, -0.01141335628926754, 0.028101535513997078, -0.003131613600999117, 0.019226573407649994, -0.0562826469540596, 0.061731986701488495, -0.03736785426735878, 0.0242402832955122, -0.021154778078198433, 0.010541403666138649, -0.02020367607474327, 0.025014670565724373, -0.026249703019857407, -0.02281704917550087, -0.013862024061381817, 0.058109622448682785, -0.012361783534288406, 0.030326297506690025, -0.009052077308297157, 0.03902773931622505, -0.027475841343402863, 0.07022909820079803, -0.03940117731690407, 0.019846949726343155, -0.04166845232248306, 0.026523269712924957, -0.019440246745944023, 0.01837432198226452, -0.01481011975556612, -0.017839571461081505, 0.03148742392659187, 0.061468757688999176, 0.032600753009319305, 0.028712769970297813, -0.002816019579768181, -0.013948875479400158, 0.013894525356590748, -0.04226408153772354, -0.01903967186808586, -0.012834291905164719, -0.0006887926138006151, -0.0191819965839386, 0.05473674461245537, 0.02974148839712143, -0.0574161559343338, -0.07430481165647507, 0.03781060129404068, 0.017824655398726463, -0.0021181018091738224, 0.006776745431125164, 0.04655937850475311, 0.033626917749643326, 0.042542487382888794, -0.0164938997477293, -0.006467110477387905, 0.00007079565693857148, -0.0517488457262516, 0.02344030886888504, -0.004127750638872385, 0.027685105800628662, 0.014077470637857914, -0.042978644371032715, -0.023263072595000267, 0.059888411313295364, 0.025874271988868713, 0.025134144350886345, 0.002461012452840805, -0.04446010664105415, 0.037249915301799774, 0.006303309928625822, -0.03569624200463295, 0.02995227463543415, 0.008476479910314083, -0.02340458333492279, 0.045573242008686066, -0.009684720076620579, 0.0017966048326343298, 0.06036599725484848, 0.017592240124940872, -0.021579572930932045, 0.06987252086400986, -0.037536341696977615, 0.011990915983915329, 0.04190456494688988, -0.07610617578029633, -0.007899323478341103, -0.05092102661728859, 0.058514781296253204, -0.06838545203208923, 0.023961050435900688, 0.05757758766412735, -0.0022115111351013184, 0.028975926339626312, -0.05251970514655113, -0.05856732279062271, 0.019073262810707092, -0.04018016159534454, 0.06880325078964233, 0.011857306584715843, -0.042884983122348785, 0.052406907081604004, 0.012823626399040222, -0.06424293667078018, 0.03572648763656616, 0.027089882642030716, 0.05334455892443657, 0.04021221771836281, 0.04693516343832016, -0.04362184554338455, -0.0033685422968119383, -0.033929917961359024, 0.015611623413860798, -0.05115295946598053, -0.013937516137957573, 0.03706689924001694, -0.0440574549138546, -0.02621760405600071, 0.029142143204808235, -0.013253917917609215, -0.019190942868590355, 0.05096767097711563, -0.05220556631684303, -0.03953726217150688, 0.014781697653234005, 0.02014785259962082, -0.044260598719120026, -0.0129166841506958, -0.03217344731092453, 0.01074029877781868, 0.0104594761505723, 0.002863917499780655, -0.019867023453116417, -0.01602884568274021, 0.029223838821053505, -0.04341007396578789, -0.03167339041829109, 0.02161456272006035, -0.008005687966942787, -0.022660112008452415, 0.03988296911120415, 0.0075567057356238365, 0.012571158818900585, 0.0317734070122242, -0.01495237648487091, 0.023331278935074806, -0.034956399351358414, -0.018808584660291672, 0.031700581312179565, -0.007624089252203703, 0.020605141296982765, 0.009413535706698895, 0.031083280220627785, 0.03651737421751022, 0.024723468348383904, -0.002370871603488922, -0.035687029361724854, -0.031367041170597076, 0.015182388946413994, -0.04116146266460419, 0.005254171323031187, -0.005459904205054045, -0.051035575568675995, -0.023396745324134827, 0.00357012078166008, -0.042572490870952606, 0.03721923008561134, -0.06298020482063293, 0.009184317663311958, 0.04538677632808685, -0.016864918172359467, -0.05955551192164421, -0.11547543108463287, -0.016156582161784172, -0.05581134185194969, -0.013605991378426552, 0.05085353925824165, -0.03642876818776131, 0.0439772792160511, -0.0507512167096138, -0.03108612634241581, 0.04007677361369133, 0.05296910181641579, -0.05892888829112053, 0.06151263788342476, 0.044038739055395126, -0.050495218485593796, 0.010215634480118752, 0.02394864708185196, -0.05093773454427719, 0.0045791855081915855, 0.015483972616493702, -0.0030146182980388403, 0.021557651460170746, 0.01577519066631794, -0.06002549082040787, -0.01902986876666546, -0.06959117949008942, -0.040089335292577744, -0.04678838700056076, 0.006243553012609482, 0.0471513569355011 ]
DeepChem/ChemBERTa-77M-MLM
[ "pytorch", "roberta", "fill-mask", "transformers", "autotrain_compatible" ]
fill-mask
{ "architectures": [ "RobertaForMaskedLM" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
2,416
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-16-9 results: [] --- <!-- 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__sst2__train-16-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6915 - Accuracy: 0.5157 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6868 | 1.0 | 7 | 0.7121 | 0.1429 | | 0.6755 | 2.0 | 14 | 0.7234 | 0.1429 | | 0.6389 | 3.0 | 21 | 0.7384 | 0.2857 | | 0.5575 | 4.0 | 28 | 0.7884 | 0.2857 | | 0.4972 | 5.0 | 35 | 0.7767 | 0.4286 | | 0.2821 | 6.0 | 42 | 0.8275 | 0.4286 | | 0.1859 | 7.0 | 49 | 0.9283 | 0.2857 | | 0.1388 | 8.0 | 56 | 0.9384 | 0.4286 | | 0.078 | 9.0 | 63 | 1.1973 | 0.4286 | | 0.0462 | 10.0 | 70 | 1.4016 | 0.4286 | | 0.0319 | 11.0 | 77 | 1.4087 | 0.4286 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012438729405403137, 0.013723705895245075, -0.04421311616897583, 0.04387747123837471, 0.05158339440822601, 0.015670524910092354, -0.018183860927820206, -0.021954290568828583, -0.05577549710869789, 0.06370712071657181, 0.017399117350578308, -0.03184692561626434, 0.0085444962605834, 0.04279255121946335, -0.01500138733536005, -0.036574747413396835, -0.0030871613416820765, -0.012885857373476028, -0.033667340874671936, -0.0024276275653392076, 0.004422917030751705, -0.015530835837125778, -0.016873342916369438, 0.0040503148920834064, -0.0042313383892178535, 0.016670512035489082, 0.005781590007245541, 0.02250225469470024, 0.03826281428337097, -0.06918934732675552, 0.004812547471374273, -0.030094031244516373, -0.05183067172765732, -0.0230669304728508, -0.014317667111754417, -0.017960289493203163, -0.004944498650729656, 0.028338052332401276, 0.03510834649205208, 0.03575680032372475, 0.009286480955779552, 0.030482176691293716, -0.0017984514124691486, -0.01046287827193737, 0.06258055567741394, 0.010743810795247555, -0.039512842893600464, 0.00010060193744720891, 0.03997236490249634, -0.02401505596935749, -0.0794408768415451, -0.04575086757540703, -0.01700870878994465, 0.02453685738146305, -0.01664021611213684, -0.013608863577246666, -0.06006700545549393, 0.017621207982301712, 0.0650550127029419, -0.04601225629448891, -0.031038856133818626, 0.000801648129709065, -0.07131040841341019, 0.00452838558703661, 0.03743505850434303, -0.020061204209923744, 0.013546869158744812, -0.04952152818441391, 0.02524551935493946, -0.010744541883468628, 0.05553160607814789, -0.019999662414193153, 0.011626127175986767, -0.0716797411441803, -0.01820981502532959, -0.009377247653901577, 0.04452955350279808, 0.05737907066941261, -0.03190399706363678, 0.05179518833756447, 0.030268177390098572, -0.0005190646043047309, 0.04337841272354126, -0.030189186334609985, 0.008767361752688885, 0.032958779484033585, -0.04612182453274727, 0.00022280530538409948, 0.01753155328333378, 0.027029234915971756, -0.03761741518974304, -0.03668098524212837, -0.030676212161779404, -0.03264271095395088, -0.001958984648808837, 0.0191645510494709, 0.02565084770321846, 0.01842619851231575, 0.03858020901679993, 0.012621273286640644, 0.025547504425048828, 0.03833729401230812, -0.01834903284907341, 0.06740979850292206, -0.005131036974489689, -0.011290458962321281, -0.006776837166398764, -0.017744291573762894, -0.05115237087011337, 0.020530547946691513, 0.02742421254515648, -0.02116556279361248, -0.01271123718470335, 0.03840577229857445, 0.004891229793429375, 0.00585158821195364, 0.07806247472763062, -0.025474846363067627, -0.04229329526424408, -0.03187131881713867, 0.024470573291182518, 0.015391695313155651, -0.019790150225162506, 0.015262545086443424, -0.04446808621287346, -0.01736244559288025, -0.02410050295293331, -0.016655441373586655, -0.01924966834485531, 0.021631017327308655, 0.01358023937791586, 0.06423036009073257, 0.03372916579246521, -0.08838342130184174, 0.004380027297884226, 0.016582371667027473, -0.0551622249186039, 0.04613884538412094, 0.023273304104804993, 0.11439884454011917, -0.05798034369945526, -0.0687352791428566, 0.00816516112536192, -0.0016119296196848154, -0.04114172235131264, 0.013233489356935024, 0.001130162738263607, -0.026862042024731636, 0.0061894929967820644, 0.0039971997030079365, 0.06931424885988235, -0.04148146137595177, -0.009445910342037678, 0.07501989603042603, 0.004723693709820509, 0.044962331652641296, -0.05723348632454872, -0.026521941646933556, 0.017374038696289062, -0.022244757041335106, -0.03315719962120056, 0.049481168389320374, -0.028077343478798866, -0.018392620608210564, -0.01883854530751705, -0.02497955970466137, 0.011624474078416824, 0.07449010759592056, -0.006730103399604559, -0.03291871398687363, -0.017357906326651573, 0.02377934567630291, 0.04720284789800644, 0.052325233817100525, -0.0263737291097641, 0.025532346218824387, 0.05604161322116852, 0.02784259058535099, -0.03236520290374756, 0.03949688374996185, 0.024231091141700745, -0.02625863067805767, -0.020895451307296753, 0.03130664303898811, 0.0027778628282248974, -0.04814394563436508, 0.03826049715280533, 0.012625424191355705, 0.0045531620271503925, -0.0675685852766037, -0.0455876961350441, 0.03861667960882187, -0.004526366479694843, -0.012241446413099766, 0.014115503989160061, 0.02215084247291088, -0.0143918851390481, 0.0458948127925396, -0.012131310068070889, 0.00696259131655097, -0.021768080070614815, -0.020445838570594788, 0.012391298078000546, -0.020881667733192444, 0.028331760317087173, 0.04872698336839676, -0.002677459502592683, 0.09395689517259598, -0.045862894505262375, 0.02000913769006729, -0.05441124737262726, -0.03623566776514053, 0.01740904338657856, 0.05458642914891243, 0.05666940286755562, 0.05531696230173111, 0.009111476130783558, -0.02705586701631546, 0.04622962698340416, 0.07327110320329666, 0.04532472789287567, -0.00447104312479496, -0.032366733998060226, -0.01744549162685871, 0.04163547605276108, 0.0518624447286129, -0.0475786067545414, -0.014460072852671146, 0.012029513716697693, 0.031535275280475616, -0.0037014649715274572, 0.0164446160197258, -0.026541057974100113, 0.039353810250759125, -0.04709815979003906, -0.04312192276120186, 0.042636629194021225, 0.016907045617699623, -0.00028613413451239467, 0.029118577018380165, 0.025624392554163933, 0.01091967523097992, 0.025199998170137405, 0.020076347514986992, 0.01948285661637783, -0.053652290254831314, 0.02290046215057373, 0.005206922069191933, 0.05669828876852989, -0.05322912707924843, 0.03270076960325241, -0.016346866264939308, 0.014627366326749325, 0.04175026714801788, -0.03141726180911064, 0.026724746450781822, 0.05070614442229271, 0.035492464900016785, -0.03766348212957382, 0.025961661711335182, 0.004577608313411474, 0.033847130835056305, 0.04101152718067169, 0.008957741782069206, 0.07000049948692322, 0.022295229136943817, 0.04219790920615196, 0.07408738136291504, 0.01909521594643593, 0.03172243759036064, 0.013115948997437954, 0.07004271447658539, 0.015772689133882523, -0.0119338883087039, 0.044960230588912964, -0.04647330194711685, 0.022781334817409515, -0.049991801381111145, -0.00294215464964509, -0.02362646535038948, -0.008176084607839584, 0.053009167313575745, 0.02717067487537861, -0.035382166504859924, -0.011966953054070473, 0.014846383593976498, -0.0085065346211195, 0.021096769720315933, -0.005872230976819992, 0.011614583432674408, -0.007793840952217579, -0.021856555715203285, -0.027411574497818947, -0.06941872090101242, -0.051772043108940125, -0.029271390289068222, -0.016507742926478386, -0.022538671270012856, -0.08963622897863388, -0.005192883312702179, -0.08705811202526093, -0.021873710677027702, 0.02763483114540577, 0.00812713522464037, -0.02650006301701069, -0.031125744804739952, 0.022027986124157906, -0.04837964475154877, -0.03833994269371033, -0.04117857292294502, -0.0593223012983799, -0.04831868037581444, -0.081450454890728, 0.03525267168879509, 0.035768620669841766, 0.006155629176646471, 0.001710200565867126, 0.02535816840827465, 0.01677163690328598, -0.02818239852786064, 0.03769221156835556, 0.06526092439889908, -0.03577044978737831, -0.057522643357515335, 0.03294094279408455, -0.00978866871446371, 0.01983126811683178, 0.020709969103336334, -0.03128984570503235, 0.0888713002204895, 0.07328666746616364, 0.008565464988350868, 0.021857185289263725, -0.010227699764072895, -0.062428005039691925, -0.06723781675100327, -0.02501075342297554, -0.04098464548587799, -0.008214961737394333, -0.04662861302495003, -0.03810057416558266, -0.03603946045041084, -0.0435541570186615, 0.005431510973721743, -0.012800168246030807, 0.025081057101488113, 0.020046668127179146, 0.03701258450746536, 0.020943976938724518, 0.043280962854623795, -0.02919514663517475, -0.040521781891584396, 0.05832172557711601, 0.009897658601403236, 0.006088683847337961, -0.08540820330381393, -0.0021956919226795435, 0.026784513145685196, 0.016975807026028633, 0.016076309606432915, -0.005874899681657553, 0.07239560037851334, -0.01142651867121458, 0.005083877593278885, 0.012941081076860428, -0.010735748335719109, -0.01186430174857378, -0.0008345738751813769, -0.0036133567336946726, 0.002725298050791025, -0.023733574897050858, -0.03236694261431694, -0.008536554872989655, 0.028828561305999756, -0.059678807854652405, -0.060941848903894424, -0.01723337732255459, 0.03430812433362007, 0.04133301228284836, -0.006039508618414402, -0.04679875820875168, -0.008918335661292076, -0.0741860643029213, -0.00492297625169158, 0.03796784207224846, 0.01749458909034729, -0.004038643091917038, 0.042768023908138275, 0.014974546618759632, -0.007392571773380041, 0.03096713498234749, 0.055978886783123016, 0.07087316364049911, 0.00939654279500246, -0.08327719569206238, -0.002010578755289316, -0.016849512234330177, 0.010921293869614601, -0.008954445831477642, -0.01755741983652115, -0.02192106284201145, -0.09902716428041458, -0.021958932280540466, 0.01722133718430996, 0.011570259928703308, -0.015657266601920128, 0.03330410644412041, 0.0039727287366986275, -0.029855577275156975, -0.0070172869600355625, 0.013183053582906723, 0.0457342192530632, -0.027466554194688797, 0.05246223136782646, -0.030690737068653107, 0.00012950888776686043, -0.057391244918107986, 0.016159066930413246, -0.05345621332526207, -0.02223983220756054, 0.012588885612785816, 0.046890899538993835, -0.02755551040172577, 0.053354520350694656, 0.07033805549144745, 0.040097951889038086, -0.0504828542470932, 0.038108568638563156, 0.07339838147163391, -0.042953118681907654, -0.04494800791144371, -0.005269255954772234, 0.0022847040090709925, -0.014931757934391499, 0.0027686518151313066, -0.0014815671602264047, 0.05541608855128288, 0.026041464880108833, 0.0030653271824121475, 0.0014637056738138199, -0.008910573087632656, -0.008240806870162487, -0.026801789179444313, -0.04959496483206749, -0.028725601732730865, 0.0028258711099624634, -0.028441431000828743, 0.02292802929878235, 0.024980032816529274, 0.03273976966738701, 0.07374394685029984, 0.01983610726892948, -0.040407899767160416, -0.0022275871597230434, 0.023191319778561592, 0.00990001019090414, -0.018053891137242317, -0.0687800720334053, -0.04272967576980591, 0.029358472675085068, 0.049172867089509964, -0.022528212517499924, -0.06135333701968193, 0.014670194126665592, 0.05095197260379791, -0.05859062820672989, 0.05847255885601044, -0.005182106047868729, 0.05367113649845123, 0.05702294409275055, -0.008809356950223446, 0.042487602680921555, -0.01938890852034092, -0.005647554527968168, -0.002063620835542679, 0.04060835391283035, -0.009553593583405018, -0.03301116079092026, -0.04643671214580536, 0.02087322250008583, 0.03936311602592468, 0.03266922011971474, 0.04449869692325592, -0.03450380265712738, -0.04153941199183464, 0.007297296077013016, 0.023983068764209747, -0.04076012969017029, -0.00688130222260952, 0.039031632244586945, 0.030611135065555573, -0.0486367866396904, -0.022776804864406586, -0.02258085459470749, -0.014169876463711262, 0.039933573454618454, 0.00737646734341979, -0.0199141688644886, -0.04654240608215332, 0.0389988087117672, -0.015503358095884323, -0.028396915644407272, -0.06720831245183945, 0.04836711660027504, -0.013697521761059761, -0.02446398325264454, 0.05475933477282524, 0.035458728671073914, 0.019201936200261116, 0.0715913251042366, 0.03482956811785698, 0.014889765530824661, -0.034255024045705795, 0.04015147686004639, -0.03320542722940445, -0.01925535313785076, 0.00576345669105649, -0.032248690724372864, -0.03578368201851845, -0.0011639156145974994, -0.06443562358617783, -0.03713276982307434, -0.030594978481531143, 0.01750471442937851, 0.0014378337655216455, -0.019506806507706642, -0.0005608376231975853, 0.059368912130594254, -0.006230701692402363, -0.04119404777884483, -0.047136157751083374, -0.014766417443752289, -0.06843868643045425, -0.050756968557834625, 0.00029734158306382596, 0.00581318186596036, 0.03359422832727432, 0.03600200265645981, 0.02384980209171772, 0.01835208758711815, 0.019798869267106056, -0.04140276834368706, 0.015973208472132683, 0.018060479313135147, -0.04114916920661926, -0.020806431770324707, 0.037267446517944336, 0.011407298035919666, 0.026350852102041245, -0.04043213278055191, 0.03572584316134453, 0.0005040091346018016, -0.006318498402833939, -0.02363971434533596, 0.01678095944225788, 0.030294686555862427, -0.06320381164550781, -0.03542613238096237, -0.017295759171247482, -0.02725140005350113, 0.0331009179353714, -0.024409938603639603, -0.02038540318608284, 0.01399942860007286, 0.004385573789477348, 0.034754496067762375, -0.033826302736997604, -0.01235643494874239, 0.02774188667535782, -0.0023903886321932077, 0.019791362807154655, -0.055980220437049866, 0.06202965974807739, -0.03685024008154869, 0.024777116253972054, -0.02014661580324173, 0.009963251650333405, -0.02005588449537754, 0.026101648807525635, -0.02515631541609764, -0.023342369124293327, -0.013511670753359795, 0.058670155704021454, -0.013222037814557552, 0.030406955629587173, -0.009364155121147633, 0.03864119201898575, -0.027738820761442184, 0.06979528814554214, -0.03952672332525253, 0.0189785435795784, -0.04115498811006546, 0.026463717222213745, -0.02003026194870472, 0.019824804738163948, -0.014344262890517712, -0.01836768165230751, 0.0317688025534153, 0.06135379150509834, 0.034090396016836166, 0.02918296866118908, -0.0029788522515445948, -0.01401031669229269, 0.013907031156122684, -0.04234639182686806, -0.0194016695022583, -0.012872989289462566, -0.00037606904515996575, -0.019199950620532036, 0.054932113736867905, 0.030216418206691742, -0.05692281201481819, -0.07446490973234177, 0.038903236389160156, 0.017181281000375748, -0.001967299496755004, 0.006086073815822601, 0.04742881655693054, 0.033800773322582245, 0.042812030762434006, -0.016989203169941902, -0.006979275960475206, -0.0004949704161845148, -0.051608432084321976, 0.024044238030910492, -0.0036605438217520714, 0.02909141033887863, 0.014183465391397476, -0.042798321694135666, -0.022887324914336205, 0.060020070523023605, 0.026851577684283257, 0.024632295593619347, 0.0026968938764184713, -0.04444984346628189, 0.037493713200092316, 0.007144364528357983, -0.03539856895804405, 0.029856741428375244, 0.008405179716646671, -0.023311112076044083, 0.04636486619710922, -0.009630504995584488, 0.0021415315568447113, 0.06074599176645279, 0.018435163423419, -0.02000378631055355, 0.07004476338624954, -0.03776037320494652, 0.011981065385043621, 0.04162774235010147, -0.07742154598236084, -0.006551552563905716, -0.05186566710472107, 0.05880923196673393, -0.06858140230178833, 0.024363994598388672, 0.05752657726407051, -0.0016456410521641374, 0.028426051139831543, -0.05222269892692566, -0.05933576077222824, 0.018911393359303474, -0.04083602875471115, 0.06946752965450287, 0.011639160104095936, -0.04310787841677666, 0.05249486118555069, 0.012221653945744038, -0.06459671258926392, 0.03702319413423538, 0.02841353975236416, 0.053611014038324356, 0.0400359146296978, 0.046449221670627594, -0.04452943429350853, -0.003258841810747981, -0.03247067704796791, 0.01627667248249054, -0.05081864073872566, -0.01414958294481039, 0.03685862198472023, -0.044448815286159515, -0.02614545077085495, 0.02944660559296608, -0.012887557968497276, -0.019351070746779442, 0.05123436450958252, -0.05179844796657562, -0.03940213471651077, 0.014964648522436619, 0.020797092467546463, -0.04411974921822548, -0.013539190404117107, -0.031457796692848206, 0.010728872381150723, 0.010500558651983738, 0.003012776607647538, -0.020089678466320038, -0.015021291561424732, 0.02849201299250126, -0.04394993185997009, -0.03262002021074295, 0.022326581180095673, -0.008522573858499527, -0.021458223462104797, 0.03924235701560974, 0.008625781163573265, 0.01244562678039074, 0.03191427141427994, -0.01563817262649536, 0.022305188700556755, -0.035343755036592484, -0.019512653350830078, 0.03111373260617256, -0.008446748368442059, 0.020708033815026283, 0.011323628015816212, 0.031544279307127, 0.037803784012794495, 0.024218924343585968, -0.002669672714546323, -0.03563161566853523, -0.030818447470664978, 0.014314122498035431, -0.04193531721830368, 0.004644804168492556, -0.0053215897642076015, -0.05024078115820885, -0.023527342826128006, 0.0030326966661959887, -0.04308447986841202, 0.03736201301217079, -0.06375275552272797, 0.009295382536947727, 0.04483561962842941, -0.016983939334750175, -0.0593099370598793, -0.11609853059053421, -0.015221529640257359, -0.055153779685497284, -0.013583571650087833, 0.05061282962560654, -0.03676716983318329, 0.044877372682094574, -0.050144799053668976, -0.03087414801120758, 0.03957740217447281, 0.05202730372548103, -0.05820264667272568, 0.06074297055602074, 0.04479275271296501, -0.05096214637160301, 0.010980946943163872, 0.024512547999620438, -0.05085821822285652, 0.0035743226762861013, 0.015000030398368835, -0.002975114621222019, 0.02290221117436886, 0.015740644186735153, -0.061223991215229034, -0.019048666581511497, -0.07050149887800217, -0.04164772853255272, -0.04744016379117966, 0.0064695123583078384, 0.04688149318099022 ]
DeepChem/ChemBERTa-77M-MTR
[ "pytorch", "roberta", "transformers" ]
null
{ "architectures": [ "RobertaForRegression" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7,169
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-0 results: [] --- <!-- 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__sst2__train-32-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8558 - Accuracy: 0.7183 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7088 | 1.0 | 13 | 0.6819 | 0.6154 | | 0.635 | 2.0 | 26 | 0.6318 | 0.7692 | | 0.547 | 3.0 | 39 | 0.5356 | 0.7692 | | 0.3497 | 4.0 | 52 | 0.4456 | 0.6923 | | 0.1979 | 5.0 | 65 | 0.3993 | 0.7692 | | 0.098 | 6.0 | 78 | 0.3613 | 0.7692 | | 0.0268 | 7.0 | 91 | 0.3561 | 0.9231 | | 0.0137 | 8.0 | 104 | 0.3755 | 0.9231 | | 0.0083 | 9.0 | 117 | 0.4194 | 0.7692 | | 0.0065 | 10.0 | 130 | 0.4446 | 0.7692 | | 0.005 | 11.0 | 143 | 0.4527 | 0.7692 | | 0.0038 | 12.0 | 156 | 0.4645 | 0.7692 | | 0.0033 | 13.0 | 169 | 0.4735 | 0.7692 | | 0.0033 | 14.0 | 182 | 0.4874 | 0.7692 | | 0.0029 | 15.0 | 195 | 0.5041 | 0.7692 | | 0.0025 | 16.0 | 208 | 0.5148 | 0.7692 | | 0.0024 | 17.0 | 221 | 0.5228 | 0.7692 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012368288822472095, 0.013204376213252544, -0.044866353273391724, 0.04242260754108429, 0.054477203637361526, 0.01728718914091587, -0.019334156066179276, -0.02393048256635666, -0.05548977851867676, 0.06273166835308075, 0.016770513728260994, -0.0315157026052475, 0.00882358942180872, 0.041056759655475616, -0.016416281461715698, -0.03794971853494644, -0.0003847027837764472, -0.01471024751663208, -0.032597847282886505, -0.003509857226163149, 0.0049097309820353985, -0.013280046172440052, -0.01478127297013998, 0.0024153203703463078, -0.006230196449905634, 0.01615155301988125, 0.004934406839311123, 0.023673325777053833, 0.0383506715297699, -0.06761779636144638, 0.005847950465977192, -0.028919771313667297, -0.05224482715129852, -0.02159244380891323, -0.01335624884814024, -0.017808346077799797, -0.005463086999952793, 0.02875012345612049, 0.03569256141781807, 0.03649548441171646, 0.006925355643033981, 0.033940427005290985, 0.0006455163238570094, -0.009121069684624672, 0.06272037327289581, 0.008997933007776737, -0.039768118411302567, 0.0003312733315397054, 0.040435854345560074, -0.022736936807632446, -0.0802231878042221, -0.045392218977212906, -0.017313966527581215, 0.025003960356116295, -0.01787078194320202, -0.013750981539487839, -0.05745892971754074, 0.01449434645473957, 0.06502289324998856, -0.04632677882909775, -0.03035372868180275, 0.00032933682086877525, -0.07028795033693314, 0.0040427278727293015, 0.039247360080480576, -0.021926969289779663, 0.013099057599902153, -0.04926811903715134, 0.025688916444778442, -0.010609994642436504, 0.056333985179662704, -0.0213214922696352, 0.01232517883181572, -0.0727575495839119, -0.017990782856941223, -0.008844335563480854, 0.04494892433285713, 0.056409310549497604, -0.030266761779785156, 0.052515506744384766, 0.029380910098552704, 0.0001877978356787935, 0.04410877451300621, -0.031226379796862602, 0.009853466413915157, 0.037458669394254684, -0.04655994847416878, -0.00009835549280978739, 0.019376127049326897, 0.026919860392808914, -0.036183107644319534, -0.03658298775553703, -0.029771437868475914, -0.03260533884167671, -0.001992365112528205, 0.020817700773477554, 0.025791415944695473, 0.018782932311296463, 0.03758050128817558, 0.011097309179604053, 0.023687634617090225, 0.03744155168533325, -0.018937697634100914, 0.06755857169628143, -0.004492619540542364, -0.009286509826779366, -0.004373271018266678, -0.015864482149481773, -0.05094200745224953, 0.01946818083524704, 0.026652978733181953, -0.020605292171239853, -0.015231095254421234, 0.03779298812150955, 0.006073776166886091, 0.0030083595775067806, 0.07818319648504257, -0.026333283632993698, -0.040900640189647675, -0.03542691841721535, 0.024893179535865784, 0.016696017235517502, -0.019758744165301323, 0.016090359538793564, -0.045152392238378525, -0.018111083656549454, -0.02560281567275524, -0.017332741990685463, -0.018969427794218063, 0.018906090408563614, 0.014351997524499893, 0.0638655498623848, 0.03137543052434921, -0.08622103184461594, 0.005602612625807524, 0.015432897955179214, -0.05667542666196823, 0.04496147111058235, 0.02407417632639408, 0.11864764988422394, -0.05854320898652077, -0.06831564009189606, 0.006687304936349392, -0.0024159057065844536, -0.03950053080916405, 0.01689918339252472, 0.0020483850967139006, -0.028142455965280533, 0.007451608311384916, 0.003184777218848467, 0.072330541908741, -0.04214860498905182, -0.010568666271865368, 0.074478879570961, 0.004239503759890795, 0.044853419065475464, -0.056174732744693756, -0.025019781664013863, 0.018009981140494347, -0.025015728548169136, -0.03347653150558472, 0.04993772134184837, -0.028056461364030838, -0.01861666329205036, -0.02007603645324707, -0.027421098202466965, 0.01328193861991167, 0.07371988147497177, -0.006619551684707403, -0.03166671469807625, -0.0157343577593565, 0.025077879428863525, 0.046131934970617294, 0.05209753289818764, -0.026067590340971947, 0.02769756130874157, 0.05814015492796898, 0.028938043862581253, -0.03429672494530678, 0.038117699325084686, 0.02427169308066368, -0.026255061849951744, -0.020655035972595215, 0.03195736184716225, 0.0010988825233653188, -0.048279691487550735, 0.03817429393529892, 0.011758116073906422, 0.00439787469804287, -0.06772518903017044, -0.04539836570620537, 0.03639964759349823, -0.0034829522483050823, -0.011247408576309681, 0.017152011394500732, 0.02286839857697487, -0.012765617109835148, 0.04585573449730873, -0.011981303803622723, 0.006528032477945089, -0.02487078867852688, -0.019582100212574005, 0.012269163504242897, -0.019837863743305206, 0.028822612017393112, 0.049111150205135345, -0.0036812061443924904, 0.09620370715856552, -0.04557184875011444, 0.023884864524006844, -0.05014810338616371, -0.037140101194381714, 0.01905139535665512, 0.05577800050377846, 0.055091261863708496, 0.05640289559960365, 0.007565062493085861, -0.0278435368090868, 0.04541648551821709, 0.07347315549850464, 0.04753308743238449, -0.004225606098771095, -0.029890822246670723, -0.017628833651542664, 0.041598059237003326, 0.0516565665602684, -0.04733565077185631, -0.016273215413093567, 0.012607595883309841, 0.03127416968345642, -0.0016297100810334086, 0.01727396994829178, -0.028464673087000847, 0.04023680090904236, -0.04613923653960228, -0.04221039265394211, 0.04256917163729668, 0.019186407327651978, -0.00003976462903665379, 0.030059903860092163, 0.026147859171032906, 0.010897046886384487, 0.025361593812704086, 0.02103549614548683, 0.017871079966425896, -0.054030727595090866, 0.024308625608682632, 0.006460949312895536, 0.056359756737947464, -0.05230153724551201, 0.03178758919239044, -0.017564905807375908, 0.014741698279976845, 0.040945153683423996, -0.033336471766233444, 0.02758174017071724, 0.05231529846787453, 0.03842464089393616, -0.038787174969911575, 0.02593815326690674, 0.003773024305701256, 0.036299239844083786, 0.04239176958799362, 0.010408570058643818, 0.06950575858354568, 0.02283920720219612, 0.04548844322562218, 0.07539933174848557, 0.019724823534488678, 0.03337322548031807, 0.011302011087536812, 0.07055946439504623, 0.01725960709154606, -0.01032311748713255, 0.04498548060655594, -0.04370000958442688, 0.024213464930653572, -0.053053781390190125, -0.00547997048124671, -0.02191256172955036, -0.008510826155543327, 0.04965555667877197, 0.029094954952597618, -0.03431086987257004, -0.013434858992695808, 0.013933000154793262, -0.007916844449937344, 0.022083614021539688, -0.004954236559569836, 0.012147244065999985, -0.00438678590580821, -0.021129097789525986, -0.02917037531733513, -0.06973489373922348, -0.05184922367334366, -0.027798140421509743, -0.013464692048728466, -0.0233285054564476, -0.08685638010501862, -0.005173176992684603, -0.08689670264720917, -0.019997281953692436, 0.03061109595000744, 0.0073073250241577625, -0.024041801691055298, -0.03182986006140709, 0.022717107087373734, -0.04923078790307045, -0.03956693038344383, -0.04161455109715462, -0.059011310338974, -0.04885013774037361, -0.07936076819896698, 0.03361907973885536, 0.03735605999827385, 0.0060309539549052715, 0.0006497076246887445, 0.02526373229920864, 0.01809627003967762, -0.02846071869134903, 0.037951938807964325, 0.06635799258947372, -0.03577995300292969, -0.05514053627848625, 0.03203672170639038, -0.009802507236599922, 0.018650535494089127, 0.025542577728629112, -0.0318341962993145, 0.09081965684890747, 0.07212279736995697, 0.007266624830663204, 0.022175736725330353, -0.009669322520494461, -0.06340021640062332, -0.06843066215515137, -0.02615927718579769, -0.04136069118976593, -0.008532564155757427, -0.04684203863143921, -0.03843657672405243, -0.03548596426844597, -0.04487273469567299, 0.004004578106105328, -0.01478290744125843, 0.024892020970582962, 0.02090950310230255, 0.03869381174445152, 0.021551234647631645, 0.0427825041115284, -0.03286284953355789, -0.040516648441553116, 0.058581236749887466, 0.009824031963944435, 0.005513124633580446, -0.0856667160987854, -0.0021428449545055628, 0.027314776554703712, 0.020448947325348854, 0.015105541795492172, -0.006702794693410397, 0.07144110649824142, -0.009227326139807701, 0.006173334550112486, 0.01328693050891161, -0.01181330531835556, -0.011408979073166847, -0.0006813081563450396, -0.0005952466744929552, 0.0021974078845232725, -0.021674035117030144, -0.029453571885824203, -0.00718154339119792, 0.02942364476621151, -0.057410191744565964, -0.06204439327120781, -0.016502927988767624, 0.030773766338825226, 0.040692247450351715, -0.002325657522305846, -0.04890739172697067, -0.009979521855711937, -0.07277309149503708, -0.005928707309067249, 0.03849899768829346, 0.01585848070681095, -0.003173789009451866, 0.041273411363363266, 0.016701119020581245, -0.0069373114965856075, 0.029280761256814003, 0.05145646259188652, 0.07272738963365555, 0.010326703079044819, -0.0815897285938263, -0.0003648805432021618, -0.014856901951134205, 0.013203095644712448, -0.0082975709810853, -0.015824781730771065, -0.02141946367919445, -0.10081664472818375, -0.021894842386245728, 0.015351995825767517, 0.010717086493968964, -0.014244655147194862, 0.03385089710354805, 0.005205455236136913, -0.027150554582476616, -0.007883838377892971, 0.014370756223797798, 0.04699798673391342, -0.025203319266438484, 0.05222426727414131, -0.03139417991042137, -0.0029598295222967863, -0.05743647739291191, 0.01680673472583294, -0.05503440275788307, -0.022654054686427116, 0.015496856532990932, 0.04684142768383026, -0.02912536822259426, 0.05406031757593155, 0.07163035124540329, 0.039673443883657455, -0.04943760111927986, 0.03732389211654663, 0.07306856662034988, -0.042746931314468384, -0.047327540814876556, -0.004305944312363863, 0.0035381584893912077, -0.012994720600545406, 0.004605352412909269, -0.002045857021585107, 0.052752017974853516, 0.028703445568680763, 0.0028901882469654083, 0.0008000528905540705, -0.008418036624789238, -0.007778728846460581, -0.02587141841650009, -0.04886731505393982, -0.02919376827776432, 0.0026699823793023825, -0.027038102969527245, 0.023391714319586754, 0.023801112547516823, 0.031664520502090454, 0.07197542488574982, 0.01917659305036068, -0.03847195580601692, -0.002955848351120949, 0.02543162927031517, 0.007779102306813002, -0.019014624878764153, -0.07021690160036087, -0.039695724844932556, 0.029733041301369667, 0.04855594038963318, -0.023067088797688484, -0.06256621330976486, 0.01305009238421917, 0.04923713207244873, -0.05868122726678848, 0.05908362567424774, -0.004691939800977707, 0.053560882806777954, 0.05651518702507019, -0.009940771386027336, 0.04136979952454567, -0.019783906638622284, -0.007976967841386795, -0.0023224486503750086, 0.03912113234400749, -0.010593204759061337, -0.033080171793699265, -0.04944469779729843, 0.02127777598798275, 0.03991614282131195, 0.03090190514922142, 0.04678792506456375, -0.03485383465886116, -0.04209925979375839, 0.0063735865987837315, 0.02534336782991886, -0.04177647456526756, -0.008220506832003593, 0.039947059005498886, 0.03062065877020359, -0.048531029373407364, -0.02223891206085682, -0.024254070594906807, -0.012637531384825706, 0.03885155916213989, 0.007562342565506697, -0.017905209213495255, -0.045838624238967896, 0.03758169338107109, -0.017881380394101143, -0.02760356292128563, -0.0636635422706604, 0.049251701682806015, -0.013308831490576267, -0.022002320736646652, 0.05574503540992737, 0.035002585500478745, 0.021710975095629692, 0.0707521066069603, 0.03688531741499901, 0.016568634659051895, -0.03491846099495888, 0.03852558135986328, -0.03287352994084358, -0.018246034160256386, 0.006805010139942169, -0.029150187969207764, -0.037826668471097946, -0.001369826844893396, -0.061705492436885834, -0.035246364772319794, -0.02836976759135723, 0.01602840982377529, 0.002565951319411397, -0.01720491796731949, 0.0006959312595427036, 0.05946575105190277, -0.003666159464046359, -0.04267801344394684, -0.046896666288375854, -0.015017770230770111, -0.06710171699523926, -0.05438302084803581, 0.0008588599157519639, 0.0062404293566942215, 0.031876418739557266, 0.03600625693798065, 0.02276804856956005, 0.017737215384840965, 0.01946444623172283, -0.041924793273210526, 0.012090815231204033, 0.018222669139504433, -0.041121646761894226, -0.020971620455384254, 0.03783877193927765, 0.009219528175890446, 0.025671692565083504, -0.0369657427072525, 0.03496728837490082, 0.00036728172563016415, -0.004171550739556551, -0.025839397683739662, 0.014926520176231861, 0.029050830751657486, -0.06095147877931595, -0.03487740829586983, -0.018820997327566147, -0.026883743703365326, 0.03075164556503296, -0.02605108544230461, -0.022797435522079468, 0.011460796929895878, 0.003239844460040331, 0.03566146641969681, -0.03321797773241997, -0.012679502367973328, 0.027269016951322556, -0.002899279585108161, 0.017703859135508537, -0.05589057505130768, 0.061730630695819855, -0.03831791505217552, 0.027259420603513718, -0.022239578887820244, 0.011666572652757168, -0.02197437547147274, 0.026277385652065277, -0.024476826190948486, -0.020174991339445114, -0.013358866795897484, 0.05702595412731171, -0.013098814524710178, 0.030223533511161804, -0.011165237985551357, 0.03940393775701523, -0.02950853668153286, 0.06906531751155853, -0.03945593163371086, 0.02057628706097603, -0.03962294012308121, 0.028085503727197647, -0.019526837393641472, 0.01812720112502575, -0.012397665530443192, -0.019160570576786995, 0.033821042627096176, 0.06253364682197571, 0.033078018575906754, 0.030491476878523827, -0.006201975047588348, -0.014177421107888222, 0.012621634639799595, -0.041228726506233215, -0.01801876537501812, -0.013428837060928345, 0.0011913914931938052, -0.020814230665564537, 0.0555044487118721, 0.03131771460175514, -0.05596025660634041, -0.07477258145809174, 0.03623856604099274, 0.018020816147327423, -0.0012060200097039342, 0.0035486207343637943, 0.04830830171704292, 0.030920716002583504, 0.043982334434986115, -0.016624365001916885, -0.00611733365803957, -0.0016059516929090023, -0.05029052495956421, 0.02558417245745659, -0.004125869367271662, 0.028208989650011063, 0.014622297137975693, -0.044074222445487976, -0.022563491016626358, 0.05802588537335396, 0.025657204911112785, 0.02522914484143257, 0.001910021877847612, -0.043568044900894165, 0.03856368362903595, 0.007001286372542381, -0.03357674553990364, 0.03138795495033264, 0.006969191133975983, -0.02503840997815132, 0.04521363973617554, -0.008396487683057785, 0.003960784990340471, 0.06073078513145447, 0.019052935764193535, -0.021145831793546677, 0.06945966929197311, -0.03603525832295418, 0.012737356126308441, 0.043042514473199844, -0.0783764198422432, -0.006690086331218481, -0.05095158517360687, 0.057331956923007965, -0.06627309322357178, 0.024627279490232468, 0.05532431602478027, -0.00044823126518167555, 0.027318231761455536, -0.053797055035829544, -0.0589032806456089, 0.019535478204488754, -0.04034828394651413, 0.07148007303476334, 0.012357410043478012, -0.04496684670448303, 0.05239412561058998, 0.011137309484183788, -0.06300099194049835, 0.03697248548269272, 0.027882520109415054, 0.05453355982899666, 0.03846094012260437, 0.047234367579221725, -0.045390401035547256, -0.002942119026556611, -0.033620283007621765, 0.01461733691394329, -0.0493655800819397, -0.012682091444730759, 0.03475026786327362, -0.04231211543083191, -0.025220895186066628, 0.03160421550273895, -0.0123402439057827, -0.020001156255602837, 0.051649756729602814, -0.051766425371170044, -0.038219600915908813, 0.015016899444162846, 0.019835151731967926, -0.0422397218644619, -0.013629931025207043, -0.03125695511698723, 0.012092562392354012, 0.011390643194317818, 0.0044092899188399315, -0.019728895276784897, -0.018447237089276314, 0.030887683853507042, -0.04214302822947502, -0.03351549431681633, 0.022483713924884796, -0.008565537631511688, -0.021601779386401176, 0.038393545895814896, 0.010104881599545479, 0.012549692764878273, 0.031068993732333183, -0.013957280665636063, 0.02228342369198799, -0.03424159064888954, -0.01852407306432724, 0.028009219095110893, -0.008488692343235016, 0.021683746948838234, 0.010320614092051983, 0.03162974491715431, 0.03731323406100273, 0.02360517531633377, -0.0036962530575692654, -0.035068389028310776, -0.030198480933904648, 0.013085166923701763, -0.041261643171310425, 0.004544431809335947, -0.005525446031242609, -0.05007431283593178, -0.02302478440105915, 0.002457388211041689, -0.04477787762880325, 0.039747204631567, -0.06378874182701111, 0.008446444757282734, 0.04695124924182892, -0.016051556915044785, -0.062183137983083725, -0.11510956287384033, -0.014326193369925022, -0.05233127623796463, -0.0158098004758358, 0.0512424111366272, -0.03490027040243149, 0.042959630489349365, -0.05029094219207764, -0.03058895654976368, 0.04069105163216591, 0.05345955118536949, -0.05757113918662071, 0.06416390091180801, 0.047721732407808304, -0.050235457718372345, 0.012971064075827599, 0.022463234141469002, -0.050107985734939575, 0.0014494714559987187, 0.016075285151600838, -0.0034878437872976065, 0.02412489801645279, 0.01578681543469429, -0.06062130257487297, -0.018161918967962265, -0.07223857939243317, -0.04002945125102997, -0.04594551399350166, 0.005831566173583269, 0.0475848913192749 ]
DeepChem/SmilesTokenizer_PubChem_1M
[ "pytorch", "roberta", "feature-extraction", "transformers" ]
feature-extraction
{ "architectures": [ "RobertaModel" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
227
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-1 results: [] --- <!-- 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__sst2__train-32-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6492 - Accuracy: 0.6551 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7106 | 1.0 | 13 | 0.6850 | 0.6154 | | 0.631 | 2.0 | 26 | 0.6632 | 0.6923 | | 0.5643 | 3.0 | 39 | 0.6247 | 0.7692 | | 0.3992 | 4.0 | 52 | 0.5948 | 0.7692 | | 0.1928 | 5.0 | 65 | 0.5803 | 0.7692 | | 0.0821 | 6.0 | 78 | 0.6404 | 0.6923 | | 0.0294 | 7.0 | 91 | 0.7387 | 0.6923 | | 0.0141 | 8.0 | 104 | 0.8270 | 0.6923 | | 0.0082 | 9.0 | 117 | 0.8496 | 0.6923 | | 0.0064 | 10.0 | 130 | 0.8679 | 0.6923 | | 0.005 | 11.0 | 143 | 0.8914 | 0.6923 | | 0.0036 | 12.0 | 156 | 0.9278 | 0.6923 | | 0.0031 | 13.0 | 169 | 0.9552 | 0.6923 | | 0.0029 | 14.0 | 182 | 0.9745 | 0.6923 | | 0.0028 | 15.0 | 195 | 0.9785 | 0.6923 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012863781303167343, 0.014408407732844353, -0.04478241130709648, 0.04278092086315155, 0.054054293781518936, 0.016211718320846558, -0.018319852650165558, -0.023487331345677376, -0.05511217936873436, 0.06315109133720398, 0.016093784943223, -0.032553669065237045, 0.00943736732006073, 0.04196172580122948, -0.0165827926248312, -0.03688277676701546, -0.0017364879604429007, -0.01393741462379694, -0.032450899481773376, -0.0016673319041728973, 0.0049169547855854034, -0.013981832191348076, -0.01579722762107849, 0.002806982258334756, -0.00593837583437562, 0.017255296930670738, 0.004544778726994991, 0.02243582345545292, 0.038921959698200226, -0.06752101331949234, 0.00560019351541996, -0.029178449884057045, -0.053374309092760086, -0.021629573777318, -0.012506588362157345, -0.01742471382021904, -0.005720906890928745, 0.026670975610613823, 0.03529606759548187, 0.037229619920253754, 0.007977473549544811, 0.032159268856048584, 0.0004727243504021317, -0.009087735787034035, 0.06209966167807579, 0.009125259704887867, -0.038781192153692245, -0.000018969345546793193, 0.03970561549067497, -0.02300868183374405, -0.08053463697433472, -0.046650972217321396, -0.01768445037305355, 0.02448425441980362, -0.018739517778158188, -0.013264190405607224, -0.05759122222661972, 0.014477924443781376, 0.06444891542196274, -0.04611148685216904, -0.030703337863087654, 0.002196504268795252, -0.07049117982387543, 0.004134580958634615, 0.038284674286842346, -0.021471627056598663, 0.012476933188736439, -0.04990142211318016, 0.025465795770287514, -0.011729875579476357, 0.05476691573858261, -0.020831644535064697, 0.012203102000057697, -0.07230161875486374, -0.01715092919766903, -0.008883141912519932, 0.044161032885313034, 0.056483104825019836, -0.030894717201590538, 0.05282795801758766, 0.02945256605744362, -0.0003264866245444864, 0.04504944384098053, -0.030683256685733795, 0.009612830355763435, 0.03530906140804291, -0.04629100114107132, -0.0006049781804904342, 0.019418660551309586, 0.026725642383098602, -0.03707171231508255, -0.03710890933871269, -0.03018646128475666, -0.03242765739560127, -0.0017971887718886137, 0.02007761038839817, 0.026255706325173378, 0.01857968606054783, 0.03918391466140747, 0.011123359203338623, 0.02468685247004032, 0.037713587284088135, -0.018230102956295013, 0.06650978326797485, -0.005037031136453152, -0.01082236971706152, -0.005056542810052633, -0.016914334148168564, -0.05135132744908333, 0.020069781690835953, 0.026201240718364716, -0.020385175943374634, -0.014486716128885746, 0.03730391710996628, 0.005610505118966103, 0.0046152654103934765, 0.07807883620262146, -0.026262152940034866, -0.04120856523513794, -0.03458850830793381, 0.025548996403813362, 0.016536185517907143, -0.019211947917938232, 0.014761925674974918, -0.0450894832611084, -0.01774323545396328, -0.02527037262916565, -0.017373790964484215, -0.01918480359017849, 0.0197302158921957, 0.014617007225751877, 0.06538130342960358, 0.031751759350299835, -0.08775202929973602, 0.005546743981540203, 0.015053938142955303, -0.05549625679850578, 0.04544355720281601, 0.02377788908779621, 0.11661894619464874, -0.05820103734731674, -0.0686454176902771, 0.00843024905771017, -0.002483837306499481, -0.039964888244867325, 0.016226066276431084, 0.0013529065763577819, -0.026793470606207848, 0.005754683166742325, 0.003332829335704446, 0.07064802199602127, -0.041431691497564316, -0.010173673741519451, 0.0751107707619667, 0.004279013257473707, 0.04524407908320427, -0.055960867553949356, -0.024973461404442787, 0.01855318620800972, -0.023890100419521332, -0.03338982164859772, 0.049679797142744064, -0.029158905148506165, -0.018822653219103813, -0.01959540881216526, -0.027501951903104782, 0.012067729607224464, 0.07427217066287994, -0.0065700397826731205, -0.032150402665138245, -0.016591966152191162, 0.02504257671535015, 0.04615406692028046, 0.051864057779312134, -0.02700374834239483, 0.026648687198758125, 0.0582817867398262, 0.02834918722510338, -0.03361745551228523, 0.03804570436477661, 0.023987900465726852, -0.026371192187070847, -0.02043241634964943, 0.03202215954661369, 0.0022253403440117836, -0.04662710800766945, 0.03831329569220543, 0.01264728419482708, 0.004865880589932203, -0.06861796230077744, -0.04513745754957199, 0.03752025216817856, -0.003811322618275881, -0.011653834953904152, 0.016147900372743607, 0.022522110491991043, -0.01387273333966732, 0.04542047157883644, -0.012213359586894512, 0.007230892311781645, -0.023357748985290527, -0.020426282659173012, 0.01289771031588316, -0.01962580718100071, 0.028442777693271637, 0.04871119558811188, -0.0025781665463000536, 0.0959535762667656, -0.04547421261668205, 0.02232576534152031, -0.051649708300828934, -0.03710408881306648, 0.019676441326737404, 0.05609875172376633, 0.056051719933748245, 0.056703273206949234, 0.008525633253157139, -0.027091141790151596, 0.04616418480873108, 0.07330609858036041, 0.046585991978645325, -0.0045354715548455715, -0.031155221164226532, -0.01736266352236271, 0.042102452367544174, 0.05162344127893448, -0.04728345200419426, -0.015813220292329788, 0.012376293540000916, 0.03201025351881981, -0.002310234121978283, 0.017396699637174606, -0.02717222087085247, 0.03961966931819916, -0.04694084823131561, -0.04231634736061096, 0.042402610182762146, 0.019127093255519867, -0.0001783363550202921, 0.029727233573794365, 0.026614097878336906, 0.01076026726514101, 0.025394996628165245, 0.021843425929546356, 0.018718082457780838, -0.05222800001502037, 0.023557864129543304, 0.007025139406323433, 0.05682477727532387, -0.05226876959204674, 0.03242987394332886, -0.016268562525510788, 0.014347467571496964, 0.040791451930999756, -0.032380931079387665, 0.027348684147000313, 0.05146484076976776, 0.037135206162929535, -0.03834400326013565, 0.026033516973257065, 0.003909104969352484, 0.034974221140146255, 0.042438507080078125, 0.00942070223391056, 0.06898123770952225, 0.022684378549456596, 0.04367457702755928, 0.07619479298591614, 0.0192708782851696, 0.034129269421100616, 0.012516672722995281, 0.0714041143655777, 0.01699657365679741, -0.010730160400271416, 0.04488292336463928, -0.04429161176085472, 0.023420149460434914, -0.05137106776237488, -0.0045705754309892654, -0.02293173409998417, -0.008423956111073494, 0.051181111484766006, 0.029090723022818565, -0.03550470992922783, -0.013044890947639942, 0.014818624593317509, -0.00841898936778307, 0.02160341665148735, -0.005798406898975372, 0.010528064332902431, -0.004966326989233494, -0.020797744393348694, -0.027524154633283615, -0.06946972012519836, -0.05286847800016403, -0.028856582939624786, -0.015024482272565365, -0.024073917418718338, -0.08847183734178543, -0.005223334766924381, -0.087718166410923, -0.020719163119792938, 0.029833044856786728, 0.007753513753414154, -0.024722140282392502, -0.03192349150776863, 0.02295430190861225, -0.04848926514387131, -0.04025835171341896, -0.042856279760599136, -0.06027550622820854, -0.049098338931798935, -0.08003774285316467, 0.034244000911712646, 0.03674706444144249, 0.006323927082121372, 0.0006411660579033196, 0.024573538452386856, 0.01646861992776394, -0.028234906494617462, 0.03803982585668564, 0.0663326233625412, -0.036105427891016006, -0.0566287487745285, 0.03226820379495621, -0.008776132017374039, 0.019245654344558716, 0.02350090816617012, -0.031276121735572815, 0.08975831419229507, 0.07267309725284576, 0.007751751225441694, 0.021866176277399063, -0.01107843779027462, -0.0632476881146431, -0.06758613139390945, -0.025429144501686096, -0.041010573506355286, -0.008426742628216743, -0.04552663862705231, -0.039140138775110245, -0.036138225346803665, -0.04363708198070526, 0.005089252255856991, -0.013835851103067398, 0.025333065539598465, 0.02066877856850624, 0.03887437283992767, 0.02174110896885395, 0.04332979395985603, -0.03117356263101101, -0.04104127734899521, 0.05853055790066719, 0.0108831487596035, 0.00545622780919075, -0.08598527312278748, -0.0022453851997852325, 0.027419306337833405, 0.018943188712000847, 0.01570270210504532, -0.0063858432695269585, 0.07047075033187866, -0.010179818607866764, 0.004989243112504482, 0.013383275829255581, -0.010888169519603252, -0.011492501944303513, -0.0007951066363602877, -0.0021802380215376616, 0.0012754646595567465, -0.022981517016887665, -0.029651442542672157, -0.00657580466940999, 0.03053230792284012, -0.05730896070599556, -0.06222546845674515, -0.017353463917970657, 0.03108873777091503, 0.04027692601084709, -0.002934585325419903, -0.04841197282075882, -0.009647605009377003, -0.07392561435699463, -0.004824087023735046, 0.039015885442495346, 0.015246054157614708, -0.00247820932418108, 0.041674498468637466, 0.015574969351291656, -0.007605718448758125, 0.030121169984340668, 0.05328816920518875, 0.07199131697416306, 0.009873495437204838, -0.08208048343658447, -0.0008593646925874054, -0.014802276156842709, 0.012357917614281178, -0.008944728411734104, -0.016704637557268143, -0.020617719739675522, -0.10061819106340408, -0.021466102451086044, 0.01622200943529606, 0.011368132196366787, -0.015071161091327667, 0.03383387252688408, 0.0042761205695569515, -0.02872094325721264, -0.007652536034584045, 0.013505646027624607, 0.04591551050543785, -0.026594677940011024, 0.051637038588523865, -0.03019706904888153, -0.0012685016263276339, -0.058226317167282104, 0.0164068304002285, -0.05248928442597389, -0.021765392273664474, 0.015239538624882698, 0.04729309678077698, -0.028376735746860504, 0.05394105613231659, 0.07107167690992355, 0.04024912416934967, -0.04977870360016823, 0.03811989352107048, 0.07365581393241882, -0.04263591021299362, -0.046861808747053146, -0.0037573575973510742, 0.00233023171313107, -0.013408113270998001, 0.004693852737545967, -0.0021601924672722816, 0.05285040661692619, 0.02775268256664276, 0.00327384565025568, 0.0004548044817056507, -0.008149649947881699, -0.007961360737681389, -0.02690884843468666, -0.04895489290356636, -0.028793590143322945, 0.0016218636883422732, -0.027604764327406883, 0.023546127602458, 0.025111937895417213, 0.03178262338042259, 0.07274136692285538, 0.020311536267399788, -0.04000646993517876, -0.002786502242088318, 0.024806585162878036, 0.009159757755696774, -0.018422089517116547, -0.07025846838951111, -0.04048534855246544, 0.030162129551172256, 0.049743589013814926, -0.02250177226960659, -0.06203854829072952, 0.013284147717058659, 0.05014941096305847, -0.058014675974845886, 0.05910135805606842, -0.0036093133967369795, 0.05354270339012146, 0.05655572935938835, -0.008964640088379383, 0.0417964830994606, -0.020504839718341827, -0.007642840035259724, -0.0035721894819289446, 0.040000930428504944, -0.009526222944259644, -0.033140309154987335, -0.04839235916733742, 0.020660974085330963, 0.040656380355358124, 0.03169555589556694, 0.04590008780360222, -0.03548198938369751, -0.041434112936258316, 0.006576234474778175, 0.024512333795428276, -0.040961652994155884, -0.007294800598174334, 0.03928308188915253, 0.03187590464949608, -0.04796581715345383, -0.022171588614583015, -0.023644866421818733, -0.014717811718583107, 0.039084695279598236, 0.006322968751192093, -0.019145812839269638, -0.045891113579273224, 0.038576606661081314, -0.01664300076663494, -0.027775464579463005, -0.06531534343957901, 0.049020975828170776, -0.013621065765619278, -0.022878168150782585, 0.05519482120871544, 0.034958887845277786, 0.02172592654824257, 0.07155631482601166, 0.03532968461513519, 0.01642528735101223, -0.03383031487464905, 0.03989671543240547, -0.03255055472254753, -0.017371801659464836, 0.006464498117566109, -0.02953965589404106, -0.036554545164108276, -0.001491750474087894, -0.06377862393856049, -0.03561914712190628, -0.029470600187778473, 0.016778964549303055, 0.0031591318547725677, -0.018663644790649414, -0.0006351718329824507, 0.059524305164813995, -0.005817919038236141, -0.04178612679243088, -0.04665440693497658, -0.014668818563222885, -0.06794867664575577, -0.05330831557512283, 0.0009204461821354926, 0.005571652203798294, 0.03189752250909805, 0.035614337772130966, 0.022586580365896225, 0.018160764127969742, 0.02052638866007328, -0.040365785360336304, 0.014394744299352169, 0.018541716039180756, -0.04157474637031555, -0.020993337035179138, 0.03678017482161522, 0.010068810544908047, 0.02541528455913067, -0.03737890347838402, 0.034594327211380005, 0.001078477711416781, -0.004048614762723446, -0.02409755252301693, 0.01549417432397604, 0.028889646753668785, -0.061424072831869125, -0.034056127071380615, -0.017507420852780342, -0.02737094834446907, 0.031444668769836426, -0.025016209110617638, -0.02318756841123104, 0.01175688672810793, 0.00342048448510468, 0.03572956100106239, -0.03450231999158859, -0.012896398082375526, 0.026395371183753014, -0.0012734237825497985, 0.017697196453809738, -0.05578896030783653, 0.060895826667547226, -0.037979595363140106, 0.025421295315027237, -0.021058017387986183, 0.010461701080203056, -0.02199132740497589, 0.02688375487923622, -0.023826666176319122, -0.02181086875498295, -0.012790407985448837, 0.0575067512691021, -0.012735444121062756, 0.030590606853365898, -0.011320107616484165, 0.03929153084754944, -0.02849343977868557, 0.06944222748279572, -0.04042421281337738, 0.019904855638742447, -0.04052248224616051, 0.026568925008177757, -0.01972951740026474, 0.018146291375160217, -0.013305542059242725, -0.018800215795636177, 0.03211279585957527, 0.06283959001302719, 0.033623106777668, 0.02992531843483448, -0.003826965345069766, -0.015129287727177143, 0.012352325953543186, -0.041870519518852234, -0.018957972526550293, -0.011839236132800579, 0.0003049608785659075, -0.020466415211558342, 0.055163800716400146, 0.030286066234111786, -0.057200901210308075, -0.07501727342605591, 0.03739713132381439, 0.018069535493850708, -0.001414204016327858, 0.004918473772704601, 0.04837067797780037, 0.031816042959690094, 0.0427873395383358, -0.01763834059238434, -0.006628759205341339, -0.0003131867269985378, -0.05048482492566109, 0.025722429156303406, -0.004382351413369179, 0.027781909331679344, 0.014135872013866901, -0.04275112226605415, -0.02187168598175049, 0.05920465663075447, 0.0262628011405468, 0.024363992735743523, 0.0019041185732930899, -0.04403530806303024, 0.038465313613414764, 0.006702864542603493, -0.035563986748456955, 0.030892355367541313, 0.0073080118745565414, -0.02508753538131714, 0.0462682880461216, -0.00819272082298994, 0.003645217977464199, 0.06089572608470917, 0.01907171681523323, -0.021785138174891472, 0.06996075809001923, -0.03610827028751373, 0.011425220407545567, 0.04290791228413582, -0.07725071161985397, -0.007324261125177145, -0.05074005573987961, 0.057888805866241455, -0.0668201744556427, 0.023828050121665, 0.05494815483689308, -0.0007330256630666554, 0.027712969109416008, -0.05245702341198921, -0.059061937034130096, 0.019941117614507675, -0.0406511090695858, 0.07005227357149124, 0.012666570022702217, -0.04374160245060921, 0.05308642238378525, 0.012177390046417713, -0.06456997245550156, 0.03751646727323532, 0.02788858488202095, 0.05390666425228119, 0.03877826780080795, 0.04721501097083092, -0.044577062129974365, -0.002614746568724513, -0.033336520195007324, 0.015567454509437084, -0.04933278262615204, -0.012450363487005234, 0.034821029752492905, -0.04206531494855881, -0.02522721141576767, 0.03076356276869774, -0.012795100919902325, -0.01854862831532955, 0.0514993742108345, -0.0516292080283165, -0.03858799487352371, 0.015400100499391556, 0.020924337208271027, -0.04434161260724068, -0.012114537879824638, -0.031023221090435982, 0.011797451414167881, 0.011356116272509098, 0.003450114745646715, -0.02030368149280548, -0.018841220065951347, 0.029296746477484703, -0.043234821408987045, -0.03362128138542175, 0.022946830838918686, -0.008665980771183968, -0.02084292285144329, 0.03774254396557808, 0.009995981119573116, 0.01339259184896946, 0.03062446601688862, -0.014527839608490467, 0.023256665095686913, -0.03552405163645744, -0.018076080828905106, 0.029131192713975906, -0.00842195749282837, 0.02210625447332859, 0.009811888448894024, 0.03286014869809151, 0.037180736660957336, 0.023866312578320503, -0.002939842874184251, -0.03563366085290909, -0.031584519892930984, 0.013016651384532452, -0.041733987629413605, 0.00449669873341918, -0.004593661520630121, -0.05033934488892555, -0.02225569635629654, 0.00191967049613595, -0.044321998953819275, 0.03870593011379242, -0.06310738623142242, 0.007417015731334686, 0.04651549831032753, -0.01721031963825226, -0.061090484261512756, -0.11544759571552277, -0.01566462591290474, -0.05367090180516243, -0.014696496538817883, 0.05067019164562225, -0.03510448709130287, 0.04411612078547478, -0.0497896783053875, -0.030873475596308708, 0.04081679508090019, 0.05330704525113106, -0.05758845433592796, 0.06238361820578575, 0.04562995955348015, -0.050149280577898026, 0.013388521037995815, 0.023722786456346512, -0.05052105337381363, 0.0024884992744773626, 0.015878716483712196, -0.0030414024367928505, 0.024025341495871544, 0.014749536290764809, -0.060200754553079605, -0.01776719093322754, -0.07124754786491394, -0.0394955612719059, -0.0461348220705986, 0.005721633788198233, 0.047678835690021515 ]
DeepESP/gpt2-spanish-medium
[ "pytorch", "tf", "jax", "gpt2", "text-generation", "es", "dataset:ebooks", "transformers", "GPT-2", "Spanish", "ebooks", "nlg", "license:mit" ]
text-generation
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": true, "max_length": 50 }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
340
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-2 results: [] --- <!-- 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__sst2__train-32-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4805 - Accuracy: 0.7699 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7124 | 1.0 | 13 | 0.6882 | 0.5385 | | 0.6502 | 2.0 | 26 | 0.6715 | 0.5385 | | 0.6001 | 3.0 | 39 | 0.6342 | 0.6154 | | 0.455 | 4.0 | 52 | 0.5713 | 0.7692 | | 0.2605 | 5.0 | 65 | 0.5562 | 0.7692 | | 0.1258 | 6.0 | 78 | 0.6799 | 0.7692 | | 0.0444 | 7.0 | 91 | 0.8096 | 0.7692 | | 0.0175 | 8.0 | 104 | 0.9281 | 0.6923 | | 0.0106 | 9.0 | 117 | 0.9826 | 0.6923 | | 0.0077 | 10.0 | 130 | 1.0254 | 0.7692 | | 0.0056 | 11.0 | 143 | 1.0667 | 0.7692 | | 0.0042 | 12.0 | 156 | 1.1003 | 0.7692 | | 0.0036 | 13.0 | 169 | 1.1299 | 0.7692 | | 0.0034 | 14.0 | 182 | 1.1623 | 0.6923 | | 0.003 | 15.0 | 195 | 1.1938 | 0.6923 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012943766079843044, 0.013697435148060322, -0.044317323714494705, 0.043073855340480804, 0.05537065491080284, 0.01730315573513508, -0.018621541559696198, -0.023479269817471504, -0.054425351321697235, 0.06287836283445358, 0.016884978860616684, -0.031209224835038185, 0.008124807849526405, 0.04160858318209648, -0.016113800927996635, -0.03834650665521622, 0.0006396061507984996, -0.014460146427154541, -0.031185803934931755, -0.003446385031566024, 0.003980088979005814, -0.014005311764776707, -0.014961802400648594, 0.003142885398119688, -0.0066197956912219524, 0.01661129668354988, 0.003316822461783886, 0.023197665810585022, 0.038984790444374084, -0.06809962540864944, 0.00589492404833436, -0.02905016764998436, -0.052847970277071, -0.022574888542294502, -0.012786873616278172, -0.018442358821630478, -0.005747603718191385, 0.02805980108678341, 0.03533400595188141, 0.036048419773578644, 0.0069104391150176525, 0.034578610211610794, 0.0003151332202833146, -0.008288628421723843, 0.06222929432988167, 0.009512376971542835, -0.03903728350996971, 0.0003350792685523629, 0.04005984961986542, -0.02271791361272335, -0.08062704652547836, -0.045505229383707047, -0.01618894375860691, 0.024785446003079414, -0.017588915303349495, -0.012993103824555874, -0.056677088141441345, 0.014258185401558876, 0.06461253762245178, -0.04597906768321991, -0.030878780409693718, -0.00011971234926022589, -0.06972410529851913, 0.004015345126390457, 0.03825514763593674, -0.02195671573281288, 0.013661330565810204, -0.04901115596294403, 0.025533823296427727, -0.01147440541535616, 0.05643695965409279, -0.021195558831095695, 0.011941690929234028, -0.0738777443766594, -0.017749954015016556, -0.00962256919592619, 0.04525057226419449, 0.05703768506646156, -0.03086370788514614, 0.05307507514953613, 0.02932863123714924, 0.0004546496784314513, 0.04376525431871414, -0.030895553529262543, 0.009358756244182587, 0.036691442131996155, -0.04641486704349518, -0.0005203219479881227, 0.02063787542283535, 0.028380781412124634, -0.03735591843724251, -0.03695525601506233, -0.030022047460079193, -0.03205256536602974, -0.001066625234670937, 0.02097051776945591, 0.02513974905014038, 0.01761992648243904, 0.03730558604001999, 0.011568351648747921, 0.022788498550653458, 0.036733198910951614, -0.019164718687534332, 0.06651359796524048, -0.004362667445093393, -0.009082158096134663, -0.003487412352114916, -0.015936072915792465, -0.05170150101184845, 0.01958639733493328, 0.02627011574804783, -0.021180784329771996, -0.014788017608225346, 0.03835601732134819, 0.005500925704836845, 0.0037940144538879395, 0.07789228856563568, -0.027120180428028107, -0.042351603507995605, -0.03515675291419029, 0.026451855897903442, 0.015528972260653973, -0.02023053541779518, 0.016122277826070786, -0.04533078148961067, -0.018643157556653023, -0.025055045261979103, -0.01680479384958744, -0.019122758880257607, 0.01901952363550663, 0.01446850411593914, 0.06490804255008698, 0.030929511412978172, -0.08784325420856476, 0.00595914525911212, 0.015857426449656487, -0.05710818991065025, 0.04477236792445183, 0.024235328659415245, 0.1182362511754036, -0.05840606614947319, -0.06920284032821655, 0.0076467241160571575, -0.003005871083587408, -0.03907972574234009, 0.017394647002220154, 0.0025737998075783253, -0.027840329334139824, 0.007413197308778763, 0.0018514104885980487, 0.07323643565177917, -0.04260621964931488, -0.010663274675607681, 0.07488974928855896, 0.004424306098371744, 0.04460073262453079, -0.05640650540590286, -0.02421613410115242, 0.0170888751745224, -0.024637483060359955, -0.03295516595244408, 0.05020926892757416, -0.028199577704072, -0.01867268979549408, -0.021234896034002304, -0.026598293334245682, 0.013831062242388725, 0.07400621473789215, -0.005733786150813103, -0.0315132774412632, -0.01565924659371376, 0.024736683815717697, 0.046503596007823944, 0.05163877457380295, -0.026085443794727325, 0.02732965350151062, 0.057950884103775024, 0.028786148875951767, -0.033998310565948486, 0.03855656459927559, 0.023987410590052605, -0.026491975411772728, -0.01998850703239441, 0.03208260238170624, 0.001224289182573557, -0.047822415828704834, 0.03844182938337326, 0.011958101764321327, 0.00443336321040988, -0.06712573021650314, -0.04474702477455139, 0.03636177256703377, -0.003995340317487717, -0.01126695517450571, 0.017454426735639572, 0.022646114230155945, -0.01291264221072197, 0.045825518667697906, -0.012391366995871067, 0.007134385406970978, -0.024070987477898598, -0.01883707381784916, 0.012414076365530491, -0.02052614837884903, 0.028470629826188087, 0.04885212704539299, -0.0030327264685183764, 0.0957217887043953, -0.04585152491927147, 0.024237852543592453, -0.050353266298770905, -0.03700389340519905, 0.018826238811016083, 0.056663237512111664, 0.0555197037756443, 0.05705918371677399, 0.008663525804877281, -0.02859194576740265, 0.045723989605903625, 0.07281623035669327, 0.048205066472291946, -0.003915867302566767, -0.029814699664711952, -0.017297234386205673, 0.040979065001010895, 0.05134856328368187, -0.04726593941450119, -0.01617431640625, 0.012782709673047066, 0.03223041817545891, -0.002163758035749197, 0.017440350726246834, -0.028591973707079887, 0.039072923362255096, -0.04550876468420029, -0.04258221015334129, 0.0405210480093956, 0.019324103370308876, -0.000027729554858524352, 0.03009132482111454, 0.026857001706957817, 0.01080058328807354, 0.025981804355978966, 0.021991165354847908, 0.018891064450144768, -0.053865887224674225, 0.022847747430205345, 0.007944111712276936, 0.057646915316581726, -0.05278416723012924, 0.031677309423685074, -0.01740185357630253, 0.013434815220534801, 0.03923153504729271, -0.03215564042329788, 0.027242928743362427, 0.05212203040719032, 0.03838174417614937, -0.038665588945150375, 0.025562049821019173, 0.004607969895005226, 0.03594660386443138, 0.0426148995757103, 0.011806435883045197, 0.06909534335136414, 0.021523907780647278, 0.046301595866680145, 0.07474908232688904, 0.020168351009488106, 0.03389260172843933, 0.01129892747849226, 0.07109294831752777, 0.0176659245043993, -0.010381416417658329, 0.043928131461143494, -0.044722169637680054, 0.02379952371120453, -0.05287192761898041, -0.005165295675396919, -0.02212757244706154, -0.008410396985709667, 0.04896356165409088, 0.029760755598545074, -0.03434176370501518, -0.01235879771411419, 0.014353016391396523, -0.008488674648106098, 0.022157032042741776, -0.00506889633834362, 0.01172447670251131, -0.004067579749971628, -0.02016378380358219, -0.02873355709016323, -0.06896087527275085, -0.05327911302447319, -0.028471730649471283, -0.014483611099421978, -0.022855674847960472, -0.0869460329413414, -0.006268894765526056, -0.08842726796865463, -0.019474469125270844, 0.03197963535785675, 0.007499407045543194, -0.023179421201348305, -0.03015449456870556, 0.023696845397353172, -0.04785899445414543, -0.038615234196186066, -0.04189479351043701, -0.05928594619035721, -0.04789821431040764, -0.07899946719408035, 0.03355339169502258, 0.03788778930902481, 0.005867512430995703, 0.0012739476514980197, 0.024990390986204147, 0.018083253875374794, -0.028049038723111153, 0.03796427324414253, 0.06636518239974976, -0.036684513092041016, -0.056349337100982666, 0.032416630536317825, -0.009805554524064064, 0.017981592565774918, 0.02592064067721367, -0.03047519363462925, 0.08989357948303223, 0.07192452251911163, 0.007868196815252304, 0.021948382258415222, -0.009447851218283176, -0.06274750828742981, -0.06836551427841187, -0.02624436281621456, -0.0417705774307251, -0.00834188424050808, -0.045534905046224594, -0.03886140137910843, -0.03562062233686447, -0.04502127319574356, 0.003558429889380932, -0.015094134025275707, 0.025384265929460526, 0.021566379815340042, 0.04015812277793884, 0.02245069108903408, 0.04220999404788017, -0.03315366432070732, -0.039940815418958664, 0.05856332927942276, 0.010662222281098366, 0.0049308668822050095, -0.08624204993247986, -0.001577352755703032, 0.027098266407847404, 0.020617663860321045, 0.01476665772497654, -0.0067751738242805, 0.07077814638614655, -0.0092886658385396, 0.006708350498229265, 0.014967015013098717, -0.0123905623331666, -0.01036863587796688, 0.00009298238001065329, 0.00010603985720081255, 0.001967649208381772, -0.022669052705168724, -0.029650025069713593, -0.005663115531206131, 0.030115367844700813, -0.05627409368753433, -0.06165743246674538, -0.01645977795124054, 0.02937246486544609, 0.03956332802772522, -0.0015991900581866503, -0.049631617963314056, -0.01123228669166565, -0.07219361513853073, -0.006669802125543356, 0.03882142901420593, 0.015957163646817207, -0.00337289460003376, 0.041238393634557724, 0.016639256849884987, -0.008237054571509361, 0.029246894642710686, 0.05170896276831627, 0.0728500485420227, 0.009907279163599014, -0.08147934079170227, 0.00022613150940742344, -0.01490125060081482, 0.014702522195875645, -0.008070019073784351, -0.016421733424067497, -0.021837159991264343, -0.10082515329122543, -0.022122608497738838, 0.014698644168674946, 0.011158492416143417, -0.014365874230861664, 0.03409808874130249, 0.0050728158093988895, -0.02773684822022915, -0.008332458324730396, 0.0145628796890378, 0.046839453279972076, -0.02418919838964939, 0.052413344383239746, -0.0316164456307888, -0.0024015300441533327, -0.05722443759441376, 0.016144024208188057, -0.05407695472240448, -0.022737497463822365, 0.014820157550275326, 0.04737184941768646, -0.028435450047254562, 0.05375674366950989, 0.07081624865531921, 0.03959818184375763, -0.04858875274658203, 0.03840947151184082, 0.0725940614938736, -0.042953018099069595, -0.04709707200527191, -0.004987661261111498, 0.004158679395914078, -0.01357473898679018, 0.00580732524394989, -0.001989375799894333, 0.05351443216204643, 0.02894187532365322, 0.0022151325829327106, 0.00027949403738602996, -0.009104225784540176, -0.006696619093418121, -0.027216961607336998, -0.04714528098702431, -0.028556328266859055, 0.0026714473497122526, -0.02724587172269821, 0.023638898506760597, 0.023571377620100975, 0.03105831705033779, 0.07228752970695496, 0.01882336474955082, -0.038396548479795456, -0.0031389188952744007, 0.025819046422839165, 0.008813570253551006, -0.019015008583664894, -0.06960617750883102, -0.040149521082639694, 0.030940093100070953, 0.0493689700961113, -0.02287057414650917, -0.06349189579486847, 0.013429458253085613, 0.04950588196516037, -0.05881650373339653, 0.0603472962975502, -0.003874784568324685, 0.05342599004507065, 0.0556454136967659, -0.008319222368299961, 0.04137134924530983, -0.020017189905047417, -0.009181343950331211, -0.001788232708349824, 0.0393839105963707, -0.010688744485378265, -0.03271710127592087, -0.049683425575494766, 0.02164268307387829, 0.03938539698719978, 0.0314037911593914, 0.046633586287498474, -0.03526602312922478, -0.041410818696022034, 0.00530756451189518, 0.02517719566822052, -0.041300319135189056, -0.00925438478589058, 0.03980756178498268, 0.030634455382823944, -0.04775739833712578, -0.021883219480514526, -0.02430770732462406, -0.012852011248469353, 0.039018746465444565, 0.006937100552022457, -0.01827939972281456, -0.04608743637800217, 0.03721508011221886, -0.01735311560332775, -0.027106687426567078, -0.0642227903008461, 0.049891069531440735, -0.013191014528274536, -0.022045064717531204, 0.055507250130176544, 0.03442632034420967, 0.022100042551755905, 0.07094226777553558, 0.03636728227138519, 0.01714492402970791, -0.03480471298098564, 0.03866308182477951, -0.03181666135787964, -0.01801525242626667, 0.005885142832994461, -0.030254747718572617, -0.03836657479405403, -0.00033594443812035024, -0.06187647581100464, -0.03601482883095741, -0.028974337503314018, 0.016553236171603203, 0.0021748219151049852, -0.017388198524713516, -0.0004702373989857733, 0.058953266590833664, -0.003978588618338108, -0.04321805015206337, -0.04642083868384361, -0.015191130340099335, -0.06727885454893112, -0.05370251461863518, 0.0006489482475444674, 0.005041637923568487, 0.03205771744251251, 0.03591300547122955, 0.021941065788269043, 0.017842328175902367, 0.02057606354355812, -0.043112073093652725, 0.01246345229446888, 0.017768416553735733, -0.041137807071208954, -0.021676193922758102, 0.03763768449425697, 0.008665922097861767, 0.025409966707229614, -0.03732389956712723, 0.0346066914498806, 0.0008549733902327716, -0.003942389041185379, -0.025847502052783966, 0.015577294863760471, 0.02834188938140869, -0.05996469035744667, -0.033933788537979126, -0.01877937838435173, -0.02625868283212185, 0.03260337933897972, -0.025176916271448135, -0.021990042179822922, 0.012545211240649223, 0.002344891894608736, 0.0357997789978981, -0.033229388296604156, -0.013354029506444931, 0.026829618960618973, -0.0030022170394659042, 0.016561048105359077, -0.055956512689590454, 0.06190233677625656, -0.037292372435331345, 0.02695576660335064, -0.021569743752479553, 0.010952791199088097, -0.021997617557644844, 0.026152970269322395, -0.023933684453368187, -0.020567093044519424, -0.01444800291210413, 0.05823775753378868, -0.013053685426712036, 0.030167091637849808, -0.011239691637456417, 0.039394017308950424, -0.02952875941991806, 0.06914031505584717, -0.03975437581539154, 0.020689206197857857, -0.040931764990091324, 0.026824405416846275, -0.01975846476852894, 0.017741024494171143, -0.013087940402328968, -0.019611813127994537, 0.033405594527721405, 0.06136918067932129, 0.03524361923336983, 0.029959682375192642, -0.005878469441086054, -0.013676678761839867, 0.014442618004977703, -0.04052043333649635, -0.01967078447341919, -0.013212091289460659, 0.0027244724333286285, -0.021257992833852768, 0.05611148849129677, 0.031001992523670197, -0.05696333944797516, -0.07425505667924881, 0.03693411871790886, 0.018448257818818092, -0.0009961302857846022, 0.0038739931769669056, 0.04881555214524269, 0.03060992993414402, 0.04371374845504761, -0.01648496463894844, -0.006424696184694767, -0.0026170772034674883, -0.05078425630927086, 0.026497114449739456, -0.004451636224985123, 0.026877813041210175, 0.013341612182557583, -0.04396701604127884, -0.02114597149193287, 0.05710103362798691, 0.025820815935730934, 0.024036919698119164, 0.0022565515246242285, -0.0444662943482399, 0.03841153159737587, 0.0068714856170117855, -0.033055540174245834, 0.03174900636076927, 0.0065475944429636, -0.02631356194615364, 0.04515942558646202, -0.008533069863915443, 0.0024595169816166162, 0.06120750680565834, 0.01867854781448841, -0.021525880321860313, 0.07013266533613205, -0.035852380096912384, 0.013063633814454079, 0.04311676695942879, -0.07935073971748352, -0.006441302131861448, -0.05073218047618866, 0.0584665909409523, -0.06655466556549072, 0.024673201143741608, 0.05547887459397316, -0.0010281417053192854, 0.026447415351867676, -0.05241139605641365, -0.06050170958042145, 0.01974053867161274, -0.040732670575380325, 0.07104124128818512, 0.012136253528296947, -0.04490790516138077, 0.053066786378622055, 0.011669287458062172, -0.06237782537937164, 0.03740021586418152, 0.02775721251964569, 0.05474766343832016, 0.038313064724206924, 0.046548981219530106, -0.04535200446844101, -0.002699629869312048, -0.03393038734793663, 0.014349758625030518, -0.04947979375720024, -0.013043439015746117, 0.034812234342098236, -0.042482711374759674, -0.02422161027789116, 0.030854258686304092, -0.01338181085884571, -0.01904977299273014, 0.05072188749909401, -0.050112251192331314, -0.03834286704659462, 0.014850548468530178, 0.01870669238269329, -0.044797126203775406, -0.01413958054035902, -0.03060157597064972, 0.011872338131070137, 0.010728799737989902, 0.004470138810575008, -0.019011490046977997, -0.018108513206243515, 0.030315665528178215, -0.040969062596559525, -0.03461075946688652, 0.022607926279306412, -0.00823398120701313, -0.020984020084142685, 0.038434259593486786, 0.009723381139338017, 0.012928659096360207, 0.03162769973278046, -0.012979242019355297, 0.023083478212356567, -0.03374488651752472, -0.018611179664731026, 0.028578536584973335, -0.008153675124049187, 0.021771620959043503, 0.010811728425323963, 0.03107823245227337, 0.03676043823361397, 0.024477731436491013, -0.0031945763621479273, -0.03473084792494774, -0.029791075736284256, 0.012583574280142784, -0.040745899081230164, 0.0043823011219501495, -0.007052640430629253, -0.05031995847821236, -0.02242850698530674, 0.001719609135761857, -0.044065237045288086, 0.038411401212215424, -0.06327976286411285, 0.006814335007220507, 0.04657285660505295, -0.017238326370716095, -0.06194481626152992, -0.115157850086689, -0.014277856796979904, -0.05212527886033058, -0.014522009529173374, 0.05087248608469963, -0.034960195422172546, 0.04361063987016678, -0.049033235758543015, -0.031675852835178375, 0.04159313812851906, 0.0539189875125885, -0.05777689442038536, 0.06485851109027863, 0.04692770168185234, -0.05033275485038757, 0.012428662739694118, 0.022013626992702484, -0.05080432817339897, 0.0018065380863845348, 0.016383079811930656, -0.0008559973794035614, 0.023515967652201653, 0.014822227880358696, -0.06072200462222099, -0.018809882923960686, -0.07235857099294662, -0.04018570855259895, -0.04615809768438339, 0.005403511226177216, 0.048232607543468475 ]
DeepESP/gpt2-spanish
[ "pytorch", "tf", "jax", "gpt2", "text-generation", "es", "dataset:ebooks", "transformers", "GPT-2", "Spanish", "ebooks", "nlg", "license:mit", "has_space" ]
text-generation
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": true, "max_length": 50 }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
1,463
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-3 results: [] --- <!-- 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__sst2__train-32-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5694 - Accuracy: 0.7073 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7118 | 1.0 | 13 | 0.6844 | 0.5385 | | 0.6587 | 2.0 | 26 | 0.6707 | 0.6154 | | 0.6067 | 3.0 | 39 | 0.6295 | 0.5385 | | 0.4714 | 4.0 | 52 | 0.5811 | 0.6923 | | 0.2444 | 5.0 | 65 | 0.5932 | 0.7692 | | 0.1007 | 6.0 | 78 | 0.7386 | 0.6923 | | 0.0332 | 7.0 | 91 | 0.6962 | 0.6154 | | 0.0147 | 8.0 | 104 | 0.8200 | 0.7692 | | 0.0083 | 9.0 | 117 | 0.9250 | 0.7692 | | 0.0066 | 10.0 | 130 | 0.9345 | 0.7692 | | 0.005 | 11.0 | 143 | 0.9313 | 0.7692 | | 0.0036 | 12.0 | 156 | 0.9356 | 0.7692 | | 0.0031 | 13.0 | 169 | 0.9395 | 0.7692 | | 0.0029 | 14.0 | 182 | 0.9504 | 0.7692 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012671931646764278, 0.011511335149407387, -0.04863731563091278, 0.04193742945790291, 0.054313890635967255, 0.019093375653028488, -0.018973547965288162, -0.024597924202680588, -0.05530674383044243, 0.06409750133752823, 0.01892867684364319, -0.0337340272963047, 0.008308826014399529, 0.03977498784661293, -0.015553677454590797, -0.03648724406957626, 0.0012712862808257341, -0.014275102876126766, -0.030596282333135605, -0.0020001986995339394, 0.005590271204710007, -0.012159439735114574, -0.013988054357469082, 0.004020714666694403, -0.008577161468565464, 0.016529573127627373, 0.0005958164110779762, 0.025622781366109848, 0.03968450427055359, -0.06774917989969254, 0.0071113682352006435, -0.029618453234434128, -0.05426216870546341, -0.022769814357161522, -0.013402591459453106, -0.01893298141658306, -0.0029187588952481747, 0.026734961196780205, 0.03252163156867027, 0.03869522735476494, 0.006093066185712814, 0.0325259231030941, 0.00569955026730895, -0.010566310957074165, 0.06100749224424362, 0.00935517530888319, -0.04116435348987579, 0.0026042580138891935, 0.040899552404880524, -0.02395404689013958, -0.07792916893959045, -0.046224892139434814, -0.01702769473195076, 0.025104813277721405, -0.017950229346752167, -0.014426188543438911, -0.05356970056891441, 0.011860799044370651, 0.06418856978416443, -0.04520173370838165, -0.029059473425149918, 0.0016201905673369765, -0.06788250058889389, 0.004412747919559479, 0.036726489663124084, -0.022665737196803093, 0.012805385515093803, -0.05109243839979172, 0.026921482756733894, -0.013315611518919468, 0.05714749917387962, -0.022145047783851624, 0.01197804231196642, -0.07313831895589828, -0.01753922738134861, -0.008754086680710316, 0.04432085528969765, 0.0595281608402729, -0.03017120249569416, 0.05414395034313202, 0.028859058395028114, -0.0003343967255204916, 0.04541049525141716, -0.0316530205309391, 0.011171719059348106, 0.03568074479699135, -0.04488936439156532, -0.0009005487663671374, 0.020494012162089348, 0.027840692549943924, -0.03383299335837364, -0.033786408603191376, -0.02872801385819912, -0.031575560569763184, -0.0009596431627869606, 0.020725475624203682, 0.026527825742959976, 0.0184079147875309, 0.037915728986263275, 0.010770104825496674, 0.02110919915139675, 0.03630202263593674, -0.021426409482955933, 0.06536334753036499, -0.003972117323428392, -0.00835311971604824, -0.0025421124882996082, -0.01509405393153429, -0.04994276911020279, 0.020312689244747162, 0.026757419109344482, -0.020685186609625816, -0.015975264832377434, 0.037788182497024536, 0.009408935904502869, 0.0016331321094185114, 0.07607162743806839, -0.0265839584171772, -0.04164888709783554, -0.03574017062783241, 0.025560244917869568, 0.014933226630091667, -0.018936485052108765, 0.01457334216684103, -0.044763218611478806, -0.018214194104075432, -0.025780756026506424, -0.01835688203573227, -0.022051533684134483, 0.017504781484603882, 0.016920825466513634, 0.06453991681337357, 0.029885083436965942, -0.08619662374258041, 0.006503996439278126, 0.01502405758947134, -0.056572988629341125, 0.04595944285392761, 0.024211963638663292, 0.12318379431962967, -0.05799100548028946, -0.06922826170921326, 0.005240438971668482, -0.003449775977060199, -0.039981428533792496, 0.01761425845324993, 0.002174196531996131, -0.027308430522680283, 0.007357798982411623, 0.001688313321210444, 0.07045900076627731, -0.041525598615407944, -0.011317741125822067, 0.07577560096979141, 0.0043433597311377525, 0.04173652082681656, -0.05716094747185707, -0.0241387952119112, 0.018541330471634865, -0.02682029828429222, -0.03356122598052025, 0.051990583539009094, -0.02950683794915676, -0.020606737583875656, -0.020491644740104675, -0.027569476515054703, 0.012544851750135422, 0.07328569889068604, -0.006005972158163786, -0.03328128531575203, -0.016594914719462395, 0.02536739781498909, 0.0458550751209259, 0.05087059736251831, -0.025833021849393845, 0.02704443968832493, 0.05735042318701744, 0.024970117956399918, -0.03595508635044098, 0.038338951766490936, 0.024633700028061867, -0.027358241379261017, -0.019752830266952515, 0.02933616004884243, 0.002234639832749963, -0.04686427861452103, 0.038132164627313614, 0.01147521659731865, 0.004742122255265713, -0.06959936767816544, -0.04839615523815155, 0.035524118691682816, -0.0015709575964137912, -0.010743175633251667, 0.01865232177078724, 0.022548582404851913, -0.012558907270431519, 0.04506978020071983, -0.012792645022273064, 0.005866719875484705, -0.026827000081539154, -0.017208345234394073, 0.014688967727124691, -0.020845917984843254, 0.029404794797301292, 0.04744147136807442, -0.004302700515836477, 0.09495574235916138, -0.04627601429820061, 0.024911046028137207, -0.05046620965003967, -0.039089567959308624, 0.02151426300406456, 0.05487688630819321, 0.05590279400348663, 0.05828119441866875, 0.004446893930435181, -0.02907167561352253, 0.04498860985040665, 0.07415257394313812, 0.04832002520561218, -0.003528837813064456, -0.03026559390127659, -0.015980485826730728, 0.04256986826658249, 0.0509062334895134, -0.048143234103918076, -0.017711956053972244, 0.015379230491816998, 0.032883286476135254, -0.00020688505901489407, 0.0203157439827919, -0.02754066325724125, 0.04060357064008713, -0.047022536396980286, -0.04410590976476669, 0.04200151190161705, 0.019176479429006577, 0.0011976264650002122, 0.029984701424837112, 0.02481127344071865, 0.013716642744839191, 0.025599751621484756, 0.02307107485830784, 0.017833001911640167, -0.055701617151498795, 0.027134977281093597, 0.006131657864898443, 0.055683743208646774, -0.05215848982334137, 0.030132317915558815, -0.015651995316147804, 0.013172334991395473, 0.04029844328761101, -0.03375783935189247, 0.02585737407207489, 0.053719308227300644, 0.03794066980481148, -0.038080960512161255, 0.02628837339580059, 0.0017715286230668426, 0.03393387421965599, 0.04198712110519409, 0.009144578129053116, 0.0684194415807724, 0.0234712902456522, 0.04516593739390373, 0.07874680310487747, 0.020680267363786697, 0.03406766802072525, 0.013961738906800747, 0.07282236963510513, 0.01907374896109104, -0.009170747362077236, 0.043877262622117996, -0.04380248114466667, 0.024436073377728462, -0.0527372881770134, -0.0068696169182658195, -0.02420700155198574, -0.007817707024514675, 0.047881580889225006, 0.02950078248977661, -0.03430907800793648, -0.012131319381296635, 0.012817153707146645, -0.006540400441735983, 0.022024957463145256, -0.0035601898562163115, 0.01136531587690115, -0.0044497158378362656, -0.02365126647055149, -0.030283821746706963, -0.0687793716788292, -0.05350109189748764, -0.0297150406986475, -0.014426078647375107, -0.022261112928390503, -0.0854170173406601, -0.005249180365353823, -0.0859142318367958, -0.02190030924975872, 0.032081883400678635, 0.007031742017716169, -0.02301369607448578, -0.03190597519278526, 0.021822117269039154, -0.04918380454182625, -0.04009970650076866, -0.04349303990602493, -0.06011467054486275, -0.04877861216664314, -0.0807751715183258, 0.03405856713652611, 0.033612627536058426, 0.005275909323245287, -0.0030589397065341473, 0.022811247035861015, 0.017705081030726433, -0.02932824194431305, 0.03477766737341881, 0.06737560778856277, -0.033895790576934814, -0.055040307343006134, 0.029554123058915138, -0.007539120502769947, 0.017417971044778824, 0.027009351179003716, -0.03271500766277313, 0.09090748429298401, 0.0717126801609993, 0.007130567450076342, 0.020295066758990288, -0.008793918415904045, -0.0642286092042923, -0.06829902529716492, -0.026943042874336243, -0.044345974922180176, -0.007538509555160999, -0.04606349766254425, -0.03907226398587227, -0.03616685792803764, -0.04524068534374237, 0.004188808146864176, -0.017183778807520866, 0.025757279247045517, 0.018993230536580086, 0.040878619998693466, 0.021220028400421143, 0.04356309026479721, -0.03446276858448982, -0.038931313902139664, 0.05667369067668915, 0.013189687393605709, 0.0064164516516029835, -0.08510862290859222, -0.0022326011676341295, 0.025673119351267815, 0.020883649587631226, 0.016556214541196823, -0.00782683677971363, 0.06970293819904327, -0.00682279746979475, 0.006454178132116795, 0.01461675576865673, -0.009539620950818062, -0.01052914746105671, -0.001262787962332368, 0.0012793706264346838, 0.0002574597019702196, -0.02284788340330124, -0.02941013127565384, -0.005104860290884972, 0.031032590195536613, -0.05796942859888077, -0.059161730110645294, -0.018045814707875252, 0.029136357828974724, 0.04052734375, -0.0007941830554045737, -0.051164377480745316, -0.007419202942401171, -0.071858711540699, -0.007630037143826485, 0.03965993970632553, 0.012499403208494186, -0.001284389873035252, 0.041127726435661316, 0.016731010749936104, -0.007210360839962959, 0.02689219079911709, 0.05208476260304451, 0.07252621650695801, 0.010231934487819672, -0.08214603364467621, 0.00003473239121376537, -0.01590673439204693, 0.01537623256444931, -0.009057746268808842, -0.01779586263000965, -0.02197486162185669, -0.10025155544281006, -0.02241440862417221, 0.01585456356406212, 0.008061502128839493, -0.012798251584172249, 0.035555530339479446, 0.0056626987643539906, -0.027044296264648438, -0.010743394494056702, 0.014664768241345882, 0.04405614361166954, -0.02553693763911724, 0.05585594102740288, -0.02884620428085327, -0.002220965689048171, -0.058324530720710754, 0.016216367483139038, -0.05337370187044144, -0.025478357449173927, 0.012606607750058174, 0.04660801962018013, -0.028817402198910713, 0.05671131983399391, 0.07311821728944778, 0.0377892330288887, -0.0497313067317009, 0.0361584909260273, 0.07352244853973389, -0.03851310908794403, -0.047880567610263824, -0.0037541931960731745, 0.0005877058138139546, -0.011073133908212185, 0.0062811351381242275, -0.004488438367843628, 0.0511135458946228, 0.029660750180482864, 0.002869833493605256, -0.0011625878978520632, -0.009287187829613686, -0.006698362994939089, -0.026351353153586388, -0.04884130880236626, -0.028784938156604767, 0.0032954642083495855, -0.02499796450138092, 0.023248979821801186, 0.02401875890791416, 0.027896733954548836, 0.06999780237674713, 0.019202755764126778, -0.03812962770462036, -0.002434726106002927, 0.025872759521007538, 0.008632726036012173, -0.019575444981455803, -0.07093986868858337, -0.04053496569395065, 0.029841912910342216, 0.048959288746118546, -0.023663638159632683, -0.0608174093067646, 0.012243884615600109, 0.05062565580010414, -0.059721749275922775, 0.05789096653461456, -0.004154047463089228, 0.052057895809412, 0.05692150443792343, -0.009321518242359161, 0.04101736471056938, -0.021692829206585884, -0.007741753477603197, -0.003364232135936618, 0.04241136088967323, -0.010176600888371468, -0.033028531819581985, -0.04899408295750618, 0.024389691650867462, 0.039216309785842896, 0.0300974790006876, 0.04804520308971405, -0.03457881510257721, -0.042780641466379166, 0.005518368910998106, 0.023355044424533844, -0.04160383716225624, -0.008976070210337639, 0.04280028119683266, 0.03216174989938736, -0.04767029359936714, -0.021714067086577415, -0.021903473883867264, -0.014928287826478481, 0.03850090876221657, 0.008188244886696339, -0.018956564366817474, -0.041273996233940125, 0.03665030747652054, -0.017764559015631676, -0.03071143850684166, -0.061736781150102615, 0.04937245324254036, -0.014565720222890377, -0.021240109577775, 0.05644673854112625, 0.03682800754904747, 0.02157732844352722, 0.07199479639530182, 0.03570616617798805, 0.014836089685559273, -0.03524826094508171, 0.03818867728114128, -0.031206252053380013, -0.018644312396645546, 0.006608061958104372, -0.03130551055073738, -0.03849218413233757, -0.0015205956296995282, -0.057539962232112885, -0.03500904515385628, -0.028090832754969597, 0.016861163079738617, 0.001407562755048275, -0.016468442976474762, 0.002069681417196989, 0.059437889605760574, -0.003520389785990119, -0.039616718888282776, -0.04646900296211243, -0.016967395320534706, -0.06663273274898529, -0.05592849850654602, 0.00048050039913505316, 0.008478382602334023, 0.03149368241429329, 0.03555537015199661, 0.021816467866301537, 0.01803552731871605, 0.0213373564183712, -0.04175543785095215, 0.012241406366229057, 0.01707538589835167, -0.04089724272489548, -0.020889047533273697, 0.03586021065711975, 0.009149027988314629, 0.026325320824980736, -0.035548336803913116, 0.03202637657523155, -0.0008584574679844081, -0.006055024918168783, -0.024989871308207512, 0.012120524421334267, 0.02983502671122551, -0.05851617828011513, -0.03461513668298721, -0.017708294093608856, -0.026922481134533882, 0.032717201858758926, -0.024022690951824188, -0.026232710108160973, 0.009730235673487186, 0.003092315047979355, 0.03530693054199219, -0.03063529171049595, -0.016043180599808693, 0.028514191508293152, -0.001469321665354073, 0.018188584595918655, -0.05753527954220772, 0.05955606326460838, -0.039218124002218246, 0.02625948190689087, -0.021409684792160988, 0.011990902945399284, -0.02174021303653717, 0.02440016157925129, -0.022332364693284035, -0.020373675972223282, -0.012741061858832836, 0.05424690619111061, -0.013035180047154427, 0.02823370136320591, -0.011496054008603096, 0.038787201046943665, -0.02664901129901409, 0.06679850816726685, -0.03885931149125099, 0.01908082328736782, -0.03872251883149147, 0.026048630475997925, -0.022749291732907295, 0.0160723514854908, -0.012154150754213333, -0.020408976823091507, 0.03539495915174484, 0.06263203173875809, 0.033947404474020004, 0.029409265145659447, -0.00890405848622322, -0.015094715170562267, 0.01477504801005125, -0.042307522147893906, -0.019091246649622917, -0.012930692173540592, 0.004393188748508692, -0.01895870454609394, 0.05637180432677269, 0.031113579869270325, -0.05568724125623703, -0.07464700937271118, 0.035618677735328674, 0.019567782059311867, -0.001312272739596665, 0.005315887276083231, 0.04601192846894264, 0.029933301731944084, 0.044107407331466675, -0.019573146477341652, -0.005437574815005064, -0.0007849712856113911, -0.05094965547323227, 0.02495976723730564, -0.005656249821186066, 0.027242638170719147, 0.01590353436768055, -0.045077405869960785, -0.022372934967279434, 0.060279637575149536, 0.026916036382317543, 0.024275675415992737, 0.0011904309503734112, -0.04601531848311424, 0.04077092558145523, 0.009615172632038593, -0.03562387824058533, 0.03340047597885132, 0.006814986001700163, -0.026017313823103905, 0.04607446491718292, -0.006015574559569359, 0.00467531057074666, 0.06070905551314354, 0.019495131447911263, -0.025976350530982018, 0.06728092581033707, -0.036161575466394424, 0.012041008099913597, 0.04223437234759331, -0.07741881906986237, -0.004833420272916555, -0.05432674288749695, 0.05843157693743706, -0.066135473549366, 0.023206239566206932, 0.054422490298748016, -0.003125387243926525, 0.027124600484967232, -0.054592911154031754, -0.05891983583569527, 0.019221996888518333, -0.03853948041796684, 0.07068599760532379, 0.01145144458860159, -0.0461738184094429, 0.05209203064441681, 0.010698273777961731, -0.06385546922683716, 0.03766127675771713, 0.02885657362639904, 0.05578256770968437, 0.03836982697248459, 0.048439182341098785, -0.04747810959815979, -0.003206060267984867, -0.035393863916397095, 0.01577765680849552, -0.04576192796230316, -0.011848285794258118, 0.03238002210855484, -0.04051242023706436, -0.026602424681186676, 0.03175772726535797, -0.013613407500088215, -0.0189666785299778, 0.053705573081970215, -0.051595333963632584, -0.04166846722364426, 0.014758582226932049, 0.0196219589561224, -0.0442623607814312, -0.016519390046596527, -0.032964639365673065, 0.012976414524018764, 0.011352143250405788, 0.004210492130368948, -0.021700693294405937, -0.016761697828769684, 0.028956465423107147, -0.040643882006406784, -0.03451089933514595, 0.02489141933619976, -0.008366095833480358, -0.02256491780281067, 0.03705193102359772, 0.009432226419448853, 0.010953936725854874, 0.03249196335673332, -0.012946865521371365, 0.02249244600534439, -0.036109376698732376, -0.017961014062166214, 0.030616676434874535, -0.009003255516290665, 0.022000329568982124, 0.008492963388562202, 0.028433579951524734, 0.03481532260775566, 0.021062619984149933, -0.0031184449326246977, -0.0359809473156929, -0.029121631756424904, 0.012832791544497013, -0.04174193739891052, 0.002369282068684697, -0.00495256669819355, -0.05237402766942978, -0.021656639873981476, 0.003978827502578497, -0.046859260648489, 0.03889607638120651, -0.06349340826272964, 0.007050123531371355, 0.04650184139609337, -0.014966536313295364, -0.06230492144823074, -0.11301106959581375, -0.013674790039658546, -0.051982294768095016, -0.014814089983701706, 0.048390768468379974, -0.034549862146377563, 0.0433645099401474, -0.05104159191250801, -0.031411927193403244, 0.04270882532000542, 0.05294543877243996, -0.05705195665359497, 0.06307779252529144, 0.048785462975502014, -0.051479462534189224, 0.011711333878338337, 0.021321425214409828, -0.05015268176794052, 0.003710093442350626, 0.01881863921880722, -0.0011538226390257478, 0.022115522995591164, 0.01751122996211052, -0.059551093727350235, -0.016790691763162613, -0.07108970731496811, -0.04147670418024063, -0.045097336173057556, 0.005645927041769028, 0.048709116876125336 ]
DeepPavlov/bert-base-bg-cs-pl-ru-cased
[ "pytorch", "jax", "bert", "feature-extraction", "bg", "cs", "pl", "ru", "transformers" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
1,614
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-4 results: [] --- <!-- 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__sst2__train-32-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5001 - Accuracy: 0.7650 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7175 | 1.0 | 13 | 0.6822 | 0.5385 | | 0.6559 | 2.0 | 26 | 0.6533 | 0.6154 | | 0.6052 | 3.0 | 39 | 0.5762 | 0.7692 | | 0.4587 | 4.0 | 52 | 0.4477 | 0.8462 | | 0.2459 | 5.0 | 65 | 0.4288 | 0.7692 | | 0.1001 | 6.0 | 78 | 0.5219 | 0.7692 | | 0.0308 | 7.0 | 91 | 0.8540 | 0.7692 | | 0.014 | 8.0 | 104 | 0.7789 | 0.7692 | | 0.0083 | 9.0 | 117 | 0.7996 | 0.7692 | | 0.0064 | 10.0 | 130 | 0.8342 | 0.7692 | | 0.0049 | 11.0 | 143 | 0.8612 | 0.7692 | | 0.0036 | 12.0 | 156 | 0.8834 | 0.7692 | | 0.0032 | 13.0 | 169 | 0.9067 | 0.7692 | | 0.003 | 14.0 | 182 | 0.9332 | 0.7692 | | 0.0028 | 15.0 | 195 | 0.9511 | 0.7692 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014073273167014122, 0.014401004649698734, -0.04456494376063347, 0.041897114366292953, 0.05476072058081627, 0.01636243611574173, -0.018993332982063293, -0.02342272363603115, -0.05484836921095848, 0.06260315328836441, 0.015333759598433971, -0.03373456001281738, 0.008711469359695911, 0.04151082783937454, -0.015803363174200058, -0.03702421486377716, -0.00028228716109879315, -0.014618339017033577, -0.032468974590301514, -0.003640927141532302, 0.0046524303033947945, -0.014084345661103725, -0.0156306941062212, 0.003345208242535591, -0.0060171103104949, 0.015358990989625454, 0.00459338678047061, 0.022336767986416817, 0.03892233222723007, -0.06747553497552872, 0.005971138831228018, -0.028621288016438484, -0.05314711481332779, -0.021928686648607254, -0.012588283978402615, -0.01698245480656624, -0.0038110632449388504, 0.02864130027592182, 0.03511834144592285, 0.03579864278435707, 0.007338119670748711, 0.033977802842855453, -0.0001542804529890418, -0.010332870297133923, 0.06225480139255524, 0.008696663193404675, -0.04053540155291557, 0.0024257551413029432, 0.03970068693161011, -0.022938784211874008, -0.08034218847751617, -0.04508790373802185, -0.016548117622733116, 0.024693213403224945, -0.018424585461616516, -0.014217331074178219, -0.058214835822582245, 0.014459540136158466, 0.06600301712751389, -0.04713134840130806, -0.031174566596746445, 0.0007423371425829828, -0.07305699586868286, 0.0037669572047889233, 0.03827710822224617, -0.023207800462841988, 0.013559081591665745, -0.04961846023797989, 0.025888467207551003, -0.009803574532270432, 0.055926788598299026, -0.020046742632985115, 0.011381339281797409, -0.07369985431432724, -0.016678303480148315, -0.010217282921075821, 0.046058688312768936, 0.05774306878447533, -0.03070228360593319, 0.05244697257876396, 0.02920796535909176, -0.0005348355625756085, 0.04423249512910843, -0.030989281833171844, 0.009915533475577831, 0.03615843877196312, -0.045737288892269135, -0.0006576143787242472, 0.019541746005415916, 0.02890940010547638, -0.03585704416036606, -0.035677336156368256, -0.0308288112282753, -0.032445263117551804, -0.0032064118422567844, 0.020011138170957565, 0.024698534980416298, 0.01755119115114212, 0.036334943026304245, 0.012658072635531425, 0.021084953099489212, 0.03746322914958, -0.01954301819205284, 0.06676755100488663, -0.004418845754116774, -0.009417013265192509, -0.004816934000700712, -0.015154730528593063, -0.05135165527462959, 0.020409349352121353, 0.026121478527784348, -0.021026208996772766, -0.014683608897030354, 0.03801441937685013, 0.005256664473563433, 0.0030117228161543608, 0.07681147754192352, -0.02641495130956173, -0.04226158559322357, -0.03440769761800766, 0.026634689420461655, 0.016473684459924698, -0.019996153190732002, 0.01607610657811165, -0.04584795609116554, -0.017857341095805168, -0.024648012593388557, -0.017307132482528687, -0.01735246367752552, 0.019009200856089592, 0.014154866337776184, 0.06525832414627075, 0.0314093753695488, -0.08757253736257553, 0.005269967019557953, 0.015797968953847885, -0.05543713644146919, 0.04474126920104027, 0.022251738235354424, 0.117547407746315, -0.05786213278770447, -0.0696946457028389, 0.007736166939139366, -0.0012216850882396102, -0.04081067070364952, 0.017213255167007446, -0.00013594393385574222, -0.027880936861038208, 0.007062380667775869, 0.0026119532994925976, 0.0722011998295784, -0.04301584139466286, -0.009708675555884838, 0.07570116966962814, 0.005220270249992609, 0.04606451094150543, -0.05716341733932495, -0.02455817721784115, 0.01732983998954296, -0.024619227275252342, -0.033286482095718384, 0.05023461580276489, -0.028032729402184486, -0.018335653468966484, -0.020312650129199028, -0.025930779054760933, 0.014300157316029072, 0.07312455028295517, -0.005585409700870514, -0.03250344470143318, -0.016317356377840042, 0.025335051119327545, 0.04670244827866554, 0.051786355674266815, -0.0258877482265234, 0.02888951450586319, 0.056473683565855026, 0.027937347069382668, -0.03425975143909454, 0.037651967257261276, 0.022897476330399513, -0.025856629014015198, -0.02086515538394451, 0.03219043090939522, 0.0032545768190175295, -0.04876970872282982, 0.03689613565802574, 0.009696937166154385, 0.005425705574452877, -0.06848185509443283, -0.04486164450645447, 0.03555293753743172, -0.004621196538209915, -0.01182403601706028, 0.01820676401257515, 0.02305588498711586, -0.012873470783233643, 0.04728049039840698, -0.012038258835673332, 0.006955574732273817, -0.024631187319755554, -0.019167520105838776, 0.013451976701617241, -0.02012699842453003, 0.02786136418581009, 0.04921135678887367, -0.0021520594600588083, 0.09527388215065002, -0.04526180773973465, 0.024225087836384773, -0.052060145884752274, -0.03643657639622688, 0.018980933353304863, 0.056628238409757614, 0.055815812200307846, 0.056824371218681335, 0.009024820290505886, -0.028076142072677612, 0.0465271919965744, 0.07205484062433243, 0.048802848905324936, -0.004153197165578604, -0.0296468622982502, -0.016617564484477043, 0.041890960186719894, 0.050885092467069626, -0.04736984148621559, -0.01451047696173191, 0.012369422242045403, 0.031045174226164818, -0.0038819066248834133, 0.018424533307552338, -0.02761751040816307, 0.04016432911157608, -0.047629110515117645, -0.04484246298670769, 0.043112386018037796, 0.01939445361495018, 0.0009344465215690434, 0.02900494448840618, 0.026401614770293236, 0.011142875999212265, 0.02554144151508808, 0.020274264737963676, 0.019139345735311508, -0.05341511592268944, 0.023146286606788635, 0.0074815223924815655, 0.05796006694436073, -0.05161510407924652, 0.03143411874771118, -0.017292555421590805, 0.014374804683029652, 0.039383288472890854, -0.033625636249780655, 0.027828194200992584, 0.051874637603759766, 0.03834979981184006, -0.03873094543814659, 0.027058610692620277, 0.002611099509522319, 0.03341938182711601, 0.042285460978746414, 0.01121092215180397, 0.06912204623222351, 0.02151191234588623, 0.04568803682923317, 0.0754050612449646, 0.01935979723930359, 0.03391648828983307, 0.011968201957643032, 0.07191307842731476, 0.016728738322854042, -0.010733861476182938, 0.04356244206428528, -0.0441213883459568, 0.02440638281404972, -0.0534277968108654, -0.003655415726825595, -0.022232001647353172, -0.008246447890996933, 0.04945236071944237, 0.0285906121134758, -0.03569573163986206, -0.012817814946174622, 0.014255605638027191, -0.008249829523265362, 0.022857369855046272, -0.00593212665989995, 0.010889716446399689, -0.005540524143725634, -0.020498106256127357, -0.029739733785390854, -0.06913167238235474, -0.051196351647377014, -0.029981568455696106, -0.01480335183441639, -0.02264626882970333, -0.08757224678993225, -0.004787006881088018, -0.08645407110452652, -0.020809657871723175, 0.031101159751415253, 0.006524865515530109, -0.024575013667345047, -0.03120393678545952, 0.023061180487275124, -0.04789704084396362, -0.03997522220015526, -0.04187087342143059, -0.05955192819237709, -0.04910280555486679, -0.07970684766769409, 0.03334532305598259, 0.03659643605351448, 0.006947117391973734, 0.0014167646877467632, 0.024506254121661186, 0.0177394300699234, -0.027400381863117218, 0.03834148496389389, 0.06652254611253738, -0.03509299457073212, -0.054834768176078796, 0.03391709551215172, -0.009142926894128323, 0.01806124672293663, 0.02436261624097824, -0.03105044923722744, 0.09032761305570602, 0.07129219174385071, 0.0066994125954806805, 0.021042516455054283, -0.010377464815974236, -0.06411898136138916, -0.06759659200906754, -0.027275923639535904, -0.04134947434067726, -0.009803805500268936, -0.046508632600307465, -0.03917399048805237, -0.0349511094391346, -0.04352133348584175, 0.004145042039453983, -0.015161465853452682, 0.02462220937013626, 0.020896367728710175, 0.040143877267837524, 0.021959317848086357, 0.042699769139289856, -0.03080843761563301, -0.04045228287577629, 0.05875188112258911, 0.01029940601438284, 0.006608779076486826, -0.08421895653009415, -0.0024772165343165398, 0.027326615527272224, 0.01915629580616951, 0.015307915396988392, -0.005940237548202276, 0.07086408138275146, -0.009436922147870064, 0.005718438420444727, 0.013052229769527912, -0.01194298081099987, -0.010759907774627209, -0.000797976681496948, -0.0008237443398684263, 0.0006582138012163341, -0.021729817613959312, -0.0290234237909317, -0.0062156543135643005, 0.030663583427667618, -0.05675346031785011, -0.06169899180531502, -0.016787396743893623, 0.03114384599030018, 0.040284592658281326, -0.0015217168256640434, -0.04885810986161232, -0.009279080666601658, -0.072905533015728, -0.006725687999278307, 0.03920574486255646, 0.01720014400780201, -0.0031408003997057676, 0.042388442903757095, 0.01722472533583641, -0.007733600679785013, 0.02925606071949005, 0.05290232226252556, 0.073233462870121, 0.010011781938374043, -0.08183012902736664, -0.00005021786273573525, -0.015816524624824524, 0.013146042823791504, -0.009224440902471542, -0.0173605065792799, -0.020914249122142792, -0.1005568578839302, -0.020995711907744408, 0.015584892593324184, 0.010887231677770615, -0.016168832778930664, 0.03531322628259659, 0.003795878728851676, -0.026707960292696953, -0.0070203677751123905, 0.01323391031473875, 0.04570070281624794, -0.025582706555724144, 0.052112918347120285, -0.030749022960662842, -0.0012432513758540154, -0.057302482426166534, 0.016647974029183388, -0.05231819301843643, -0.022206438705325127, 0.014942023903131485, 0.04764761030673981, -0.029513834044337273, 0.05339490622282028, 0.07291296124458313, 0.040870875120162964, -0.048223379999399185, 0.03870316594839096, 0.07151253521442413, -0.042590465396642685, -0.04635894298553467, -0.004910984542220831, 0.003183632157742977, -0.01405404508113861, 0.0056374771520495415, -0.0013841195032000542, 0.05405024066567421, 0.02970738895237446, 0.0023659723810851574, 0.001679847133345902, -0.007855134084820747, -0.008498596027493477, -0.025215882807970047, -0.0481693297624588, -0.028238780796527863, 0.0027314084582030773, -0.02846231497824192, 0.023331379517912865, 0.024726402014493942, 0.030312128365039825, 0.0716964453458786, 0.01781654916703701, -0.03850473836064339, -0.004588840063661337, 0.025367438793182373, 0.00788915529847145, -0.018797779455780983, -0.06850392371416092, -0.039503540843725204, 0.031128747388720512, 0.04906001687049866, -0.022759689018130302, -0.06317361444234848, 0.0140543757006526, 0.05076602101325989, -0.05899990350008011, 0.05910850316286087, -0.004845283925533295, 0.05406036600470543, 0.05475056916475296, -0.009385858662426472, 0.0412370041012764, -0.020080361515283585, -0.00775336567312479, -0.0037792492657899857, 0.03719308227300644, -0.010620913468301296, -0.032652731984853745, -0.049400992691516876, 0.02084532380104065, 0.039597414433956146, 0.03067116066813469, 0.04537425562739372, -0.03369535133242607, -0.042588528245687485, 0.0068093352019786835, 0.02374463900923729, -0.04098912701010704, -0.00833097007125616, 0.03890660032629967, 0.02992137521505356, -0.048828065395355225, -0.024018367752432823, -0.023271555081009865, -0.012130046263337135, 0.038561929017305374, 0.007645192556083202, -0.017297029495239258, -0.04496277496218681, 0.037520039826631546, -0.01777862384915352, -0.026700982823967934, -0.06524759531021118, 0.050383832305669785, -0.014394632540643215, -0.021274423226714134, 0.05513867363333702, 0.033265139907598495, 0.020128924399614334, 0.07209694385528564, 0.0370154045522213, 0.018407396972179413, -0.03542682155966759, 0.040327779948711395, -0.03258682042360306, -0.01816471666097641, 0.006142483092844486, -0.030331172049045563, -0.0372222363948822, -0.0021665426902472973, -0.06335141509771347, -0.0358334481716156, -0.027813615277409554, 0.01776054874062538, 0.0029156154487282038, -0.018262414261698723, -0.0002180979063268751, 0.05884820222854614, -0.0034529922995716333, -0.04166552796959877, -0.04845648631453514, -0.01557267364114523, -0.06688716262578964, -0.05369560793042183, 0.0012022589799016714, 0.005911235231906176, 0.031023573130369186, 0.035871244966983795, 0.023719295859336853, 0.019184119999408722, 0.018301112577319145, -0.042113713920116425, 0.01352377887815237, 0.017104020342230797, -0.04102718457579613, -0.021680818870663643, 0.03741823136806488, 0.009497380815446377, 0.02500992640852928, -0.035849373787641525, 0.03719250485301018, -0.00017585244495421648, -0.003829916939139366, -0.02603955939412117, 0.01568487100303173, 0.028227338567376137, -0.06005508452653885, -0.03461543470621109, -0.017553266137838364, -0.028121860697865486, 0.03136099502444267, -0.025914663448929787, -0.021845337003469467, 0.011990888975560665, 0.0032699417788535357, 0.03612367808818817, -0.032691240310668945, -0.012877117842435837, 0.02803850546479225, -0.002747864229604602, 0.01612476073205471, -0.05725492164492607, 0.06357011944055557, -0.03763855993747711, 0.026968304067850113, -0.021657127887010574, 0.010087990202009678, -0.021112525835633278, 0.023894377052783966, -0.023535316810011864, -0.02200244553387165, -0.012100644409656525, 0.05622151121497154, -0.012399931438267231, 0.030066045001149178, -0.010734413750469685, 0.040251024067401886, -0.029636621475219727, 0.07077045738697052, -0.0395897813141346, 0.01996736042201519, -0.04112779349088669, 0.026980534195899963, -0.020206255838274956, 0.018506156280636787, -0.012154245749115944, -0.018856555223464966, 0.03375305235385895, 0.061400968581438065, 0.03542586416006088, 0.029584558680653572, -0.005961458198726177, -0.014538142830133438, 0.01358772162348032, -0.04254531115293503, -0.019969338551163673, -0.01381454337388277, 0.0022401900496333838, -0.019831323996186256, 0.055761247873306274, 0.03149057552218437, -0.05641130357980728, -0.07476937770843506, 0.03761287033557892, 0.017528027296066284, -0.0001771736133377999, 0.005183981731534004, 0.047660794109106064, 0.031680237501859665, 0.043575920164585114, -0.017335833981633186, -0.005527871195226908, 0.0006789214676246047, -0.05084604024887085, 0.026910779997706413, -0.0037848935462534428, 0.02845011092722416, 0.013839229941368103, -0.043527111411094666, -0.02143024280667305, 0.05845212936401367, 0.02600844018161297, 0.023606261238455772, 0.0011216802522540092, -0.044871896505355835, 0.038539011031389236, 0.006866213865578175, -0.03410771116614342, 0.031759221106767654, 0.006278992164880037, -0.024557923898100853, 0.04283813014626503, -0.0087754987180233, 0.00474729435518384, 0.06264515221118927, 0.01860753819346428, -0.022087689489126205, 0.06932875514030457, -0.03623216226696968, 0.012322443537414074, 0.04376048594713211, -0.08016420900821686, -0.007111978251487017, -0.05168050155043602, 0.05782390013337135, -0.06697705388069153, 0.0240798257291317, 0.05541505292057991, -0.002793733961880207, 0.027661578729748726, -0.05233965441584587, -0.06087246537208557, 0.018621623516082764, -0.03996765613555908, 0.0708569586277008, 0.01103152334690094, -0.04606980085372925, 0.05297470465302467, 0.011167540214955807, -0.06280996650457382, 0.03569624200463295, 0.02741139382123947, 0.054272327572107315, 0.03814324364066124, 0.04629560187458992, -0.04623420909047127, -0.0017960346303880215, -0.03405675292015076, 0.016353294253349304, -0.04892590641975403, -0.014242913573980331, 0.034903641790151596, -0.04234941303730011, -0.026538148522377014, 0.03195406123995781, -0.011654687114059925, -0.019225571304559708, 0.051064394414424896, -0.050212375819683075, -0.03847438097000122, 0.013678407296538353, 0.01882169581949711, -0.04443718492984772, -0.014364833012223244, -0.03183693066239357, 0.012899057939648628, 0.011111965402960777, 0.004298527259379625, -0.020174862816929817, -0.018697993829846382, 0.030867449939250946, -0.042191486805677414, -0.034061141312122345, 0.021732287481427193, -0.00886946264654398, -0.021884217858314514, 0.037274185568094254, 0.009306740947067738, 0.013962337747216225, 0.03128657117486, -0.013969318941235542, 0.020459990948438644, -0.03420150652527809, -0.017892051488161087, 0.02735903486609459, -0.008291300386190414, 0.021657094359397888, 0.011745437979698181, 0.03211473673582077, 0.03731045126914978, 0.02426874451339245, -0.0037991453427821398, -0.034011319279670715, -0.030880032107234, 0.014821283519268036, -0.04184237867593765, 0.004750625696033239, -0.006337219849228859, -0.05088888853788376, -0.023799752816557884, 0.0013526880647987127, -0.044920336455106735, 0.03952263295650482, -0.06307009607553482, 0.009215428493916988, 0.045389268547296524, -0.017613524571061134, -0.06003250181674957, -0.11452843248844147, -0.014107531867921352, -0.05198752135038376, -0.0159190371632576, 0.05003627762198448, -0.03606300801038742, 0.04400709271430969, -0.04897519573569298, -0.030688907951116562, 0.040877919644117355, 0.05265336111187935, -0.05700576305389404, 0.06204942986369133, 0.0467488095164299, -0.04965353012084961, 0.012994763441383839, 0.022521646693348885, -0.04933663085103035, 0.0018696599872782826, 0.016054244711995125, -0.001961146481335163, 0.023396307602524757, 0.015314629301428795, -0.06016496196389198, -0.019765807315707207, -0.07208278030157089, -0.039729248732328415, -0.044855907559394836, 0.008074313402175903, 0.04761769250035286 ]
DeepPavlov/bert-base-cased-conversational
[ "pytorch", "jax", "bert", "feature-extraction", "en", "transformers" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3,009
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-5 results: [] --- <!-- 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__sst2__train-32-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6248 - Accuracy: 0.6826 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7136 | 1.0 | 13 | 0.6850 | 0.5385 | | 0.6496 | 2.0 | 26 | 0.6670 | 0.6154 | | 0.5895 | 3.0 | 39 | 0.6464 | 0.7692 | | 0.4271 | 4.0 | 52 | 0.6478 | 0.7692 | | 0.2182 | 5.0 | 65 | 0.6809 | 0.6923 | | 0.103 | 6.0 | 78 | 0.9119 | 0.6923 | | 0.0326 | 7.0 | 91 | 1.0718 | 0.6923 | | 0.0154 | 8.0 | 104 | 1.0721 | 0.7692 | | 0.0087 | 9.0 | 117 | 1.1416 | 0.7692 | | 0.0067 | 10.0 | 130 | 1.2088 | 0.7692 | | 0.005 | 11.0 | 143 | 1.2656 | 0.7692 | | 0.0037 | 12.0 | 156 | 1.3104 | 0.7692 | | 0.0032 | 13.0 | 169 | 1.3428 | 0.6923 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01125630084425211, 0.013597676530480385, -0.04351560026407242, 0.04166969284415245, 0.051572926342487335, 0.015893317759037018, -0.020159969106316566, -0.023681405931711197, -0.0554928258061409, 0.06265614926815033, 0.017750795930624008, -0.03238861635327339, 0.009007238782942295, 0.043583039194345474, -0.015833908692002296, -0.03669571503996849, -0.00008661075844429433, -0.012921650893986225, -0.03282293304800987, -0.002267979783937335, 0.004372680559754372, -0.015040191821753979, -0.016446927562355995, 0.0036199826281517744, -0.004531144630163908, 0.01760341413319111, 0.007218956481665373, 0.02255219779908657, 0.03775379806756973, -0.06885579228401184, 0.006396520882844925, -0.029862243682146072, -0.05265376344323158, -0.023594152182340622, -0.01209371816366911, -0.017175745218992233, -0.005660488735884428, 0.02559434249997139, 0.03559879586100578, 0.036899540573358536, 0.00853860005736351, 0.03211025893688202, -0.001558126648887992, -0.010767566040158272, 0.06271481513977051, 0.009190654382109642, -0.03891477733850479, -0.000017666696294327267, 0.040417734533548355, -0.023239362984895706, -0.08040749281644821, -0.04802745580673218, -0.017790576443076134, 0.02300349250435829, -0.019600043073296547, -0.01518266461789608, -0.059815749526023865, 0.017146386206150055, 0.06431479007005692, -0.047669392079114914, -0.0306421909481287, -0.00005176770355319604, -0.07157780975103378, 0.004521109629422426, 0.03700125589966774, -0.019990097731351852, 0.012575074099004269, -0.049894530326128006, 0.02517036721110344, -0.011891345493495464, 0.05308522656559944, -0.02020387537777424, 0.01150605734437704, -0.07118161022663116, -0.01831008680164814, -0.00886143185198307, 0.042775291949510574, 0.05919995903968811, -0.032401591539382935, 0.050871871411800385, 0.03092089667916298, -0.0022953266743570566, 0.0448991023004055, -0.031277406960725784, 0.010340014472603798, 0.03347282484173775, -0.04435868188738823, -0.0010143041145056486, 0.01766228675842285, 0.026450827717781067, -0.037646278738975525, -0.0360160768032074, -0.02863360568881035, -0.032723281532526016, -0.002847200958058238, 0.019302569329738617, 0.02510734088718891, 0.017282243818044662, 0.03777168691158295, 0.010911582037806511, 0.026453759521245956, 0.03828710317611694, -0.015914270654320717, 0.06828095018863678, -0.005328953731805086, -0.009257452562451363, -0.0036721713840961456, -0.017353711649775505, -0.051381614059209824, 0.021760758012533188, 0.02587614580988884, -0.020505685359239578, -0.013268806040287018, 0.03665903955698013, 0.004347467329353094, 0.005528086796402931, 0.07747084647417068, -0.02583443932235241, -0.04161316528916359, -0.028523297980427742, 0.025862514972686768, 0.015976272523403168, -0.017366399988532066, 0.014841373078525066, -0.04376562312245369, -0.01787554658949375, -0.026085803285241127, -0.018948497250676155, -0.020433209836483, 0.022352835163474083, 0.014866963028907776, 0.06493371725082397, 0.03185363858938217, -0.08803372830152512, 0.005281725898385048, 0.01424137782305479, -0.05551092326641083, 0.047666750848293304, 0.023180071264505386, 0.11783945560455322, -0.056467413902282715, -0.0689127966761589, 0.008017327636480331, -0.0030060706194490194, -0.0434190109372139, 0.014386207796633244, 0.0007473943987861276, -0.026379911229014397, 0.005661290604621172, 0.003542703576385975, 0.0694708526134491, -0.039639852941036224, -0.007882903330028057, 0.07283460348844528, 0.004809870384633541, 0.043245043605566025, -0.05442117527127266, -0.025509783998131752, 0.01812470145523548, -0.022812597453594208, -0.03233268857002258, 0.04884570091962814, -0.029328184202313423, -0.02177969366312027, -0.020813247188925743, -0.025114748626947403, 0.012826919555664062, 0.07332329452037811, -0.006524072028696537, -0.03278544545173645, -0.017507536336779594, 0.022027548402547836, 0.048413775861263275, 0.05214211344718933, -0.027300097048282623, 0.026657210662961006, 0.057251084595918655, 0.028498893603682518, -0.03158377856016159, 0.03911065682768822, 0.0246087908744812, -0.02620927430689335, -0.01880953088402748, 0.03186197951436043, 0.004965321626514196, -0.04836171492934227, 0.03956142067909241, 0.015005111694335938, 0.00561321247369051, -0.06809304654598236, -0.04396774619817734, 0.04078143835067749, -0.005124242976307869, -0.009839759208261967, 0.012563742697238922, 0.023132316768169403, -0.013538478873670101, 0.04654918611049652, -0.011540267616510391, 0.009269075468182564, -0.022408897057175636, -0.019298696890473366, 0.01353040337562561, -0.021161990240216255, 0.027903862297534943, 0.04758186265826225, -0.001024645403958857, 0.09411808103322983, -0.04916445165872574, 0.02163456194102764, -0.05553640425205231, -0.03563215211033821, 0.01846577785909176, 0.05718054994940758, 0.05530369281768799, 0.05482862517237663, 0.006182127632200718, -0.027454860508441925, 0.04598838835954666, 0.07163109630346298, 0.04711500182747841, -0.007329985499382019, -0.03098946623504162, -0.017548905685544014, 0.04306558892130852, 0.05297914519906044, -0.048137057572603226, -0.013513265177607536, 0.011898322962224483, 0.03148245811462402, -0.004065988585352898, 0.01709802821278572, -0.025739358738064766, 0.038326721638441086, -0.04834292083978653, -0.03978171944618225, 0.04237600788474083, 0.017061205580830574, 0.001527773099951446, 0.029834918677806854, 0.024471314623951912, 0.010644039139151573, 0.023630879819393158, 0.02057463489472866, 0.018259089440107346, -0.053287141025066376, 0.024619290605187416, 0.004817422945052385, 0.057192906737327576, -0.05365286022424698, 0.03271641954779625, -0.01886209473013878, 0.015042954124510288, 0.042614273726940155, -0.03158142790198326, 0.02509201318025589, 0.05015873536467552, 0.03544067218899727, -0.03863145038485527, 0.02536543272435665, 0.003916359972208738, 0.03488289564847946, 0.041935887187719345, 0.009342862293124199, 0.06898844242095947, 0.02269921451807022, 0.04070362076163292, 0.07527577877044678, 0.0189426988363266, 0.03399478644132614, 0.013072645291686058, 0.07163819670677185, 0.019028883427381516, -0.011010803282260895, 0.04616302624344826, -0.0465439036488533, 0.020747633650898933, -0.0511937141418457, -0.004158315248787403, -0.025477567687630653, -0.008259883150458336, 0.051210932433605194, 0.0290333554148674, -0.036686189472675323, -0.0143777159973979, 0.016324425116181374, -0.007436108309775591, 0.02198064886033535, -0.006241440773010254, 0.010145838372409344, -0.00593069801107049, -0.021935153752565384, -0.026985902339220047, -0.06869689375162125, -0.052892766892910004, -0.030383411794900894, -0.015327183529734612, -0.02253940887749195, -0.09133422374725342, -0.0065227653831243515, -0.08707881718873978, -0.023594405502080917, 0.02806880697607994, 0.008051498793065548, -0.02627236396074295, -0.031143371015787125, 0.021422844380140305, -0.047445736825466156, -0.03972155600786209, -0.04266439005732536, -0.0605175755918026, -0.0482814759016037, -0.08264419436454773, 0.036242011934518814, 0.036125462502241135, 0.008057137951254845, 0.000971454253885895, 0.026338359341025352, 0.01615784876048565, -0.030201904475688934, 0.0394517183303833, 0.06399717181921005, -0.038454268127679825, -0.05813673883676529, 0.032344087958335876, -0.008183702826499939, 0.017747780308127403, 0.023910406976938248, -0.02911544404923916, 0.08903343230485916, 0.07280431687831879, 0.00680895522236824, 0.023032119497656822, -0.007263122592121363, -0.06247083470225334, -0.06511612236499786, -0.02417733520269394, -0.040770623832941055, -0.008507727645337582, -0.046373602002859116, -0.037775855511426926, -0.036549970507621765, -0.04404905438423157, 0.0045050219632685184, -0.012931976467370987, 0.023754702880978584, 0.020501265302300453, 0.03973516821861267, 0.021533910185098648, 0.044569533318281174, -0.02960881032049656, -0.03984331339597702, 0.057076722383499146, 0.013912694528698921, 0.00325105432420969, -0.08506880700588226, -0.0024295318871736526, 0.027653511613607407, 0.017041772603988647, 0.017173217609524727, -0.004016565158963203, 0.07177485525608063, -0.010975930839776993, 0.003168805269524455, 0.012901040725409985, -0.009678224101662636, -0.011729581281542778, -0.0014818994095548987, -0.004635629244148731, 0.003431961638852954, -0.022670995444059372, -0.03458021953701973, -0.007616306189447641, 0.029003197327256203, -0.05717984586954117, -0.06223827973008156, -0.018126551061868668, 0.032164182513952255, 0.040946114808321, -0.004485638812184334, -0.048986222594976425, -0.008959130384027958, -0.07381489872932434, -0.004231863189488649, 0.03838202729821205, 0.015551385469734669, -0.0034697020892053843, 0.041128285229206085, 0.015532469376921654, -0.007217748556286097, 0.030787015333771706, 0.05353633314371109, 0.06978675723075867, 0.00990231055766344, -0.08198820054531097, -0.001128389616496861, -0.017454300075769424, 0.012307001277804375, -0.008852962404489517, -0.01904921606183052, -0.022169148549437523, -0.09960345923900604, -0.022000299766659737, 0.01791183464229107, 0.012099257670342922, -0.017894411459565163, 0.03451135754585266, 0.003519173013046384, -0.030815519392490387, -0.009522096253931522, 0.013152029365301132, 0.04662937670946121, -0.028954917564988136, 0.05169067904353142, -0.02936938777565956, 0.0012710934970527887, -0.05827512964606285, 0.017035625874996185, -0.051270294934511185, -0.02067224495112896, 0.012627439573407173, 0.04568219184875488, -0.026381738483905792, 0.05521215498447418, 0.0689491257071495, 0.04061577469110489, -0.052356086671352386, 0.03881701081991196, 0.07505912333726883, -0.041340913623571396, -0.046271875500679016, -0.004907671827822924, 0.0021820003166794777, -0.012912532314658165, 0.004316473845392466, -0.004186668433248997, 0.05245724320411682, 0.027578039094805717, 0.001486171968281269, 0.0003246078558731824, -0.008969723246991634, -0.007680200971662998, -0.026522502303123474, -0.050913434475660324, -0.02962890826165676, 0.0025608879514038563, -0.02783868834376335, 0.024708569049835205, 0.023756077513098717, 0.031655170023441315, 0.07291349768638611, 0.018225861713290215, -0.04129572957754135, -0.0022044077049940825, 0.020780079066753387, 0.009897171519696712, -0.01610553450882435, -0.07004270702600479, -0.04356897249817848, 0.028006399050354958, 0.049262505024671555, -0.022838113829493523, -0.06229357421398163, 0.01582542061805725, 0.052173539996147156, -0.0587620846927166, 0.0597393736243248, -0.004362471867352724, 0.05395978316664696, 0.054471611976623535, -0.007291719317436218, 0.0423746258020401, -0.020957112312316895, -0.0051775784231722355, -0.004466572776436806, 0.039295390248298645, -0.00979327317327261, -0.03285862132906914, -0.04849657043814659, 0.022632790729403496, 0.0386655293405056, 0.03126245737075806, 0.04456343129277229, -0.03358450159430504, -0.044581878930330276, 0.007401934824883938, 0.020941849797964096, -0.04095464572310448, -0.006855836603790522, 0.04119956120848656, 0.030985819175839424, -0.04595014452934265, -0.022073689848184586, -0.022910436615347862, -0.014548280276358128, 0.03919874504208565, 0.008037823252379894, -0.02006913162767887, -0.04376700147986412, 0.04010142385959625, -0.016019562259316444, -0.028929920867085457, -0.06606274843215942, 0.0455009900033474, -0.015617317520081997, -0.022824589163064957, 0.054715193808078766, 0.03534566983580589, 0.018847288563847542, 0.07316884398460388, 0.03416357561945915, 0.014987483620643616, -0.03433506190776825, 0.041343655437231064, -0.03000487945973873, -0.016635127365589142, 0.004184752237051725, -0.03056499734520912, -0.03681305795907974, 0.00005692855120287277, -0.06355175375938416, -0.036870136857032776, -0.03033820167183876, 0.01719980500638485, 0.00152451335452497, -0.019630756229162216, -0.0004957297933287919, 0.05927964299917221, -0.008169135078787804, -0.04095958545804024, -0.046142805367708206, -0.012328931130468845, -0.0686567947268486, -0.051765963435173035, 0.0004584575945045799, 0.008461193181574345, 0.03496750816702843, 0.03483360633254051, 0.024122091010212898, 0.019865386188030243, 0.01903543435037136, -0.03814965486526489, 0.012616843916475773, 0.017332464456558228, -0.04144340381026268, -0.02048751339316368, 0.03605036064982414, 0.010746857151389122, 0.02643015794456005, -0.038020674139261246, 0.03512800484895706, 0.0019742422737181187, -0.004096891265362501, -0.02531309425830841, 0.015556198544800282, 0.029894238337874413, -0.060734495520591736, -0.036577437072992325, -0.01669430360198021, -0.026621820405125618, 0.031255681067705154, -0.026277780532836914, -0.022590093314647675, 0.013748036697506905, 0.0026432890444993973, 0.03621980920433998, -0.0362040176987648, -0.01230977475643158, 0.02858400158584118, -0.0013677997048944235, 0.018951816484332085, -0.055475011467933655, 0.062459398061037064, -0.036112554371356964, 0.024478554725646973, -0.022949380800127983, 0.008864693343639374, -0.01980535127222538, 0.02812795527279377, -0.025554973632097244, -0.023779505863785744, -0.01365641225129366, 0.0588093101978302, -0.01143103837966919, 0.03064010664820671, -0.00839207787066698, 0.03764023259282112, -0.02936410717666149, 0.06979641318321228, -0.038867056369781494, 0.02061367779970169, -0.04259701073169708, 0.026816001161932945, -0.020868349820375443, 0.016260476782917976, -0.013856688514351845, -0.019500548020005226, 0.03334636613726616, 0.06194046884775162, 0.0341978520154953, 0.031070737168192863, -0.0035672057420015335, -0.014883465133607388, 0.012050283141434193, -0.04229966551065445, -0.02185363695025444, -0.01175902970135212, 0.00045004853745922446, -0.02223943918943405, 0.05398648604750633, 0.030193397775292397, -0.05714685469865799, -0.07326285541057587, 0.03622448071837425, 0.0176705289632082, 0.000039762693631928414, 0.006541176699101925, 0.04752110317349434, 0.03293733298778534, 0.04210462421178818, -0.018602611497044563, -0.004290443379431963, 0.0015348461456596851, -0.05053168535232544, 0.02613205276429653, -0.00364315090700984, 0.029214240610599518, 0.014944887720048428, -0.04314406216144562, -0.022414978593587875, 0.05833103135228157, 0.02565331943333149, 0.023547347635030746, 0.001876574708148837, -0.04548712447285652, 0.03760639205574989, 0.00975493062287569, -0.03598314896225929, 0.03139659762382507, 0.009333640336990356, -0.023531025275588036, 0.04701479524374008, -0.009885597042739391, 0.002971586538478732, 0.06110939756035805, 0.01765333116054535, -0.021829793229699135, 0.07085084915161133, -0.0388554111123085, 0.009839863516390324, 0.04182252287864685, -0.07533696293830872, -0.005865728948265314, -0.05157097429037094, 0.058262068778276443, -0.06649703532457352, 0.022829733788967133, 0.05514826998114586, -0.0008831063169054687, 0.026799611747264862, -0.05089281126856804, -0.06084473803639412, 0.017751405015587807, -0.04067213460803032, 0.06985645741224289, 0.011212342418730259, -0.04587016627192497, 0.05357639491558075, 0.013355880975723267, -0.06585098057985306, 0.036182403564453125, 0.027932241559028625, 0.055698029696941376, 0.039170537143945694, 0.04650813341140747, -0.044055353850126266, -0.002660520141944289, -0.033905938267707825, 0.015628032386302948, -0.05171530321240425, -0.014206834137439728, 0.03687141835689545, -0.04379876330494881, -0.02589317411184311, 0.03221697732806206, -0.014238031581044197, -0.01727863773703575, 0.05268937349319458, -0.05270624905824661, -0.03900916874408722, 0.01363435760140419, 0.018171273171901703, -0.04351760819554329, -0.013972853310406208, -0.031920403242111206, 0.014402113854885101, 0.009771794080734253, 0.0005447928560897708, -0.02066577970981598, -0.016394946724176407, 0.02738339640200138, -0.042222753167152405, -0.03298446536064148, 0.02106592431664467, -0.007606230676174164, -0.023680554702878, 0.03902227059006691, 0.00928435567766428, 0.012449991889297962, 0.030551616102457047, -0.013797568157315254, 0.026992933824658394, -0.03682233765721321, -0.017122313380241394, 0.03137146309018135, -0.006633048411458731, 0.019901931285858154, 0.010521378368139267, 0.033558204770088196, 0.03714938461780548, 0.022271808236837387, -0.002269480377435684, -0.033054169267416, -0.030426574870944023, 0.014906383119523525, -0.04116450622677803, 0.005302272737026215, -0.007096696179360151, -0.051467761397361755, -0.02110244892537594, -0.00005788229827885516, -0.043928734958171844, 0.03847070038318634, -0.06275026500225067, 0.00785038247704506, 0.04702667519450188, -0.016416538506746292, -0.05939071625471115, -0.11360964924097061, -0.013233383186161518, -0.056409385055303574, -0.015257678925991058, 0.05082019418478012, -0.038185909390449524, 0.045156992971897125, -0.05016980692744255, -0.033083006739616394, 0.04002178832888603, 0.05070206895470619, -0.05631757900118828, 0.06214740499854088, 0.04393592104315758, -0.04871795326471329, 0.012586412951350212, 0.023761911317706108, -0.051513150334358215, 0.0007667163154110312, 0.016046231612563133, -0.003669377649202943, 0.022783704102039337, 0.014611447229981422, -0.05951329693198204, -0.020367955788969994, -0.07044215500354767, -0.0385860837996006, -0.04505075886845589, 0.006199972238391638, 0.04877599701285362 ]
DeepPavlov/bert-base-multilingual-cased-sentence
[ "pytorch", "jax", "bert", "feature-extraction", "multilingual", "arxiv:1704.05426", "arxiv:1809.05053", "arxiv:1908.10084", "transformers" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
140
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-6 results: [] --- <!-- 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__sst2__train-32-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5072 - Accuracy: 0.7650 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7057 | 1.0 | 13 | 0.6704 | 0.6923 | | 0.6489 | 2.0 | 26 | 0.6228 | 0.8462 | | 0.5475 | 3.0 | 39 | 0.5079 | 0.8462 | | 0.4014 | 4.0 | 52 | 0.4203 | 0.8462 | | 0.1923 | 5.0 | 65 | 0.3872 | 0.8462 | | 0.1014 | 6.0 | 78 | 0.4909 | 0.8462 | | 0.0349 | 7.0 | 91 | 0.5460 | 0.8462 | | 0.0173 | 8.0 | 104 | 0.4867 | 0.8462 | | 0.0098 | 9.0 | 117 | 0.5274 | 0.8462 | | 0.0075 | 10.0 | 130 | 0.6086 | 0.8462 | | 0.0057 | 11.0 | 143 | 0.6604 | 0.8462 | | 0.0041 | 12.0 | 156 | 0.6904 | 0.8462 | | 0.0037 | 13.0 | 169 | 0.7164 | 0.8462 | | 0.0034 | 14.0 | 182 | 0.7368 | 0.8462 | | 0.0031 | 15.0 | 195 | 0.7565 | 0.8462 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013860117644071579, 0.01392627228051424, -0.042423516511917114, 0.043169453740119934, 0.05206870287656784, 0.014917537569999695, -0.01796015538275242, -0.02516791969537735, -0.056840408593416214, 0.06113235652446747, 0.01595056615769863, -0.03520527109503746, 0.00979489367455244, 0.041499581187963486, -0.015222584828734398, -0.03647405654191971, 0.0001295370311709121, -0.011558310128748417, -0.03323933109641075, -0.002724009333178401, 0.005841412581503391, -0.015496894717216492, -0.01529301144182682, 0.0030194642022252083, -0.005762276705354452, 0.017131967470049858, 0.006487388163805008, 0.02061711996793747, 0.03897831588983536, -0.06911547482013702, 0.0077247004956007, -0.029233809560537338, -0.05074724555015564, -0.0225676279515028, -0.012299641035497189, -0.016369443386793137, -0.006105331238359213, 0.02769836224615574, 0.038350675255060196, 0.03675548732280731, 0.008082248270511627, 0.028953274711966515, 0.00045587492058984935, -0.011969856917858124, 0.06049450486898422, 0.011050011031329632, -0.03914310410618782, 0.000249486998654902, 0.03888167813420296, -0.025450412184000015, -0.08040010184049606, -0.04530739411711693, -0.017524192109704018, 0.022203512489795685, -0.017543459311127663, -0.013351891189813614, -0.056632157415151596, 0.016018522903323174, 0.06544852256774902, -0.044884439557790756, -0.02841062843799591, 0.00013244988804217428, -0.07074762880802155, 0.004488603211939335, 0.03590633347630501, -0.01999323070049286, 0.01441220473498106, -0.05116547271609306, 0.024559220299124718, -0.010864713229238987, 0.05309067294001579, -0.02042279951274395, 0.01143408939242363, -0.07136883586645126, -0.02050548605620861, -0.007736165076494217, 0.04589901864528656, 0.059953685849905014, -0.03133908659219742, 0.053485315293073654, 0.02912176586687565, 0.00020159437553957105, 0.04594813287258148, -0.02982816845178604, 0.011361508630216122, 0.03600436449050903, -0.045432791113853455, 0.0013434787979349494, 0.017538564279675484, 0.02835949696600437, -0.03694877028465271, -0.038534343242645264, -0.031238971278071404, -0.034035105258226395, -0.0011101423297077417, 0.02210603468120098, 0.02482420764863491, 0.018000060692429543, 0.03962927684187889, 0.014144443906843662, 0.03001021407544613, 0.03801153972744942, -0.017222944647073746, 0.06557104736566544, -0.003051512874662876, -0.012423637323081493, -0.0037817680276930332, -0.019528349861502647, -0.05046703666448593, 0.02208983339369297, 0.027176305651664734, -0.02092163823544979, -0.012018455192446709, 0.03645594045519829, 0.005094884894788265, 0.0019126514671370387, 0.07766066491603851, -0.024585707113146782, -0.04221905767917633, -0.0321589931845665, 0.027394449338316917, 0.01649152673780918, -0.017994027584791183, 0.017257172614336014, -0.045207712799310684, -0.017231876030564308, -0.026346856728196144, -0.018877018243074417, -0.020176896825432777, 0.020723607391119003, 0.01922772079706192, 0.0690535381436348, 0.029075663536787033, -0.08823637664318085, 0.0058617317117750645, 0.01770847663283348, -0.056551817804574966, 0.04789544641971588, 0.02347632311284542, 0.11619500070810318, -0.06043779477477074, -0.06505792587995529, 0.007729783188551664, -0.00006729001324856654, -0.041208814829587936, 0.015475258231163025, -0.0006239500944502652, -0.02875497005879879, 0.0062440079636871815, 0.0026038174983114004, 0.071485236287117, -0.03975933417677879, -0.012072070501744747, 0.07517595589160919, 0.0023435046896338463, 0.043776050209999084, -0.054153118282556534, -0.024242263287305832, 0.017614901065826416, -0.023150749504566193, -0.03213436156511307, 0.05019755661487579, -0.03079572506248951, -0.020281165838241577, -0.018425816670060158, -0.023507824167609215, 0.011096825823187828, 0.07447655498981476, -0.00740811787545681, -0.0314326286315918, -0.017360741272568703, 0.02259991690516472, 0.047092366963624954, 0.04820074513554573, -0.027456190437078476, 0.027768123894929886, 0.05953644588589668, 0.02788509614765644, -0.03217108175158501, 0.03894448280334473, 0.02077845111489296, -0.02787815034389496, -0.019326597452163696, 0.03408132493495941, 0.002676520263776183, -0.04542864114046097, 0.039098940789699554, 0.01322720292955637, 0.003948664292693138, -0.06870991736650467, -0.04557519033551216, 0.03734097629785538, -0.007114965468645096, -0.008287864737212658, 0.017877629026770592, 0.022079039365053177, -0.013825375586748123, 0.04518826678395271, -0.010435209609568119, 0.00782295223325491, -0.022077342495322227, -0.020291810855269432, 0.013573276810348034, -0.021949874237179756, 0.027727605774998665, 0.04840153828263283, -0.003723662346601486, 0.0932852253317833, -0.04656388983130455, 0.01970766671001911, -0.052720461040735245, -0.03663118556141853, 0.0183611661195755, 0.055623698979616165, 0.0552668459713459, 0.05715399608016014, 0.006723510567098856, -0.02652297355234623, 0.043922796845436096, 0.07246706634759903, 0.04686090350151062, -0.007914092391729355, -0.03312687948346138, -0.015608870424330235, 0.04096338525414467, 0.05180973559617996, -0.04778867959976196, -0.012955793179571629, 0.012837340123951435, 0.031641896814107895, -0.0025340153370052576, 0.017103731632232666, -0.028548400849103928, 0.03738388046622276, -0.04720241203904152, -0.041990652680397034, 0.04247572273015976, 0.017552459612488747, -0.0021529041696339846, 0.026865435764193535, 0.026998456567525864, 0.00927196629345417, 0.023085568100214005, 0.02138468809425831, 0.01970142312347889, -0.05391446128487587, 0.022208208218216896, 0.003382432973012328, 0.05470189452171326, -0.05285080894827843, 0.03165282681584358, -0.016482550650835037, 0.016390185803174973, 0.0431547574698925, -0.03318539261817932, 0.026188211515545845, 0.05262632668018341, 0.03364646062254906, -0.037413761019706726, 0.025952093303203583, 0.0010097771883010864, 0.03350280225276947, 0.040068358182907104, 0.009567316621541977, 0.07365233451128006, 0.022298047319054604, 0.04417193681001663, 0.07400311529636383, 0.019526159390807152, 0.03569062054157257, 0.014249690808355808, 0.0706564262509346, 0.019011134281754494, -0.007166530471295118, 0.045216213911771774, -0.045470863580703735, 0.020767470821738243, -0.05089011415839195, -0.005853127688169479, -0.023922789841890335, -0.009620868600904942, 0.05250617489218712, 0.02685685083270073, -0.03320559486746788, -0.012793640606105328, 0.018054140731692314, -0.006424400489777327, 0.021357372403144836, -0.005259243305772543, 0.008532345294952393, -0.007573117967694998, -0.019170012325048447, -0.027077876031398773, -0.06845857203006744, -0.05177811533212662, -0.027224980294704437, -0.01616981066763401, -0.021767672151327133, -0.08843430131673813, -0.005192399490624666, -0.08737657219171524, -0.0230095237493515, 0.026590904220938683, 0.005745554808527231, -0.028250642120838165, -0.032975997775793076, 0.021982932463288307, -0.046098507940769196, -0.04132110998034477, -0.04127325490117073, -0.06104781851172447, -0.04868870973587036, -0.08063949644565582, 0.034977078437805176, 0.036527104675769806, 0.007736025378108025, -0.0030867522582411766, 0.027676761150360107, 0.01620478741824627, -0.028751950711011887, 0.0401952750980854, 0.06416189670562744, -0.03609096258878708, -0.05820021778345108, 0.03100186213850975, -0.008780200965702534, 0.01997370831668377, 0.023289304226636887, -0.030787266790866852, 0.09111253917217255, 0.07231820374727249, 0.007099104579538107, 0.0203335452824831, -0.011043529026210308, -0.06413575261831284, -0.06643016636371613, -0.022367602214217186, -0.042459405958652496, -0.007937471382319927, -0.04442545399069786, -0.038482002913951874, -0.037361301481723785, -0.044116415083408356, 0.007373860105872154, -0.012233193963766098, 0.026221927255392075, 0.02072395570576191, 0.03862744942307472, 0.022728588432073593, 0.04453050345182419, -0.030051277950406075, -0.03827137500047684, 0.05561588704586029, 0.012844046577811241, 0.003693349426612258, -0.08494175970554352, -0.0007240977138280869, 0.02829756960272789, 0.016458209604024887, 0.01733751781284809, -0.005463252775371075, 0.06993038207292557, -0.010493237525224686, 0.0029032647144049406, 0.013937244191765785, -0.009824358858168125, -0.010544707998633385, -0.002219600835815072, -0.005579547956585884, 0.004502641037106514, -0.023783722892403603, -0.03311673924326897, -0.008851991966366768, 0.027730792760849, -0.05754503607749939, -0.06008097529411316, -0.01624608039855957, 0.031025473028421402, 0.041982900351285934, -0.005494074430316687, -0.049643952399492264, -0.00538191944360733, -0.07362234592437744, -0.006141446065157652, 0.03468949720263481, 0.015220114961266518, -0.005305779632180929, 0.043415822088718414, 0.01903230883181095, -0.007151796482503414, 0.030143946409225464, 0.053704842925071716, 0.06878267228603363, 0.012100869789719582, -0.08391954749822617, -0.0014889073790982366, -0.01720997504889965, 0.014206654392182827, -0.01093357801437378, -0.017795883119106293, -0.02247951738536358, -0.09898054599761963, -0.023281579837203026, 0.01664002612233162, 0.011243793182075024, -0.014571845531463623, 0.034652236849069595, 0.00503723556175828, -0.032220277935266495, -0.009280580095946789, 0.012869126163423061, 0.045266810804605484, -0.028724592179059982, 0.05184856057167053, -0.031687282025814056, 0.002754012355580926, -0.061395809054374695, 0.014418220147490501, -0.05466319993138313, -0.024714507162570953, 0.011576340533792973, 0.045234374701976776, -0.02933301217854023, 0.0568266361951828, 0.06894761323928833, 0.039360836148262024, -0.0528310127556324, 0.037719689309597015, 0.0730440765619278, -0.04113905504345894, -0.04491962864995003, -0.003205901011824608, 0.0008015168132260442, -0.015461928211152554, 0.004184741992503405, -0.003913225140422583, 0.052589185535907745, 0.025953272357583046, 0.0022034593857824802, 0.000801408663392067, -0.009052242152392864, -0.008200063370168209, -0.02652028761804104, -0.05133514478802681, -0.029829522594809532, 0.00362788257189095, -0.028494786471128464, 0.02636103332042694, 0.025477591902017593, 0.032353475689888, 0.07238650321960449, 0.01841873675584793, -0.041364800184965134, 0.0010197863448411226, 0.022061171010136604, 0.011373769491910934, -0.016753358766436577, -0.06924870610237122, -0.04564641788601875, 0.026659876108169556, 0.04816693440079689, -0.02334127016365528, -0.06102246046066284, 0.014682641252875328, 0.052290480583906174, -0.059837162494659424, 0.05992196127772331, -0.0077270632609725, 0.05468175932765007, 0.057397786527872086, -0.008517296053469181, 0.04126497358083725, -0.020402604714035988, -0.005667580757290125, -0.003519665915518999, 0.038685452193021774, -0.009758002124726772, -0.033705759793519974, -0.048886481672525406, 0.02072199434041977, 0.0393262654542923, 0.030288517475128174, 0.04300766438245773, -0.03300168737769127, -0.04298705235123634, 0.005568371154367924, 0.022453347221016884, -0.04106880724430084, -0.009005877189338207, 0.03997448459267616, 0.030595064163208008, -0.04793938994407654, -0.023846182972192764, -0.023691115900874138, -0.016665546223521233, 0.0379004143178463, 0.004569625947624445, -0.020137829706072807, -0.04574255645275116, 0.03777901455760002, -0.017073513939976692, -0.027715865522623062, -0.06967328488826752, 0.04817623645067215, -0.013707363046705723, -0.02344706654548645, 0.053641416132450104, 0.0362447053194046, 0.018303772434592247, 0.07220856845378876, 0.03180737793445587, 0.014953386969864368, -0.03366924449801445, 0.04106323421001434, -0.03394949808716774, -0.020299233496189117, 0.0072635021060705185, -0.03127230703830719, -0.035160455852746964, 0.0016865365905687213, -0.062497578561306, -0.036622047424316406, -0.03238788619637489, 0.018263153731822968, 0.0016258122632279992, -0.01882067508995533, -0.0015098864678293467, 0.05913553386926651, -0.0063850050792098045, -0.040754515677690506, -0.047140032052993774, -0.014704742468893528, -0.06980714201927185, -0.050717517733573914, 0.0013819091254845262, 0.008357840590178967, 0.03178045526146889, 0.03501765429973602, 0.022972896695137024, 0.017011111602187157, 0.01970886066555977, -0.03936832770705223, 0.014397661201655865, 0.01724829152226448, -0.042268138378858566, -0.018961725756525993, 0.03688175976276398, 0.01150539331138134, 0.02531013824045658, -0.035869162529706955, 0.034961529076099396, -0.00039979873690754175, -0.005199247971177101, -0.0250120647251606, 0.015519479289650917, 0.029216449707746506, -0.06141544505953789, -0.034506842494010925, -0.018216555938124657, -0.028039932250976562, 0.03167875111103058, -0.022001968696713448, -0.01923407055437565, 0.013937261886894703, 0.0051022847183048725, 0.036080069839954376, -0.0333142951130867, -0.011247880756855011, 0.027390476316213608, -0.000440259522292763, 0.01850586012005806, -0.056005869060754776, 0.06048029661178589, -0.03899797424674034, 0.02614741399884224, -0.021830135956406593, 0.008039230480790138, -0.022201038897037506, 0.02912813611328602, -0.02560010552406311, -0.02511785738170147, -0.016729557886719704, 0.05610652640461922, -0.012056841515004635, 0.03096458688378334, -0.007052318193018436, 0.040338657796382904, -0.029551398009061813, 0.07200691103935242, -0.03926583379507065, 0.019532669335603714, -0.04242263734340668, 0.029292242601513863, -0.02186383306980133, 0.016453061252832413, -0.012910813093185425, -0.01811292953789234, 0.03489198535680771, 0.05818091705441475, 0.030858498066663742, 0.030552109703421593, -0.003234176430851221, -0.016058655455708504, 0.013375779613852501, -0.043492984026670456, -0.020253274589776993, -0.01099440362304449, 0.0002059474354609847, -0.02002819813787937, 0.056783635169267654, 0.03183333948254585, -0.056039419025182724, -0.07496099919080734, 0.038067642599344254, 0.01710524596273899, -0.0013066499959677458, 0.008120841346681118, 0.04606073349714279, 0.032317038625478745, 0.04138963669538498, -0.020259641110897064, -0.00672070262953639, -0.001650370191782713, -0.050306543707847595, 0.023615047335624695, -0.006315506529062986, 0.027822289615869522, 0.013104155659675598, -0.04315834864974022, -0.025190358981490135, 0.05882271006703377, 0.026597268879413605, 0.024149751290678978, 0.0007355419802479446, -0.04251263290643692, 0.03502551093697548, 0.010136495344340801, -0.03543107584118843, 0.0303645096719265, 0.008247794583439827, -0.025226179510354996, 0.04353649541735649, -0.008694500662386417, 0.001365422853268683, 0.06175868958234787, 0.016832392662763596, -0.0211253073066473, 0.07269595563411713, -0.04007060080766678, 0.010977772995829582, 0.042916249483823776, -0.07674725353717804, -0.008958030492067337, -0.054260723292827606, 0.058437056839466095, -0.06750429421663284, 0.02418668195605278, 0.05543592944741249, -0.00267022498883307, 0.028710484504699707, -0.05446866527199745, -0.0604918897151947, 0.019448604434728622, -0.04069183021783829, 0.06909040361642838, 0.011232695542275906, -0.04498397186398506, 0.05274703726172447, 0.012046129442751408, -0.06386911123991013, 0.037004824727773666, 0.028163548558950424, 0.053049445152282715, 0.038249656558036804, 0.046452268958091736, -0.04339047521352768, -0.004593204241245985, -0.03317191079258919, 0.014152372255921364, -0.050538063049316406, -0.013939705677330494, 0.03435370698571205, -0.04368633031845093, -0.024277234449982643, 0.03093774989247322, -0.012532773427665234, -0.013790699653327465, 0.051801715046167374, -0.050922684371471405, -0.04528713971376419, 0.011778149753808975, 0.018786445260047913, -0.04525013267993927, -0.012886553071439266, -0.03137608990073204, 0.01033296063542366, 0.009563314728438854, 0.0016667974414303899, -0.021488353610038757, -0.018094966188073158, 0.027756979689002037, -0.04438534751534462, -0.03254096582531929, 0.022123834118247032, -0.006181311793625355, -0.022934479638934135, 0.03841257840394974, 0.009226485155522823, 0.012700570747256279, 0.030443374067544937, -0.014140496961772442, 0.023808341473340988, -0.03380932658910751, -0.018401969224214554, 0.03227537125349045, -0.010637006722390652, 0.02234293706715107, 0.011947019957005978, 0.03320174664258957, 0.0359715074300766, 0.020991645753383636, -0.0020394111052155495, -0.03423996642231941, -0.028551749885082245, 0.013733510859310627, -0.04127594456076622, 0.0030755745247006416, -0.00433525163680315, -0.05324957147240639, -0.02118745446205139, -0.0012591625563800335, -0.042774952948093414, 0.03931998834013939, -0.0624154731631279, 0.009562240913510323, 0.04885797202587128, -0.017472077161073685, -0.06188788637518883, -0.11577703058719635, -0.012186256237328053, -0.053286101669073105, -0.01243739016354084, 0.049173180013895035, -0.035512521862983704, 0.04467444866895676, -0.049595266580581665, -0.03331869840621948, 0.036307938396930695, 0.05299801006913185, -0.05718141794204712, 0.060936905443668365, 0.04480912163853645, -0.047270260751247406, 0.011379593051970005, 0.023859916254878044, -0.05327814444899559, 0.001283308956772089, 0.018498698249459267, -0.003841356374323368, 0.022638922557234764, 0.01770566962659359, -0.056654371321201324, -0.01932547427713871, -0.07153479754924774, -0.03958811238408089, -0.045875079929828644, 0.008091959170997143, 0.047839246690273285 ]
DeepPavlov/distilrubert-base-cased-conversational
[ "pytorch", "distilbert", "ru", "arxiv:2205.02340", "transformers" ]
null
{ "architectures": null, "model_type": "distilbert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
6,324
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-7 results: [] --- <!-- 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__sst2__train-32-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6736 - Accuracy: 0.5931 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7094 | 1.0 | 13 | 0.6887 | 0.5385 | | 0.651 | 2.0 | 26 | 0.6682 | 0.6923 | | 0.6084 | 3.0 | 39 | 0.6412 | 0.6923 | | 0.4547 | 4.0 | 52 | 0.6095 | 0.6923 | | 0.2903 | 5.0 | 65 | 0.6621 | 0.6923 | | 0.1407 | 6.0 | 78 | 0.7130 | 0.7692 | | 0.0444 | 7.0 | 91 | 0.9007 | 0.6923 | | 0.0176 | 8.0 | 104 | 0.9525 | 0.7692 | | 0.0098 | 9.0 | 117 | 1.0289 | 0.7692 | | 0.0071 | 10.0 | 130 | 1.0876 | 0.7692 | | 0.0052 | 11.0 | 143 | 1.1431 | 0.6923 | | 0.0038 | 12.0 | 156 | 1.1687 | 0.7692 | | 0.0034 | 13.0 | 169 | 1.1792 | 0.7692 | | 0.0031 | 14.0 | 182 | 1.2033 | 0.7692 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013258980587124825, 0.014568094164133072, -0.04370170831680298, 0.043404653668403625, 0.052083950489759445, 0.0161588154733181, -0.01817532442510128, -0.02373802475631237, -0.05631087347865105, 0.06285702437162399, 0.016720689833164215, -0.032459814101457596, 0.009570548310875893, 0.042443059384822845, -0.014714701101183891, -0.03845252841711044, -0.0017416272312402725, -0.013450383208692074, -0.03458338603377342, -0.0006294430349953473, 0.006454047281295061, -0.015292857773602009, -0.01565573178231716, 0.0021061657462269068, -0.005492398981004953, 0.016838878393173218, 0.007082964759320021, 0.020916201174259186, 0.039622511714696884, -0.06648814678192139, 0.0052940333262085915, -0.028515469282865524, -0.05320737883448601, -0.02396666444838047, -0.012676719576120377, -0.017291439697146416, -0.007736862637102604, 0.027398260310292244, 0.035346463322639465, 0.03695838898420334, 0.007886381819844246, 0.03185079246759415, -0.00016419010353274643, -0.01000665221363306, 0.06194053962826729, 0.010091227479279041, -0.03766781836748123, 0.0009425976895727217, 0.04093912988901138, -0.024007588624954224, -0.08103634417057037, -0.046775951981544495, -0.01847989857196808, 0.02233993634581566, -0.01694151945412159, -0.013527171686291695, -0.05893540754914284, 0.014439920894801617, 0.06463369727134705, -0.04490269720554352, -0.029537636786699295, -0.0004019334737677127, -0.07062386721372604, 0.0028706579469144344, 0.037444841116666794, -0.01907762698829174, 0.012445582076907158, -0.05116533115506172, 0.02417719177901745, -0.012360002845525742, 0.05525701120495796, -0.021569037809967995, 0.011637330055236816, -0.07407799363136292, -0.01774551533162594, -0.008767248131334782, 0.04531622305512428, 0.05794571340084076, -0.030044537037611008, 0.052941035479307175, 0.030020957812666893, -0.0017228805227205157, 0.04486068710684776, -0.030573645606637, 0.010007377713918686, 0.03349338099360466, -0.045293547213077545, -0.0005097677349112928, 0.018783535808324814, 0.026317445561289787, -0.03601674735546112, -0.03723248466849327, -0.030290869995951653, -0.03360753506422043, -0.002055775374174118, 0.019420422613620758, 0.02679666317999363, 0.01722826063632965, 0.03795142471790314, 0.011721384711563587, 0.026107044890522957, 0.03718395531177521, -0.01818770170211792, 0.06689570099115372, -0.00571519136428833, -0.0096286004409194, -0.005507813300937414, -0.017230529338121414, -0.051591578871011734, 0.02084449678659439, 0.026755327358841896, -0.020692089572548866, -0.01250403095036745, 0.0365789532661438, 0.006087511777877808, 0.005022434052079916, 0.07784031331539154, -0.026479143649339676, -0.042701151221990585, -0.033183127641677856, 0.02448374591767788, 0.01673157885670662, -0.018672237172722816, 0.017398668453097343, -0.0443854033946991, -0.018149029463529587, -0.024784501641988754, -0.017936551943421364, -0.0176856629550457, 0.02115350216627121, 0.016143666580319405, 0.06460487842559814, 0.031012799590826035, -0.08880524337291718, 0.005053223110735416, 0.016374658793210983, -0.05473276227712631, 0.045321110635995865, 0.022653497755527496, 0.11495489627122879, -0.05979234352707863, -0.06782892346382141, 0.00760852312669158, -0.0016287483740597963, -0.04145529866218567, 0.014928056858479977, -0.00002518427027098369, -0.02755783498287201, 0.005181256681680679, 0.0033336735796183348, 0.06887657195329666, -0.04056848958134651, -0.01026652567088604, 0.07637681812047958, 0.0032353755086660385, 0.04538701847195625, -0.055675067007541656, -0.026711152866482735, 0.01803218387067318, -0.021493136882781982, -0.0338456891477108, 0.04918527230620384, -0.029259832575917244, -0.01897391490638256, -0.018600888550281525, -0.025256982073187828, 0.009985391981899738, 0.07301341742277145, -0.006182953715324402, -0.03387853503227234, -0.016017116606235504, 0.02171827293932438, 0.04915488138794899, 0.05129628628492355, -0.02675415202975273, 0.026500239968299866, 0.0568375289440155, 0.028616175055503845, -0.03191973268985748, 0.03940706327557564, 0.0230511873960495, -0.025291554629802704, -0.01950247772037983, 0.030306637287139893, 0.00406473595649004, -0.047564368695020676, 0.039054639637470245, 0.012467814609408379, 0.005509811453521252, -0.06863947212696075, -0.04710553213953972, 0.038767632097005844, -0.00409226818010211, -0.01126150693744421, 0.01737179234623909, 0.02153993397951126, -0.013041986152529716, 0.046116478741168976, -0.010407372377812862, 0.007191434036940336, -0.022481972351670265, -0.01998417265713215, 0.014116445556282997, -0.021598070859909058, 0.027874771505594254, 0.04878751561045647, -0.0022900355979800224, 0.093137726187706, -0.04544243589043617, 0.020073849707841873, -0.05340631306171417, -0.03643400967121124, 0.015927860513329506, 0.05646809935569763, 0.05648709833621979, 0.057856522500514984, 0.008719059638679028, -0.02928745187819004, 0.04661066085100174, 0.0724598839879036, 0.046108994632959366, -0.005335592664778233, -0.032203204929828644, -0.01657429337501526, 0.04176170751452446, 0.05216386914253235, -0.04665214568376541, -0.01582442782819271, 0.01211375743150711, 0.0320647731423378, -0.003885104786604643, 0.016514981165528297, -0.02759821154177189, 0.039139408618211746, -0.04637295380234718, -0.041600897908210754, 0.04275575652718544, 0.017933692783117294, 0.0006888628122396767, 0.028848115354776382, 0.02667934074997902, 0.009732669219374657, 0.02514367736876011, 0.02147722616791725, 0.017437569797039032, -0.052234746515750885, 0.023161709308624268, 0.005206151865422726, 0.055894967168569565, -0.05346949025988579, 0.03300359100103378, -0.016044242307543755, 0.0145826181396842, 0.043685633689165115, -0.031633634120225906, 0.02822871506214142, 0.050435055047273636, 0.037133410573005676, -0.03711067512631416, 0.025283480063080788, 0.003733186749741435, 0.03415646404027939, 0.040940701961517334, 0.010062946937978268, 0.07148201763629913, 0.02374885603785515, 0.043344348669052124, 0.07382864505052567, 0.02093515731394291, 0.03234942629933357, 0.013677939772605896, 0.06899319589138031, 0.01723264344036579, -0.011602144688367844, 0.045443616807460785, -0.044961921870708466, 0.02142581157386303, -0.050496358424425125, -0.004863474052399397, -0.022611545398831367, -0.008847801014780998, 0.05128870904445648, 0.027590252459049225, -0.03587239980697632, -0.013394113630056381, 0.016394425183534622, -0.005506348796188831, 0.021869538351893425, -0.005884690675884485, 0.011499786749482155, -0.006540878210216761, -0.02156003564596176, -0.02762211486697197, -0.06780444830656052, -0.05318582057952881, -0.0300764087587595, -0.016709381714463234, -0.024315260350704193, -0.09115216881036758, -0.004344884306192398, -0.08828146010637283, -0.022369442507624626, 0.02737726829946041, 0.006996270269155502, -0.027283919975161552, -0.03087078407406807, 0.021897008642554283, -0.049207672476768494, -0.04031667113304138, -0.04175698012113571, -0.05964480713009834, -0.049098361283540726, -0.08162759989500046, 0.03535657003521919, 0.03735494986176491, 0.004591614007949829, 0.0028744975570589304, 0.026170043274760246, 0.0176777895539999, -0.02799399197101593, 0.03912365436553955, 0.06525915116071701, -0.036103133112192154, -0.0569351501762867, 0.033642470836639404, -0.010404377244412899, 0.018817193806171417, 0.022601991891860962, -0.030344896018505096, 0.08813483268022537, 0.07255517691373825, 0.006439193617552519, 0.022173231467604637, -0.009005875326693058, -0.06312494724988937, -0.06791180372238159, -0.021969590336084366, -0.04015008360147476, -0.006131852511316538, -0.04563828930258751, -0.03671954944729805, -0.03808755427598953, -0.04292789101600647, 0.006010005250573158, -0.011155891232192516, 0.025240324437618256, 0.018787983804941177, 0.0378609225153923, 0.021616164594888687, 0.04497827962040901, -0.03027687408030033, -0.03951839730143547, 0.057335015386343, 0.01042937207967043, 0.004479312337934971, -0.08519461005926132, -0.00027248228434473276, 0.02663840912282467, 0.01725126802921295, 0.015303412452340126, -0.006062148604542017, 0.0717037096619606, -0.009997683577239513, 0.004450722131878138, 0.013846070505678654, -0.010705116204917431, -0.011872128583490849, 0.00009968114318326116, -0.0036267549730837345, 0.005092249251902103, -0.024297015741467476, -0.03174577280879021, -0.007666741032153368, 0.029005080461502075, -0.05741317197680473, -0.05991833284497261, -0.018636157736182213, 0.032067738473415375, 0.04097697511315346, -0.00476446095854044, -0.048913031816482544, -0.00781406369060278, -0.07444512099027634, -0.0051462226547300816, 0.039349526166915894, 0.015995072200894356, -0.003652487648651004, 0.04200589284300804, 0.016353782266378403, -0.007562659215182066, 0.03086780570447445, 0.05468510091304779, 0.0704345554113388, 0.009651942178606987, -0.08310452848672867, -0.002097885590046644, -0.016164740547537804, 0.01157320849597454, -0.009805694222450256, -0.019264986738562584, -0.021021222695708275, -0.0999978631734848, -0.021671434864401817, 0.017020776867866516, 0.011862032115459442, -0.0159026850014925, 0.033565253019332886, 0.004206214100122452, -0.03025495633482933, -0.00832393392920494, 0.013272903859615326, 0.04530908167362213, -0.027789616957306862, 0.05138564854860306, -0.03162369504570961, 0.0004431679844856262, -0.05879046022891998, 0.014640692621469498, -0.05357851833105087, -0.020183390006422997, 0.01250283420085907, 0.04600987583398819, -0.027494218200445175, 0.05285075306892395, 0.0671824961900711, 0.041096337139606476, -0.05048925057053566, 0.03836672380566597, 0.07346255332231522, -0.04264180362224579, -0.046102847903966904, -0.0027813734486699104, 0.001973476493731141, -0.014888844452798367, 0.0024525446351617575, -0.002605476649478078, 0.05499981716275215, 0.02737591601908207, 0.0020113252103328705, -0.000529352982994169, -0.00948975421488285, -0.008612950332462788, -0.02695874683558941, -0.049474503844976425, -0.030032094568014145, 0.0032787134405225515, -0.026890680193901062, 0.024808837100863457, 0.024387957528233528, 0.03170553222298622, 0.07285229116678238, 0.017451053485274315, -0.04077804088592529, -0.001191160874441266, 0.023902593180537224, 0.009490175172686577, -0.017304692417383194, -0.0693129152059555, -0.043015435338020325, 0.029064374044537544, 0.049591824412345886, -0.021864494308829308, -0.061489567160606384, 0.013964971527457237, 0.050457701086997986, -0.05776325985789299, 0.059259358793497086, -0.005487664137035608, 0.05465752258896828, 0.05529229715466499, -0.007738733664155006, 0.04161914065480232, -0.019603857770562172, -0.005936848931014538, -0.002689656103029847, 0.039342086762189865, -0.00858840998262167, -0.033504169434309006, -0.04792128875851631, 0.0203567948192358, 0.04090176150202751, 0.032030221074819565, 0.04478845000267029, -0.034543391317129135, -0.04047248885035515, 0.006242393050342798, 0.023198168724775314, -0.03996109962463379, -0.007674977649003267, 0.03932526335120201, 0.030852269381284714, -0.04786419868469238, -0.024786943569779396, -0.023508578538894653, -0.015310081653296947, 0.039420824497938156, 0.006870608311146498, -0.019279252737760544, -0.045117393136024475, 0.04004102572798729, -0.01691545732319355, -0.02819242514669895, -0.06674998998641968, 0.048265788704156876, -0.013691100291907787, -0.024636056274175644, 0.05488404259085655, 0.035636596381664276, 0.020129820331931114, 0.07265179604291916, 0.03365875408053398, 0.015514879487454891, -0.0333985760807991, 0.041677698493003845, -0.03309394791722298, -0.018689412623643875, 0.0067464327439665794, -0.030536755919456482, -0.0371190682053566, -0.000709447602275759, -0.06473657488822937, -0.03650030493736267, -0.0316065214574337, 0.017629224807024002, 0.002506550634279847, -0.02005178853869438, -0.000393698166590184, 0.05869363248348236, -0.005412618163973093, -0.042712364345788956, -0.046947456896305084, -0.013140006922185421, -0.06812223792076111, -0.05357823520898819, -0.0006113075069151819, 0.006296777632087469, 0.031716033816337585, 0.038584042340517044, 0.023667583242058754, 0.0177405197173357, 0.020635027438402176, -0.039016272872686386, 0.01335564162582159, 0.018246693536639214, -0.04080122336745262, -0.020139237865805626, 0.03822645545005798, 0.010264172218739986, 0.023343097418546677, -0.039692431688308716, 0.03353814035654068, -0.0004875159065704793, -0.00551726995036006, -0.024996349588036537, 0.016003167256712914, 0.029806798323988914, -0.06362014263868332, -0.036862652748823166, -0.017741553485393524, -0.027969544753432274, 0.03276645019650459, -0.024343091994524002, -0.0211092010140419, 0.014304708689451218, 0.0045006051659584045, 0.03543442487716675, -0.03358377143740654, -0.012180345132946968, 0.027202408760786057, -0.003368146950379014, 0.019649218767881393, -0.056128308176994324, 0.06192358210682869, -0.0376863107085228, 0.026571383699774742, -0.019231872633099556, 0.010265490971505642, -0.019682349637150764, 0.02739948220551014, -0.02492522820830345, -0.022766487672924995, -0.013251037336885929, 0.058515213429927826, -0.012393082492053509, 0.030166009441018105, -0.008156098425388336, 0.039168111979961395, -0.028057262301445007, 0.06924071907997131, -0.039360411465168, 0.0205208882689476, -0.04144756495952606, 0.02578936703503132, -0.020831862464547157, 0.01890590414404869, -0.014205073937773705, -0.019899433478713036, 0.03219844773411751, 0.06066539138555527, 0.03266224265098572, 0.028378356248140335, -0.004125261679291725, -0.015426482073962688, 0.013460050337016582, -0.043489985167980194, -0.019218793138861656, -0.010979840531945229, -0.0005011019529774785, -0.02131047658622265, 0.05537963658571243, 0.031145695596933365, -0.056498561054468155, -0.07607442885637283, 0.03844831511378288, 0.01917457953095436, -0.0007980219670571387, 0.007816635072231293, 0.0481194444000721, 0.03219649940729141, 0.04359184950590134, -0.01665811613202095, -0.007665816228836775, -0.0017681854078546166, -0.049708250910043716, 0.02266031503677368, -0.003342272713780403, 0.02644115313887596, 0.014689764939248562, -0.043927259743213654, -0.022687753662467003, 0.05864952877163887, 0.026180841028690338, 0.023770198225975037, 0.002968528075143695, -0.04472619295120239, 0.03754148259758949, 0.007256223354488611, -0.036475665867328644, 0.031018970534205437, 0.009386610239744186, -0.024287911131978035, 0.04588809609413147, -0.009108124300837517, 0.0019746222533285618, 0.06120382621884346, 0.01745039038360119, -0.01981469988822937, 0.06983624398708344, -0.03804873302578926, 0.010877340100705624, 0.04130888730287552, -0.07640350610017776, -0.007351573556661606, -0.05277986451983452, 0.05925695225596428, -0.06869938969612122, 0.023958979174494743, 0.0557275153696537, -0.001324746641330421, 0.028186671435832977, -0.052789442241191864, -0.05909550189971924, 0.01908806338906288, -0.04050570726394653, 0.06941693276166916, 0.012782393023371696, -0.04390575736761093, 0.05367780476808548, 0.012094298377633095, -0.063942551612854, 0.037246961146593094, 0.02788558416068554, 0.05372355133295059, 0.03931534290313721, 0.047314610332250595, -0.044380318373441696, -0.00438017537817359, -0.033587802201509476, 0.016764476895332336, -0.050650060176849365, -0.013432065956294537, 0.03676844388246536, -0.04246652126312256, -0.026117242872714996, 0.029334882274270058, -0.012383670546114445, -0.01793203130364418, 0.05125207081437111, -0.05121142044663429, -0.040913403034210205, 0.014760101214051247, 0.020663511008024216, -0.043503206223249435, -0.012537699192762375, -0.031105462461709976, 0.010166137479245663, 0.010285509750247002, 0.0031446542125195265, -0.0215597003698349, -0.016797251999378204, 0.02801908366382122, -0.04550294205546379, -0.03227926045656204, 0.022914880886673927, -0.008267668075859547, -0.021685848012566566, 0.03790377825498581, 0.010248134844005108, 0.012446679174900055, 0.031989745795726776, -0.01508528832346201, 0.02303730696439743, -0.03362172469496727, -0.018381798639893532, 0.03197275474667549, -0.007780467625707388, 0.023098783567547798, 0.009629111737012863, 0.033025696873664856, 0.03768809512257576, 0.02429669350385666, -0.001648882869631052, -0.03439701348543167, -0.030885009095072746, 0.013130227103829384, -0.04227655008435249, 0.005050937179476023, -0.006741815712302923, -0.05170748755335808, -0.023174744099378586, 0.0018323977710679173, -0.044227275997400284, 0.03718497231602669, -0.06199134513735771, 0.007923871278762817, 0.046331167221069336, -0.01685626618564129, -0.05945557728409767, -0.1161060780286789, -0.013468911871314049, -0.0535026453435421, -0.012364850379526615, 0.049273569136857986, -0.03506072610616684, 0.045757319778203964, -0.0500243678689003, -0.03198264166712761, 0.03975755721330643, 0.05294707417488098, -0.057873114943504333, 0.061824869364500046, 0.045272648334503174, -0.050294097512960434, 0.012314172461628914, 0.02295231819152832, -0.050843190401792526, 0.0006790279294364154, 0.016203291714191437, -0.003247865941375494, 0.022965937852859497, 0.015281002968549728, -0.05821271613240242, -0.018078533932566643, -0.07068145275115967, -0.04038865864276886, -0.04616076126694679, 0.005423770286142826, 0.04723762720823288 ]
DeepPavlov/distilrubert-tiny-cased-conversational-v1
[ "pytorch", "distilbert", "ru", "arxiv:2205.02340", "transformers" ]
null
{ "architectures": null, "model_type": "distilbert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9,141
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-8 results: [] --- <!-- 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__sst2__train-32-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6880 - Accuracy: 0.5014 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.712 | 1.0 | 13 | 0.6936 | 0.5385 | | 0.665 | 2.0 | 26 | 0.6960 | 0.3846 | | 0.6112 | 3.0 | 39 | 0.7138 | 0.3846 | | 0.4521 | 4.0 | 52 | 0.8243 | 0.4615 | | 0.2627 | 5.0 | 65 | 0.7723 | 0.6154 | | 0.0928 | 6.0 | 78 | 1.2666 | 0.5385 | | 0.0312 | 7.0 | 91 | 1.2306 | 0.6154 | | 0.0132 | 8.0 | 104 | 1.3385 | 0.6154 | | 0.0082 | 9.0 | 117 | 1.4584 | 0.6154 | | 0.0063 | 10.0 | 130 | 1.5429 | 0.6154 | | 0.0049 | 11.0 | 143 | 1.5913 | 0.6154 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01266271248459816, 0.014327404089272022, -0.044754013419151306, 0.04351983964443207, 0.05288219451904297, 0.01800176315009594, -0.01751944050192833, -0.024772437289357185, -0.05484618991613388, 0.06399907171726227, 0.016643160954117775, -0.03268265351653099, 0.01254891138523817, 0.0427163764834404, -0.01521745603531599, -0.03624383360147476, -0.002359038917347789, -0.011626089923083782, -0.032178692519664764, -0.0030025204177945852, 0.003952274098992348, -0.014836039394140244, -0.014984430745244026, 0.004024445079267025, -0.005045492667704821, 0.016765249893069267, 0.0060081398114562035, 0.02257385477423668, 0.03820072486996651, -0.0670253336429596, 0.005152753088623285, -0.028160827234387398, -0.05256734415888786, -0.02194656804203987, -0.012792411260306835, -0.01850692555308342, -0.006073578726500273, 0.026560675352811813, 0.036620382219552994, 0.0376741886138916, 0.007319690193980932, 0.031657129526138306, 0.00008496478403685614, -0.011882769875228405, 0.06370373070240021, 0.009666350670158863, -0.039695654064416885, -0.0008628306677564979, 0.03966088593006134, -0.02491655945777893, -0.07974383234977722, -0.04756808280944824, -0.017519250512123108, 0.023666417226195335, -0.01646379381418228, -0.0136317890137434, -0.059097401797771454, 0.015264424495398998, 0.0654294565320015, -0.04615211859345436, -0.029397374019026756, -0.0003015414404217154, -0.07280654460191727, 0.004900515079498291, 0.03741942346096039, -0.018622830510139465, 0.012722869403660297, -0.050402116030454636, 0.026191946119070053, -0.011673585511744022, 0.05484718084335327, -0.021867942065000534, 0.012536410242319107, -0.07208658754825592, -0.018906990066170692, -0.008953780867159367, 0.04601951315999031, 0.0559576116502285, -0.030877836048603058, 0.051890790462493896, 0.0317276306450367, -0.000335346267092973, 0.04431089758872986, -0.029195992276072502, 0.007747760508209467, 0.03304973244667053, -0.0461028590798378, -0.0020972201600670815, 0.0188564695417881, 0.02658359706401825, -0.03613395616412163, -0.037912677973508835, -0.029920749366283417, -0.03270688280463219, -0.000584519759286195, 0.019920988008379936, 0.027493180707097054, 0.016692696139216423, 0.03803103789687157, 0.012663315050303936, 0.024859869852662086, 0.037733111530542374, -0.017432324588298798, 0.06784165650606155, -0.005635883193463087, -0.009758240543305874, -0.00452759163454175, -0.017100254073739052, -0.050085652619600296, 0.01926090195775032, 0.027406172826886177, -0.01987701840698719, -0.011377579532563686, 0.037431977689266205, 0.00493876077234745, 0.004348220303654671, 0.07753195613622665, -0.024979615584015846, -0.040953319519758224, -0.03358139842748642, 0.02588054910302162, 0.015300449915230274, -0.0190642811357975, 0.017011446878314018, -0.04465208202600479, -0.017000563442707062, -0.024880114942789078, -0.017420634627342224, -0.02014535292983055, 0.021378343924880028, 0.01626536436378956, 0.0638844445347786, 0.031426288187503815, -0.08901294320821762, 0.005124083254486322, 0.015536331571638584, -0.05566195398569107, 0.046985287219285965, 0.02311316505074501, 0.11552105098962784, -0.05781271308660507, -0.06678468734025955, 0.008310830220580101, 0.00016110192518681288, -0.04189404472708702, 0.014207671396434307, 0.0023328065872192383, -0.02603285200893879, 0.005619618110358715, 0.003615180728957057, 0.06877976655960083, -0.0417093001306057, -0.009260187856853008, 0.07489506155252457, 0.004576734267175198, 0.04435362666845322, -0.05734601244330406, -0.02792881242930889, 0.017133938148617744, -0.019981296733021736, -0.03368915244936943, 0.050595324486494064, -0.027679890394210815, -0.01814837008714676, -0.01879153586924076, -0.025173824280500412, 0.01173968892544508, 0.07486597448587418, -0.007573339156806469, -0.032481178641319275, -0.017208648845553398, 0.02552812732756138, 0.04572327807545662, 0.050866130739450455, -0.026757782325148582, 0.02730129472911358, 0.0568227581679821, 0.02673204243183136, -0.03156883269548416, 0.04033881798386574, 0.023559531196951866, -0.02502487413585186, -0.01997985690832138, 0.03179451450705528, 0.004201587289571762, -0.04807073995471001, 0.037943284958601, 0.013222306035459042, 0.004646657034754753, -0.06906179338693619, -0.04634682834148407, 0.04007246717810631, -0.004699962679296732, -0.01105116680264473, 0.01485517993569374, 0.022093001753091812, -0.013542352244257927, 0.046130578964948654, -0.012521539814770222, 0.006488230545073748, -0.022106807678937912, -0.019546985626220703, 0.012891385704278946, -0.021253230050206184, 0.027658293023705482, 0.04800090566277504, -0.001646324759349227, 0.09423454850912094, -0.04599124938249588, 0.021250536665320396, -0.055387675762176514, -0.0370798259973526, 0.018569989129900932, 0.056147899478673935, 0.055928755551576614, 0.05615909397602081, 0.007615159265697002, -0.027699176222085953, 0.04533139616250992, 0.07273425906896591, 0.04684106633067131, -0.003913701046258211, -0.03262510523200035, -0.018355833366513252, 0.04142678529024124, 0.05107846111059189, -0.049396999180316925, -0.014970977790653706, 0.011837163008749485, 0.031026072800159454, -0.004747460596263409, 0.017487578094005585, -0.025068435817956924, 0.04021383821964264, -0.04544494301080704, -0.04068304970860481, 0.04272079095244408, 0.017929164692759514, 0.0003027295460924506, 0.030548902228474617, 0.02677903138101101, 0.010975831188261509, 0.023767998442053795, 0.02118423767387867, 0.01917635276913643, -0.05107341706752777, 0.024733461439609528, 0.005125226452946663, 0.05874602496623993, -0.053847718983888626, 0.03317606821656227, -0.014550578780472279, 0.0148695670068264, 0.0418163500726223, -0.033208370208740234, 0.0277863722294569, 0.051606178283691406, 0.03625307232141495, -0.03846808150410652, 0.026288863271474838, 0.0031979538034647703, 0.03444811329245567, 0.04142960533499718, 0.00938133429735899, 0.07034624367952347, 0.02343234047293663, 0.04430200159549713, 0.07495933771133423, 0.019298005849123, 0.0323697105050087, 0.014537155628204346, 0.07118962705135345, 0.0179674681276083, -0.011694994755089283, 0.04710550606250763, -0.043305009603500366, 0.022753752768039703, -0.05073249340057373, -0.003828092711046338, -0.024431681260466576, -0.010324511677026749, 0.05428791791200638, 0.02666069194674492, -0.035101305693387985, -0.012026629410684109, 0.016251565888524055, -0.008583329617977142, 0.02314254269003868, -0.006145094987004995, 0.010225455276668072, -0.007093347143381834, -0.022478509694337845, -0.02884596399962902, -0.07006312161684036, -0.05267919600009918, -0.03061666153371334, -0.01531051006168127, -0.02421131730079651, -0.08932934701442719, -0.003784975502640009, -0.08756118267774582, -0.022291133180260658, 0.02837229147553444, 0.008002884685993195, -0.025293510407209396, -0.03289589285850525, 0.02254459634423256, -0.048036761581897736, -0.04042535275220871, -0.040903739631175995, -0.05897802859544754, -0.04870982840657234, -0.08198649436235428, 0.03453420102596283, 0.036466896533966064, 0.0075941672548651695, 0.00046323667629621923, 0.026396213099360466, 0.01664883829653263, -0.02763529308140278, 0.03898641839623451, 0.0664159506559372, -0.03703660890460014, -0.05677933245897293, 0.033351726830005646, -0.008209082297980785, 0.01981203630566597, 0.021686404943466187, -0.030045034363865852, 0.08952750265598297, 0.07229943573474884, 0.006091910880059004, 0.021281776949763298, -0.0104456078261137, -0.061548467725515366, -0.06561537086963654, -0.02367442660033703, -0.04022984206676483, -0.007564467377960682, -0.046249501407146454, -0.03690870851278305, -0.03689879551529884, -0.041648007929325104, 0.003283548168838024, -0.012952134944498539, 0.02494204230606556, 0.01978692226111889, 0.03580399230122566, 0.02081257849931717, 0.04407774284482002, -0.030089233070611954, -0.0393684096634388, 0.05922723561525345, 0.009627883322536945, 0.004519600421190262, -0.08546285331249237, -0.0020556016825139523, 0.02741699106991291, 0.017545601353049278, 0.017064953222870827, -0.00310854846611619, 0.07191704958677292, -0.010399297811090946, 0.0043441555462777615, 0.012148046866059303, -0.011656994931399822, -0.01160410325974226, -0.0021314898040145636, -0.0032349962275475264, 0.0044966223649680614, -0.022327639162540436, -0.034818828105926514, -0.008298930712044239, 0.028582537546753883, -0.05900377407670021, -0.0604117289185524, -0.016333099454641342, 0.03370404615998268, 0.042433444410562515, -0.004644467961043119, -0.04760139435529709, -0.00656027952209115, -0.0739574134349823, -0.00390747282654047, 0.03762466460466385, 0.016277296468615532, -0.0038675577379763126, 0.04211202636361122, 0.01634441502392292, -0.00767356576398015, 0.02965964749455452, 0.05706779286265373, 0.07067843526601791, 0.009534750133752823, -0.08292781561613083, -0.001394951599650085, -0.01565982773900032, 0.011037844233214855, -0.010627656243741512, -0.01987779326736927, -0.022286586463451385, -0.1001751646399498, -0.020208565518260002, 0.01631823182106018, 0.012459760531783104, -0.016809983178973198, 0.03334978595376015, 0.004152475856244564, -0.02950575016438961, -0.00659518875181675, 0.013705049641430378, 0.04779842495918274, -0.02834920585155487, 0.052597057074308395, -0.02980436570942402, -0.0003106921794824302, -0.05831684172153473, 0.01708880439400673, -0.05446477606892586, -0.021718135103583336, 0.014614139683544636, 0.04551290348172188, -0.02849479950964451, 0.052497245371341705, 0.06902091205120087, 0.04068545252084732, -0.05262170732021332, 0.03941543400287628, 0.07218945026397705, -0.04268327355384827, -0.047581881284713745, -0.005059636663645506, 0.001397603889927268, -0.014634124003350735, 0.002136097988113761, -0.00337642477825284, 0.053252656012773514, 0.02494262158870697, 0.004841081332415342, 0.0001396628504153341, -0.008660008199512959, -0.007456634193658829, -0.028091400861740112, -0.051577236503362656, -0.03071013279259205, 0.003713278565555811, -0.026792515069246292, 0.021775152534246445, 0.026005785912275314, 0.03157239779829979, 0.07478757947683334, 0.020652150735259056, -0.03914770111441612, -0.003262614831328392, 0.02484891377389431, 0.009484427981078625, -0.01779332384467125, -0.07079028338193893, -0.04217103123664856, 0.0299619622528553, 0.04829733073711395, -0.020837919786572456, -0.06162332743406296, 0.014568201266229153, 0.05086515471339226, -0.05985953286290169, 0.05806118994951248, -0.004092268645763397, 0.054967474192380905, 0.05726056918501854, -0.007802028674632311, 0.043119948357343674, -0.020246779546141624, -0.006723160855472088, -0.0029620290733873844, 0.039696939289569855, -0.009712757542729378, -0.033637773245573044, -0.04936482384800911, 0.019765116274356842, 0.04130673035979271, 0.031483765691518784, 0.044452227652072906, -0.0348084382712841, -0.040279410779476166, 0.007479819469153881, 0.023111963644623756, -0.04027155414223671, -0.005837426986545324, 0.03889714553952217, 0.03090912662446499, -0.047801852226257324, -0.022927148267626762, -0.02320215106010437, -0.015735002234578133, 0.03834575414657593, 0.006104763131588697, -0.01874968409538269, -0.046018268913030624, 0.04069602116942406, -0.01674145646393299, -0.026568109169602394, -0.06648901104927063, 0.048088014125823975, -0.013698712922632694, -0.023538801819086075, 0.054091524332761765, 0.03609961271286011, 0.020733198150992393, 0.07172775268554688, 0.03313902020454407, 0.01512828841805458, -0.034743532538414, 0.041176699101924896, -0.03324925899505615, -0.018081381916999817, 0.005424950271844864, -0.03017633780837059, -0.03869428113102913, -0.0005111512145958841, -0.06472758203744888, -0.036289237439632416, -0.028407862409949303, 0.017332984134554863, 0.0008760492783039808, -0.01692837104201317, -0.0013128360733389854, 0.05987008288502693, -0.005082278046756983, -0.04173489660024643, -0.04675891250371933, -0.014487621374428272, -0.06988230347633362, -0.050900522619485855, -0.0013150558806955814, 0.005500819534063339, 0.032780103385448456, 0.0361776240170002, 0.024026939645409584, 0.01719045080244541, 0.0200368482619524, -0.039322689175605774, 0.013896993361413479, 0.019127532839775085, -0.040823716670274734, -0.019995002076029778, 0.03717339038848877, 0.010671996511518955, 0.025412531569600105, -0.03942849114537239, 0.03594617173075676, 0.0013231784105300903, -0.005529696121811867, -0.0248844213783741, 0.015006228350102901, 0.029780788347125053, -0.06294968724250793, -0.03618476539850235, -0.017229756340384483, -0.027686644345521927, 0.03169604018330574, -0.025478685274720192, -0.020764822140336037, 0.012683902867138386, 0.004632687196135521, 0.03616046532988548, -0.034135207533836365, -0.010804585181176662, 0.02819395624101162, -0.002520168200135231, 0.02032960020005703, -0.05707503482699394, 0.06039939075708389, -0.03859088569879532, 0.026050444692373276, -0.02116105891764164, 0.01169833168387413, -0.020789673551917076, 0.02499888278543949, -0.02688051201403141, -0.023383421823382378, -0.014241455122828484, 0.05879262089729309, -0.011632857844233513, 0.029682163149118423, -0.009508637711405754, 0.03902619332075119, -0.029177721589803696, 0.07008620351552963, -0.03907344490289688, 0.01960144378244877, -0.041342929005622864, 0.02653336711227894, -0.019461041316390038, 0.01774647831916809, -0.013363818638026714, -0.017486555501818657, 0.03444187343120575, 0.06214310973882675, 0.0310087651014328, 0.02846405655145645, -0.0021922800224274397, -0.014087851159274578, 0.012880733236670494, -0.040982235223054886, -0.019271012395620346, -0.013385615311563015, -0.0004235587257426232, -0.019323576241731644, 0.05404524877667427, 0.03027619607746601, -0.05615467578172684, -0.07410736382007599, 0.03565816953778267, 0.018805013969540596, -0.0013158288784325123, 0.007500532083213329, 0.04630739986896515, 0.03266742825508118, 0.04179311543703079, -0.015451319515705109, -0.006957250647246838, -0.00004913911106996238, -0.051489561796188354, 0.02272433042526245, -0.004423595033586025, 0.026316866278648376, 0.013340978883206844, -0.04353341460227966, -0.023613564670085907, 0.05841522663831711, 0.02545589953660965, 0.02572157233953476, 0.0034909015521407127, -0.04343819245696068, 0.03811345621943474, 0.006683181971311569, -0.035443976521492004, 0.029915178194642067, 0.009849091060459614, -0.023348310962319374, 0.04608840495347977, -0.009394918568432331, 0.0014985807938501239, 0.06112935394048691, 0.017859607934951782, -0.022209402173757553, 0.06956372410058975, -0.038493212312459946, 0.012776641175150871, 0.04085876792669296, -0.07614576816558838, -0.0101022869348526, -0.0503978505730629, 0.05679347738623619, -0.06780673563480377, 0.02322515659034252, 0.058028656989336014, -0.0024421457201242447, 0.029353970661759377, -0.05181931331753731, -0.05776525288820267, 0.019292766228318214, -0.03921637311577797, 0.06871774047613144, 0.010883666574954987, -0.04245298355817795, 0.05336670204997063, 0.013523559086024761, -0.06370851397514343, 0.03588458523154259, 0.026805879548192024, 0.05439925193786621, 0.03898993879556656, 0.04822389781475067, -0.043962519615888596, -0.0030060827266424894, -0.03613795340061188, 0.016227763146162033, -0.05038483440876007, -0.0137407211586833, 0.03634681925177574, -0.0422339141368866, -0.02619413658976555, 0.028195517137646675, -0.01256532035768032, -0.01807994209229946, 0.05102631822228432, -0.05093902349472046, -0.040389735251665115, 0.01550937071442604, 0.021317247301340103, -0.04271436855196953, -0.013004827313125134, -0.030499747022986412, 0.012129358015954494, 0.010414090938866138, 0.004125234670937061, -0.020719800144433975, -0.017486153170466423, 0.029281742870807648, -0.042954523116350174, -0.03169562667608261, 0.02204826846718788, -0.008806996047496796, -0.022764820605516434, 0.04049063101410866, 0.00878637470304966, 0.01338154450058937, 0.03148946166038513, -0.01439997274428606, 0.02490427903831005, -0.035394735634326935, -0.016742605715990067, 0.031931549310684204, -0.006651296745985746, 0.02004305273294449, 0.008065614849328995, 0.030513174831867218, 0.03707689046859741, 0.02431110478937626, -0.0022178608924150467, -0.036427151411771774, -0.03136329725384712, 0.015059011057019234, -0.04063985124230385, 0.0059802234172821045, -0.005201034713536501, -0.05159125104546547, -0.022682150825858116, 0.004127152729779482, -0.04355059936642647, 0.03775722160935402, -0.0632195770740509, 0.00800686702132225, 0.0470728725194931, -0.016785714775323868, -0.05981311947107315, -0.11317206919193268, -0.017085248604416847, -0.05560300499200821, -0.01479825098067522, 0.05069294944405556, -0.03617466986179352, 0.04334605112671852, -0.05127822235226631, -0.03201993182301521, 0.04039309546351433, 0.052583061158657074, -0.05948180332779884, 0.0623609758913517, 0.04266396164894104, -0.04996907338500023, 0.0090109808370471, 0.022459713742136955, -0.05091797932982445, 0.0032451064325869083, 0.015077495947480202, -0.0045563578605651855, 0.02163662202656269, 0.015398439019918442, -0.05896291509270668, -0.018458541482686996, -0.06944935023784637, -0.03822721168398857, -0.046384990215301514, 0.005636578891426325, 0.04675735533237457 ]
DeepPavlov/distilrubert-tiny-cased-conversational
[ "pytorch", "distilbert", "ru", "arxiv:2205.02340", "transformers" ]
null
{ "architectures": null, "model_type": "distilbert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5,993
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-32-9 results: [] --- <!-- 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__sst2__train-32-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5625 - Accuracy: 0.7353 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7057 | 1.0 | 13 | 0.6805 | 0.5385 | | 0.6642 | 2.0 | 26 | 0.6526 | 0.7692 | | 0.5869 | 3.0 | 39 | 0.5773 | 0.8462 | | 0.4085 | 4.0 | 52 | 0.4959 | 0.8462 | | 0.2181 | 5.0 | 65 | 0.4902 | 0.6923 | | 0.069 | 6.0 | 78 | 0.5065 | 0.8462 | | 0.0522 | 7.0 | 91 | 0.6082 | 0.7692 | | 0.0135 | 8.0 | 104 | 0.6924 | 0.7692 | | 0.0084 | 9.0 | 117 | 0.5921 | 0.7692 | | 0.0061 | 10.0 | 130 | 0.6477 | 0.7692 | | 0.0047 | 11.0 | 143 | 0.6648 | 0.7692 | | 0.0035 | 12.0 | 156 | 0.6640 | 0.7692 | | 0.0031 | 13.0 | 169 | 0.6615 | 0.7692 | | 0.0029 | 14.0 | 182 | 0.6605 | 0.7692 | | 0.0026 | 15.0 | 195 | 0.6538 | 0.8462 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.011566892266273499, 0.01414946187287569, -0.043971605598926544, 0.04316887632012367, 0.0523410439491272, 0.01639430969953537, -0.019424162805080414, -0.022614862769842148, -0.05640615522861481, 0.06343121081590652, 0.01563766598701477, -0.031918324530124664, 0.01005510799586773, 0.04206235706806183, -0.01370681170374155, -0.03783335164189339, -0.002533446066081524, -0.013608809560537338, -0.03310864791274071, -0.0010713879019021988, 0.004463141784071922, -0.015258501283824444, -0.015926150605082512, 0.0025556122418493032, -0.005549245048314333, 0.017130276188254356, 0.005636230111122131, 0.021193845197558403, 0.03933921828866005, -0.06826397031545639, 0.004907805006951094, -0.029723094776272774, -0.05254610255360603, -0.022663122043013573, -0.01188778504729271, -0.017667684704065323, -0.005612427368760109, 0.02697036974132061, 0.03538139909505844, 0.03542786464095116, 0.009106548503041267, 0.032067157328128815, -0.00003426088733249344, -0.009956803172826767, 0.06333412975072861, 0.010284878313541412, -0.03953004255890846, -0.0005701077752746642, 0.04114247485995293, -0.024612436071038246, -0.08132225275039673, -0.04493127018213272, -0.017803946509957314, 0.024006908759474754, -0.017047572880983353, -0.013236885890364647, -0.05883202329277992, 0.01679559424519539, 0.06450441479682922, -0.045514751225709915, -0.030470602214336395, -0.00019510506535880268, -0.07236838340759277, 0.0033507049083709717, 0.03673144802451134, -0.019017191603779793, 0.012253345921635628, -0.049233775585889816, 0.02478625811636448, -0.012511823326349258, 0.05631297081708908, -0.020090622827410698, 0.012486396357417107, -0.07151801139116287, -0.018422091379761696, -0.008182586170732975, 0.04548947885632515, 0.057433221489191055, -0.030339032411575317, 0.052115026861429214, 0.029827050864696503, -0.00045639483141712844, 0.043620020151138306, -0.029866578057408333, 0.011263782158493996, 0.03373420983552933, -0.046376269310712814, -0.0010944601381197572, 0.01808301731944084, 0.025504931807518005, -0.035560138523578644, -0.036995336413383484, -0.02911856397986412, -0.031892579048871994, -0.0025450154207646847, 0.01833459362387657, 0.026014355942606926, 0.019660042598843575, 0.03962200880050659, 0.013196287676692009, 0.02658325433731079, 0.035879701375961304, -0.01760312356054783, 0.06592739373445511, -0.006164367310702801, -0.011745449155569077, -0.004837206564843655, -0.01769067347049713, -0.05015638470649719, 0.020592929795384407, 0.02600855566561222, -0.021024741232395172, -0.01301027275621891, 0.03758303076028824, 0.0048869336023926735, 0.006290328223258257, 0.07840342074632645, -0.025375081226229668, -0.0423266664147377, -0.032234352082014084, 0.024507518857717514, 0.01618039421737194, -0.019583526998758316, 0.016752060502767563, -0.04457995295524597, -0.018986748531460762, -0.02538384683430195, -0.017134379595518112, -0.019727913662791252, 0.022079940885305405, 0.015338225290179253, 0.06491832435131073, 0.03263915702700615, -0.08877024799585342, 0.00505138048902154, 0.014974774792790413, -0.054932158440351486, 0.04583355411887169, 0.022563889622688293, 0.11672738194465637, -0.05775761604309082, -0.06870108097791672, 0.007332664914429188, -0.001440305495634675, -0.04086775705218315, 0.014303461648523808, 0.0013823711778968573, -0.02699391543865204, 0.006783171556890011, 0.003569363383576274, 0.06830240786075592, -0.04110187292098999, -0.010729684494435787, 0.076610267162323, 0.003876833710819483, 0.04533333703875542, -0.05584336444735527, -0.027667082846164703, 0.01788398064672947, -0.023544685915112495, -0.03355447202920914, 0.05077175050973892, -0.030169768258929253, -0.020773302763700485, -0.01732018031179905, -0.025200583040714264, 0.010377689264714718, 0.07418740540742874, -0.006102316081523895, -0.031330566853284836, -0.016708821058273315, 0.023822059854865074, 0.0461900532245636, 0.0508081391453743, -0.02681935951113701, 0.02652241289615631, 0.05650616064667702, 0.027994457632303238, -0.031776342540979385, 0.03837131708860397, 0.024107569828629494, -0.026167426258325577, -0.021202439442276955, 0.03126278892159462, 0.0026622796431183815, -0.04641943797469139, 0.03924322873353958, 0.013109380379319191, 0.0032680160365998745, -0.06830194592475891, -0.04513755440711975, 0.038403090089559555, -0.003015585709363222, -0.011424021795392036, 0.014648809097707272, 0.02162107452750206, -0.013311849907040596, 0.045891229063272476, -0.01226520724594593, 0.00640456099063158, -0.0225172508507967, -0.02035035751760006, 0.012624199502170086, -0.021320035681128502, 0.028508292511105537, 0.04942307621240616, -0.001373982522636652, 0.09457989037036896, -0.04629768058657646, 0.02093830145895481, -0.0541551299393177, -0.03830026462674141, 0.01807800866663456, 0.0551140271127224, 0.05543411895632744, 0.055289119482040405, 0.008482484146952629, -0.02760125696659088, 0.04539322480559349, 0.07251234352588654, 0.04566236957907677, -0.006297497544437647, -0.03279004245996475, -0.01640765555202961, 0.042601801455020905, 0.051213499158620834, -0.04771994799375534, -0.013701444491744041, 0.011589042842388153, 0.03254518657922745, -0.0035548186860978603, 0.016793090850114822, -0.028105640783905983, 0.039075709879398346, -0.04683937132358551, -0.042404692620038986, 0.04214978218078613, 0.01736058108508587, -0.000044144497223896906, 0.029335834085941315, 0.02738429419696331, 0.010777700692415237, 0.026172131299972534, 0.022136865183711052, 0.019603528082370758, -0.052618831396102905, 0.023379314690828323, 0.005804658867418766, 0.056720536202192307, -0.05352740362286568, 0.03364147990942001, -0.01713799312710762, 0.016463274136185646, 0.04252706840634346, -0.030976977199316025, 0.02746148221194744, 0.051109325140714645, 0.03553657606244087, -0.03835871070623398, 0.024186162278056145, 0.0041945818811655045, 0.03290432319045067, 0.04179676994681358, 0.010250459425151348, 0.07020509988069534, 0.022585470229387283, 0.041870325803756714, 0.07389628887176514, 0.019792303442955017, 0.03178732469677925, 0.013218950480222702, 0.06997456401586533, 0.017325248569250107, -0.011255987919867039, 0.04399704933166504, -0.04665330424904823, 0.021694578230381012, -0.05132824555039406, -0.0038836903404444456, -0.023940330371260643, -0.009271073155105114, 0.054124489426612854, 0.028159789741039276, -0.03711123764514923, -0.012758519500494003, 0.01671748422086239, -0.0072529977187514305, 0.020912542939186096, -0.0068221138790249825, 0.010443214327096939, -0.006675850600004196, -0.021814269945025444, -0.0280860997736454, -0.0690462738275528, -0.05362981557846069, -0.030090484768152237, -0.016911044716835022, -0.024507515132427216, -0.09089343994855881, -0.0042670839466154575, -0.0874939113855362, -0.02155468426644802, 0.028297059237957, 0.008488371968269348, -0.027438798919320107, -0.031220868229866028, 0.02103974111378193, -0.04839763045310974, -0.03920319303870201, -0.04029424488544464, -0.05983448401093483, -0.04810965433716774, -0.08233992755413055, 0.035990457981824875, 0.03665529191493988, 0.004446276463568211, 0.0003496952704153955, 0.025846349075436592, 0.0169257503002882, -0.028907714411616325, 0.03961643576622009, 0.06482238322496414, -0.034950513392686844, -0.05626535415649414, 0.03404228016734123, -0.010284004732966423, 0.02073526196181774, 0.022665822878479958, -0.03039894439280033, 0.08850501477718353, 0.07205802202224731, 0.007976978085935116, 0.022140927612781525, -0.009777799248695374, -0.06244824826717377, -0.06701283156871796, -0.023557106032967567, -0.039364006370306015, -0.007045610807836056, -0.04620697721838951, -0.037141039967536926, -0.03639654070138931, -0.04186145216226578, 0.0049581825733184814, -0.01180591806769371, 0.02664971724152565, 0.019368302077054977, 0.03756513074040413, 0.02190203033387661, 0.04415291175246239, -0.0317273773252964, -0.04082180932164192, 0.057451117783784866, 0.0103220259770751, 0.005506232846528292, -0.0861525908112526, -0.0012567981611937284, 0.027769440785050392, 0.016795357689261436, 0.017842520028352737, -0.006074025295674801, 0.07158048450946808, -0.01189741026610136, 0.006580372340977192, 0.0140479551628232, -0.010027351789176464, -0.01162611972540617, -0.0027066338807344437, -0.004257877357304096, 0.002645740984007716, -0.02352692186832428, -0.03230191767215729, -0.007883169688284397, 0.02946661226451397, -0.05667611211538315, -0.061900701373815536, -0.018859678879380226, 0.03341394662857056, 0.040584173053503036, -0.005175264086574316, -0.047743059694767, -0.008941106498241425, -0.07425586134195328, -0.004778541624546051, 0.038866106420755386, 0.01626160740852356, -0.004239234142005444, 0.04247613996267319, 0.016248080879449844, -0.006052551791071892, 0.028313593938946724, 0.05594474449753761, 0.0701654702425003, 0.009731409139931202, -0.0839405432343483, -0.0019989735446870327, -0.016207559034228325, 0.011531459167599678, -0.009599407203495502, -0.01845812238752842, -0.0195760615170002, -0.10031100362539291, -0.022130748257040977, 0.01642218977212906, 0.011131295002996922, -0.016804538667201996, 0.032432686537504196, 0.004757496528327465, -0.03078993409872055, -0.00730023393407464, 0.013978813774883747, 0.04562794789671898, -0.027284806594252586, 0.050686683505773544, -0.030766963958740234, 0.00022648782760370523, -0.057858556509017944, 0.015776166692376137, -0.0540095753967762, -0.02107922174036503, 0.013203239068388939, 0.04744340851902962, -0.028293048962950706, 0.05292300879955292, 0.06748230010271072, 0.04109857231378555, -0.051456306129693985, 0.03789379447698593, 0.07478842884302139, -0.042976025491952896, -0.04518608748912811, -0.0032176256645470858, 0.0019971453584730625, -0.014850372448563576, 0.0038058036006987095, -0.002888232236728072, 0.054350659251213074, 0.02570548839867115, 0.0032719457522034645, -0.0002956643875222653, -0.010378263890743256, -0.00867086835205555, -0.02718311734497547, -0.049623630940914154, -0.02924606017768383, 0.002338784746825695, -0.027100997045636177, 0.023621531203389168, 0.025318725034594536, 0.032271310687065125, 0.07302960753440857, 0.019145067781209946, -0.04087360203266144, -0.0028814924880862236, 0.02284192107617855, 0.00938399787992239, -0.01773328334093094, -0.06957387179136276, -0.042594049125909805, 0.029070185497403145, 0.04828071594238281, -0.02243218384683132, -0.06158833205699921, 0.014454314485192299, 0.05032483488321304, -0.05913512408733368, 0.05834686756134033, -0.005129280034452677, 0.054586801677942276, 0.055802956223487854, -0.008727398701012135, 0.04450506344437599, -0.0194100234657526, -0.006319453474134207, -0.004247934091836214, 0.04008401930332184, -0.009094525128602982, -0.033455751836299896, -0.04675804078578949, 0.02041872963309288, 0.040508948266506195, 0.031496819108724594, 0.044925037771463394, -0.03434823825955391, -0.040735505521297455, 0.007041070610284805, 0.024542884901165962, -0.03970154747366905, -0.007454337552189827, 0.03939881920814514, 0.030955957248806953, -0.047749266028404236, -0.022750485688447952, -0.02207900770008564, -0.01581651158630848, 0.03861895948648453, 0.007361473981291056, -0.019221464172005653, -0.04630658030509949, 0.04040909558534622, -0.016147654503583908, -0.028684884309768677, -0.0661303773522377, 0.04834127053618431, -0.013789704069495201, -0.02358553372323513, 0.05573781579732895, 0.03604834899306297, 0.019435247406363487, 0.07230400294065475, 0.03290252387523651, 0.01419978030025959, -0.03333265706896782, 0.040198031812906265, -0.03283754736185074, -0.01748872920870781, 0.006247038021683693, -0.03205680474638939, -0.036835528910160065, -0.0013817850267514586, -0.06396867334842682, -0.03645577281713486, -0.03014952503144741, 0.017971862107515335, 0.002798214554786682, -0.018792979419231415, -0.0008132311049848795, 0.05875261873006821, -0.007211722433567047, -0.04265123978257179, -0.04564798250794411, -0.013931336812675, -0.06931508332490921, -0.052533719688653946, 0.0012509316438809037, 0.0067602298222482204, 0.03320764750242233, 0.037217192351818085, 0.02453993260860443, 0.01830633357167244, 0.020074015483260155, -0.03913021832704544, 0.015086067840456963, 0.018798409029841423, -0.0423787385225296, -0.02063143253326416, 0.03704541176557541, 0.011262398213148117, 0.023228095844388008, -0.039243705570697784, 0.03427745774388313, 0.0006264119292609394, -0.00689413957297802, -0.02324267290532589, 0.01617436110973358, 0.031034834682941437, -0.06189152970910072, -0.0335528738796711, -0.018011488020420074, -0.028604570776224136, 0.032605331391096115, -0.02506491355597973, -0.02003377303481102, 0.013569984585046768, 0.004322629887610674, 0.03577264025807381, -0.03599879890680313, -0.012269634753465652, 0.026910187676548958, -0.0029260520823299885, 0.02022848278284073, -0.05649740621447563, 0.06115627661347389, -0.038945674896240234, 0.024909745901823044, -0.019559040665626526, 0.009523716755211353, -0.020425133407115936, 0.027650458738207817, -0.02412232756614685, -0.0237642340362072, -0.014192133210599422, 0.058107584714889526, -0.01182028278708458, 0.029938343912363052, -0.008935235440731049, 0.03993288055062294, -0.027500303462147713, 0.06829997152090073, -0.038887735456228256, 0.02104719914495945, -0.04086152836680412, 0.026828663423657417, -0.021135367453098297, 0.018837731331586838, -0.013794397935271263, -0.019910838454961777, 0.03461567685008049, 0.062124788761138916, 0.034267451614141464, 0.02943137101829052, -0.004749748855829239, -0.014383380301296711, 0.012139962054789066, -0.041865114122629166, -0.019404835999011993, -0.010796889662742615, -0.0005110753700137138, -0.021370956674218178, 0.05513809621334076, 0.030906235799193382, -0.05683709681034088, -0.0747004821896553, 0.03789352625608444, 0.0177167858928442, -0.0002531305653974414, 0.005354197695851326, 0.047085199505090714, 0.03257143497467041, 0.04217445105314255, -0.016842864453792572, -0.008035029284656048, -0.0010328140342608094, -0.05018606409430504, 0.023123031482100487, -0.0049112518317997456, 0.027638128027319908, 0.014139085076749325, -0.04401383548974991, -0.023732764646410942, 0.05721115693449974, 0.027074284851551056, 0.025745024904608727, 0.0027369498275220394, -0.04395483434200287, 0.0382138267159462, 0.007772653829306364, -0.035215482115745544, 0.029905401170253754, 0.008044993504881859, -0.022107986733317375, 0.04781314730644226, -0.0077939871698617935, 0.0020366827957332134, 0.06048271805047989, 0.01770268753170967, -0.01939981058239937, 0.07082252949476242, -0.038624659180641174, 0.011353816837072372, 0.04117211326956749, -0.07662824541330338, -0.008156415075063705, -0.05031879246234894, 0.05733797699213028, -0.06803710758686066, 0.023729773238301277, 0.057383257895708084, -0.0014553784858435392, 0.027891473844647408, -0.05234680324792862, -0.06060348078608513, 0.019413433969020844, -0.03984256461262703, 0.07008477300405502, 0.012551337480545044, -0.04484293982386589, 0.05289381742477417, 0.012583901174366474, -0.06419022381305695, 0.038304250687360764, 0.02834833599627018, 0.05465846508741379, 0.03949468582868576, 0.04713672399520874, -0.04369292035698891, -0.002562899375334382, -0.033395957201719284, 0.01663004234433174, -0.05044190213084221, -0.012314800173044205, 0.03674963861703873, -0.041639626026153564, -0.02511598728597164, 0.028518209233880043, -0.012093199416995049, -0.017679141834378242, 0.05138331651687622, -0.051834382116794586, -0.03915495425462723, 0.014625070616602898, 0.0211577657610178, -0.04270650073885918, -0.013307803310453892, -0.03057965636253357, 0.011182129383087158, 0.010797080583870411, 0.0034911257680505514, -0.020524349063634872, -0.016384532675147057, 0.028197521343827248, -0.045046813786029816, -0.03221019729971886, 0.02222929149866104, -0.009953555651009083, -0.021159352734684944, 0.03936067223548889, 0.010976900346577168, 0.013119364157319069, 0.030967336148023605, -0.013813610188663006, 0.023585541173815727, -0.03645983338356018, -0.01799529790878296, 0.030156483873724937, -0.009625122882425785, 0.022010521963238716, 0.011870141141116619, 0.03165191784501076, 0.038038771599531174, 0.02178255096077919, -0.003026140620931983, -0.03587500378489494, -0.030845357105135918, 0.013268822804093361, -0.040201883763074875, 0.004845425020903349, -0.006082058884203434, -0.05052800476551056, -0.020985199138522148, 0.002924221334978938, -0.04321549832820892, 0.03780475631356239, -0.06382345408201218, 0.00795497465878725, 0.04623689875006676, -0.01679602637887001, -0.060552310198545456, -0.11524423956871033, -0.013495261780917645, -0.05428266525268555, -0.013950057327747345, 0.0506490096449852, -0.036367256194353104, 0.04516645148396492, -0.05095565319061279, -0.031185902655124664, 0.03950217738747597, 0.05264078825712204, -0.05760221183300018, 0.06041660159826279, 0.04487062990665436, -0.04885611683130264, 0.01201199647039175, 0.022738464176654816, -0.0516219288110733, 0.0027630615513771772, 0.015558728016912937, -0.0033412736374884844, 0.023725520819425583, 0.014018350280821323, -0.05984959006309509, -0.018045520409941673, -0.0709841176867485, -0.04075907543301582, -0.04680296406149864, 0.006440510507673025, 0.04723726212978363 ]
DeepPavlov/marianmt-tatoeba-enru
[ "pytorch", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
1
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-0 results: [] --- <!-- 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__sst2__train-8-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6920 - Accuracy: 0.5189 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6916 | 1.0 | 3 | 0.7035 | 0.25 | | 0.6852 | 2.0 | 6 | 0.7139 | 0.25 | | 0.6533 | 3.0 | 9 | 0.7192 | 0.25 | | 0.6211 | 4.0 | 12 | 0.7322 | 0.25 | | 0.5522 | 5.0 | 15 | 0.7561 | 0.25 | | 0.488 | 6.0 | 18 | 0.7883 | 0.25 | | 0.48 | 7.0 | 21 | 0.8224 | 0.25 | | 0.3948 | 8.0 | 24 | 0.8605 | 0.25 | | 0.3478 | 9.0 | 27 | 0.8726 | 0.25 | | 0.2723 | 10.0 | 30 | 0.8885 | 0.25 | | 0.2174 | 11.0 | 33 | 0.8984 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013060057535767555, 0.01392532791942358, -0.04364375025033951, 0.04149741306900978, 0.05123685672879219, 0.017559507861733437, -0.018574310466647148, -0.02374272793531418, -0.0561889186501503, 0.06520863622426987, 0.014227690175175667, -0.033024609088897705, 0.013198582455515862, 0.04341280460357666, -0.015038718469440937, -0.03700363263487816, -0.0018671677680686116, -0.011824685148894787, -0.031675275415182114, -0.004552333615720272, 0.0036976418923586607, -0.015382164157927036, -0.015776462852954865, 0.0033253252040594816, -0.0043401774019002914, 0.016641156747937202, 0.007658437360078096, 0.02210509218275547, 0.03841652721166611, -0.0676121637225151, 0.005636341869831085, -0.029190100729465485, -0.05316228047013283, -0.021939050406217575, -0.011787059716880322, -0.017808059230446815, -0.005994641687721014, 0.027118612080812454, 0.03605961427092552, 0.037736039608716965, 0.007890683598816395, 0.03262379392981529, -0.0018829010659828782, -0.013140188530087471, 0.06099136918783188, 0.010298416018486023, -0.0391850508749485, -0.00040461955359205604, 0.039850227534770966, -0.02511403150856495, -0.07924886047840118, -0.047418344765901566, -0.017881624400615692, 0.024583963677287102, -0.016625087708234787, -0.014132869429886341, -0.060353394597768784, 0.01655208319425583, 0.06613253057003021, -0.0460301898419857, -0.029601993039250374, 0.001107428572140634, -0.07292784750461578, 0.005335680674761534, 0.03595993295311928, -0.01830414868891239, 0.012708854861557484, -0.05102447047829628, 0.025634529069066048, -0.010806179605424404, 0.05503397807478905, -0.020896518602967262, 0.011157212778925896, -0.07222344726324081, -0.018957823514938354, -0.008897308260202408, 0.044172175228595734, 0.05564802512526512, -0.030984865501523018, 0.0518067330121994, 0.031522948294878006, -0.0011155647225677967, 0.043630484491586685, -0.028635460883378983, 0.008839777670800686, 0.03153568506240845, -0.04494164511561394, -0.001412197365425527, 0.01869000867009163, 0.026677416637539864, -0.03613226115703583, -0.035652562975883484, -0.029224613681435585, -0.03184235841035843, -0.0005411009769886732, 0.019710306078195572, 0.02627936750650406, 0.01708497665822506, 0.037142395973205566, 0.013102023862302303, 0.026059212163090706, 0.03773123398423195, -0.017071835696697235, 0.06911242753267288, -0.007003124803304672, -0.010679129511117935, -0.006149567663669586, -0.017299478873610497, -0.05070246756076813, 0.01993352733552456, 0.02744932286441326, -0.020355908200144768, -0.011244709603488445, 0.03783014789223671, 0.0050880396738648415, 0.004280316177755594, 0.07718246430158615, -0.0244370698928833, -0.03991555795073509, -0.03528106212615967, 0.02512270212173462, 0.016417019069194794, -0.018717508763074875, 0.01642450876533985, -0.04512326791882515, -0.01654457300901413, -0.02467646449804306, -0.01777571253478527, -0.020612001419067383, 0.02153114601969719, 0.015768708661198616, 0.06418465822935104, 0.03175003454089165, -0.08883479237556458, 0.004706401843577623, 0.014567230828106403, -0.05586155503988266, 0.04859715327620506, 0.023208418861031532, 0.11406286060810089, -0.056937843561172485, -0.06689327955245972, 0.008592458441853523, 0.0011579422280192375, -0.042198654264211655, 0.014667478390038013, 0.0024675882887095213, -0.026477858424186707, 0.0059695374220609665, 0.003248721593990922, 0.06776474416255951, -0.04171501472592354, -0.009282787330448627, 0.07460533082485199, 0.0056406185030937195, 0.04566149786114693, -0.056140296161174774, -0.028771214187145233, 0.017558680847287178, -0.020416896790266037, -0.0343935452401638, 0.0501900352537632, -0.027188770473003387, -0.016744868829846382, -0.017938407137989998, -0.024983134120702744, 0.010805484838783741, 0.07477182149887085, -0.007286998443305492, -0.032353077083826065, -0.019005706533789635, 0.025334779173135757, 0.04441578686237335, 0.04958435148000717, -0.026223063468933105, 0.025378761813044548, 0.05754663422703743, 0.02757631242275238, -0.031094230711460114, 0.041116226464509964, 0.023076917976140976, -0.02327854558825493, -0.020198052749037743, 0.0325673446059227, 0.004407169297337532, -0.04713497310876846, 0.038457754999399185, 0.013384356163442135, 0.004397538490593433, -0.06968749314546585, -0.04579975828528404, 0.04008418321609497, -0.004597851075232029, -0.01208463590592146, 0.012943251989781857, 0.022183867171406746, -0.01461523026227951, 0.04678327590227127, -0.01204025000333786, 0.0070719108916819096, -0.02355012856423855, -0.019769908860325813, 0.013207551091909409, -0.02129083313047886, 0.02825799398124218, 0.048350926488637924, -0.001471380121074617, 0.0949973613023758, -0.045271407812833786, 0.020572416484355927, -0.05534747987985611, -0.03710297495126724, 0.019040416926145554, 0.056461114436388016, 0.05598393455147743, 0.055154453963041306, 0.006341469939798117, -0.02615886554121971, 0.04515613615512848, 0.07187134027481079, 0.046016909182071686, -0.0041663506999611855, -0.03500625491142273, -0.017548181116580963, 0.041828703135252, 0.051398199051618576, -0.050219517201185226, -0.014345650561153889, 0.011361450888216496, 0.031244823709130287, -0.004405416082590818, 0.017117127776145935, -0.024225061759352684, 0.039783868938684464, -0.04668780043721199, -0.04124574735760689, 0.042964622378349304, 0.01907825469970703, 0.00030430330662056804, 0.029507316648960114, 0.02802155539393425, 0.01137423887848854, 0.024073829874396324, 0.01995491236448288, 0.0174732506275177, -0.05084983631968498, 0.02554515190422535, 0.00548169482499361, 0.059251949191093445, -0.053125232458114624, 0.033445995301008224, -0.015637362375855446, 0.016159284859895706, 0.04313570633530617, -0.03341422230005264, 0.02761765941977501, 0.05189737677574158, 0.03581424802541733, -0.03801386058330536, 0.026401828974485397, 0.0017801427748054266, 0.03294410556554794, 0.039420727640390396, 0.008329423144459724, 0.07121558487415314, 0.021256422623991966, 0.04514038935303688, 0.07461536675691605, 0.019329752773046494, 0.03225869685411453, 0.014426094479858875, 0.07141149044036865, 0.018601130694150925, -0.011357738636434078, 0.0487222820520401, -0.044043321162462234, 0.021723739802837372, -0.050889402627944946, -0.0032521337270736694, -0.02388002909719944, -0.009621340781450272, 0.054078638553619385, 0.024825330823659897, -0.03630548715591431, -0.010870645754039288, 0.015577991493046284, -0.008779114112257957, 0.022388163954019547, -0.005531334318220615, 0.00928734615445137, -0.0071202656254172325, -0.022147471085190773, -0.029577365145087242, -0.0705774798989296, -0.05059373006224632, -0.031559016555547714, -0.01576719433069229, -0.024103347212076187, -0.08928827196359634, -0.0032258257269859314, -0.0868893712759018, -0.02272927761077881, 0.027965890243649483, 0.00935532245784998, -0.026658758521080017, -0.03392669931054115, 0.02275494672358036, -0.0487937331199646, -0.04081612825393677, -0.04090379551053047, -0.058941323310136795, -0.04998729005455971, -0.0827581062912941, 0.03503362089395523, 0.03654699772596359, 0.007440145593136549, 0.0015730955637991428, 0.026800626888871193, 0.016043702140450478, -0.02749662660062313, 0.03847320005297661, 0.06729942560195923, -0.038036901503801346, -0.05703511834144592, 0.03251858428120613, -0.008752508088946342, 0.01823248900473118, 0.020496537908911705, -0.030743489041924477, 0.09094002097845078, 0.0710432231426239, 0.00623173825442791, 0.02130056731402874, -0.011625446379184723, -0.06267277151346207, -0.06418991088867188, -0.023430781438946724, -0.03928987309336662, -0.008091012947261333, -0.04479324445128441, -0.03829161822795868, -0.036738231778144836, -0.04033171385526657, 0.004210427403450012, -0.01238578837364912, 0.023849932476878166, 0.021263549104332924, 0.035437460988759995, 0.019703365862369537, 0.04378660023212433, -0.02903769351541996, -0.03821437433362007, 0.05830346792936325, 0.009008899331092834, 0.0050730942748487, -0.08519632369279861, -0.001517230411991477, 0.026375092566013336, 0.017640719190239906, 0.016795016825199127, -0.003378757741302252, 0.07189638912677765, -0.011615468189120293, 0.003735912963747978, 0.012787654995918274, -0.011359802447259426, -0.012061933055520058, -0.0032137755770236254, -0.00409356877207756, 0.003557771211490035, -0.022956455126404762, -0.03386934474110603, -0.009419606067240238, 0.028287239372730255, -0.05805789306759834, -0.06122155487537384, -0.015614972449839115, 0.03487140312790871, 0.042793482542037964, -0.005072621162980795, -0.04627732187509537, -0.0063646286725997925, -0.07461456954479218, -0.0032040413934737444, 0.03800145164132118, 0.016826339066028595, -0.004553498700261116, 0.04298027232289314, 0.015839938074350357, -0.007373973727226257, 0.029684187844395638, 0.05822276696562767, 0.06932571530342102, 0.008249222300946712, -0.0847611278295517, -0.001156558166258037, -0.015400441363453865, 0.010360483080148697, -0.012483489699661732, -0.019481757655739784, -0.021480383351445198, -0.10021276026964188, -0.01927902363240719, 0.017096521332859993, 0.010966386646032333, -0.01713450625538826, 0.0341247022151947, 0.0032906290143728256, -0.028814153745770454, -0.003630564082413912, 0.012758790515363216, 0.04764855280518532, -0.02894812636077404, 0.052716486155986786, -0.03035828284919262, -0.0010899074841290712, -0.058965373784303665, 0.017104700207710266, -0.05344754084944725, -0.021919110789895058, 0.014015058055520058, 0.04466267302632332, -0.0266143586486578, 0.05164768546819687, 0.06991343200206757, 0.04247308894991875, -0.0522642619907856, 0.03868540748953819, 0.07242891937494278, -0.04349793493747711, -0.04664097726345062, -0.00486030662432313, 0.00029328142409212887, -0.014119715429842472, 0.00135621742811054, -0.004311887081712484, 0.05250716209411621, 0.025581613183021545, 0.005248026456683874, 0.0008986823377199471, -0.007557162083685398, -0.00753097515553236, -0.028024014085531235, -0.05213281884789467, -0.03119153343141079, 0.00460611330345273, -0.026523923501372337, 0.021499238908290863, 0.027639910578727722, 0.034058164805173874, 0.07485970854759216, 0.021401507779955864, -0.03925099968910217, -0.002719789743423462, 0.024609308689832687, 0.010012910701334476, -0.01649673841893673, -0.07098419219255447, -0.04076109826564789, 0.029511956498026848, 0.04797622188925743, -0.023060832172632217, -0.06083059683442116, 0.013814297504723072, 0.05189633369445801, -0.05919675529003143, 0.057239990681409836, -0.00470761489123106, 0.055050551891326904, 0.056248970329761505, -0.0090695945546031, 0.04304680600762367, -0.020093955099582672, -0.006596899125725031, -0.003810644382610917, 0.039849478751420975, -0.01070953719317913, -0.034166380763053894, -0.05024411529302597, 0.020209506154060364, 0.041102614253759384, 0.0317462794482708, 0.04274873062968254, -0.03543560951948166, -0.04054849594831467, 0.006849221419543028, 0.02472112514078617, -0.03935934975743294, -0.005638665519654751, 0.037077173590660095, 0.03102026879787445, -0.04744122549891472, -0.0224078930914402, -0.02307446487247944, -0.015988921746611595, 0.038951288908720016, 0.006275098770856857, -0.01804429478943348, -0.04653804004192352, 0.041144490242004395, -0.015756135806441307, -0.025945192202925682, -0.0667487159371376, 0.049832094460725784, -0.01340831071138382, -0.023660294711589813, 0.05485382676124573, 0.037008218467235565, 0.019109144806861877, 0.07268635928630829, 0.033248014748096466, 0.01633026823401451, -0.03415016457438469, 0.04230513051152229, -0.03447676822543144, -0.01967358961701393, 0.006138746161013842, -0.029830114915966988, -0.03880224749445915, -0.0008095204248093069, -0.06413226574659348, -0.035354211926460266, -0.030125712975859642, 0.01761617511510849, 0.0011558829573914409, -0.018755706027150154, 0.00012640777276828885, 0.05926413834095001, -0.0053216381929814816, -0.04190019518136978, -0.046456124633550644, -0.01419562753289938, -0.06899045407772064, -0.05142386630177498, -0.0016962754307314754, 0.006067958194762468, 0.0324152447283268, 0.03548002988100052, 0.024012887850403786, 0.01722649671137333, 0.018681960180401802, -0.03985963761806488, 0.0163470059633255, 0.019864460453391075, -0.041092243045568466, -0.019108762964606285, 0.037294719368219376, 0.011858592741191387, 0.02414702996611595, -0.037984732538461685, 0.036407697945833206, 0.0018879304407164454, -0.005531489383429289, -0.024788685142993927, 0.015264506451785564, 0.03099684976041317, -0.06407319009304047, -0.03628774732351303, -0.016861066222190857, -0.02769971452653408, 0.030970335006713867, -0.02523418888449669, -0.020491547882556915, 0.013038529083132744, 0.004076942801475525, 0.03525782749056816, -0.03371276333928108, -0.01045912317931652, 0.02846255712211132, -0.0008745979284867644, 0.019058408215641975, -0.056921884417533875, 0.0615856908261776, -0.037314485758543015, 0.02502165175974369, -0.02169433794915676, 0.010848353616893291, -0.0221028383821249, 0.02482588402926922, -0.02700161188840866, -0.023329898715019226, -0.013136506080627441, 0.058167047798633575, -0.012878216803073883, 0.029622720554471016, -0.009903792291879654, 0.03852541744709015, -0.028422804549336433, 0.07086195796728134, -0.03877469524741173, 0.019297877326607704, -0.03980369493365288, 0.028285881504416466, -0.017913714051246643, 0.018789120018482208, -0.012378793209791183, -0.01592080108821392, 0.0325644314289093, 0.06377376616001129, 0.029489904642105103, 0.028002846986055374, -0.0023752970155328512, -0.01522599346935749, 0.011737098917365074, -0.04101470857858658, -0.019526755437254906, -0.01184113509953022, -0.0026002274826169014, -0.01989619806408882, 0.05605245381593704, 0.03125780448317528, -0.05599486827850342, -0.074216328561306, 0.036435775458812714, 0.02020973153412342, -0.0016985140973702073, 0.008193505927920341, 0.04500482603907585, 0.03299344331026077, 0.0417102575302124, -0.015188923105597496, -0.007207089103758335, 0.00047635682858526707, -0.05118982493877411, 0.022702470421791077, -0.005131417419761419, 0.02583414874970913, 0.013914131559431553, -0.04284823313355446, -0.02267342247068882, 0.057195812463760376, 0.023267151787877083, 0.025180520489811897, 0.0027765685226768255, -0.04228350520133972, 0.03822654113173485, 0.007123572751879692, -0.034896187484264374, 0.02959524467587471, 0.010577344335615635, -0.023229451850056648, 0.0450579859316349, -0.00988238025456667, 0.0023813091684132814, 0.060968782752752304, 0.017087422311306, -0.02078615128993988, 0.07008878886699677, -0.03780090808868408, 0.011546928435564041, 0.040777504444122314, -0.07618310302495956, -0.009693372994661331, -0.04981745034456253, 0.05744395777583122, -0.06818287074565887, 0.023505764082074165, 0.057987093925476074, -0.002272207522764802, 0.029715662822127342, -0.05327633023262024, -0.05860785394906998, 0.018499819561839104, -0.038845960050821304, 0.06911245733499527, 0.01069212332367897, -0.04391538351774216, 0.05302969366312027, 0.012347751297056675, -0.06348836421966553, 0.035701412707567215, 0.026935754343867302, 0.05495532229542732, 0.037785306572914124, 0.04835169017314911, -0.04340536147356033, -0.003497403347864747, -0.03580894693732262, 0.01601823791861534, -0.0518098920583725, -0.012925779446959496, 0.035945333540439606, -0.04272882267832756, -0.025786343961954117, 0.028761092573404312, -0.012653554789721966, -0.01904161088168621, 0.0521898977458477, -0.05388907715678215, -0.03939086198806763, 0.016073433682322502, 0.020912691950798035, -0.04238871857523918, -0.011549352668225765, -0.03040791116654873, 0.010976152494549751, 0.010468848049640656, 0.004714688286185265, -0.020520007237792015, -0.01886611245572567, 0.030550245195627213, -0.04317781329154968, -0.03149981051683426, 0.02067348174750805, -0.007599029690027237, -0.02285734936594963, 0.040426626801490784, 0.0089478874579072, 0.01473222952336073, 0.03031983971595764, -0.013977698981761932, 0.023799819871783257, -0.036724887788295746, -0.01771949604153633, 0.03143901750445366, -0.007450123783200979, 0.019399123266339302, 0.008483308367431164, 0.030797874554991722, 0.037171512842178345, 0.024599691852927208, -0.0019388566724956036, -0.03723325952887535, -0.030344638973474503, 0.01595882512629032, -0.04001897946000099, 0.0070078871212899685, -0.004781253170222044, -0.05288292467594147, -0.022432362660765648, 0.005460468586534262, -0.042656347155570984, 0.03954575955867767, -0.06488045305013657, 0.008530003018677235, 0.046932123601436615, -0.016367211937904358, -0.060155220329761505, -0.11533434689044952, -0.01594436913728714, -0.056508034467697144, -0.013945607468485832, 0.051104702055454254, -0.036897994577884674, 0.04263307899236679, -0.04996653273701668, -0.03178365156054497, 0.03914102166891098, 0.0522473119199276, -0.05988651514053345, 0.06067706272006035, 0.043674033135175705, -0.04924025014042854, 0.008671480230987072, 0.02126670815050602, -0.0517616905272007, 0.003244068706408143, 0.015030759386718273, -0.00395485432818532, 0.021439621224999428, 0.014031543396413326, -0.057059597223997116, -0.01865326426923275, -0.07054018974304199, -0.037262506783008575, -0.04690612107515335, 0.007321851793676615, 0.046844445168972015 ]
DeepPavlov/marianmt-tatoeba-ruen
[ "pytorch", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
30
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-1 results: [] --- <!-- 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__sst2__train-8-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6930 - Accuracy: 0.5047 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7082 | 1.0 | 3 | 0.7048 | 0.25 | | 0.6761 | 2.0 | 6 | 0.7249 | 0.25 | | 0.6653 | 3.0 | 9 | 0.7423 | 0.25 | | 0.6212 | 4.0 | 12 | 0.7727 | 0.25 | | 0.5932 | 5.0 | 15 | 0.8098 | 0.25 | | 0.5427 | 6.0 | 18 | 0.8496 | 0.25 | | 0.5146 | 7.0 | 21 | 0.8992 | 0.25 | | 0.4356 | 8.0 | 24 | 0.9494 | 0.25 | | 0.4275 | 9.0 | 27 | 0.9694 | 0.25 | | 0.3351 | 10.0 | 30 | 0.9968 | 0.25 | | 0.2812 | 11.0 | 33 | 1.0056 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013033964671194553, 0.014234628528356552, -0.044166937470436096, 0.04208529368042946, 0.05084477737545967, 0.016740310937166214, -0.017360229045152664, -0.023962410166859627, -0.055575910955667496, 0.06422601640224457, 0.01370332483202219, -0.03229992091655731, 0.01238299161195755, 0.04353060573339462, -0.016127636656165123, -0.036534383893013, -0.0026282130274921656, -0.012291740626096725, -0.03190390393137932, -0.003961050417274237, 0.0034404215402901173, -0.014882094226777554, -0.015997277572751045, 0.0033138759899884462, -0.004690525587648153, 0.017801392823457718, 0.007597715128213167, 0.02227109670639038, 0.03844393044710159, -0.06733762472867966, 0.005031310487538576, -0.030168961733579636, -0.05340098962187767, -0.02203906886279583, -0.01252529863268137, -0.01799716427922249, -0.005766275338828564, 0.026779472827911377, 0.035411812365055084, 0.03892338648438454, 0.008849610574543476, 0.03121918812394142, -0.0009495519334450364, -0.013523338362574577, 0.06077854335308075, 0.0097292335703969, -0.03863082081079483, 0.00015679176431149244, 0.03933633118867874, -0.02450832910835743, -0.07959546148777008, -0.04839901626110077, -0.016564516350626945, 0.023986227810382843, -0.01763000711798668, -0.013462654314935207, -0.059114255011081696, 0.01604733243584633, 0.06642725318670273, -0.04624660313129425, -0.03051397018134594, 0.0014113401994109154, -0.07210245728492737, 0.006407253444194794, 0.03525412455201149, -0.017492705956101418, 0.012735948897898197, -0.05164368078112602, 0.02491903491318226, -0.011835403740406036, 0.05479491874575615, -0.020746499300003052, 0.011185775510966778, -0.07303468137979507, -0.018828248605132103, -0.008051500655710697, 0.04553911089897156, 0.0553666315972805, -0.030233005061745644, 0.05287754535675049, 0.03047505021095276, -0.0012887316988781095, 0.044685058295726776, -0.0284056905657053, 0.009888305328786373, 0.02998923696577549, -0.04497797042131424, -0.0015581954503431916, 0.019618939608335495, 0.02626800909638405, -0.03513472154736519, -0.03528165817260742, -0.029261235147714615, -0.032717928290367126, -0.0009784192079678178, 0.01938444934785366, 0.02572491019964218, 0.017137499526143074, 0.03796658292412758, 0.012336049228906631, 0.02665267325937748, 0.037490688264369965, -0.018346844241023064, 0.06917279213666916, -0.007246306166052818, -0.010829947888851166, -0.006459464784711599, -0.017405005171895027, -0.051079750061035156, 0.01902901940047741, 0.026662662625312805, -0.020442267879843712, -0.011781485751271248, 0.03870290145277977, 0.0049355304799973965, 0.0036242096684873104, 0.0771319642663002, -0.024927496910095215, -0.04009652137756348, -0.032808028161525726, 0.024485960602760315, 0.016193196177482605, -0.019882341846823692, 0.015048452652990818, -0.0446939617395401, -0.016487736254930496, -0.023882141336798668, -0.018537189811468124, -0.019070828333497047, 0.021176958456635475, 0.016096388921141624, 0.06437461078166962, 0.031107835471630096, -0.09020631015300751, 0.00391985010355711, 0.0136399045586586, -0.054635923355817795, 0.048322465270757675, 0.021870406344532967, 0.11384252458810806, -0.05762210488319397, -0.06730979681015015, 0.008355987258255482, 0.0012837678659707308, -0.041083432734012604, 0.015490267425775528, 0.0017772871069610119, -0.025831973180174828, 0.006272889673709869, 0.0034365218598395586, 0.06658105552196503, -0.042071226984262466, -0.009098367765545845, 0.0754702165722847, 0.006069025490432978, 0.04617907106876373, -0.05617036297917366, -0.02952299453318119, 0.01770464889705181, -0.02039216086268425, -0.033763185143470764, 0.049145713448524475, -0.028080761432647705, -0.0166176650673151, -0.017447087913751602, -0.025423411279916763, 0.010251525789499283, 0.07430458068847656, -0.007305623963475227, -0.03220713511109352, -0.018457558006048203, 0.02470562234520912, 0.045792728662490845, 0.049267418682575226, -0.026983413845300674, 0.024780798703432083, 0.05676155909895897, 0.028093021363019943, -0.031098023056983948, 0.04044180363416672, 0.02364620566368103, -0.02365744113922119, -0.02039247937500477, 0.030813109129667282, 0.004204913973808289, -0.04772093519568443, 0.038013700395822525, 0.013041003607213497, 0.004642620217055082, -0.06832923740148544, -0.04609556123614311, 0.039936743676662445, -0.003822645638138056, -0.012164551764726639, 0.012290477752685547, 0.021879050880670547, -0.015826137736439705, 0.046805959194898605, -0.0131069952622056, 0.00749170919880271, -0.022515729069709778, -0.02059233747422695, 0.013141876086592674, -0.021873438730835915, 0.028043583035469055, 0.0481240376830101, -0.002945257117971778, 0.09473398327827454, -0.045312393456697464, 0.02067640610039234, -0.056215427815914154, -0.03763953223824501, 0.018627556040883064, 0.056339118629693985, 0.05659433454275131, 0.054827529937028885, 0.0072370064444839954, -0.026397207751870155, 0.04482462629675865, 0.072031170129776, 0.045892320573329926, -0.003370590042322874, -0.034876301884651184, -0.01733945682644844, 0.041688546538352966, 0.051488809287548065, -0.049958981573581696, -0.01563962735235691, 0.01305214874446392, 0.03173811733722687, -0.004304161760956049, 0.016907043755054474, -0.024091392755508423, 0.03962487727403641, -0.04694243520498276, -0.04055463895201683, 0.04277168586850166, 0.018143026158213615, -0.00011472774349385872, 0.029497817158699036, 0.02819802612066269, 0.01032822486013174, 0.024544673040509224, 0.02050120010972023, 0.01795283332467079, -0.05076088756322861, 0.02405034378170967, 0.005117394030094147, 0.05862656980752945, -0.05379271134734154, 0.03381956368684769, -0.01563362032175064, 0.015094161033630371, 0.044021472334861755, -0.03158058226108551, 0.028132328763604164, 0.05214618518948555, 0.03624566271901131, -0.03962861746549606, 0.025170432403683662, 0.002587469993159175, 0.03331402689218521, 0.040506038814783096, 0.008032644167542458, 0.07126952707767487, 0.02068239636719227, 0.044884178787469864, 0.07565011084079742, 0.019525811076164246, 0.031975727528333664, 0.015534300357103348, 0.07102038711309433, 0.018137479200959206, -0.01255414355546236, 0.04688260331749916, -0.045046497136354446, 0.021908851340413094, -0.05111187696456909, -0.003198702121153474, -0.02347831055521965, -0.00997120700776577, 0.05492177978157997, 0.02493988908827305, -0.03591551631689072, -0.010913997888565063, 0.01629386842250824, -0.008345577865839005, 0.021922502666711807, -0.006983371451497078, 0.010521898046135902, -0.008391695097088814, -0.022169077768921852, -0.028298914432525635, -0.06941039860248566, -0.05151880905032158, -0.03173012658953667, -0.01638970710337162, -0.024779032915830612, -0.09088803082704544, -0.004236405715346336, -0.08750038594007492, -0.02245974726974964, 0.028278576210141182, 0.0104035260155797, -0.026945551857352257, -0.03441449627280235, 0.022201823070645332, -0.04928426072001457, -0.03974989801645279, -0.041694171726703644, -0.059462931007146835, -0.050066761672496796, -0.08306744694709778, 0.03572094440460205, 0.03629555180668831, 0.006826810538768768, 0.0025760752614587545, 0.026216251775622368, 0.014995438046753407, -0.028113899752497673, 0.03770860657095909, 0.06689801067113876, -0.03690734878182411, -0.05553518608212471, 0.033450547605752945, -0.008642052300274372, 0.01868400163948536, 0.019809046760201454, -0.031166788190603256, 0.09021655470132828, 0.07023100554943085, 0.007034684531390667, 0.02097938396036625, -0.010807775892317295, -0.06311602890491486, -0.06485288590192795, -0.02381051890552044, -0.038913123309612274, -0.0077207074500620365, -0.044539496302604675, -0.03773321583867073, -0.036963898688554764, -0.0411246120929718, 0.004059881903231144, -0.011869997717440128, 0.024154057726264, 0.020437972620129585, 0.034634850919246674, 0.020567286759614944, 0.0428738072514534, -0.030175982043147087, -0.03907492756843567, 0.05799645930528641, 0.010028297081589699, 0.005997528322041035, -0.08573183417320251, -0.0010499923955649137, 0.02646905556321144, 0.01778257265686989, 0.017645712941884995, -0.003431743010878563, 0.07187701016664505, -0.011820740066468716, 0.004731201566755772, 0.013552432879805565, -0.011555932462215424, -0.01197806466370821, -0.0017761571798473597, -0.0031044830102473497, 0.0021083736792206764, -0.024473968893289566, -0.03352910280227661, -0.008604821749031544, 0.028940606862306595, -0.058315709233284, -0.06174537539482117, -0.015871889889240265, 0.035452552139759064, 0.04255073517560959, -0.005126431584358215, -0.045976363122463226, -0.007563959341496229, -0.07458894699811935, -0.004183272831141949, 0.03853973001241684, 0.016816670075058937, -0.0033376840874552727, 0.04276202619075775, 0.016343099996447563, -0.007280851248651743, 0.0298733189702034, 0.05802468955516815, 0.06815756857395172, 0.008759049698710442, -0.08460373431444168, -0.001245624851435423, -0.01524420827627182, 0.010951558127999306, -0.011936129070818424, -0.019438710063695908, -0.020753009244799614, -0.1001642644405365, -0.01898597925901413, 0.016644373536109924, 0.010324712842702866, -0.016172178089618683, 0.03360223025083542, 0.0026470560114830732, -0.029130252078175545, -0.003484177403151989, 0.013044532388448715, 0.046599362045526505, -0.029127204790711403, 0.05163484439253807, -0.029879437759518623, -0.0007135291816666722, -0.05851958319544792, 0.016457365825772285, -0.05348949506878853, -0.021521542221307755, 0.013516184873878956, 0.04511122778058052, -0.026472492143511772, 0.05219150334596634, 0.07051176577806473, 0.043196987360715866, -0.0513131245970726, 0.03928274288773537, 0.07338225096464157, -0.042530667036771774, -0.04728376120328903, -0.004267978481948376, 0.00003533134804456495, -0.014990728348493576, 0.002131207613274455, -0.0035911500453948975, 0.05274432525038719, 0.026182200759649277, 0.005680944304913282, 0.0016231212066486478, -0.007997405715286732, -0.007949265651404858, -0.027926309034228325, -0.05235068500041962, -0.03192954882979393, 0.003835572162643075, -0.026478927582502365, 0.021455341950058937, 0.028450125828385353, 0.035363923758268356, 0.07509754598140717, 0.02214822545647621, -0.03822244331240654, -0.0033851820044219494, 0.024242250248789787, 0.010483643971383572, -0.017101695761084557, -0.07021843641996384, -0.0418572835624218, 0.029533708468079567, 0.04761490970849991, -0.02343170717358589, -0.06025177612900734, 0.013309653848409653, 0.05330190435051918, -0.05867721512913704, 0.05665529891848564, -0.003965785261243582, 0.05361147224903107, 0.05644741654396057, -0.007445320952683687, 0.04278599098324776, -0.01987837441265583, -0.00605672225356102, -0.004641545936465263, 0.04109373688697815, -0.011209310032427311, -0.03421677649021149, -0.05073884129524231, 0.02111198566854, 0.04133296012878418, 0.031437985599040985, 0.0430508591234684, -0.034816842526197433, -0.039857812225818634, 0.006900832988321781, 0.024924620985984802, -0.04000302776694298, -0.005254599265754223, 0.03767842426896095, 0.031751975417137146, -0.048125188797712326, -0.022595306858420372, -0.02327146753668785, -0.0173321682959795, 0.0385478176176548, 0.005300494842231274, -0.018607238307595253, -0.045886602252721786, 0.040558766573667526, -0.014594565145671368, -0.02549673616886139, -0.06731756031513214, 0.049843233078718185, -0.01354646310210228, -0.024979427456855774, 0.05511226877570152, 0.03695967420935631, 0.02014423906803131, 0.07233011722564697, 0.03274573013186455, 0.015917642042040825, -0.03365318104624748, 0.04276086017489433, -0.03355558589100838, -0.018509309738874435, 0.0064263432286679745, -0.029979636892676353, -0.039200183004140854, -0.0018545975908637047, -0.0638224333524704, -0.03523971140384674, -0.0313146635890007, 0.017628874629735947, 0.0016527987318113446, -0.019028158858418465, -0.00020203259191475809, 0.05818580836057663, -0.0054487730376422405, -0.0417780764400959, -0.045071568340063095, -0.014382710680365562, -0.06849407404661179, -0.05157789587974548, -0.0006653304444625974, 0.006602276582270861, 0.03161253407597542, 0.03570285439491272, 0.023835355415940285, 0.016657808795571327, 0.01950436271727085, -0.03907166048884392, 0.016862165182828903, 0.019937289878726006, -0.04005885496735573, -0.019237248227000237, 0.037395261228084564, 0.011454042047262192, 0.023696383461356163, -0.03836403414607048, 0.03529982268810272, 0.002960802987217903, -0.0049506318755447865, -0.022519627586007118, 0.0157011728733778, 0.03003557026386261, -0.06482882052659988, -0.03638807311654091, -0.01642204262316227, -0.028023626655340195, 0.032958827912807465, -0.02495296485722065, -0.020394273102283478, 0.012406790629029274, 0.004368235357105732, 0.035116925835609436, -0.033035680651664734, -0.010995390824973583, 0.028088867664337158, -0.0013551294105127454, 0.019424565136432648, -0.05733833089470863, 0.061559177935123444, -0.037995193153619766, 0.024068135768175125, -0.021106187254190445, 0.010649461299180984, -0.020880943164229393, 0.02631380409002304, -0.02639065310359001, -0.023022577166557312, -0.014182900078594685, 0.060351308435201645, -0.012893140316009521, 0.02944422885775566, -0.00991464126855135, 0.03790772706270218, -0.028014782816171646, 0.07008973509073257, -0.03914565593004227, 0.019503869116306305, -0.04025843366980553, 0.026880431920289993, -0.019757375121116638, 0.018038423731923103, -0.013170596212148666, -0.01688840053975582, 0.032357051968574524, 0.06254930794239044, 0.02998797595500946, 0.02757367119193077, -0.0031512430869042873, -0.01570546068251133, 0.011719297617673874, -0.04196332022547722, -0.020058805122971535, -0.011820279061794281, -0.0030504977330565453, -0.019335642457008362, 0.05613773688673973, 0.031380441039800644, -0.056280508637428284, -0.07431121170520782, 0.03678898140788078, 0.020967653021216393, -0.0018504852196201682, 0.008667701855301857, 0.04447895660996437, 0.03360525891184807, 0.042149294167757034, -0.015532251447439194, -0.008392774499952793, 0.0007902288343757391, -0.05124250054359436, 0.02285357192158699, -0.0045525082387030125, 0.02555975876748562, 0.012828444130718708, -0.04410620778799057, -0.02191268466413021, 0.057124968618154526, 0.02431275136768818, 0.02492356486618519, 0.0029243112076073885, -0.04334184154868126, 0.037905313074588776, 0.006957973353564739, -0.03594271466135979, 0.028957217931747437, 0.010312854312360287, -0.022947397083044052, 0.0460321344435215, -0.00973291415721178, 0.0035740304738283157, 0.06010200083255768, 0.017844436690211296, -0.020795095711946487, 0.07014745473861694, -0.03763658553361893, 0.012236049398779869, 0.04088505730032921, -0.07538221031427383, -0.009706116281449795, -0.04957783222198486, 0.058493614196777344, -0.0682918056845665, 0.02290266379714012, 0.0577339269220829, -0.0024700332432985306, 0.029212089255452156, -0.05217745155096054, -0.05977180227637291, 0.019979486241936684, -0.038519032299518585, 0.0699707493185997, 0.011174778454005718, -0.042805612087249756, 0.052763681858778, 0.012847380712628365, -0.06341933459043503, 0.03691215440630913, 0.027096331119537354, 0.05505617707967758, 0.03757978603243828, 0.04772742837667465, -0.04259294271469116, -0.004200987983494997, -0.03512214124202728, 0.01634533703327179, -0.052875369787216187, -0.012597443535923958, 0.035573095083236694, -0.04149813950061798, -0.027243943884968758, 0.028422215953469276, -0.011492309160530567, -0.01884002424776554, 0.05147489160299301, -0.05357012525200844, -0.04023363068699837, 0.016324235126376152, 0.021040180698037148, -0.043045591562986374, -0.011737820692360401, -0.03114001825451851, 0.010400365106761456, 0.009638652205467224, 0.003400225890800357, -0.019829023629426956, -0.018807195127010345, 0.029793109744787216, -0.04438701272010803, -0.030074533075094223, 0.02146008238196373, -0.007609616033732891, -0.022078584879636765, 0.03998391330242157, 0.008391677401959896, 0.014152208343148232, 0.029968785122036934, -0.014689238741993904, 0.024739617481827736, -0.03730064630508423, -0.017719192430377007, 0.03219732269644737, -0.00704151252284646, 0.020687861368060112, 0.008446190506219864, 0.03173527121543884, 0.037124600261449814, 0.023340458050370216, -0.002420320874080062, -0.03764975443482399, -0.031304601579904556, 0.01518549956381321, -0.040807247161865234, 0.005477428436279297, -0.0049322484992444515, -0.052261076867580414, -0.02175525762140751, 0.004676234442740679, -0.04271175339818001, 0.03826866298913956, -0.06408355385065079, 0.008957050740718842, 0.04608393460512161, -0.016464602202177048, -0.060183972120285034, -0.11587094515562057, -0.01569945178925991, -0.05613694339990616, -0.013788019306957722, 0.05005936697125435, -0.03601321578025818, 0.043708596378564835, -0.050686564296483994, -0.031997304409742355, 0.04075290262699127, 0.052248187363147736, -0.060029562562704086, 0.0602908730506897, 0.04311804473400116, -0.05033683031797409, 0.00958938617259264, 0.022240037098526955, -0.051740072667598724, 0.0043380120769143105, 0.015331639908254147, -0.003594117471948266, 0.021276064217090607, 0.0137321837246418, -0.05699674412608147, -0.018626535311341286, -0.07053669542074203, -0.03771151974797249, -0.04741186648607254, 0.005618235561996698, 0.047139737755060196 ]
DeepPavlov/roberta-large-winogrande
[ "pytorch", "roberta", "text-classification", "en", "dataset:winogrande", "arxiv:1907.11692", "transformers" ]
text-classification
{ "architectures": [ "RobertaForSequenceClassification" ], "model_type": "roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
348
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-2 results: [] --- <!-- 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__sst2__train-8-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6932 - Accuracy: 0.4931 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7081 | 1.0 | 3 | 0.7031 | 0.25 | | 0.6853 | 2.0 | 6 | 0.7109 | 0.25 | | 0.6696 | 3.0 | 9 | 0.7211 | 0.25 | | 0.6174 | 4.0 | 12 | 0.7407 | 0.25 | | 0.5717 | 5.0 | 15 | 0.7625 | 0.25 | | 0.5096 | 6.0 | 18 | 0.7732 | 0.25 | | 0.488 | 7.0 | 21 | 0.7798 | 0.25 | | 0.4023 | 8.0 | 24 | 0.7981 | 0.25 | | 0.3556 | 9.0 | 27 | 0.8110 | 0.25 | | 0.2714 | 10.0 | 30 | 0.8269 | 0.25 | | 0.2295 | 11.0 | 33 | 0.8276 | 0.25 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013097967021167278, 0.013959886506199837, -0.04289843887090683, 0.04313137009739876, 0.05216355249285698, 0.01749529503285885, -0.017407506704330444, -0.02361992932856083, -0.05608416348695755, 0.06411635130643845, 0.012992775067687035, -0.030153723433613777, 0.011439219117164612, 0.04509469494223595, -0.01727331429719925, -0.03757906332612038, -0.0011178281856700778, -0.011111305095255375, -0.030276555567979813, -0.006342435255646706, 0.0026362508069723845, -0.01463617105036974, -0.01522482093423605, 0.004570554476231337, -0.004075868520885706, 0.016682980582118034, 0.007172133773565292, 0.02320053242146969, 0.03779328614473343, -0.0669603943824768, 0.0057658851146698, -0.0292587261646986, -0.05293092131614685, -0.021445443853735924, -0.01227512676268816, -0.019280141219496727, -0.007267606910318136, 0.027720555663108826, 0.03616052120923996, 0.037206437438726425, 0.007786232978105545, 0.03363032266497612, -0.002161930315196514, -0.013031484559178352, 0.0613282173871994, 0.010718553327023983, -0.03874179720878601, -0.00015846749010961503, 0.039515625685453415, -0.023812444880604744, -0.0797443836927414, -0.04772530868649483, -0.014915745705366135, 0.023339344188570976, -0.015844961628317833, -0.013202658854424953, -0.05946536734700203, 0.016207614913582802, 0.06693068891763687, -0.04698130488395691, -0.02944813296198845, -0.0003682537644635886, -0.07100055366754532, 0.004854578524827957, 0.03591250628232956, -0.01746245287358761, 0.013267774134874344, -0.05108296126127243, 0.02462610974907875, -0.011522720567882061, 0.05580803379416466, -0.02095269039273262, 0.012082600966095924, -0.0744401216506958, -0.018684476613998413, -0.0077665322460234165, 0.045510463416576385, 0.056150104850530624, -0.030803492292761803, 0.053261056542396545, 0.030538855120539665, -0.0004722720477730036, 0.04342648759484291, -0.028192171826958656, 0.01096369419246912, 0.030303489416837692, -0.04469578340649605, -0.002496076049283147, 0.01929563842713833, 0.026903511956334114, -0.03441224992275238, -0.03484617546200752, -0.03034920245409012, -0.03102927841246128, -0.0005252425908111036, 0.02006649225950241, 0.025474149733781815, 0.016665063798427582, 0.03680078685283661, 0.01317815762013197, 0.02382914163172245, 0.036121927201747894, -0.01941848360002041, 0.07012391835451126, -0.006686865817755461, -0.00952941831201315, -0.004937963094562292, -0.016649635508656502, -0.0510421097278595, 0.018408218398690224, 0.02702740579843521, -0.02024698443710804, -0.011145062744617462, 0.03884012624621391, 0.005143756978213787, 0.004582377150654793, 0.0764705091714859, -0.025180242955684662, -0.04064210504293442, -0.033759843558073044, 0.025516383349895477, 0.015658201649785042, -0.02084525115787983, 0.018153544515371323, -0.045507583767175674, -0.016849253326654434, -0.02394261583685875, -0.018494294956326485, -0.020177999511361122, 0.021026618778705597, 0.015328342095017433, 0.06374069303274155, 0.03177651762962341, -0.08985556662082672, 0.004433744587004185, 0.014901871792972088, -0.058117784559726715, 0.04839012771844864, 0.022206678986549377, 0.1146358996629715, -0.05718400329351425, -0.066112220287323, 0.006978894583880901, 0.0007904276135377586, -0.04267965257167816, 0.015539703890681267, 0.002764058066532016, -0.026052504777908325, 0.007514221593737602, 0.002704886719584465, 0.06867940723896027, -0.043951693922281265, -0.008759013377130032, 0.07684341818094254, 0.004775841720402241, 0.04576227441430092, -0.056526876986026764, -0.02883937954902649, 0.01634792611002922, -0.02013859525322914, -0.033358678221702576, 0.05037975683808327, -0.026473194360733032, -0.01614336110651493, -0.01937907747924328, -0.024617351591587067, 0.011383924633264542, 0.07607318460941315, -0.007080970332026482, -0.03223205357789993, -0.01780683919787407, 0.025600353255867958, 0.045151159167289734, 0.04891523718833923, -0.026600029319524765, 0.025309519842267036, 0.05655025318264961, 0.027467437088489532, -0.03107353113591671, 0.04119688272476196, 0.022795770317316055, -0.02374318242073059, -0.02075289562344551, 0.03178907558321953, 0.004057752899825573, -0.04744201526045799, 0.0370439775288105, 0.012387079186737537, 0.004167704377323389, -0.06774294376373291, -0.04568367078900337, 0.040862854570150375, -0.003936597611755133, -0.013310491107404232, 0.013401216827332973, 0.020850878208875656, -0.016308538615703583, 0.04767739772796631, -0.013057638891041279, 0.006268559489399195, -0.02392345666885376, -0.017713597044348717, 0.012078145518898964, -0.02424798347055912, 0.02802400104701519, 0.04740986227989197, -0.0025684493593871593, 0.09471943229436874, -0.045381203293800354, 0.022402698174118996, -0.056013014167547226, -0.0384821742773056, 0.01621701382100582, 0.05773792415857315, 0.055663201957941055, 0.05555348098278046, 0.007005045656114817, -0.027730293571949005, 0.04469873383641243, 0.07030431926250458, 0.04737104848027229, -0.002370507223531604, -0.036951322108507156, -0.01830397918820381, 0.039802029728889465, 0.050544045865535736, -0.04834482818841934, -0.016483016312122345, 0.01203277986496687, 0.03283340111374855, -0.004386942368000746, 0.016977140679955482, -0.02437134087085724, 0.039092279970645905, -0.04561588913202286, -0.0408102311193943, 0.04096990451216698, 0.01784711331129074, 0.0005146562471054494, 0.030146975070238113, 0.028139987960457802, 0.011116594076156616, 0.022781753912568092, 0.01931360736489296, 0.018012775108218193, -0.05112922191619873, 0.024626517668366432, 0.005939419846981764, 0.05906745791435242, -0.052972547709941864, 0.034122005105018616, -0.015897274017333984, 0.014575161971151829, 0.04293796047568321, -0.03196682780981064, 0.028885740786790848, 0.05169198289513588, 0.035737115889787674, -0.03953127935528755, 0.024212496355175972, 0.002721875673159957, 0.03272024169564247, 0.039449162781238556, 0.009159860201179981, 0.07277902215719223, 0.020465193316340446, 0.047652795910835266, 0.07380246371030807, 0.020358335226774216, 0.03151415288448334, 0.016046199947595596, 0.06997141987085342, 0.018907925114035606, -0.012950955890119076, 0.04671003669500351, -0.04395674914121628, 0.022212710231542587, -0.05211600288748741, -0.003160899505019188, -0.024500519037246704, -0.010789521969854832, 0.05490453168749809, 0.0247493963688612, -0.03394307568669319, -0.009152831509709358, 0.016434652730822563, -0.009646404534578323, 0.02247210592031479, -0.005786034278571606, 0.01089730765670538, -0.006837319117039442, -0.021936964243650436, -0.0316157229244709, -0.07010561972856522, -0.05129494518041611, -0.03144225850701332, -0.01691337302327156, -0.024851907044649124, -0.08792626112699509, -0.003869815496727824, -0.08852214366197586, -0.021678749471902847, 0.028716038912534714, 0.009685390628874302, -0.026291679590940475, -0.03354945033788681, 0.02275136299431324, -0.049168601632118225, -0.039223119616508484, -0.03989047929644585, -0.05942431092262268, -0.0493825227022171, -0.08321584761142731, 0.03442218527197838, 0.03713376075029373, 0.00678574712947011, 0.0026906230486929417, 0.02752663381397724, 0.015994500368833542, -0.02832142449915409, 0.03894484043121338, 0.06590433418750763, -0.03856537863612175, -0.05675240606069565, 0.03372456878423691, -0.010046995244920254, 0.01803581602871418, 0.020123537629842758, -0.030914483591914177, 0.08924517780542374, 0.06901081651449203, 0.006631064228713512, 0.02063547819852829, -0.00987884122878313, -0.06237762048840523, -0.06426204741001129, -0.024444198235869408, -0.038902536034584045, -0.007401495706290007, -0.04543248191475868, -0.037045467644929886, -0.03617286682128906, -0.04139368236064911, 0.00380713096819818, -0.0121658556163311, 0.023431923240423203, 0.022568751126527786, 0.03429728001356125, 0.018769748508930206, 0.04221710190176964, -0.030951153486967087, -0.036614272743463516, 0.05754045397043228, 0.00811950583010912, 0.005884183570742607, -0.08704095333814621, 0.0004013369616586715, 0.02560473419725895, 0.018499815836548805, 0.017216842621564865, -0.0019493940053507686, 0.07223717868328094, -0.010683264583349228, 0.00642800098285079, 0.014218335971236229, -0.012811941094696522, -0.01058945618569851, -0.0027631495613604784, -0.0019099870696663857, 0.0036474629305303097, -0.02456442452967167, -0.03444046899676323, -0.008387619629502296, 0.02719029225409031, -0.05791735276579857, -0.06153280660510063, -0.014827342703938484, 0.0356605164706707, 0.04243491217494011, -0.004720181226730347, -0.04659796506166458, -0.007825734093785286, -0.07428794354200363, -0.004068293143063784, 0.03695519641041756, 0.016696574166417122, -0.005679161753505468, 0.04309667646884918, 0.016942398622632027, -0.009157087653875351, 0.02911248989403248, 0.058531682938337326, 0.06842691451311111, 0.00866891909390688, -0.08377134799957275, -0.0015727472491562366, -0.014447390101850033, 0.011177347041666508, -0.011749227531254292, -0.02022460475564003, -0.0217283982783556, -0.10020504891872406, -0.018450221046805382, 0.016251686960458755, 0.011519110761582851, -0.017075806856155396, 0.034079547971487045, 0.002660115947946906, -0.02782117947936058, -0.0032109152525663376, 0.013651114888489246, 0.04907633364200592, -0.027667086571455002, 0.052677854895591736, -0.02953282929956913, -0.0009485810878686607, -0.058265842497348785, 0.016217060387134552, -0.05456295609474182, -0.02313164621591568, 0.013219496235251427, 0.04460949823260307, -0.02579122968018055, 0.05135554447770119, 0.06895329058170319, 0.04217095300555229, -0.05070260167121887, 0.03994495049118996, 0.07246237993240356, -0.04316352680325508, -0.047581661492586136, -0.0055558448657393456, 0.002186042023822665, -0.016168341040611267, 0.0019883925560861826, -0.002948206150904298, 0.053118642419576645, 0.02650728076696396, 0.005440214183181524, 0.0011612123344093561, -0.008001196198165417, -0.00624623941257596, -0.029771188274025917, -0.05105898529291153, -0.03197236731648445, 0.004975839052349329, -0.024551546201109886, 0.01982465572655201, 0.02760537713766098, 0.035247802734375, 0.07600032538175583, 0.02170548401772976, -0.03723914921283722, -0.004433830268681049, 0.025164885446429253, 0.010249309241771698, -0.015713904052972794, -0.06996647268533707, -0.04118539020419121, 0.031188396736979485, 0.046132467687129974, -0.02307862974703312, -0.06171034649014473, 0.014067617245018482, 0.052098169922828674, -0.05928819254040718, 0.05731500685214996, -0.0038801156915724277, 0.052742667496204376, 0.05554414913058281, -0.00804182793945074, 0.04209772124886513, -0.019221501424908638, -0.0074890535324811935, -0.002047705464065075, 0.04105939716100693, -0.012033055536448956, -0.03454646095633507, -0.05147503688931465, 0.021757004782557487, 0.04191769286990166, 0.03139640763401985, 0.042638786137104034, -0.034350182861089706, -0.038319580256938934, 0.006065988447517157, 0.025112852454185486, -0.03951570391654968, -0.006301303394138813, 0.03790338337421417, 0.02977607399225235, -0.04731458052992821, -0.0231104027479887, -0.024729564785957336, -0.016710607334971428, 0.038779836148023605, 0.006271869409829378, -0.0177173875272274, -0.04671920835971832, 0.04038327559828758, -0.015207276679575443, -0.024479810148477554, -0.06726904958486557, 0.050705429166555405, -0.01255073118954897, -0.024605000391602516, 0.05509847775101662, 0.03714316710829735, 0.019412189722061157, 0.07163091003894806, 0.03279392421245575, 0.01717909798026085, -0.0333612821996212, 0.04252827167510986, -0.033702995628118515, -0.02048303186893463, 0.006311917211860418, -0.030096258968114853, -0.041293542832136154, 0.0004984375555068254, -0.06119745597243309, -0.036462876945734024, -0.03216103836894035, 0.01772700808942318, 0.000026628187697497196, -0.017497563734650612, 0.0004572042089421302, 0.05842508748173714, -0.0045839352533221245, -0.04363470897078514, -0.04609619081020355, -0.014005525968968868, -0.06803132593631744, -0.050497766584157944, -0.0008817075868137181, 0.005844863597303629, 0.03130636736750603, 0.03666472062468529, 0.02448597550392151, 0.01526753418147564, 0.01818336360156536, -0.04114764928817749, 0.016505099833011627, 0.020344575867056847, -0.039094921201467514, -0.019082315266132355, 0.03758874163031578, 0.010454640723764896, 0.02236524038016796, -0.0378408208489418, 0.03593552112579346, 0.002197274472564459, -0.005451739765703678, -0.023768210783600807, 0.01589471660554409, 0.0307349544018507, -0.06405556946992874, -0.03607315570116043, -0.01814049296081066, -0.027501748874783516, 0.034246645867824554, -0.024897798895835876, -0.019611256197094917, 0.011819642037153244, 0.003931965213268995, 0.035134654492139816, -0.03139863908290863, -0.00992085225880146, 0.030245624482631683, -0.0026059120427817106, 0.019414423033595085, -0.05843281373381615, 0.06162998080253601, -0.03756101801991463, 0.02597288228571415, -0.021479807794094086, 0.01047532819211483, -0.021247906610369682, 0.0241378266364336, -0.027556253597140312, -0.02295564115047455, -0.014644664712250233, 0.0600665807723999, -0.012220364063978195, 0.02944592945277691, -0.009717130102217197, 0.03816625103354454, -0.027838846668601036, 0.06970471888780594, -0.03793209418654442, 0.01958250254392624, -0.04076578468084335, 0.027985787019133568, -0.018486585468053818, 0.018751906231045723, -0.014074019156396389, -0.017220236361026764, 0.03299456462264061, 0.06247556582093239, 0.02964063361287117, 0.025415683165192604, -0.004160386510193348, -0.014154508709907532, 0.01312992163002491, -0.04017900675535202, -0.019474267959594727, -0.012629854492843151, -0.002209246391430497, -0.020818637683987617, 0.05736219882965088, 0.031725652515888214, -0.056262750178575516, -0.07291644811630249, 0.036564189940690994, 0.021306803449988365, -0.0011745721567422152, 0.008733936585485935, 0.04312805086374283, 0.032542336732149124, 0.04239652678370476, -0.014419169165194035, -0.007927821017801762, 0.0008607837953604758, -0.05109668895602226, 0.022732391953468323, -0.004399051424115896, 0.02349058911204338, 0.01208648830652237, -0.045771852135658264, -0.022323304787278175, 0.05543181300163269, 0.022965075448155403, 0.024509811773896217, 0.003232924733310938, -0.04438289999961853, 0.03847764804959297, 0.006202247925102711, -0.03442027419805527, 0.02904762513935566, 0.010424252599477768, -0.023903846740722656, 0.044244106858968735, -0.011247241869568825, 0.0008983351872302592, 0.05981691926717758, 0.01839418150484562, -0.021987931802868843, 0.07080678641796112, -0.038399577140808105, 0.01348777674138546, 0.040573105216026306, -0.0770435631275177, -0.01049764547497034, -0.04898583143949509, 0.05770762637257576, -0.06908255070447922, 0.022956591099500656, 0.05815872550010681, -0.002048969967290759, 0.029559439048171043, -0.05322571471333504, -0.06113390997052193, 0.018283553421497345, -0.03800623118877411, 0.07003270089626312, 0.010723764076828957, -0.042457692325115204, 0.05340691655874252, 0.012406919151544571, -0.062204208225011826, 0.03656009957194328, 0.02577783912420273, 0.055485501885414124, 0.03714766353368759, 0.04887290671467781, -0.044238731265068054, -0.00280141644179821, -0.03660230338573456, 0.014705703593790531, -0.05289394408464432, -0.01283852756023407, 0.036978740245103836, -0.04216260462999344, -0.02577139437198639, 0.02846073918044567, -0.011925248429179192, -0.01887238584458828, 0.05080270394682884, -0.05313520133495331, -0.040605489164590836, 0.016431400552392006, 0.0207936093211174, -0.042958568781614304, -0.012130402959883213, -0.030756918713450432, 0.01031933818012476, 0.010387003421783447, 0.00492149218916893, -0.01914249360561371, -0.01854640804231167, 0.030706223100423813, -0.04285601153969765, -0.03077680803835392, 0.019413648173213005, -0.006577688734978437, -0.02333751693367958, 0.04110332578420639, 0.008275159634649754, 0.014139290899038315, 0.03214927762746811, -0.012545445933938026, 0.02549484185874462, -0.03679192066192627, -0.01642952486872673, 0.03255736827850342, -0.007608823012560606, 0.020282438024878502, 0.007167126517742872, 0.029848746955394745, 0.035836026072502136, 0.023884430527687073, -0.0021938509307801723, -0.03838590160012245, -0.0303004439920187, 0.015948429703712463, -0.04018236696720123, 0.006662110332399607, -0.006406700704246759, -0.05296323448419571, -0.021796511486172676, 0.006080938503146172, -0.041095033288002014, 0.03897075355052948, -0.06376547366380692, 0.007822857238352299, 0.04577014967799187, -0.01593766361474991, -0.060869984328746796, -0.11442703753709793, -0.015686992555856705, -0.05607503652572632, -0.012736549600958824, 0.05095219612121582, -0.035643160343170166, 0.04226619005203247, -0.04987415671348572, -0.033398885279893875, 0.040849074721336365, 0.05286348611116409, -0.06139063835144043, 0.06348523497581482, 0.045140836387872696, -0.05062948912382126, 0.006869582924991846, 0.020457668229937553, -0.05329431965947151, 0.0034182826057076454, 0.01588696427643299, -0.0009087695507332683, 0.020067593082785606, 0.01485904585570097, -0.057918526232242584, -0.01915394701063633, -0.07112119346857071, -0.03719523176550865, -0.0489058680832386, 0.004617549013346434, 0.046190787106752396 ]
DeepPavlov/rubert-base-cased-conversational
[ "pytorch", "jax", "bert", "feature-extraction", "ru", "transformers", "has_space" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
17,362
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-3 results: [] --- <!-- 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__sst2__train-8-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6914 - Accuracy: 0.5195 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6931 | 1.0 | 3 | 0.7039 | 0.25 | | 0.6615 | 2.0 | 6 | 0.7186 | 0.25 | | 0.653 | 3.0 | 9 | 0.7334 | 0.25 | | 0.601 | 4.0 | 12 | 0.7592 | 0.25 | | 0.5555 | 5.0 | 15 | 0.7922 | 0.25 | | 0.4832 | 6.0 | 18 | 0.8179 | 0.25 | | 0.4565 | 7.0 | 21 | 0.8285 | 0.25 | | 0.3996 | 8.0 | 24 | 0.8559 | 0.25 | | 0.3681 | 9.0 | 27 | 0.8586 | 0.5 | | 0.2901 | 10.0 | 30 | 0.8646 | 0.5 | | 0.241 | 11.0 | 33 | 0.8524 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012885969132184982, 0.013136480934917927, -0.04585520178079605, 0.04065439850091934, 0.05312689021229744, 0.0189915020018816, -0.018226921558380127, -0.025324122980237007, -0.05630761757493019, 0.06577746570110321, 0.014985877089202404, -0.03310690075159073, 0.012133551761507988, 0.04186360910534859, -0.016233323141932487, -0.03600344434380531, -0.000040696992073208094, -0.012165547348558903, -0.02829829417169094, -0.004673750605434179, 0.0034414958208799362, -0.012534637935459614, -0.013968766666948795, 0.0036676288582384586, -0.006467134226113558, 0.017041366547346115, 0.004288740921765566, 0.02552058920264244, 0.03896116092801094, -0.0673721432685852, 0.007109029684215784, -0.02964894287288189, -0.055044714361429214, -0.022324424237012863, -0.012946704402565956, -0.01898971013724804, -0.0033496026881039143, 0.02726503647863865, 0.032102081924676895, 0.03986901417374611, 0.006875238381326199, 0.033465031534433365, 0.002359057078137994, -0.013600912876427174, 0.059720758348703384, 0.009890849702060223, -0.040478892624378204, 0.0028712095227092505, 0.040322765707969666, -0.024569135159254074, -0.07858189940452576, -0.04749288782477379, -0.016040807589888573, 0.025491314008831978, -0.01713297702372074, -0.014209333807229996, -0.057455435395240784, 0.013798708096146584, 0.06558509916067123, -0.04622066393494606, -0.029228832572698593, 0.0023104159627109766, -0.06976089626550674, 0.006103205494582653, 0.03359444811940193, -0.01902754046022892, 0.012909503653645515, -0.05260265991091728, 0.026396367698907852, -0.012452914379537106, 0.05603847652673721, -0.020356951281428337, 0.011418068781495094, -0.07347927987575531, -0.01793612912297249, -0.008317818865180016, 0.04471765458583832, 0.05788382142782211, -0.03092016838490963, 0.05286790803074837, 0.02991229109466076, -0.001027901889756322, 0.044597987085580826, -0.029823478311300278, 0.010341128334403038, 0.03185810521245003, -0.04354298487305641, -0.002235715277493, 0.019336283206939697, 0.027725601568818092, -0.03214334696531296, -0.03328530117869377, -0.029093030840158463, -0.03128362074494362, -0.00046039873268455267, 0.020220141857862473, 0.026344547048211098, 0.017025694251060486, 0.03707190230488777, 0.011595134623348713, 0.022879257798194885, 0.03663402423262596, -0.02027013897895813, 0.06903798878192902, -0.006873656064271927, -0.008497877977788448, -0.0029400212224572897, -0.01583864353597164, -0.04949958249926567, 0.019753525033593178, 0.02698301337659359, -0.020007455721497536, -0.014340611174702644, 0.03907914087176323, 0.007318816613405943, 0.0022701891139149666, 0.07467105239629745, -0.024936968460679054, -0.040009304881095886, -0.0361049622297287, 0.02465243637561798, 0.01573469117283821, -0.019425271078944206, 0.015934107825160027, -0.04480055719614029, -0.016132310032844543, -0.024883056059479713, -0.01966009847819805, -0.02261173352599144, 0.01767352968454361, 0.016171226277947426, 0.0637221485376358, 0.03092510625720024, -0.08860491961240768, 0.0046804724261164665, 0.013248894363641739, -0.055800821632146835, 0.048342980444431305, 0.022371619939804077, 0.11927413940429688, -0.056861329823732376, -0.06856333464384079, 0.006301124580204487, 0.0012561057228595018, -0.04194657877087593, 0.017229609191417694, 0.0030688350088894367, -0.025849757716059685, 0.007369012571871281, 0.0024903996381908655, 0.0687931627035141, -0.04273499548435211, -0.00924272183328867, 0.07526438683271408, 0.005764649715274572, 0.04323945567011833, -0.05666687712073326, -0.027526061981916428, 0.017654312774538994, -0.023673411458730698, -0.033697709441185, 0.05254480987787247, -0.02805326320230961, -0.016840185970067978, -0.019239185377955437, -0.026565546169877052, 0.011480613611638546, 0.07299845665693283, -0.00737213809043169, -0.03221752867102623, -0.019303612411022186, 0.026335744187235832, 0.04386255145072937, 0.048091087490320206, -0.025192338973283768, 0.02620381861925125, 0.05755133181810379, 0.025427861139178276, -0.03351517766714096, 0.0409252867102623, 0.02240065298974514, -0.02524474821984768, -0.01974078081548214, 0.030842941254377365, 0.0031653509940952063, -0.04589866101741791, 0.03731711953878403, 0.011984876357018948, 0.004775827284902334, -0.06969872117042542, -0.0484737902879715, 0.03874734416604042, -0.002105259569361806, -0.011567233130335808, 0.014095557853579521, 0.02210732363164425, -0.015688195824623108, 0.04512948915362358, -0.013852816075086594, 0.006146679166704416, -0.026587173342704773, -0.017277928069233894, 0.012768222950398922, -0.02252272143959999, 0.02802472747862339, 0.04736398160457611, -0.0040056463330984116, 0.09482450783252716, -0.04606229066848755, 0.02472691237926483, -0.054052796214818954, -0.039347093552351, 0.021305173635482788, 0.05781202390789986, 0.05509801208972931, 0.056264471262693405, 0.003638499416410923, -0.02719178982079029, 0.044430725276470184, 0.07166381180286407, 0.046932052820920944, -0.0029628430493175983, -0.03462826460599899, -0.01666036620736122, 0.04197416082024574, 0.05031910166144371, -0.05094391107559204, -0.016534501686692238, 0.013898137956857681, 0.032231174409389496, -0.0015923659084364772, 0.019635392352938652, -0.023680778220295906, 0.04149800166487694, -0.046557750552892685, -0.043778833001852036, 0.04201898351311684, 0.019356973469257355, 0.0009315290371887386, 0.029021263122558594, 0.02637985534965992, 0.013157693669199944, 0.024730531498789787, 0.020187752321362495, 0.01606946624815464, -0.05261220410466194, 0.027546444907784462, 0.004973084665834904, 0.05772760137915611, -0.05197455734014511, 0.032413482666015625, -0.016007864847779274, 0.013949046842753887, 0.04211476445198059, -0.03371572121977806, 0.027481378987431526, 0.054707515984773636, 0.0371706523001194, -0.03955787047743797, 0.026260539889335632, 0.0005614135880023241, 0.03253250941634178, 0.039852891117334366, 0.007878378033638, 0.07084118574857712, 0.02027888596057892, 0.047778356820344925, 0.0786910355091095, 0.02036646008491516, 0.032244227826595306, 0.015701409429311752, 0.07242518663406372, 0.019948594272136688, -0.010206656530499458, 0.04761933907866478, -0.04382622241973877, 0.023668041452765465, -0.05358642712235451, -0.004772918298840523, -0.025039248168468475, -0.008805876597762108, 0.05161739140748978, 0.026275217533111572, -0.03507797047495842, -0.010807649232447147, 0.014581907540559769, -0.007863597944378853, 0.022035779431462288, -0.0037331590428948402, 0.009393452666699886, -0.006450303830206394, -0.02322292886674404, -0.03191911801695824, -0.06915387511253357, -0.050271376967430115, -0.033506132662296295, -0.015230300836265087, -0.023016873747110367, -0.08702640235424042, -0.003264443716034293, -0.08609533309936523, -0.022412503138184547, 0.030622441321611404, 0.00882626697421074, -0.02478065714240074, -0.03521628677845001, 0.022498998790979385, -0.05066012963652611, -0.04053488001227379, -0.04159120097756386, -0.05881432071328163, -0.050868745893239975, -0.08236662298440933, 0.03501792252063751, 0.034935254603624344, 0.006914451252669096, -0.0006188172264955938, 0.02474568784236908, 0.01622069999575615, -0.02685304917395115, 0.036654308438301086, 0.06704290956258774, -0.03633132576942444, -0.05489116162061691, 0.031135519966483116, -0.007717126980423927, 0.016391761600971222, 0.022515207529067993, -0.03249523788690567, 0.09155312180519104, 0.06945756822824478, 0.006195588503032923, 0.020145460963249207, -0.009804444387555122, -0.06494758278131485, -0.06516064703464508, -0.02578580565750599, -0.04090153053402901, -0.0075956773944199085, -0.04437262564897537, -0.03879787400364876, -0.03586863353848457, -0.041565656661987305, 0.0034877301659435034, -0.014226432889699936, 0.02428499050438404, 0.021146412938833237, 0.038021694868803024, 0.019477667286992073, 0.04424725100398064, -0.032310694456100464, -0.037121862173080444, 0.058337680995464325, 0.011105695739388466, 0.006213446147739887, -0.08540534973144531, -0.002473440021276474, 0.024227766320109367, 0.019539937376976013, 0.016733888536691666, -0.004930362571030855, 0.07106500118970871, -0.009154790081083775, 0.005601323209702969, 0.013052335940301418, -0.011173876002430916, -0.010440295562148094, -0.002549569122493267, 0.0008654831908643246, 0.0010334139224141836, -0.023645594716072083, -0.031649790704250336, -0.007420836482197046, 0.029428375884890556, -0.05790192261338234, -0.060921695083379745, -0.01571527309715748, 0.033525120466947556, 0.0413714274764061, -0.0020641470327973366, -0.04756271466612816, -0.00569221330806613, -0.07457677274942398, -0.004569175187498331, 0.03961312398314476, 0.014227814972400665, -0.0021721231751143932, 0.042959392070770264, 0.017115946859121323, -0.007262460421770811, 0.026257822290062904, 0.05661024898290634, 0.06920211762189865, 0.008672086521983147, -0.08359003812074661, -0.00033971990342251956, -0.01600109227001667, 0.013486049138009548, -0.013116729445755482, -0.020462073385715485, -0.021748710423707962, -0.10044433176517487, -0.018979059532284737, 0.015989627689123154, 0.007826238870620728, -0.014589192345738411, 0.03605937585234642, 0.003693518927320838, -0.026243112981319427, -0.005012781824916601, 0.013636307790875435, 0.04572116583585739, -0.02735155262053013, 0.05483952537178993, -0.028317544609308243, -0.0025807765778154135, -0.05849096551537514, 0.01616550050675869, -0.0531768724322319, -0.02464398741722107, 0.013764088973402977, 0.04480302706360817, -0.027251403778791428, 0.055730726569890976, 0.07242396473884583, 0.040761176496744156, -0.05158615484833717, 0.03790074586868286, 0.07341258972883224, -0.03979896008968353, -0.0484512522816658, -0.004525413736701012, -0.0008250857354141772, -0.012629949487745762, 0.0038997067604213953, -0.005130712874233723, 0.04942796751856804, 0.028437327593564987, 0.005756620783358812, 0.0008843070245347917, -0.007866468280553818, -0.006392739713191986, -0.027792824432253838, -0.05088614672422409, -0.03084462881088257, 0.005803763400763273, -0.024212153628468513, 0.020718108862638474, 0.026315663009881973, 0.03255457803606987, 0.07279833406209946, 0.021065665408968925, -0.03715794160962105, -0.0032166894525289536, 0.025988928973674774, 0.009236570447683334, -0.017966385930776596, -0.07136864960193634, -0.03848859667778015, 0.0306570902466774, 0.04673251882195473, -0.02419034205377102, -0.06027498468756676, 0.011004052124917507, 0.052013348788022995, -0.058717526495456696, 0.054893240332603455, -0.004293040372431278, 0.0525582917034626, 0.05679049342870712, -0.00846167467534542, 0.04176698625087738, -0.02119741030037403, -0.0064779832027852535, -0.004492168314754963, 0.04246586933732033, -0.012859282083809376, -0.03309628367424011, -0.05198175087571144, 0.023601215332746506, 0.03971012309193611, 0.029833322390913963, 0.04506364092230797, -0.034416086971759796, -0.041316814720630646, 0.006499908398836851, 0.025360556319355965, -0.04068547114729881, -0.006641281768679619, 0.03951159864664078, 0.031168663874268532, -0.04671911150217056, -0.0225447416305542, -0.023245763033628464, -0.016390595585107803, 0.038933251053094864, 0.007535857148468494, -0.018462954089045525, -0.042493805289268494, 0.03796000778675079, -0.016447527334094048, -0.02678702585399151, -0.06362204253673553, 0.05173823982477188, -0.013686217367649078, -0.022251764312386513, 0.056182071566581726, 0.03817075490951538, 0.019043292850255966, 0.07165773957967758, 0.03462885320186615, 0.015327847562730312, -0.035693779587745667, 0.04176538065075874, -0.03465558588504791, -0.019563673064112663, 0.006259519141167402, -0.03149935603141785, -0.039976101368665695, -0.0017915399512276053, -0.059490177780389786, -0.034025151282548904, -0.028973395004868507, 0.017484690994024277, 0.0009591659181751311, -0.016783561557531357, 0.0030587301589548588, 0.059240419417619705, -0.003213070798665285, -0.041428904980421066, -0.045789845287799835, -0.016196278855204582, -0.06750496476888657, -0.05401461571455002, -0.0016819676384329796, 0.007995017804205418, 0.030330602079629898, 0.035570479929447174, 0.02357696183025837, 0.016768287867307663, 0.018729230388998985, -0.04069465398788452, 0.016139190644025803, 0.01823807880282402, -0.04050275683403015, -0.01878487691283226, 0.03584437817335129, 0.009390919469296932, 0.02333124354481697, -0.03478335216641426, 0.034523189067840576, 0.0005003483965992928, -0.006451818160712719, -0.024031098932027817, 0.012287173420190811, 0.031035663560032845, -0.06155771389603615, -0.0357394739985466, -0.016928894445300102, -0.027753913775086403, 0.03214753791689873, -0.02449292503297329, -0.022731319069862366, 0.009143681265413761, 0.0034652603790163994, 0.035122159868478775, -0.030267970636487007, -0.013694187626242638, 0.029855454340577126, -0.00017619493883103132, 0.018587488681077957, -0.0579834021627903, 0.06097918376326561, -0.03832799941301346, 0.025024475529789925, -0.022733448073267937, 0.011435815133154392, -0.022436121478676796, 0.02336311526596546, -0.025075232610106468, -0.02197534777224064, -0.012350553646683693, 0.05593982711434364, -0.013098425231873989, 0.02901410311460495, -0.011277232319116592, 0.038880813866853714, -0.027670927345752716, 0.06873129308223724, -0.03794916719198227, 0.01798265427350998, -0.038019973784685135, 0.02809418924152851, -0.01964089274406433, 0.017692342400550842, -0.01163214910775423, -0.01741250604391098, 0.03484642133116722, 0.06275523453950882, 0.028741395100951195, 0.027462195605039597, -0.006865882780402899, -0.016179010272026062, 0.012091088108718395, -0.04022131487727165, -0.02017265371978283, -0.011543276719748974, -0.0006660333019681275, -0.017837289720773697, 0.05791919305920601, 0.03211852163076401, -0.054862938821315765, -0.07444360852241516, 0.03397998958826065, 0.021784618496894836, -0.0013468335382640362, 0.008986826986074448, 0.04289049282670021, 0.0317973792552948, 0.041987646371126175, -0.01576917991042137, -0.0072294739075005054, 0.0013575300108641386, -0.04988991469144821, 0.02383524365723133, -0.0053979321382939816, 0.02503889426589012, 0.013305013068020344, -0.04558045044541359, -0.02292327582836151, 0.05798812955617905, 0.023784449324011803, 0.024227464571595192, 0.0023079258389770985, -0.04498344287276268, 0.039525434374809265, 0.007929058745503426, -0.035423655062913895, 0.03210868313908577, 0.009389798156917095, -0.024675805121660233, 0.0440051332116127, -0.008004306815564632, 0.00364196440204978, 0.0606912225484848, 0.01935313083231449, -0.02582235261797905, 0.06903842091560364, -0.03811732307076454, 0.01322746928781271, 0.0401785708963871, -0.07709801942110062, -0.008177090436220169, -0.05237048119306564, 0.05796587094664574, -0.06714420765638351, 0.02290581539273262, 0.056875284761190414, -0.002536522224545479, 0.028619538992643356, -0.0542638823390007, -0.061096347868442535, 0.019688082858920097, -0.038130324333906174, 0.07030275464057922, 0.010797803290188313, -0.04592929780483246, 0.052272945642471313, 0.010632878169417381, -0.06224600225687027, 0.03585020452737808, 0.028376048430800438, 0.05626490339636803, 0.0377659946680069, 0.05013802647590637, -0.04683353379368782, -0.003133581019937992, -0.03677840903401375, 0.016398955136537552, -0.0486605279147625, -0.01220020093023777, 0.03276457637548447, -0.041197530925273895, -0.027252644300460815, 0.03068687953054905, -0.012545822188258171, -0.020097516477108, 0.05427234619855881, -0.05397241190075874, -0.041010722517967224, 0.016056310385465622, 0.019918914884328842, -0.042598363012075424, -0.013727007433772087, -0.03164927661418915, 0.011624005623161793, 0.011141386814415455, 0.00495532900094986, -0.02154567837715149, -0.019051045179367065, 0.031063705682754517, -0.0405929833650589, -0.03224724903702736, 0.022651307284832, -0.007319978438317776, -0.02319706417620182, 0.0385584756731987, 0.008669717237353325, 0.01265758741647005, 0.03131857514381409, -0.01281539723277092, 0.024379592388868332, -0.0380413793027401, -0.016298960894346237, 0.031409718096256256, -0.00842340663075447, 0.020785853266716003, 0.007264888845384121, 0.028217826038599014, 0.034668028354644775, 0.022282544523477554, -0.002356775337830186, -0.03855300694704056, -0.02963292971253395, 0.015292410738766193, -0.0406709723174572, 0.004648968577384949, -0.0043396903201937675, -0.0548895001411438, -0.02235487662255764, 0.006871986202895641, -0.04435373470187187, 0.04016789793968201, -0.06618192046880722, 0.0077918171882629395, 0.046757809817790985, -0.014385256916284561, -0.06089656427502632, -0.11413565278053284, -0.014737322926521301, -0.055195946246385574, -0.013940137811005116, 0.04972556605935097, -0.035529524087905884, 0.041548289358615875, -0.05046387389302254, -0.03193875402212143, 0.04118039458990097, 0.05242995172739029, -0.05868612602353096, 0.061280615627765656, 0.04704899713397026, -0.050149884074926376, 0.00793556310236454, 0.018790097907185555, -0.05216500535607338, 0.004715833812952042, 0.01706082746386528, -0.002243170514702797, 0.020438935607671738, 0.015440099872648716, -0.05765209347009659, -0.01674383133649826, -0.07162919640541077, -0.03813185542821884, -0.04748763516545296, 0.005449163727462292, 0.04859794303774834 ]
DeepPavlov/rubert-base-cased-sentence
[ "pytorch", "jax", "bert", "feature-extraction", "ru", "arxiv:1508.05326", "arxiv:1809.05053", "arxiv:1908.10084", "transformers", "has_space" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
46,991
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-4 results: [] --- <!-- 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__sst2__train-8-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6921 - Accuracy: 0.5107 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7163 | 1.0 | 3 | 0.7100 | 0.25 | | 0.6785 | 2.0 | 6 | 0.7209 | 0.25 | | 0.6455 | 3.0 | 9 | 0.7321 | 0.25 | | 0.6076 | 4.0 | 12 | 0.7517 | 0.25 | | 0.5593 | 5.0 | 15 | 0.7780 | 0.25 | | 0.5202 | 6.0 | 18 | 0.7990 | 0.25 | | 0.4967 | 7.0 | 21 | 0.8203 | 0.25 | | 0.4158 | 8.0 | 24 | 0.8497 | 0.25 | | 0.3997 | 9.0 | 27 | 0.8638 | 0.25 | | 0.3064 | 10.0 | 30 | 0.8732 | 0.25 | | 0.2618 | 11.0 | 33 | 0.8669 | 0.25 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013621014542877674, 0.014778821729123592, -0.044446125626564026, 0.04172220081090927, 0.05165931209921837, 0.01744402013719082, -0.01740111969411373, -0.023778166621923447, -0.056773971766233444, 0.06471560895442963, 0.014103543944656849, -0.03306924179196358, 0.013390694744884968, 0.04377022758126259, -0.01620282232761383, -0.03629145398736, -0.0027943765744566917, -0.011586176231503487, -0.031343769282102585, -0.004497635643929243, 0.0026056065689772367, -0.016247494146227837, -0.014852743595838547, 0.0031195017509162426, -0.00442161038517952, 0.017062991857528687, 0.005988223012536764, 0.022066209465265274, 0.03856409341096878, -0.06780815124511719, 0.006475565489381552, -0.02885608747601509, -0.052548348903656006, -0.02165282890200615, -0.013698896393179893, -0.016777457669377327, -0.004555154126137495, 0.027534635737538338, 0.03484721481800079, 0.037619780749082565, 0.008407430723309517, 0.031761858612298965, -0.0011486950097605586, -0.013500029221177101, 0.061444178223609924, 0.009976278059184551, -0.039089083671569824, 0.001597908791154623, 0.03862852230668068, -0.024953635409474373, -0.079023078083992, -0.04753042012453079, -0.016660261899232864, 0.02449660189449787, -0.017835212871432304, -0.014604171738028526, -0.05971942096948624, 0.01688864640891552, 0.0672319307923317, -0.04628102481365204, -0.030074570327997208, 0.0015006806934252381, -0.07330308109521866, 0.005571472458541393, 0.03588565066456795, -0.019629081711173058, 0.013408692553639412, -0.05142956227064133, 0.024138551205396652, -0.010461967438459396, 0.054889529943466187, -0.020233644172549248, 0.011896356008946896, -0.07180676609277725, -0.01828802190721035, -0.00948096252977848, 0.04459529370069504, 0.05644259974360466, -0.03209260106086731, 0.05222225934267044, 0.030322818085551262, -0.0014110245974734426, 0.043767835944890976, -0.029680538922548294, 0.010504013858735561, 0.03103361651301384, -0.04454342648386955, -0.0001408081006957218, 0.01900339685380459, 0.026394156739115715, -0.03517911210656166, -0.03463907167315483, -0.02843058668076992, -0.032385196536779404, -0.001414489932358265, 0.019685590639710426, 0.025922993198037148, 0.017992837354540825, 0.0375368632376194, 0.012927256524562836, 0.025241049006581306, 0.037080228328704834, -0.017377492040395737, 0.0685725063085556, -0.0075980587862432, -0.010175151750445366, -0.006779890973120928, -0.01613456942141056, -0.050069913268089294, 0.020342804491519928, 0.026318484917283058, -0.02067309245467186, -0.011341969482600689, 0.03791896253824234, 0.005049280356615782, 0.0037570525892078876, 0.07562269270420074, -0.025032049044966698, -0.040174614638090134, -0.03237752243876457, 0.026209089905023575, 0.0166420117020607, -0.019525539129972458, 0.015293404459953308, -0.04476841539144516, -0.016211116686463356, -0.025078197941184044, -0.018431460484862328, -0.019948072731494904, 0.021734658628702164, 0.016141721978783607, 0.06568630039691925, 0.03151872754096985, -0.08939838409423828, 0.005428313743323088, 0.014785882085561752, -0.054384876042604446, 0.04866252839565277, 0.021830756217241287, 0.1148207038640976, -0.056857816874980927, -0.0682230293750763, 0.007406174670904875, 0.0005172801902517676, -0.04376819357275963, 0.014539122581481934, 0.0014105926966294646, -0.02705255337059498, 0.0063509088940918446, 0.0032199618872255087, 0.06818584352731705, -0.04193122312426567, -0.007966655306518078, 0.0748559907078743, 0.005714493338018656, 0.045325491577386856, -0.05634012445807457, -0.02789013646543026, 0.01734425127506256, -0.02090485394001007, -0.03382633998990059, 0.049434635788202286, -0.027329931035637856, -0.017681537196040154, -0.018597425892949104, -0.024925723671913147, 0.011954774148762226, 0.07377456873655319, -0.006417634431272745, -0.03296101465821266, -0.01741580106317997, 0.02464967779815197, 0.044880181550979614, 0.049891017377376556, -0.026012305170297623, 0.025587186217308044, 0.05640921741724014, 0.02692093513906002, -0.03254133090376854, 0.039550624787807465, 0.023974215611815453, -0.02337452955543995, -0.020419269800186157, 0.03149430826306343, 0.0035452323500066996, -0.04674147069454193, 0.036770667880773544, 0.012882940471172333, 0.0039153634570539, -0.06901732087135315, -0.04645698517560959, 0.039987608790397644, -0.0036312078591436148, -0.011746867559850216, 0.01291742455214262, 0.022237610071897507, -0.01469352375715971, 0.04679710417985916, -0.012925888411700726, 0.007331150583922863, -0.0244132112711668, -0.02057289518415928, 0.013310887850821018, -0.022927366197109222, 0.028042033314704895, 0.04901518672704697, -0.0017965276492759585, 0.09468770027160645, -0.04600442573428154, 0.02104424685239792, -0.05590405687689781, -0.037121471017599106, 0.019367316737771034, 0.058021146804094315, 0.05656988173723221, 0.054600514471530914, 0.006338360719382763, -0.026971405372023582, 0.04632716253399849, 0.07215582579374313, 0.04616982862353325, -0.004637700971215963, -0.03492989018559456, -0.016612302511930466, 0.04211076721549034, 0.051072731614112854, -0.049842022359371185, -0.013806424103677273, 0.012400287203490734, 0.031891487538814545, -0.003716371487826109, 0.01770198345184326, -0.024084843695163727, 0.03962455317378044, -0.04679129272699356, -0.04239572212100029, 0.04361988976597786, 0.018925178796052933, 0.0005400776281021535, 0.029705064371228218, 0.028286615386605263, 0.009650586172938347, 0.023403605446219444, 0.01855599507689476, 0.019508207216858864, -0.051852237433195114, 0.023928586393594742, 0.005370063707232475, 0.05828702077269554, -0.05378330498933792, 0.03266808018088341, -0.015969086438417435, 0.015631087124347687, 0.04277965798974037, -0.03222126513719559, 0.02823466807603836, 0.05176292732357979, 0.035526227205991745, -0.03853869438171387, 0.02670636773109436, 0.002077782992273569, 0.032463815063238144, 0.04126955568790436, 0.00925511959940195, 0.07093475759029388, 0.019557973369956017, 0.045218296349048615, 0.07489915192127228, 0.019400127232074738, 0.03217937424778938, 0.013155474327504635, 0.07154706865549088, 0.01838170737028122, -0.011732514947652817, 0.04739316180348396, -0.045328930020332336, 0.023688284680247307, -0.05244418606162071, -0.0033155817072838545, -0.024193668738007545, -0.008719422854483128, 0.05404110997915268, 0.02345193549990654, -0.037048157304525375, -0.012298398651182652, 0.015826666727662086, -0.008396990597248077, 0.022601114585995674, -0.007152577396482229, 0.010465061292052269, -0.008372890762984753, -0.021513115614652634, -0.029468361288309097, -0.07082538306713104, -0.04988381639122963, -0.03165171295404434, -0.01680578663945198, -0.022486191242933273, -0.08989822119474411, -0.004117991775274277, -0.08519334346055984, -0.022942906245589256, 0.028787117451429367, 0.007178352680057287, -0.027489477768540382, -0.03427363187074661, 0.024348804727196693, -0.04912681505084038, -0.039928898215293884, -0.04198669269680977, -0.05899437144398689, -0.049275029450654984, -0.08336267620325089, 0.03529278561472893, 0.03487754240632057, 0.006693147588521242, 0.001670120400376618, 0.026020348072052002, 0.016589466482400894, -0.02845711074769497, 0.03673437982797623, 0.06640715152025223, -0.035952404141426086, -0.055371493101119995, 0.03324035182595253, -0.008968494832515717, 0.01735823042690754, 0.02085954137146473, -0.030923468992114067, 0.09061716496944427, 0.07105724513530731, 0.0059072095900774, 0.020220445469021797, -0.01128992810845375, -0.06374458968639374, -0.06382384151220322, -0.02558959275484085, -0.03984126076102257, -0.008775031194090843, -0.04535304754972458, -0.037988465279340744, -0.036089807748794556, -0.04143828898668289, 0.004334553144872189, -0.013128723949193954, 0.025097623467445374, 0.02145668864250183, 0.03596040979027748, 0.019399965181946754, 0.04368831589818001, -0.02899584360420704, -0.039006561040878296, 0.05770344287157059, 0.011233356781303883, 0.005896101240068674, -0.08471397310495377, -0.0017793476581573486, 0.025940872728824615, 0.017265042290091515, 0.0173553004860878, -0.0026909217704087496, 0.07320353388786316, -0.009640430100262165, 0.0034365609753876925, 0.01399258989840746, -0.010964014567434788, -0.01129623968154192, -0.0023735237773507833, -0.003299744799733162, 0.0018488566856831312, -0.023121239617466927, -0.0338820219039917, -0.009693440049886703, 0.028332270681858063, -0.05738433077931404, -0.060760077089071274, -0.014974727295339108, 0.03581085056066513, 0.04304000362753868, -0.0036787085700780153, -0.04681777209043503, -0.006749758962541819, -0.07505510002374649, -0.005141446832567453, 0.03715996816754341, 0.016872959211468697, -0.004115899093449116, 0.0424053855240345, 0.016032841056585312, -0.0069579374976456165, 0.02803417481482029, 0.057527054101228714, 0.06986698508262634, 0.009083199314773083, -0.08385761082172394, -0.001755852485075593, -0.01772161014378071, 0.011388201266527176, -0.012485790066421032, -0.01995931938290596, -0.021457891911268234, -0.09917629510164261, -0.01932985894382, 0.016756322234869003, 0.009815052151679993, -0.016494063660502434, 0.03504878282546997, 0.002616568934172392, -0.02948184125125408, -0.0034518945030868053, 0.012863933108747005, 0.04649058356881142, -0.02937735803425312, 0.05283891782164574, -0.030686311423778534, -0.000049463415052741766, -0.057394471019506454, 0.017128836363554, -0.05230805277824402, -0.0218795295804739, 0.01478782668709755, 0.045909468084573746, -0.027586067095398903, 0.05326807498931885, 0.07047031819820404, 0.042431510984897614, -0.05269777029752731, 0.03901183232665062, 0.07231022417545319, -0.04175915569067001, -0.04573248326778412, -0.004589877091348171, 0.001087167183868587, -0.014581101946532726, 0.002381581114605069, -0.004024753347039223, 0.05257687345147133, 0.026786234229803085, 0.003922068979591131, 0.0024548741057515144, -0.008586332201957703, -0.007511947304010391, -0.02652517519891262, -0.05175502970814705, -0.030737245455384254, 0.003976431675255299, -0.026687882840633392, 0.02293539047241211, 0.026879778131842613, 0.0331382118165493, 0.07425164431333542, 0.01950283721089363, -0.03816031292080879, -0.003456051228567958, 0.02421136572957039, 0.010389256291091442, -0.01676344685256481, -0.0693892389535904, -0.04117833822965622, 0.02917156182229519, 0.04777436703443527, -0.02377226948738098, -0.06181563809514046, 0.014020703732967377, 0.052888330072164536, -0.060094598680734634, 0.05779312923550606, -0.004238089546561241, 0.054660212248563766, 0.054337821900844574, -0.008294996805489063, 0.04322800785303116, -0.019088014960289, -0.006431601010262966, -0.003984563983976841, 0.03960050642490387, -0.011714222840964794, -0.03423011302947998, -0.049621086567640305, 0.02084016427397728, 0.03942735493183136, 0.030940266326069832, 0.042866550385951996, -0.03445429727435112, -0.0422731377184391, 0.007036225870251656, 0.024953322485089302, -0.04064510017633438, -0.005577183328568935, 0.03768811747431755, 0.02997548133134842, -0.04734829068183899, -0.022960396483540535, -0.02299201674759388, -0.015120727941393852, 0.039244599640369415, 0.0065248762257397175, -0.018439561128616333, -0.044847384095191956, 0.0399404838681221, -0.016754211857914925, -0.02658703550696373, -0.0676407441496849, 0.04908071458339691, -0.014310406520962715, -0.0236985944211483, 0.05605267360806465, 0.03507199138402939, 0.018864000216126442, 0.07205957919359207, 0.03510899469256401, 0.016403838992118835, -0.03471272066235542, 0.04290592670440674, -0.03339685872197151, -0.01956227421760559, 0.005026708822697401, -0.030494214966893196, -0.03800366818904877, -0.00015764932322781533, -0.06347168982028961, -0.035224221646785736, -0.02921856753528118, 0.018854720517992973, 0.0010469072731211782, -0.019222553819417953, 0.0006982285995036364, 0.05882073566317558, -0.005657176021486521, -0.040280286222696304, -0.047550369054079056, -0.014575566165149212, -0.06830024719238281, -0.05109464004635811, -0.00008520010305801407, 0.006493344437330961, 0.03207920119166374, 0.034902364015579224, 0.0248658899217844, 0.01757202483713627, 0.01887560822069645, -0.04040057957172394, 0.016215957701206207, 0.01842082105576992, -0.03982388973236084, -0.018584217876195908, 0.03611559420824051, 0.011901186779141426, 0.024563517421483994, -0.03682044893503189, 0.03655592352151871, 0.001274324138648808, -0.005248438101261854, -0.02497655339539051, 0.01609421707689762, 0.029515866190195084, -0.06317181140184402, -0.035921309143304825, -0.016584791243076324, -0.029204506427049637, 0.031539663672447205, -0.02528192475438118, -0.0203197430819273, 0.011658204719424248, 0.0031978103797882795, 0.03557296469807625, -0.03286667913198471, -0.010911129415035248, 0.029040494933724403, -0.001339671085588634, 0.018695620819926262, -0.05703374743461609, 0.06298016756772995, -0.03747939690947533, 0.02484264224767685, -0.022219723090529442, 0.009290690533816814, -0.021197466179728508, 0.02560810185968876, -0.02628927119076252, -0.023166898638010025, -0.013445385731756687, 0.058185651898384094, -0.012857653200626373, 0.028932949528098106, -0.00973876379430294, 0.03846713900566101, -0.028017055243253708, 0.07017454504966736, -0.03875257447361946, 0.019642004743218422, -0.04115259274840355, 0.02809005044400692, -0.019147463142871857, 0.018660634756088257, -0.01297224871814251, -0.017050551250576973, 0.03332697972655296, 0.06262940168380737, 0.03101472184062004, 0.028360756114125252, -0.003465343965217471, -0.015542126260697842, 0.01169369462877512, -0.0400971919298172, -0.02003982849419117, -0.01213457528501749, -0.002404495608061552, -0.01942991092801094, 0.056842394173145294, 0.031078247353434563, -0.05633147060871124, -0.07424337416887283, 0.03761756047606468, 0.01892421580851078, -0.0005950098275206983, 0.007384459022432566, 0.045619867742061615, 0.03328975290060043, 0.04131649434566498, -0.01613474078476429, -0.005732392892241478, 0.002573937876150012, -0.05187857523560524, 0.024330658838152885, -0.004828582983464003, 0.02750021405518055, 0.013021825812757015, -0.0437532402575016, -0.022578222677111626, 0.05798591300845146, 0.024949774146080017, 0.024080153554677963, 0.0013459485489875078, -0.04445549100637436, 0.03827355057001114, 0.008124152198433876, -0.034912969917058945, 0.030634885653853416, 0.009839074686169624, -0.022440781816840172, 0.04497497156262398, -0.009833203628659248, 0.003000123193487525, 0.06123713403940201, 0.01825852133333683, -0.02103537879884243, 0.0694790929555893, -0.03782409802079201, 0.011740058660507202, 0.04059724509716034, -0.07749787718057632, -0.009164172224700451, -0.049452200531959534, 0.057325318455696106, -0.0682169497013092, 0.022129273042082787, 0.057249922305345535, -0.0023108215536922216, 0.02994454652070999, -0.05296355113387108, -0.06041455268859863, 0.01847691647708416, -0.03820180147886276, 0.0695107951760292, 0.009400282986462116, -0.04548810422420502, 0.05274304747581482, 0.012740137986838818, -0.0635993480682373, 0.03544370085000992, 0.027101188898086548, 0.054855573922395706, 0.03868502005934715, 0.047391388565301895, -0.0441468209028244, -0.003576595103368163, -0.035501785576343536, 0.01602630689740181, -0.051024165004491806, -0.013764145784080029, 0.03684008866548538, -0.042574621737003326, -0.025952264666557312, 0.030089059844613075, -0.011636658571660519, -0.019771942868828773, 0.052534978836774826, -0.053147025406360626, -0.04056473821401596, 0.015332412905991077, 0.020347364246845245, -0.042678553611040115, -0.012109736911952496, -0.03187623620033264, 0.01209927722811699, 0.009560970589518547, 0.0033175975549966097, -0.02004493959248066, -0.018392831087112427, 0.03066028468310833, -0.04219752177596092, -0.031156882643699646, 0.020939525216817856, -0.006579435896128416, -0.023822510614991188, 0.03975338861346245, 0.007931630127131939, 0.013946251012384892, 0.030166491866111755, -0.013702379539608955, 0.023303691297769547, -0.03725244477391243, -0.01679937355220318, 0.030504915863275528, -0.007729287724941969, 0.02001885138452053, 0.008667422458529472, 0.031278759241104126, 0.03719209134578705, 0.023719988763332367, -0.0028693177737295628, -0.036669716238975525, -0.03072497993707657, 0.017326366156339645, -0.039820797741413116, 0.00639113737270236, -0.005385182797908783, -0.05256485939025879, -0.022201335057616234, 0.0035049431025981903, -0.04358617588877678, 0.03909916803240776, -0.0648469552397728, 0.009355021640658379, 0.0463084913790226, -0.01714891940355301, -0.06032903492450714, -0.11545022577047348, -0.014681950211524963, -0.05632128566503525, -0.014817051589488983, 0.05049808695912361, -0.036108773201704025, 0.04285363107919693, -0.04931369796395302, -0.031027428805828094, 0.03989867493510246, 0.05193454027175903, -0.05842074006795883, 0.06112731993198395, 0.04475017637014389, -0.04965396597981453, 0.009649703279137611, 0.02233864553272724, -0.05160060524940491, 0.0035982425324618816, 0.01613035798072815, -0.003055538283661008, 0.02195620909333229, 0.014142013154923916, -0.057710785418748856, -0.019604839384555817, -0.07062098383903503, -0.03785422444343567, -0.047000396996736526, 0.006589631084352732, 0.04800406098365784 ]
DeepPavlov/rubert-base-cased
[ "pytorch", "jax", "bert", "feature-extraction", "ru", "arxiv:1905.07213", "transformers", "has_space" ]
feature-extraction
{ "architectures": [ "BertModel" ], "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
148,127
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-5 results: [] --- <!-- 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__sst2__train-8-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8419 - Accuracy: 0.6172 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7057 | 1.0 | 3 | 0.6848 | 0.75 | | 0.6681 | 2.0 | 6 | 0.6875 | 0.5 | | 0.6591 | 3.0 | 9 | 0.6868 | 0.25 | | 0.6052 | 4.0 | 12 | 0.6943 | 0.25 | | 0.557 | 5.0 | 15 | 0.7078 | 0.25 | | 0.4954 | 6.0 | 18 | 0.7168 | 0.25 | | 0.4593 | 7.0 | 21 | 0.7185 | 0.25 | | 0.3936 | 8.0 | 24 | 0.7212 | 0.25 | | 0.3699 | 9.0 | 27 | 0.6971 | 0.5 | | 0.2916 | 10.0 | 30 | 0.6827 | 0.5 | | 0.2511 | 11.0 | 33 | 0.6464 | 0.5 | | 0.2109 | 12.0 | 36 | 0.6344 | 0.75 | | 0.1655 | 13.0 | 39 | 0.6377 | 0.75 | | 0.1412 | 14.0 | 42 | 0.6398 | 0.75 | | 0.1157 | 15.0 | 45 | 0.6315 | 0.75 | | 0.0895 | 16.0 | 48 | 0.6210 | 0.75 | | 0.0783 | 17.0 | 51 | 0.5918 | 0.75 | | 0.0606 | 18.0 | 54 | 0.5543 | 0.75 | | 0.0486 | 19.0 | 57 | 0.5167 | 0.75 | | 0.0405 | 20.0 | 60 | 0.4862 | 0.75 | | 0.0376 | 21.0 | 63 | 0.4644 | 0.75 | | 0.0294 | 22.0 | 66 | 0.4497 | 0.75 | | 0.0261 | 23.0 | 69 | 0.4428 | 0.75 | | 0.0238 | 24.0 | 72 | 0.4408 | 0.75 | | 0.0217 | 25.0 | 75 | 0.4392 | 0.75 | | 0.0187 | 26.0 | 78 | 0.4373 | 0.75 | | 0.0177 | 27.0 | 81 | 0.4360 | 0.75 | | 0.0136 | 28.0 | 84 | 0.4372 | 0.75 | | 0.0144 | 29.0 | 87 | 0.4368 | 0.75 | | 0.014 | 30.0 | 90 | 0.4380 | 0.75 | | 0.0137 | 31.0 | 93 | 0.4383 | 0.75 | | 0.0133 | 32.0 | 96 | 0.4409 | 0.75 | | 0.013 | 33.0 | 99 | 0.4380 | 0.75 | | 0.0096 | 34.0 | 102 | 0.4358 | 0.75 | | 0.012 | 35.0 | 105 | 0.4339 | 0.75 | | 0.0122 | 36.0 | 108 | 0.4305 | 0.75 | | 0.0109 | 37.0 | 111 | 0.4267 | 0.75 | | 0.0121 | 38.0 | 114 | 0.4231 | 0.75 | | 0.0093 | 39.0 | 117 | 0.4209 | 0.75 | | 0.0099 | 40.0 | 120 | 0.4199 | 0.75 | | 0.0091 | 41.0 | 123 | 0.4184 | 0.75 | | 0.0116 | 42.0 | 126 | 0.4173 | 0.75 | | 0.01 | 43.0 | 129 | 0.4163 | 0.75 | | 0.0098 | 44.0 | 132 | 0.4153 | 0.75 | | 0.0101 | 45.0 | 135 | 0.4155 | 0.75 | | 0.0088 | 46.0 | 138 | 0.4149 | 0.75 | | 0.0087 | 47.0 | 141 | 0.4150 | 0.75 | | 0.0093 | 48.0 | 144 | 0.4147 | 0.75 | | 0.0081 | 49.0 | 147 | 0.4147 | 0.75 | | 0.009 | 50.0 | 150 | 0.4150 | 0.75 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.011792785488069057, 0.014924531802535057, -0.04131210222840309, 0.04052788391709328, 0.0511959008872509, 0.016228528693318367, -0.019602136686444283, -0.024500112980604172, -0.05689065903425217, 0.0643199235200882, 0.0154510997235775, -0.03318757191300392, 0.011001423932611942, 0.04308292642235756, -0.01568545401096344, -0.03610733151435852, -0.001984278205782175, -0.012182769365608692, -0.03123495727777481, -0.0035476216580718756, 0.003735573496669531, -0.015236549079418182, -0.016293669119477272, 0.002660038648173213, -0.0036239505279809237, 0.018093232065439224, 0.008451838977634907, 0.022164685651659966, 0.037569791078567505, -0.06878343224525452, 0.007323767989873886, -0.03063357248902321, -0.053266845643520355, -0.023090919479727745, -0.012086547911167145, -0.016988281160593033, -0.005593134555965662, 0.02675021067261696, 0.03425616770982742, 0.03873033449053764, 0.00821545347571373, 0.03301286697387695, -0.0030398524831980467, -0.013115922920405865, 0.06062212586402893, 0.009555713273584843, -0.03920164704322815, 0.0007295659743249416, 0.039887432008981705, -0.02321591228246689, -0.08011770993471146, -0.04796004667878151, -0.01598069630563259, 0.023968983441591263, -0.019701020792126656, -0.015512791462242603, -0.060936085879802704, 0.017142826691269875, 0.06498321890830994, -0.04656831547617912, -0.03112153522670269, 0.0010741821024566889, -0.07177640497684479, 0.005245760083198547, 0.03434492275118828, -0.018350793048739433, 0.013638983480632305, -0.05079049989581108, 0.024977900087833405, -0.010693416930735111, 0.053617529571056366, -0.020023858174681664, 0.01037303451448679, -0.07234910130500793, -0.01919149048626423, -0.008323727175593376, 0.04266788065433502, 0.057400237768888474, -0.03220337629318237, 0.050840478390455246, 0.03168114647269249, -0.0024357656948268414, 0.04426198452711105, -0.030445123091340065, 0.011339151300489902, 0.03104710951447487, -0.043181970715522766, -0.0014892092440277338, 0.01705920137465, 0.025661805644631386, -0.03547317534685135, -0.03521876782178879, -0.02866804599761963, -0.03216376528143883, -0.002503694500774145, 0.018876757472753525, 0.024849921464920044, 0.01612667925655842, 0.03631402552127838, 0.011266003362834454, 0.026480043306946754, 0.03750089183449745, -0.01674545183777809, 0.06959218531847, -0.008396802470088005, -0.009642049670219421, -0.00482563953846693, -0.017279449850320816, -0.05070491135120392, 0.02168276160955429, 0.02573971450328827, -0.020497843623161316, -0.012650851160287857, 0.03838131204247475, 0.003366436343640089, 0.004487153608351946, 0.07555508613586426, -0.024946007877588272, -0.03939792141318321, -0.029958002269268036, 0.02610076777637005, 0.01669478230178356, -0.017911396920681, 0.015674980357289314, -0.04423512518405914, -0.016630610451102257, -0.025044796988368034, -0.019913552328944206, -0.020531626418232918, 0.021746186539530754, 0.01551425363868475, 0.06540003418922424, 0.031848933547735214, -0.08929038792848587, 0.004224374890327454, 0.013594066724181175, -0.054318442940711975, 0.04944844916462898, 0.02201814390718937, 0.11489341408014297, -0.056208204478025436, -0.0691327154636383, 0.00784673448652029, 0.00037778125260956585, -0.043822553008794785, 0.015007440000772476, 0.0017907085129991174, -0.026839757338166237, 0.006051259580999613, 0.0034114676527678967, 0.06785224378108978, -0.04064413160085678, -0.0074229054152965546, 0.07320987433195114, 0.006441067438572645, 0.044556695967912674, -0.05452628433704376, -0.028689473867416382, 0.01756308414041996, -0.021654974669218063, -0.03314758092164993, 0.0489107146859169, -0.0284294243901968, -0.0184988584369421, -0.019538627937436104, -0.024625930935144424, 0.012055972591042519, 0.07226414978504181, -0.007141732145100832, -0.032380882650613785, -0.018832463771104813, 0.022708173841238022, 0.04672126844525337, 0.04967842623591423, -0.025843340903520584, 0.02517940290272236, 0.05696093291044235, 0.029152804985642433, -0.03142369166016579, 0.040578294545412064, 0.023422226309776306, -0.02362195961177349, -0.019221214577555656, 0.03185690566897392, 0.005692040082067251, -0.047876182943582535, 0.03843522444367409, 0.01445246022194624, 0.005474322475492954, -0.06770361214876175, -0.04504391551017761, 0.04107325151562691, -0.0049469368532299995, -0.011356229893863201, 0.010498683899641037, 0.02213020995259285, -0.015180631540715694, 0.04576506465673447, -0.012706228531897068, 0.009305703453719616, -0.02334757149219513, -0.01977924443781376, 0.013272513635456562, -0.02195538766682148, 0.027540359646081924, 0.048061516135931015, -0.0020163028966635466, 0.09410330653190613, -0.04757290333509445, 0.021311983466148376, -0.05682756006717682, -0.03636299818754196, 0.018096817657351494, 0.05852643400430679, 0.05648575350642204, 0.05421300232410431, 0.005328021477907896, -0.02609506994485855, 0.045197729021310806, 0.07089374214410782, 0.046365655958652496, -0.005419997498393059, -0.03385702893137932, -0.017731009051203728, 0.04337955266237259, 0.053159840404987335, -0.05023433640599251, -0.01323637180030346, 0.011741500347852707, 0.032572850584983826, -0.004002032335847616, 0.016504451632499695, -0.02339109592139721, 0.03920232132077217, -0.04751105234026909, -0.03978369012475014, 0.04310673102736473, 0.01831953413784504, 0.00043696985812857747, 0.028685346245765686, 0.025775302201509476, 0.01067396905273199, 0.02349512279033661, 0.018620381131768227, 0.016448449343442917, -0.051771603524684906, 0.02466640993952751, 0.003466689260676503, 0.0583907850086689, -0.05266224592924118, 0.033391762524843216, -0.01892927475273609, 0.015549523755908012, 0.04428780451416969, -0.03154292702674866, 0.026076452806591988, 0.05151839554309845, 0.034593239426612854, -0.038540735840797424, 0.025858409702777863, 0.0024447899777442217, 0.032742470502853394, 0.039859455078840256, 0.008461699821054935, 0.07185131311416626, 0.019222090020775795, 0.04378970339894295, 0.07511486858129501, 0.020259875804185867, 0.03260905668139458, 0.014338885433971882, 0.07072771340608597, 0.01900542713701725, -0.011271518655121326, 0.04869130998849869, -0.04672510549426079, 0.020531438291072845, -0.051516979932785034, -0.0033664745278656483, -0.025979427620768547, -0.008864335715770721, 0.05302140489220619, 0.026056742295622826, -0.03640194982290268, -0.012538127601146698, 0.01675945706665516, -0.0076811108738183975, 0.022181332111358643, -0.007038180250674486, 0.008315281011164188, -0.007077913265675306, -0.021298382431268692, -0.028926968574523926, -0.06893493235111237, -0.04963143542408943, -0.033439308404922485, -0.016556208953261375, -0.022093260660767555, -0.0926733985543251, -0.004878534935414791, -0.08667944371700287, -0.024361370131373405, 0.027577217668294907, 0.008744359947741032, -0.02670973353087902, -0.032884564250707626, 0.021251127123832703, -0.04854762926697731, -0.04050032049417496, -0.04208315536379814, -0.059401292353868484, -0.049984920769929886, -0.0838436633348465, 0.036705903708934784, 0.03543195500969887, 0.0087427394464612, 0.0026041255332529545, 0.02711041271686554, 0.015645818784832954, -0.028879355639219284, 0.0390690453350544, 0.06474586576223373, -0.03866618126630783, -0.05711131542921066, 0.032973337918519974, -0.007691213395446539, 0.017296014353632927, 0.021831022575497627, -0.030242759734392166, 0.09100991487503052, 0.07075520604848862, 0.006915826350450516, 0.021555934101343155, -0.009455216117203236, -0.06414775550365448, -0.06432310491800308, -0.023715872317552567, -0.038440804928541183, -0.008953139185905457, -0.04458222538232803, -0.0376569889485836, -0.03729032352566719, -0.04241238161921501, 0.004890866111963987, -0.011228034272789955, 0.02376074157655239, 0.021506600081920624, 0.03697386756539345, 0.021061386913061142, 0.04480660706758499, -0.029483042657375336, -0.03790295496582985, 0.05716273561120033, 0.012306035496294498, 0.0037997800391167402, -0.08524076640605927, -0.0019520458299666643, 0.025948282331228256, 0.016454661265015602, 0.017887715250253677, -0.002960748737677932, 0.0728500708937645, -0.0129474475979805, 0.002076230477541685, 0.013792678713798523, -0.011245285160839558, -0.011285235174000263, -0.0025957722682505846, -0.0051106675527989864, 0.003132160985842347, -0.024150289595127106, -0.0347244068980217, -0.009719169698655605, 0.028941161930561066, -0.05663213133811951, -0.0631820484995842, -0.016550539061427116, 0.03527907282114029, 0.04265382140874863, -0.004686292726546526, -0.04661436751484871, -0.007729767356067896, -0.07657895237207413, -0.0032153907231986523, 0.03922273963689804, 0.017730483785271645, -0.0033455737866461277, 0.0430210642516613, 0.015637945383787155, -0.007227742578834295, 0.030263785272836685, 0.05570007115602493, 0.0673874020576477, 0.009037746116518974, -0.08374569565057755, -0.0011424246476963162, -0.017687156796455383, 0.010913264937698841, -0.012777361087501049, -0.02092837356030941, -0.02291364222764969, -0.09979823976755142, -0.020224913954734802, 0.01771611161530018, 0.010064195841550827, -0.01627599075436592, 0.03515885770320892, 0.0023463310208171606, -0.030021531507372856, -0.005801712162792683, 0.01238627452403307, 0.04694228991866112, -0.03054635226726532, 0.05128515139222145, -0.0301186703145504, -0.00003301164542790502, -0.058415960520505905, 0.016316227614879608, -0.050399813801050186, -0.020165761932730675, 0.012472829781472683, 0.044554755091667175, -0.025222746655344963, 0.05448050796985626, 0.06886515766382217, 0.04232250154018402, -0.0526331290602684, 0.038583263754844666, 0.07490948587656021, -0.0416921004652977, -0.04604136943817139, -0.005185868125408888, 0.00014796906907577068, -0.014471882954239845, 0.002315553603693843, -0.004353436175733805, 0.05133398249745369, 0.026988796889781952, 0.003847608109936118, 0.0015475114341825247, -0.007593825459480286, -0.007951855659484863, -0.02631286345422268, -0.05187658965587616, -0.031137635931372643, 0.004050618037581444, -0.027421239763498306, 0.022569652646780014, 0.026532823219895363, 0.03431249409914017, 0.07399705797433853, 0.018960407003760338, -0.039637040346860886, -0.00236268131993711, 0.021828286349773407, 0.010726813226938248, -0.015250246040523052, -0.07036305963993073, -0.04176236316561699, 0.027320845052599907, 0.04793412238359451, -0.023672156035900116, -0.060443345457315445, 0.014686161652207375, 0.05489858612418175, -0.059015363454818726, 0.05674858018755913, -0.005301373079419136, 0.05403135344386101, 0.054120372980833054, -0.006646627560257912, 0.04252281412482262, -0.019773012027144432, -0.005553004331886768, -0.006127068307250738, 0.039258453994989395, -0.011726481840014458, -0.03282244876027107, -0.050879862159490585, 0.022535022348165512, 0.03860924765467644, 0.030792580917477608, 0.04389035701751709, -0.033569831401109695, -0.04301172494888306, 0.007427785079926252, 0.023307472467422485, -0.04022681340575218, -0.0049834782257676125, 0.038663484156131744, 0.030745411291718483, -0.04570237919688225, -0.023130299523472786, -0.022160910069942474, -0.01538703590631485, 0.03943491354584694, 0.0070894877426326275, -0.018765004351735115, -0.04423196241259575, 0.03993188589811325, -0.015043605118989944, -0.02731010690331459, -0.06659919768571854, 0.04826855659484863, -0.015427187085151672, -0.024621326476335526, 0.05450731888413429, 0.03592665493488312, 0.016232771798968315, 0.07349120825529099, 0.034124452620744705, 0.01548406295478344, -0.03457508981227875, 0.043722543865442276, -0.03322998806834221, -0.01819952391088009, 0.005902619566768408, -0.030843505635857582, -0.03785272687673569, -0.0007512911106459796, -0.06351590901613235, -0.03550237789750099, -0.030753152444958687, 0.018668891862034798, 0.0016029194230213761, -0.01938992738723755, 0.0009049404179677367, 0.05909634381532669, -0.006563843227922916, -0.040777210146188736, -0.04546539485454559, -0.01268637552857399, -0.0686027929186821, -0.05260592699050903, -0.0014112187782302499, 0.007914730347692966, 0.033523909747600555, 0.035503871738910675, 0.02445276267826557, 0.01850869320333004, 0.017646417021751404, -0.038795869797468185, 0.014916791580617428, 0.017569880932569504, -0.04052431508898735, -0.019773557782173157, 0.03655382618308067, 0.011401388794183731, 0.024714604020118713, -0.0366300530731678, 0.03578490763902664, 0.0024256345350295305, -0.003223339794203639, -0.024691712111234665, 0.015300343744456768, 0.03103187121450901, -0.06262200325727463, -0.03668113797903061, -0.015905281528830528, -0.027031853795051575, 0.03153339400887489, -0.025666987523436546, -0.021676689386367798, 0.012843654491007328, 0.0028870287351310253, 0.03523331508040428, -0.03407680243253708, -0.011604039929807186, 0.02814479172229767, -0.0011254075216129422, 0.019084207713603973, -0.05554332956671715, 0.06340666860342026, -0.035427309572696686, 0.02294027805328369, -0.023156922310590744, 0.008059891872107983, -0.02151610516011715, 0.027985110878944397, -0.026388496160507202, -0.024633046239614487, -0.013840719126164913, 0.05830336734652519, -0.0122983418405056, 0.030373359099030495, -0.008945967070758343, 0.0379951186478138, -0.029003316536545753, 0.07181324064731598, -0.038524191826581955, 0.02018357440829277, -0.040755510330200195, 0.027549682185053825, -0.018968556076288223, 0.018118703737854958, -0.01275625079870224, -0.017468087375164032, 0.0339834950864315, 0.06266683340072632, 0.030597159639000893, 0.029541725292801857, -0.003435169579461217, -0.015542197041213512, 0.011273734271526337, -0.042302921414375305, -0.021484825760126114, -0.011039366014301777, -0.0033968668431043625, -0.020819157361984253, 0.05596013739705086, 0.03171391412615776, -0.05585048347711563, -0.07413888722658157, 0.03592066839337349, 0.020039020106196404, -0.00007492474105674773, 0.008769379928708076, 0.04563084989786148, 0.033724039793014526, 0.04191356897354126, -0.017080945894122124, -0.00523295858874917, 0.002309289062395692, -0.050309184938669205, 0.025282401591539383, -0.0038817760068923235, 0.027532905340194702, 0.013529093004763126, -0.0442778505384922, -0.021975671872496605, 0.05659208819270134, 0.0248397309333086, 0.023678822442889214, 0.0018931457307189703, -0.0444728247821331, 0.03760385513305664, 0.008420462720096111, -0.036213602870702744, 0.030995899811387062, 0.01061318814754486, -0.022528253495693207, 0.045097291469573975, -0.009935077279806137, 0.003416963154450059, 0.062114205211400986, 0.018228156492114067, -0.020411843433976173, 0.07062458992004395, -0.03854416310787201, 0.01110704243183136, 0.04006362333893776, -0.07547216862440109, -0.007539079058915377, -0.051217325031757355, 0.05848347395658493, -0.06768069416284561, 0.02318434976041317, 0.056696660816669464, -0.0007085535326041281, 0.027499640360474586, -0.05161546915769577, -0.06254062801599503, 0.01845622807741165, -0.03978855907917023, 0.0713256374001503, 0.010920336470007896, -0.046341728419065475, 0.05344236642122269, 0.012238269671797752, -0.0637321025133133, 0.036087892949581146, 0.02737528830766678, 0.055936526507139206, 0.03819231316447258, 0.04772910475730896, -0.043212905526161194, -0.0028961545322090387, -0.03447681665420532, 0.01676701381802559, -0.05305851995944977, -0.014671098440885544, 0.03602202609181404, -0.04370400309562683, -0.02735939249396324, 0.030466802418231964, -0.013460367918014526, -0.01886172778904438, 0.05410909280180931, -0.05401671677827835, -0.03960257023572922, 0.015054082497954369, 0.018175918608903885, -0.0428352914750576, -0.013293842785060406, -0.031903233379125595, 0.012573802843689919, 0.009674148634076118, 0.002370926085859537, -0.021265633404254913, -0.0178819689899683, 0.029209068045020103, -0.042158424854278564, -0.03077549673616886, 0.020482834428548813, -0.007176782004535198, -0.024132782593369484, 0.039493050426244736, 0.008573587983846664, 0.013869613409042358, 0.029109345749020576, -0.013865331187844276, 0.026064608246088028, -0.037166450172662735, -0.016399336978793144, 0.03161415085196495, -0.006742093246430159, 0.019069360569119453, 0.009261720813810825, 0.032448433339595795, 0.036741919815540314, 0.022613076493144035, -0.0016575170448049903, -0.03432461991906166, -0.03055122308433056, 0.016955101862549782, -0.04032086953520775, 0.006186585873365402, -0.006036755628883839, -0.05321716144680977, -0.02178889699280262, 0.0026651995722204447, -0.04268117994070053, 0.039432890713214874, -0.06468149274587631, 0.009203565306961536, 0.04737571254372597, -0.01585157960653305, -0.059826165437698364, -0.1156744509935379, -0.013389852829277515, -0.0567132942378521, -0.014294077642261982, 0.05079667642712593, -0.038290392607450485, 0.04431358724832535, -0.050134606659412384, -0.03280087187886238, 0.0398876927793026, 0.050786953419446945, -0.05755355954170227, 0.060152318328619, 0.04385250806808472, -0.04872167855501175, 0.010518091730773449, 0.022113120183348656, -0.051696717739105225, 0.0016467729583382607, 0.01602887734770775, -0.0041357288137078285, 0.021410774439573288, 0.01406241487711668, -0.05662461742758751, -0.02041863277554512, -0.07028915733098984, -0.03814307227730751, -0.04583200812339783, 0.006880962755531073, 0.04808410629630089 ]
DeepPavlov/xlm-roberta-large-en-ru-mnli
[ "pytorch", "xlm-roberta", "text-classification", "en", "ru", "dataset:glue", "dataset:mnli", "transformers", "xlm-roberta-large", "xlm-roberta-large-en-ru", "xlm-roberta-large-en-ru-mnli", "has_space" ]
text-classification
{ "architectures": [ "XLMRobertaForSequenceClassification" ], "model_type": "xlm-roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
227
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-6 results: [] --- <!-- 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__sst2__train-8-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5336 - Accuracy: 0.7523 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7161 | 1.0 | 3 | 0.6941 | 0.5 | | 0.6786 | 2.0 | 6 | 0.7039 | 0.25 | | 0.6586 | 3.0 | 9 | 0.7090 | 0.25 | | 0.6121 | 4.0 | 12 | 0.7183 | 0.25 | | 0.5696 | 5.0 | 15 | 0.7266 | 0.25 | | 0.522 | 6.0 | 18 | 0.7305 | 0.25 | | 0.4899 | 7.0 | 21 | 0.7339 | 0.25 | | 0.3985 | 8.0 | 24 | 0.7429 | 0.25 | | 0.3758 | 9.0 | 27 | 0.7224 | 0.25 | | 0.2876 | 10.0 | 30 | 0.7068 | 0.5 | | 0.2498 | 11.0 | 33 | 0.6751 | 0.75 | | 0.1921 | 12.0 | 36 | 0.6487 | 0.75 | | 0.1491 | 13.0 | 39 | 0.6261 | 0.75 | | 0.1276 | 14.0 | 42 | 0.6102 | 0.75 | | 0.0996 | 15.0 | 45 | 0.5964 | 0.75 | | 0.073 | 16.0 | 48 | 0.6019 | 0.75 | | 0.0627 | 17.0 | 51 | 0.5933 | 0.75 | | 0.053 | 18.0 | 54 | 0.5768 | 0.75 | | 0.0403 | 19.0 | 57 | 0.5698 | 0.75 | | 0.0328 | 20.0 | 60 | 0.5656 | 0.75 | | 0.03 | 21.0 | 63 | 0.5634 | 0.75 | | 0.025 | 22.0 | 66 | 0.5620 | 0.75 | | 0.0209 | 23.0 | 69 | 0.5623 | 0.75 | | 0.0214 | 24.0 | 72 | 0.5606 | 0.75 | | 0.0191 | 25.0 | 75 | 0.5565 | 0.75 | | 0.0173 | 26.0 | 78 | 0.5485 | 0.75 | | 0.0175 | 27.0 | 81 | 0.5397 | 0.75 | | 0.0132 | 28.0 | 84 | 0.5322 | 0.75 | | 0.0138 | 29.0 | 87 | 0.5241 | 0.75 | | 0.0128 | 30.0 | 90 | 0.5235 | 0.75 | | 0.0126 | 31.0 | 93 | 0.5253 | 0.75 | | 0.012 | 32.0 | 96 | 0.5317 | 0.75 | | 0.0118 | 33.0 | 99 | 0.5342 | 0.75 | | 0.0092 | 34.0 | 102 | 0.5388 | 0.75 | | 0.0117 | 35.0 | 105 | 0.5414 | 0.75 | | 0.0124 | 36.0 | 108 | 0.5453 | 0.75 | | 0.0109 | 37.0 | 111 | 0.5506 | 0.75 | | 0.0112 | 38.0 | 114 | 0.5555 | 0.75 | | 0.0087 | 39.0 | 117 | 0.5597 | 0.75 | | 0.01 | 40.0 | 120 | 0.5640 | 0.75 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012914123013615608, 0.013938847929239273, -0.042195867747068405, 0.04161226004362106, 0.05126215144991875, 0.014884999953210354, -0.017767658457159996, -0.024138623848557472, -0.05729403719305992, 0.06326573342084885, 0.013871918432414532, -0.0335053876042366, 0.012033754028379917, 0.04233596473932266, -0.015303114429116249, -0.03597424551844597, -0.0015602684579789639, -0.011565441265702248, -0.031800586730241776, -0.003161598229780793, 0.003567611565813422, -0.015900390222668648, -0.015843113884329796, 0.002011385979130864, -0.005229667294770479, 0.017253994941711426, 0.006341816857457161, 0.021295933052897453, 0.038854584097862244, -0.06870671361684799, 0.007216622121632099, -0.030481379479169846, -0.05181678757071495, -0.02263759635388851, -0.012716813012957573, -0.01716749556362629, -0.005577049683779478, 0.02735983394086361, 0.03546056151390076, 0.03771709278225899, 0.009312251582741737, 0.03140461444854736, -0.0010695523815229535, -0.012306062504649162, 0.06004563719034195, 0.01096612773835659, -0.03874647617340088, 0.0009172316640615463, 0.039429984986782074, -0.02416706085205078, -0.07976558804512024, -0.046230558305978775, -0.016986867412924767, 0.023336846381425858, -0.01743575744330883, -0.013109252788126469, -0.058505456894636154, 0.01719900593161583, 0.06541692465543747, -0.04530350863933563, -0.029497552663087845, 0.0007650540792383254, -0.07105366140604019, 0.004878339357674122, 0.03487711399793625, -0.01901637203991413, 0.01420343853533268, -0.051095303148031235, 0.024360178038477898, -0.010767396539449692, 0.05370447784662247, -0.019998442381620407, 0.012095344252884388, -0.07174526900053024, -0.02005494199693203, -0.008462090976536274, 0.043642282485961914, 0.05827516317367554, -0.03127777576446533, 0.051370251923799515, 0.02967534400522709, -0.00038316918653436005, 0.04419831186532974, -0.02962026558816433, 0.011294197291135788, 0.03250369429588318, -0.04488532990217209, 0.00038244170718826354, 0.017457496374845505, 0.026771262288093567, -0.03661162033677101, -0.03752719983458519, -0.02989456057548523, -0.03324253112077713, -0.0014307912206277251, 0.02037854865193367, 0.02481985092163086, 0.017810508608818054, 0.03873969987034798, 0.013431331142783165, 0.027767427265644073, 0.037541262805461884, -0.017733905464410782, 0.06824836134910583, -0.00618528388440609, -0.011995579116046429, -0.004523504991084337, -0.018549486994743347, -0.05018153414130211, 0.02049417793750763, 0.02640002779662609, -0.02054726704955101, -0.01177476067095995, 0.03829481080174446, 0.004438451491296291, 0.004205900244414806, 0.07632550597190857, -0.024727454409003258, -0.040213607251644135, -0.03305435553193092, 0.025841817259788513, 0.01732799969613552, -0.017823027446866035, 0.016978668048977852, -0.04463482275605202, -0.01717006415128708, -0.026131166145205498, -0.01855154149234295, -0.020685527473688126, 0.021039532497525215, 0.016664016991853714, 0.06740602105855942, 0.031212836503982544, -0.0881996750831604, 0.005417166277766228, 0.015065261162817478, -0.05529716983437538, 0.04898647591471672, 0.02312365733087063, 0.11465862393379211, -0.05855176970362663, -0.06650686264038086, 0.007616413291543722, 0.00014674461272079498, -0.041438449174165726, 0.015129782259464264, 0.0005690946127288043, -0.027450215071439743, 0.005438821855932474, 0.003876341274008155, 0.0690109059214592, -0.04072600230574608, -0.010343690402805805, 0.07431397587060928, 0.004470575600862503, 0.04417068511247635, -0.05483376234769821, -0.02627767249941826, 0.018932918086647987, -0.022035891190171242, -0.03368173912167549, 0.04987745359539986, -0.029570357874035835, -0.019172102212905884, -0.01842617616057396, -0.023818066343665123, 0.01088135689496994, 0.07394048571586609, -0.0070466091856360435, -0.0318196602165699, -0.017811570316553116, 0.02451411448419094, 0.045715175569057465, 0.04881926253437996, -0.026332003995776176, 0.025975089520215988, 0.05896937474608421, 0.028282934799790382, -0.03197150304913521, 0.04038654640316963, 0.02146247774362564, -0.02532818354666233, -0.020778192207217216, 0.03328825905919075, 0.002548669232055545, -0.04559283331036568, 0.04005958512425423, 0.01322736032307148, 0.003661363385617733, -0.06928419321775436, -0.045747581869363785, 0.03809715062379837, -0.0059193335473537445, -0.010064749978482723, 0.01402165275067091, 0.022303860634565353, -0.014999143779277802, 0.04555957019329071, -0.011514030396938324, 0.007774063386023045, -0.022584829479455948, -0.020740043371915817, 0.01314383652061224, -0.022623617202043533, 0.028336141258478165, 0.048567309975624084, -0.0026149507611989975, 0.09495965391397476, -0.046199630945920944, 0.01993555948138237, -0.0541459321975708, -0.03620781749486923, 0.019787302240729332, 0.05734608694911003, 0.055986907333135605, 0.0558990053832531, 0.006568339187651873, -0.02517813816666603, 0.04431551694869995, 0.07204911857843399, 0.04619912803173065, -0.006224405951797962, -0.03560182452201843, -0.017129065468907356, 0.0423397496342659, 0.051966592669487, -0.049619946628808975, -0.013243341818451881, 0.012218616902828217, 0.03152136504650116, -0.002531614853069186, 0.016233403235673904, -0.025617297738790512, 0.038068778812885284, -0.046978045254945755, -0.04162760078907013, 0.043209683150053024, 0.018669193610548973, -0.0010729541536420584, 0.02774062193930149, 0.02839728631079197, 0.009293201379477978, 0.023715881630778313, 0.02033904194831848, 0.018039189279079437, -0.052544038742780685, 0.023205241188406944, 0.003500828053802252, 0.057192835956811905, -0.052373211830854416, 0.033069856464862823, -0.017555048689246178, 0.016842512413859367, 0.0433657206594944, -0.03240989148616791, 0.027340833097696304, 0.05270105600357056, 0.03439543768763542, -0.037739962339401245, 0.025781691074371338, 0.0018441491993144155, 0.03313320502638817, 0.03921043127775192, 0.009201671928167343, 0.0725582018494606, 0.020983899012207985, 0.04474041983485222, 0.074276864528656, 0.01982380449771881, 0.03348027914762497, 0.013204201124608517, 0.06979744881391525, 0.018514296039938927, -0.009183218702673912, 0.04618676006793976, -0.046096496284008026, 0.021812835708260536, -0.05165312811732292, -0.005291027016937733, -0.02444894053041935, -0.009438893757760525, 0.05361904948949814, 0.025278164073824883, -0.03588283061981201, -0.012163326144218445, 0.01726728491485119, -0.00733712874352932, 0.02088843658566475, -0.006299913860857487, 0.008532021194696426, -0.007241921499371529, -0.019574547186493874, -0.028620174154639244, -0.06999438256025314, -0.050036631524562836, -0.030013125389814377, -0.01677149161696434, -0.02221410721540451, -0.09040383249521255, -0.003717118641361594, -0.087002232670784, -0.02329852804541588, 0.026781000196933746, 0.007539624813944101, -0.027744093909859657, -0.03377561643719673, 0.022659720852971077, -0.047316040843725204, -0.04140054062008858, -0.04129491373896599, -0.06029681861400604, -0.04988665133714676, -0.08215981721878052, 0.0353204645216465, 0.035671982914209366, 0.00621887156739831, 0.000743403856176883, 0.027736162766814232, 0.016021551564335823, -0.027977002784609795, 0.03856901451945305, 0.06506168097257614, -0.03689374774694443, -0.05690178647637367, 0.030880844220519066, -0.009237915277481079, 0.018651606515049934, 0.02175493724644184, -0.030907204374670982, 0.09215810894966125, 0.07134349644184113, 0.006781339179724455, 0.020230205729603767, -0.011759798042476177, -0.06355687230825424, -0.06501632183790207, -0.022991525009274483, -0.040699005126953125, -0.008910534903407097, -0.044222284108400345, -0.0387406162917614, -0.0367591455578804, -0.041942063719034195, 0.007001274731010199, -0.01140572875738144, 0.025287240743637085, 0.021657882258296013, 0.03746124729514122, 0.021575015038251877, 0.044135577976703644, -0.029467619955539703, -0.03843384608626366, 0.056855082511901855, 0.011487443931400776, 0.004529811907559633, -0.08523592352867126, -0.0017901072278618813, 0.026697224006056786, 0.016140421852469444, 0.01796575076878071, -0.004842089023441076, 0.07199247926473618, -0.011364289559423923, 0.003345671109855175, 0.014150092378258705, -0.010744037106633186, -0.010899271816015244, -0.002843988360837102, -0.005057615227997303, 0.0032530438620597124, -0.024131760001182556, -0.03336870297789574, -0.009395982138812542, 0.02759028784930706, -0.05767630413174629, -0.06136161834001541, -0.01568026840686798, 0.03417588770389557, 0.04226909205317497, -0.005268086213618517, -0.047565385699272156, -0.0061633773148059845, -0.07536084204912186, -0.004201992880553007, 0.036854133009910583, 0.0163443423807621, -0.00532072177156806, 0.04367702454328537, 0.01633201166987419, -0.008055929094552994, 0.028808116912841797, 0.05553798750042915, 0.06894069910049438, 0.01000410970300436, -0.08411040902137756, -0.002262924565002322, -0.01694684475660324, 0.012637869454920292, -0.01229847315698862, -0.018496552482247353, -0.021326152607798576, -0.09913142025470734, -0.02164468728005886, 0.016341492533683777, 0.010404483415186405, -0.016528569161891937, 0.034708939492702484, 0.0036317959893494844, -0.030632099136710167, -0.005572747904807329, 0.012553936801850796, 0.04605402052402496, -0.029637612402439117, 0.05215441435575485, -0.03112478367984295, 0.0015937398420646787, -0.060336630791425705, 0.015487483702600002, -0.05306686460971832, -0.02324402518570423, 0.012902536429464817, 0.0451660230755806, -0.02775397151708603, 0.05478872358798981, 0.06992179155349731, 0.041841667145490646, -0.052565380930900574, 0.0373944528400898, 0.07412920147180557, -0.041659239679574966, -0.045219484716653824, -0.00392436096444726, 0.0012979743769392371, -0.014949345029890537, 0.00227565155364573, -0.0039643794298172, 0.05209917575120926, 0.02579912357032299, 0.0036527577321976423, 0.0016211408656090498, -0.008511679247021675, -0.006981002166867256, -0.027220729738473892, -0.0514971949160099, -0.03120374120771885, 0.0033812455367296934, -0.027216793969273567, 0.02363799698650837, 0.026843810454010963, 0.03336222842335701, 0.07369183003902435, 0.01970141939818859, -0.04016679525375366, -0.0007330643711611629, 0.02282465249300003, 0.010983534157276154, -0.016235066577792168, -0.06986454129219055, -0.04266825690865517, 0.027686143293976784, 0.04743632674217224, -0.023393135517835617, -0.06086929515004158, 0.014113917015492916, 0.05212168022990227, -0.05922093242406845, 0.05841447412967682, -0.006044534035027027, 0.054071445018053055, 0.05627472698688507, -0.007980948314070702, 0.04174017161130905, -0.020284503698349, -0.006443035788834095, -0.004268238786607981, 0.04020574688911438, -0.010489312000572681, -0.0338091142475605, -0.04955168813467026, 0.020428234711289406, 0.03949001803994179, 0.031900808215141296, 0.04231516644358635, -0.034431178122758865, -0.04274037852883339, 0.005893412046134472, 0.024203741922974586, -0.04038436338305473, -0.0071717225946486, 0.038158345967531204, 0.031039796769618988, -0.047695569694042206, -0.022664854303002357, -0.023917827755212784, -0.01721629686653614, 0.038671500980854034, 0.0063641248270869255, -0.01926305890083313, -0.045135293155908585, 0.038964319974184036, -0.016708271577954292, -0.02773883007466793, -0.06840917468070984, 0.04991885647177696, -0.0132443243637681, -0.023812072351574898, 0.05407094955444336, 0.03731125220656395, 0.017726939171552658, 0.07274467498064041, 0.03246113657951355, 0.015207278542220592, -0.03295545652508736, 0.043054137378931046, -0.03484570235013962, -0.020389486104249954, 0.007423986215144396, -0.031094789505004883, -0.03674110770225525, 0.00042127183405682445, -0.06341128796339035, -0.03551769629120827, -0.031117603182792664, 0.01810557022690773, 0.0014170820359140635, -0.019419383257627487, 0.00011843653192045167, 0.05819327011704445, -0.006174001377075911, -0.0408332422375679, -0.04646475240588188, -0.014088456518948078, -0.069572813808918, -0.051318030804395676, -0.000022333706510835327, 0.007490365765988827, 0.03215470165014267, 0.03495992347598076, 0.023382794111967087, 0.017832716926932335, 0.019241025671362877, -0.03926091268658638, 0.015755821019411087, 0.018329795449972153, -0.04074579104781151, -0.018157027661800385, 0.03664510324597359, 0.011292221955955029, 0.02377583272755146, -0.037170473486185074, 0.0346686951816082, 0.0009206603863276541, -0.005087944213300943, -0.02464141696691513, 0.016213085502386093, 0.030042069032788277, -0.06221519410610199, -0.03553994372487068, -0.017117252573370934, -0.028259404003620148, 0.031297631561756134, -0.023427752777934074, -0.02083555981516838, 0.013435921631753445, 0.004055497236549854, 0.03516273573040962, -0.03371313214302063, -0.010558764450252056, 0.028334345668554306, 0.000046141849452396855, 0.01868654228746891, -0.056431565433740616, 0.062345489859580994, -0.03686416521668434, 0.024093667045235634, -0.021878570318222046, 0.00852028839290142, -0.02269684709608555, 0.028383582830429077, -0.02587990276515484, -0.024544667452573776, -0.013982029631733894, 0.05825206637382507, -0.012823502533137798, 0.02999872900545597, -0.008796211332082748, 0.03945925459265709, -0.02902339957654476, 0.07157159596681595, -0.03980368748307228, 0.019569318741559982, -0.04127063974738121, 0.02910185046494007, -0.019460061565041542, 0.018662763759493828, -0.013007850386202335, -0.017539195716381073, 0.03373679518699646, 0.06160422042012215, 0.029697716236114502, 0.029293570667505264, -0.0020913449116051197, -0.01594873145222664, 0.01161144208163023, -0.0411478690803051, -0.019203459843993187, -0.0118782427161932, -0.003187016351148486, -0.019573086872696877, 0.05738949403166771, 0.031821995973587036, -0.05630580335855484, -0.0748228058218956, 0.03769461065530777, 0.019504869356751442, -0.0012420043349266052, 0.007253502961248159, 0.04591096192598343, 0.03284142166376114, 0.040626801550388336, -0.017858412116765976, -0.007282443344593048, 0.0004687151813413948, -0.051146622747182846, 0.02354579046368599, -0.005525566171854734, 0.02674427069723606, 0.013504019007086754, -0.04321923479437828, -0.023426176980137825, 0.05811759829521179, 0.024826079607009888, 0.024473654106259346, 0.001791090122424066, -0.04344896227121353, 0.036140210926532745, 0.008731434121727943, -0.035526107996702194, 0.029275482520461082, 0.009455245919525623, -0.024176817387342453, 0.044737961143255234, -0.009315879084169865, 0.0020739068277180195, 0.0610390305519104, 0.017034796997904778, -0.020220570266246796, 0.07103267312049866, -0.03987535089254379, 0.01175339613109827, 0.04134146869182587, -0.07660616934299469, -0.009743057191371918, -0.05174853280186653, 0.05747099220752716, -0.06792475283145905, 0.02341342344880104, 0.05606949329376221, -0.001998745836317539, 0.028767934069037437, -0.05367180332541466, -0.06134529039263725, 0.018691226840019226, -0.04090104624629021, 0.06920098513364792, 0.010121386498212814, -0.04422134533524513, 0.05282078683376312, 0.012043104507029057, -0.06316760927438736, 0.03714017942547798, 0.028201621025800705, 0.0550595298409462, 0.03820012882351875, 0.047626543790102005, -0.04347218573093414, -0.003962398041039705, -0.03361734375357628, 0.015116531401872635, -0.05103856697678566, -0.013937890529632568, 0.034775301814079285, -0.042786967009305954, -0.0251567792147398, 0.030141368508338928, -0.013148142956197262, -0.016737479716539383, 0.052838265895843506, -0.05252504721283913, -0.04303731024265289, 0.014782506041228771, 0.019765177741646767, -0.043410658836364746, -0.01231949869543314, -0.030742814764380455, 0.010373455472290516, 0.009220744483172894, 0.0022932307329028845, -0.021418146789073944, -0.0189936812967062, 0.029290996491909027, -0.04360681027173996, -0.032360877841711044, 0.021476252004504204, -0.0070739248767495155, -0.023000821471214294, 0.038524236530065536, 0.010020342655479908, 0.013451075181365013, 0.029807012528181076, -0.013865633867681026, 0.02467801794409752, -0.03597315400838852, -0.017099568620324135, 0.032593984156847, -0.008924485184252262, 0.02097850665450096, 0.010334077291190624, 0.032020919024944305, 0.03637266531586647, 0.022626804187893867, -0.0012016035616397858, -0.03558223694562912, -0.02954227291047573, 0.01511224452406168, -0.040923599153757095, 0.004936863202601671, -0.004520697053521872, -0.05353489890694618, -0.021848097443580627, 0.0018037392292171717, -0.04187721386551857, 0.03951386734843254, -0.06400170177221298, 0.009503943845629692, 0.04706935957074165, -0.01711203157901764, -0.06004967540502548, -0.11662714928388596, -0.013262934051454067, -0.055771153420209885, -0.013803787529468536, 0.05131913349032402, -0.03713247925043106, 0.043970268219709396, -0.04999740049242973, -0.031640730798244476, 0.037324320524930954, 0.053458135575056076, -0.057934705168008804, 0.06037737801671028, 0.04418458044528961, -0.04914127662777901, 0.010112143121659756, 0.021556202322244644, -0.05302627384662628, 0.002078682417050004, 0.01667320542037487, -0.0039737289771437645, 0.02238236740231514, 0.014436556026339531, -0.05741317570209503, -0.01917259208858013, -0.07159977406263351, -0.03845261037349701, -0.04718691483139992, 0.006005974020808935, 0.047701191157102585 ]
DeepPavlov/xlm-roberta-large-en-ru
[ "pytorch", "xlm-roberta", "feature-extraction", "en", "ru", "transformers" ]
feature-extraction
{ "architectures": [ "XLMRobertaModel" ], "model_type": "xlm-roberta", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
190
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-7 results: [] --- <!-- 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__sst2__train-8-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6950 - Accuracy: 0.4618 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7156 | 1.0 | 3 | 0.6965 | 0.25 | | 0.6645 | 2.0 | 6 | 0.7059 | 0.25 | | 0.6368 | 3.0 | 9 | 0.7179 | 0.25 | | 0.5944 | 4.0 | 12 | 0.7408 | 0.25 | | 0.5369 | 5.0 | 15 | 0.7758 | 0.25 | | 0.449 | 6.0 | 18 | 0.8009 | 0.25 | | 0.4352 | 7.0 | 21 | 0.8209 | 0.5 | | 0.3462 | 8.0 | 24 | 0.8470 | 0.5 | | 0.3028 | 9.0 | 27 | 0.8579 | 0.5 | | 0.2365 | 10.0 | 30 | 0.8704 | 0.5 | | 0.2023 | 11.0 | 33 | 0.8770 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012928474694490433, 0.01352815330028534, -0.04377631098031998, 0.042187318205833435, 0.05205698683857918, 0.017216166481375694, -0.017915397882461548, -0.022083060815930367, -0.05760963261127472, 0.06469998508691788, 0.014213848859071732, -0.03291833773255348, 0.010681500658392906, 0.042989782989025116, -0.014329102821648121, -0.03707437217235565, -0.0029635371174663305, -0.012722676619887352, -0.03216511383652687, -0.0033002211712300777, 0.004799019545316696, -0.016923539340496063, -0.016329925507307053, 0.002635832643136382, -0.005211514886468649, 0.016826007515192032, 0.006457716692239046, 0.02173694781959057, 0.03893493115901947, -0.06721136718988419, 0.006193568464368582, -0.029588749632239342, -0.05249970406293869, -0.022753555327653885, -0.013118026778101921, -0.016850285232067108, -0.006247194483876228, 0.027646426111459732, 0.03560410812497139, 0.03656912222504616, 0.008212118409574032, 0.03259452432394028, -0.0019294334342703223, -0.011695822700858116, 0.06053962558507919, 0.010737312026321888, -0.03825760632753372, 0.0008183682803064585, 0.03996473178267479, -0.024124322459101677, -0.07917583733797073, -0.04739854112267494, -0.017728008329868317, 0.02365030348300934, -0.01650325395166874, -0.013599596917629242, -0.06055114045739174, 0.017232706770300865, 0.06493319571018219, -0.0460471510887146, -0.029796240851283073, 0.0014800389762967825, -0.07226505130529404, 0.004070849623531103, 0.0367388091981411, -0.01958516240119934, 0.012994395568966866, -0.05035651475191116, 0.02479938417673111, -0.01107155904173851, 0.05460905656218529, -0.02062968909740448, 0.012540196999907494, -0.0729093998670578, -0.01871546357870102, -0.00901101715862751, 0.044332075864076614, 0.05703308433294296, -0.031173113733530045, 0.05103889852762222, 0.030091634020209312, -0.0011223519686609507, 0.04376606643199921, -0.030111636966466904, 0.010086163878440857, 0.032101571559906006, -0.04499433934688568, -0.000024307075364049524, 0.018394850194454193, 0.02601807378232479, -0.03662234544754028, -0.03670966252684593, -0.029757793992757797, -0.03186293691396713, -0.0022959308698773384, 0.01871330291032791, 0.025691645219922066, 0.0173571165651083, 0.037848424166440964, 0.013111782260239124, 0.025069817900657654, 0.0368095263838768, -0.018488280475139618, 0.06910822540521622, -0.007050168234854937, -0.010443788021802902, -0.0060740187764167786, -0.01786377653479576, -0.050808630883693695, 0.019952896982431412, 0.026558494195342064, -0.020728938281536102, -0.0116857485845685, 0.03778240457177162, 0.004348326940089464, 0.00540024321526289, 0.0768960490822792, -0.024748949334025383, -0.04040946811437607, -0.03279711306095123, 0.024742858484387398, 0.01701410301029682, -0.019142378121614456, 0.01688471995294094, -0.04426609352231026, -0.017406124621629715, -0.025726888328790665, -0.017675573006272316, -0.020514637231826782, 0.02114042453467846, 0.014479202218353748, 0.06438875198364258, 0.03217494115233421, -0.0880436897277832, 0.004625324159860611, 0.014808383770287037, -0.0541854090988636, 0.04792707785964012, 0.023255953565239906, 0.11359686404466629, -0.05816091224551201, -0.06710463762283325, 0.007633232045918703, -0.00018752485630102456, -0.0421200729906559, 0.014325124211609364, 0.0015557463048025966, -0.026266751810908318, 0.005838165059685707, 0.004430749453604221, 0.06843642145395279, -0.04113299399614334, -0.008975820615887642, 0.07484160363674164, 0.0045320442877709866, 0.04543193429708481, -0.05547827482223511, -0.02743540331721306, 0.01856575720012188, -0.02210339345037937, -0.03330563008785248, 0.049885667860507965, -0.027940969914197922, -0.017390461638569832, -0.019156794995069504, -0.024692118167877197, 0.010817021131515503, 0.07357411831617355, -0.006161723751574755, -0.03298023343086243, -0.017325950786471367, 0.02422299049794674, 0.047010716050863266, 0.05001310631632805, -0.02638961188495159, 0.024747146293520927, 0.05760319530963898, 0.028386060148477554, -0.031791552901268005, 0.03988596796989441, 0.023252716287970543, -0.02446979284286499, -0.020249448716640472, 0.03233585134148598, 0.003537647658959031, -0.04709560424089432, 0.039875563234090805, 0.012318664230406284, 0.0035765515640378, -0.06865552067756653, -0.04608799144625664, 0.04023169353604317, -0.0040236772038042545, -0.011897910386323929, 0.013517052866518497, 0.02259356901049614, -0.013028902933001518, 0.046148769557476044, -0.011078699491918087, 0.007612390909343958, -0.02312316745519638, -0.01997414417564869, 0.012825455516576767, -0.022585691884160042, 0.02913684956729412, 0.04858728498220444, -0.0010344338370487094, 0.09492278844118118, -0.045414961874485016, 0.01944393664598465, -0.055088113993406296, -0.035819217562675476, 0.01871366612613201, 0.05666173994541168, 0.05636151134967804, 0.05639602243900299, 0.007804933935403824, -0.026713691651821136, 0.046276602894067764, 0.07127363979816437, 0.04583181440830231, -0.0045678806491196156, -0.03385131433606148, -0.017161374911665916, 0.040956880897283554, 0.052361566573381424, -0.04912937432527542, -0.01421400811523199, 0.011005457490682602, 0.03199274092912674, -0.004216697067022324, 0.017651615664362907, -0.02507203444838524, 0.03914192318916321, -0.04677306115627289, -0.04179198294878006, 0.04277237132191658, 0.01832842268049717, 0.0005541566642932594, 0.029377678409218788, 0.028409458696842194, 0.009867210872471333, 0.0243738554418087, 0.01967477612197399, 0.017519397661089897, -0.051958195865154266, 0.02274903655052185, 0.00445454940199852, 0.05718319118022919, -0.05281843990087509, 0.03256939351558685, -0.01641799882054329, 0.016955535858869553, 0.04376821219921112, -0.032092079520225525, 0.027175627648830414, 0.05114953964948654, 0.0351923331618309, -0.037422727793455124, 0.02528691291809082, 0.003430988173931837, 0.032597899436950684, 0.04008912295103073, 0.008864129893481731, 0.07083112746477127, 0.02158045396208763, 0.04440224915742874, 0.07385314255952835, 0.020781170576810837, 0.03260448947548866, 0.013858200050890446, 0.0693727657198906, 0.018059100955724716, -0.010913805104792118, 0.04538479819893837, -0.04587806761264801, 0.02176937460899353, -0.05096350237727165, -0.0044037592597305775, -0.023837586864829063, -0.008950094692409039, 0.05280156806111336, 0.025830190628767014, -0.03735746815800667, -0.011956078000366688, 0.016934620216488838, -0.007214720826596022, 0.021332798525691032, -0.005903055425733328, 0.010220412164926529, -0.00685941381379962, -0.021316932514309883, -0.029118694365024567, -0.07013024389743805, -0.051078058779239655, -0.031033718958497047, -0.01627715490758419, -0.02353166788816452, -0.08985991030931473, -0.004112901631742716, -0.08694130927324295, -0.02188621088862419, 0.027398033067584038, 0.007483131717890501, -0.027223968878388405, -0.03268009424209595, 0.022931557148694992, -0.04860671982169151, -0.04106210172176361, -0.04159821942448616, -0.059748586267232895, -0.049984727054834366, -0.08227311819791794, 0.03509875014424324, 0.035856232047080994, 0.006125069689005613, 0.0030312766321003437, 0.026219604536890984, 0.016660502180457115, -0.027615629136562347, 0.038695815950632095, 0.06591793149709702, -0.03862002119421959, -0.05657047778367996, 0.0317782498896122, -0.010041706264019012, 0.017779240384697914, 0.021797124296426773, -0.030754948034882545, 0.09064916521310806, 0.07147154957056046, 0.00700230011716485, 0.02174784056842327, -0.011486491188406944, -0.06313817948102951, -0.06549251079559326, -0.024086864665150642, -0.040424250066280365, -0.00774012366309762, -0.04550714045763016, -0.0389074869453907, -0.03582760691642761, -0.0417061373591423, 0.006188740022480488, -0.011748223565518856, 0.024730049073696136, 0.020637022331357002, 0.03631768748164177, 0.020172562450170517, 0.044306300580501556, -0.02899504080414772, -0.03871878609061241, 0.05873558670282364, 0.009921745397150517, 0.005372252780944109, -0.08522532880306244, -0.0009730221936479211, 0.026080122217535973, 0.016829777508974075, 0.016102664172649384, -0.004665222484618425, 0.07202427834272385, -0.01073217298835516, 0.0036267980467528105, 0.013421330600976944, -0.011529668234288692, -0.011433692649006844, -0.0021188000682741404, -0.004617714788764715, 0.002810565521940589, -0.02347077988088131, -0.034279145300388336, -0.00899809692054987, 0.028357787057757378, -0.05788308382034302, -0.06088919937610626, -0.017175499349832535, 0.034994445741176605, 0.04229200258851051, -0.004207720514386892, -0.04689595103263855, -0.0077786133624613285, -0.07556260377168655, -0.0037631187587976456, 0.03833812102675438, 0.017272023484110832, -0.0039659827016294, 0.04281684756278992, 0.015196338295936584, -0.00808378029614687, 0.029957905411720276, 0.05607486888766289, 0.06942139565944672, 0.008864834904670715, -0.08333267271518707, -0.00248414627276361, -0.01630249433219433, 0.01124219037592411, -0.010698804631829262, -0.019346265122294426, -0.022355983033776283, -0.0995800718665123, -0.02026950754225254, 0.01655965857207775, 0.011117641814053059, -0.01711307466030121, 0.03304063901305199, 0.00283246161416173, -0.030222058296203613, -0.00508390087634325, 0.012358060106635094, 0.04721720516681671, -0.0291502196341753, 0.052105776965618134, -0.031264591962099075, -0.0004980969242751598, -0.05826948210597038, 0.015650078654289246, -0.0531221404671669, -0.022216778248548508, 0.013160070404410362, 0.04522212594747543, -0.027151960879564285, 0.05145788565278053, 0.06941944360733032, 0.0428282730281353, -0.05143003165721893, 0.03710899129509926, 0.07321926951408386, -0.042751945555210114, -0.045364100486040115, -0.004132110625505447, 0.0009402637952007353, -0.015047877095639706, 0.0011779244523495436, -0.0028938264586031437, 0.053774088621139526, 0.026454033330082893, 0.003573118709027767, 0.0007482538348995149, -0.0079742930829525, -0.00780321191996336, -0.0275325495749712, -0.05027610436081886, -0.029920315369963646, 0.0029391495045274496, -0.026651661843061447, 0.023320339620113373, 0.02651219628751278, 0.034150972962379456, 0.07430899888277054, 0.0197573471814394, -0.04012241214513779, -0.0016047087265178561, 0.024269523099064827, 0.009702625684440136, -0.017012562602758408, -0.06993627548217773, -0.04205941781401634, 0.02924272045493126, 0.04861917346715927, -0.022938178852200508, -0.06131522357463837, 0.014383076690137386, 0.05146158114075661, -0.05834178626537323, 0.05883314087986946, -0.005380998831242323, 0.05443035438656807, 0.05502929911017418, -0.007503941189497709, 0.042854391038417816, -0.020444782450795174, -0.0062987906858325005, -0.0036980321165174246, 0.04006385803222656, -0.010301414877176285, -0.03413613140583038, -0.04859229922294617, 0.019332047551870346, 0.04032474383711815, 0.032320842146873474, 0.04322393983602524, -0.035504475235939026, -0.04100619629025459, 0.006931076291948557, 0.024298012256622314, -0.03975924476981163, -0.007044999394565821, 0.03775015100836754, 0.030635695904493332, -0.0480903722345829, -0.02282079868018627, -0.023263998329639435, -0.015972213819622993, 0.03970017656683922, 0.006775969639420509, -0.01871221512556076, -0.045416343957185745, 0.040293000638484955, -0.01609892025589943, -0.027781372889876366, -0.06644580513238907, 0.05007941648364067, -0.012963087297976017, -0.0240296833217144, 0.055110301822423935, 0.03625764697790146, 0.018901387229561806, 0.07257521152496338, 0.033875107765197754, 0.015272848308086395, -0.03320430591702461, 0.04243103787302971, -0.03398328647017479, -0.019349543377757072, 0.006125146988779306, -0.03049570694565773, -0.037909768521785736, -0.0003960144822485745, -0.06480397284030914, -0.03697436302900314, -0.03083501197397709, 0.018295088782906532, 0.0012893012026324868, -0.01957603171467781, 0.0004046067479066551, 0.05807501822710037, -0.006283407099545002, -0.04214185103774071, -0.047339264303445816, -0.012839256785809994, -0.06896736472845078, -0.051763758063316345, -0.0013060809578746557, 0.006860193330794573, 0.03243927285075188, 0.036202169954776764, 0.023922553285956383, 0.018388399854302406, 0.019671032205224037, -0.04017259553074837, 0.015190904960036278, 0.019098419696092606, -0.04120979458093643, -0.01882580667734146, 0.03741195797920227, 0.011277924291789532, 0.023555517196655273, -0.03898319602012634, 0.03492170572280884, 0.0006404711166396737, -0.005199732258915901, -0.0245852991938591, 0.0159603264182806, 0.03092004358768463, -0.06372839212417603, -0.03670556843280792, -0.01645672507584095, -0.02764870598912239, 0.03142173960804939, -0.024660024791955948, -0.02215735614299774, 0.012453270144760609, 0.003979888744652271, 0.03512320667505264, -0.03428541496396065, -0.010887672193348408, 0.028295960277318954, -0.0014576730318367481, 0.01815449260175228, -0.05617312341928482, 0.06326159834861755, -0.03647691756486893, 0.024090949445962906, -0.020605886355042458, 0.01001173909753561, -0.022373896092176437, 0.02710942178964615, -0.02594921924173832, -0.023567067459225655, -0.012208071537315845, 0.058795537799596786, -0.012724139727652073, 0.02931695431470871, -0.00951396208256483, 0.03885410353541374, -0.02781551703810692, 0.07004149258136749, -0.039422258734703064, 0.019781362265348434, -0.03909000754356384, 0.028528403490781784, -0.018602021038532257, 0.02056092396378517, -0.013089843094348907, -0.017254594713449478, 0.03158983960747719, 0.06306777894496918, 0.030290525406599045, 0.028277067467570305, -0.003309644293040037, -0.014929362572729588, 0.01206140499562025, -0.04127443954348564, -0.018628600984811783, -0.011492658406496048, -0.0027926587499678135, -0.020339109003543854, 0.05682837963104248, 0.03114885464310646, -0.05615914613008499, -0.07557389885187149, 0.037449005991220474, 0.019854120910167694, -0.0009627200197428465, 0.006321484688669443, 0.04738198593258858, 0.033357951790094376, 0.042687755078077316, -0.015709063038229942, -0.0067862109281122684, 0.0009549311362206936, -0.05117981135845184, 0.023558370769023895, -0.0034413340035825968, 0.026595676317811012, 0.014023303985595703, -0.04364022612571716, -0.022319171577692032, 0.057889532297849655, 0.0240446999669075, 0.024898532778024673, 0.00187749695032835, -0.04399051144719124, 0.03776157274842262, 0.006311868783086538, -0.03511328622698784, 0.029550980776548386, 0.00912870280444622, -0.023222722113132477, 0.04546423256397247, -0.008806407451629639, 0.0021095299161970615, 0.06104134023189545, 0.01734563335776329, -0.01947508379817009, 0.06938955187797546, -0.037308480590581894, 0.010857826098799706, 0.04131736978888512, -0.07672086358070374, -0.008335777558386326, -0.05096030607819557, 0.05806843936443329, -0.06933954358100891, 0.023398306220769882, 0.056933920830488205, -0.0007040098425932229, 0.028780300170183182, -0.05299406498670578, -0.060296718031167984, 0.018058009445667267, -0.03991111367940903, 0.06890036910772324, 0.011384222656488419, -0.04395505413413048, 0.05313507094979286, 0.012278148904442787, -0.06447875499725342, 0.035219281911849976, 0.02744637243449688, 0.05431974679231644, 0.038585156202316284, 0.04825323075056076, -0.04311981797218323, -0.0030904491432011127, -0.03470327705144882, 0.01530024129897356, -0.0518934428691864, -0.013898602686822414, 0.03588264808058739, -0.0434463769197464, -0.02573956549167633, 0.029256489127874374, -0.012994340620934963, -0.01927860639989376, 0.05249205604195595, -0.05333619937300682, -0.039549894630908966, 0.01657147891819477, 0.020803460851311684, -0.04352690279483795, -0.012292484752833843, -0.03154333308339119, 0.010545940138399601, 0.010002841241657734, 0.003429024713113904, -0.020525667816400528, -0.017997629940509796, 0.029956139624118805, -0.042711228132247925, -0.031808171421289444, 0.020608317106962204, -0.006794328801333904, -0.02212240733206272, 0.03906865045428276, 0.009900028817355633, 0.013175798580050468, 0.030431630089879036, -0.014300607144832611, 0.022798143327236176, -0.03614091873168945, -0.017451364547014236, 0.031091034412384033, -0.007573725190013647, 0.021311193704605103, 0.0095522440969944, 0.0322192944586277, 0.03776299208402634, 0.024311698973178864, -0.0008720338228158653, -0.03641344606876373, -0.03129839524626732, 0.01524498499929905, -0.040269605815410614, 0.00660203630104661, -0.005889419000595808, -0.05231527239084244, -0.022383473813533783, 0.0030365032143890858, -0.04236334189772606, 0.03974892944097519, -0.06454232335090637, 0.008603066205978394, 0.04659730941057205, -0.017053451389074326, -0.05998801440000534, -0.11687517911195755, -0.01444631814956665, -0.056109555065631866, -0.014264051802456379, 0.051520686596632004, -0.037095993757247925, 0.04386794567108154, -0.0506134070456028, -0.03027455136179924, 0.038815662264823914, 0.0537944920361042, -0.058174341917037964, 0.06131498143076897, 0.04408690705895424, -0.050576284527778625, 0.01049469131976366, 0.021840602159500122, -0.05211586132645607, 0.0022092617582529783, 0.015349597670137882, -0.003798509482294321, 0.02231566421687603, 0.01391137670725584, -0.058866601437330246, -0.018914757296442986, -0.07110023498535156, -0.03828052803874016, -0.046356089413166046, 0.005273144692182541, 0.04637783020734787 ]
DeividasM/wav2vec2-large-xlsr-53-lithuanian
[ "pytorch", "jax", "wav2vec2", "automatic-speech-recognition", "lt", "dataset:common_voice", "transformers", "audio", "speech", "xlsr-fine-tuning-week", "license:apache-2.0", "model-index" ]
automatic-speech-recognition
{ "architectures": [ "Wav2Vec2ForCTC" ], "model_type": "wav2vec2", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
7
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-8 results: [] --- <!-- 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__sst2__train-8-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6925 - Accuracy: 0.5200 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7061 | 1.0 | 3 | 0.6899 | 0.75 | | 0.6627 | 2.0 | 6 | 0.7026 | 0.25 | | 0.644 | 3.0 | 9 | 0.7158 | 0.25 | | 0.6087 | 4.0 | 12 | 0.7325 | 0.25 | | 0.5602 | 5.0 | 15 | 0.7555 | 0.25 | | 0.5034 | 6.0 | 18 | 0.7725 | 0.25 | | 0.4672 | 7.0 | 21 | 0.7983 | 0.25 | | 0.403 | 8.0 | 24 | 0.8314 | 0.25 | | 0.3571 | 9.0 | 27 | 0.8555 | 0.25 | | 0.2792 | 10.0 | 30 | 0.9065 | 0.25 | | 0.2373 | 11.0 | 33 | 0.9286 | 0.25 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01312213484197855, 0.01486488152295351, -0.04323854669928551, 0.04132108390331268, 0.051309142261743546, 0.017710259184241295, -0.017990024760365486, -0.023752551525831223, -0.056094855070114136, 0.06488488614559174, 0.013710488565266132, -0.033331725746393204, 0.012901308946311474, 0.043401844799518585, -0.01497187651693821, -0.03607947379350662, -0.002553362865000963, -0.01220396813005209, -0.03177546709775925, -0.0042729745618999004, 0.003694654908031225, -0.015228462405502796, -0.014787142165005207, 0.003159505547955632, -0.004188110586255789, 0.017283424735069275, 0.007613214664161205, 0.021948181092739105, 0.03875555470585823, -0.0671999603509903, 0.005790519993752241, -0.02929900772869587, -0.05310538783669472, -0.02239486202597618, -0.011455120518803596, -0.018354034051299095, -0.005342838820070028, 0.0270043034106493, 0.035869523882865906, 0.03771854192018509, 0.008374493569135666, 0.03231903165578842, -0.001187521847896278, -0.013062601909041405, 0.06136757880449295, 0.009108487516641617, -0.038971398025751114, -0.000033306292607448995, 0.039647363126277924, -0.024084871634840965, -0.07922389358282089, -0.04735279828310013, -0.017282534390687943, 0.02420266531407833, -0.016638105735182762, -0.013961891643702984, -0.05950343608856201, 0.016623754054307938, 0.06628754734992981, -0.045901115983724594, -0.030201150104403496, 0.0016603084513917565, -0.07292472571134567, 0.004730649758130312, 0.035354241728782654, -0.017736967653036118, 0.012865494005382061, -0.05152728036046028, 0.02593357115983963, -0.011435863561928272, 0.05497768148779869, -0.021253477782011032, 0.01161491684615612, -0.0728500559926033, -0.019095083698630333, -0.009037050418555737, 0.044823020696640015, 0.05549157038331032, -0.031074458733201027, 0.05141330137848854, 0.031502097845077515, -0.0011697184527292848, 0.043993305414915085, -0.029329143464565277, 0.009327651001513004, 0.030533304437994957, -0.04524226486682892, -0.001517399912700057, 0.018907731398940086, 0.026292772963643074, -0.03486654534935951, -0.03675781190395355, -0.02944294363260269, -0.031795017421245575, -0.0003109169483650476, 0.019243674352765083, 0.02585945464670658, 0.016821490600705147, 0.03738059848546982, 0.01276318822056055, 0.026478156447410583, 0.03667080029845238, -0.01822005957365036, 0.06862100213766098, -0.007896051742136478, -0.010045747272670269, -0.006107674445956945, -0.0180390402674675, -0.05071140453219414, 0.01989007368683815, 0.02666916884481907, -0.01970192790031433, -0.011187974363565445, 0.03792274743318558, 0.004268249496817589, 0.004271769896149635, 0.07655996084213257, -0.02490856871008873, -0.04014214128255844, -0.03377927467226982, 0.025729132816195488, 0.01681809313595295, -0.01875085011124611, 0.016380658373236656, -0.04527779668569565, -0.01664971373975277, -0.024307800456881523, -0.01818712428212166, -0.020394043996930122, 0.02198515646159649, 0.016680540516972542, 0.06546763330698013, 0.030803348869085312, -0.08935412764549255, 0.0051325964741408825, 0.014523523859679699, -0.05514431744813919, 0.04834090545773506, 0.02269914746284485, 0.1145937442779541, -0.056755371391773224, -0.0680033266544342, 0.007308830972760916, 0.0014331702841445804, -0.04228735342621803, 0.01443710457533598, 0.0018573533743619919, -0.026336245238780975, 0.006142649799585342, 0.003877298440784216, 0.0672285333275795, -0.04175567999482155, -0.008873564191162586, 0.0750279426574707, 0.005827862769365311, 0.04612574726343155, -0.0562390498816967, -0.029367975890636444, 0.017847130075097084, -0.02033243514597416, -0.0347277857363224, 0.04984718933701515, -0.027609124779701233, -0.01679842546582222, -0.01830488070845604, -0.02477574534714222, 0.010751395486295223, 0.07355824112892151, -0.008169478736817837, -0.03251711651682854, -0.01859167590737343, 0.024964287877082825, 0.04551985487341881, 0.04916728660464287, -0.02646312117576599, 0.025053733959794044, 0.056580349802970886, 0.028332369402050972, -0.031942881643772125, 0.04086156189441681, 0.022799057886004448, -0.02306637167930603, -0.01992085576057434, 0.031815893948078156, 0.004391836933791637, -0.04766537994146347, 0.03814994916319847, 0.012421121820807457, 0.004161030054092407, -0.06877650320529938, -0.04704422503709793, 0.03961547836661339, -0.004340050742030144, -0.011836147867143154, 0.01271500252187252, 0.021866176277399063, -0.015056690201163292, 0.04686052352190018, -0.012448697350919247, 0.007125624921172857, -0.023211076855659485, -0.019863415509462357, 0.01299459207803011, -0.021961092948913574, 0.02807679772377014, 0.04841688275337219, -0.0023277292493730783, 0.09493409097194672, -0.045603957027196884, 0.020476773381233215, -0.0564558207988739, -0.03686491400003433, 0.01851480081677437, 0.056954674422740936, 0.055213358253240585, 0.05499885603785515, 0.006346206646412611, -0.026434415951371193, 0.044785529375076294, 0.07092741876840591, 0.046575434505939484, -0.004318202845752239, -0.034380652010440826, -0.017483536154031754, 0.04246620461344719, 0.051393862813711166, -0.050139687955379486, -0.013964933343231678, 0.012192920781672001, 0.03189210221171379, -0.004580811131745577, 0.016993975266814232, -0.024732625111937523, 0.03936944156885147, -0.04569995403289795, -0.04074710234999657, 0.043070096522569656, 0.01906226947903633, 0.0002003983681788668, 0.02947862818837166, 0.027926193550229073, 0.010943821631371975, 0.02362936921417713, 0.020612338557839394, 0.018132297322154045, -0.05099020525813103, 0.024328138679265976, 0.0042381202802062035, 0.05923400819301605, -0.052963800728321075, 0.03285733610391617, -0.016763295978307724, 0.01638195477426052, 0.044145651161670685, -0.03233126178383827, 0.02819584682583809, 0.052359167486429214, 0.0352911539375782, -0.03843946382403374, 0.02641867846250534, 0.0018286373233422637, 0.03307471424341202, 0.04014869034290314, 0.008782022632658482, 0.07127375155687332, 0.02142593078315258, 0.04558418691158295, 0.0744967833161354, 0.020222708582878113, 0.03255138918757439, 0.014507265761494637, 0.07075680792331696, 0.018181515857577324, -0.011675190180540085, 0.04825824126601219, -0.0447143092751503, 0.02155381254851818, -0.051202043890953064, -0.0034910375252366066, -0.024831168353557587, -0.01078074425458908, 0.05529242381453514, 0.025045612826943398, -0.03640303760766983, -0.01084886584430933, 0.01723727583885193, -0.00773406308144331, 0.02194642461836338, -0.006155609618872404, 0.009356734342873096, -0.007465589791536331, -0.022236565127968788, -0.029665375128388405, -0.06985053420066833, -0.05070486292243004, -0.03240235522389412, -0.01629878208041191, -0.024222247302532196, -0.08993351459503174, -0.003757476806640625, -0.08709648996591568, -0.022854600101709366, 0.027786724269390106, 0.008615530095994473, -0.026388050988316536, -0.033593643456697464, 0.02245878055691719, -0.04956284537911415, -0.04046566039323807, -0.041031260043382645, -0.05960133671760559, -0.050101153552532196, -0.0821726843714714, 0.0349336639046669, 0.03628139942884445, 0.006879779975861311, 0.0015920228324830532, 0.02683616429567337, 0.015719138085842133, -0.027513820677995682, 0.038039255887269974, 0.06640662997961044, -0.03792739287018776, -0.05666838213801384, 0.03325221687555313, -0.008569786325097084, 0.01840675249695778, 0.020661957561969757, -0.029793335124850273, 0.09058008342981339, 0.07087170332670212, 0.006770581007003784, 0.02088223770260811, -0.011359792202711105, -0.06312436610460281, -0.06486598402261734, -0.022964129224419594, -0.03958349674940109, -0.008275513537228107, -0.04434102773666382, -0.03832706809043884, -0.037046920508146286, -0.04022367298603058, 0.004139566328376532, -0.011800718493759632, 0.02497253753244877, 0.021226972341537476, 0.03552067279815674, 0.021113622933626175, 0.04349299892783165, -0.029947703704237938, -0.03732968121767044, 0.05822967365384102, 0.009949109517037868, 0.004825962241739035, -0.08601219952106476, -0.0015931330854073167, 0.02578667923808098, 0.016777152195572853, 0.01685407944023609, -0.003032942535355687, 0.07290253788232803, -0.011281248182058334, 0.004269474186003208, 0.01311622653156519, -0.011717576533555984, -0.011633429676294327, -0.0024138132575899363, -0.004123806953430176, 0.003185112727805972, -0.023748822510242462, -0.034016069024801254, -0.009179211221635342, 0.028843561187386513, -0.0580642968416214, -0.061447568237781525, -0.016705462709069252, 0.03546948730945587, 0.0428512766957283, -0.004598206374794245, -0.04654527083039284, -0.006302047986537218, -0.07503490149974823, -0.0033331529702991247, 0.03796429559588432, 0.018027350306510925, -0.0038699551951140165, 0.043460678309202194, 0.016018398106098175, -0.007708977907896042, 0.028289617970585823, 0.058333005756139755, 0.06891892850399017, 0.008486432023346424, -0.08407503366470337, -0.0014927518786862493, -0.01640963926911354, 0.011152432300150394, -0.012428084388375282, -0.01997438445687294, -0.02171606384217739, -0.09939543157815933, -0.019617922604084015, 0.01649566739797592, 0.010769891552627087, -0.016395961865782738, 0.03376465290784836, 0.002802587114274502, -0.029374096542596817, -0.004051170777529478, 0.012804881669580936, 0.04803723096847534, -0.029278021305799484, 0.053138427436351776, -0.029872208833694458, -0.0011503903660923243, -0.059289995580911636, 0.017036698758602142, -0.05295100808143616, -0.02162603661417961, 0.013210450299084187, 0.04481399804353714, -0.026853138580918312, 0.052467696368694305, 0.06980910152196884, 0.042551327496767044, -0.05173655226826668, 0.03838410973548889, 0.07256769388914108, -0.04282045364379883, -0.04596733674407005, -0.004072008188813925, 0.0003217634803149849, -0.015670055523514748, 0.0015629963018000126, -0.004506102297455072, 0.052220091223716736, 0.025649840012192726, 0.004999187774956226, 0.00048471317859366536, -0.008093900047242641, -0.008017324842512608, -0.027840275317430496, -0.05195586383342743, -0.03215698525309563, 0.0050667100585997105, -0.026290016248822212, 0.022062934935092926, 0.027838269248604774, 0.034551966935396194, 0.07571730017662048, 0.020875129848718643, -0.03802398964762688, -0.0025908725801855326, 0.02508925274014473, 0.009464225731790066, -0.016172220930457115, -0.07094334810972214, -0.04094472527503967, 0.0292768906801939, 0.04822362959384918, -0.022703731432557106, -0.060598164796829224, 0.013787837699055672, 0.05261051282286644, -0.05966231971979141, 0.057702526450157166, -0.004549249541014433, 0.05449328571557999, 0.055312588810920715, -0.008419986814260483, 0.042565252631902695, -0.01943526417016983, -0.006434089038521051, -0.0041805156506598, 0.039901167154312134, -0.011221484281122684, -0.034105658531188965, -0.05009695142507553, 0.020875370129942894, 0.04120397940278053, 0.03158530592918396, 0.043166060000658035, -0.035303786396980286, -0.04028891399502754, 0.00679846340790391, 0.024352440610527992, -0.03978641703724861, -0.005533033981919289, 0.03711133822798729, 0.03156876191496849, -0.04724448174238205, -0.02271880768239498, -0.02243773825466633, -0.017277784645557404, 0.038294050842523575, 0.006897859275341034, -0.018175121396780014, -0.04645773768424988, 0.040323588997125626, -0.01644846983253956, -0.026082467287778854, -0.06717652827501297, 0.049503128975629807, -0.013267051428556442, -0.023915836587548256, 0.055005140602588654, 0.036343879997730255, 0.019400008022785187, 0.07237529754638672, 0.0330689400434494, 0.015413206070661545, -0.03341887146234512, 0.04278995841741562, -0.03408103436231613, -0.019643738865852356, 0.007137270178645849, -0.030117442831397057, -0.03917871415615082, -0.0005126523319631815, -0.0639883503317833, -0.03590495139360428, -0.029665084555745125, 0.018600087612867355, 0.0022232176270335913, -0.018459009006619453, -0.0001367550721624866, 0.058553192764520645, -0.004823682829737663, -0.04122978076338768, -0.04575467109680176, -0.013061026111245155, -0.06933708488941193, -0.0515623465180397, -0.0021097303833812475, 0.006613898556679487, 0.031454309821128845, 0.03612678870558739, 0.025241555646061897, 0.0168404933065176, 0.01912415772676468, -0.03980175033211708, 0.01663287915289402, 0.02050049789249897, -0.040919266641139984, -0.01878565549850464, 0.03658819571137428, 0.011602386832237244, 0.02303195558488369, -0.038711048662662506, 0.03583504632115364, 0.001530070905573666, -0.004824499599635601, -0.02478134259581566, 0.015557165257632732, 0.030836481600999832, -0.06437687575817108, -0.03650329262018204, -0.016538085415959358, -0.027164112776517868, 0.03255493566393852, -0.025444339960813522, -0.02025090903043747, 0.013106286525726318, 0.004604503978043795, 0.03568499907851219, -0.033816076815128326, -0.010552003979682922, 0.028271112591028214, -0.0007696992834098637, 0.019217317923903465, -0.05646030604839325, 0.06223214790225029, -0.0374726727604866, 0.02453933283686638, -0.021044371649622917, 0.009849913418293, -0.021572047844529152, 0.02501951903104782, -0.027681000530719757, -0.022965291514992714, -0.013238883577287197, 0.05841507762670517, -0.012346834875643253, 0.02935732528567314, -0.009995619766414165, 0.0385945700109005, -0.028378672897815704, 0.07114561647176743, -0.03927562013268471, 0.019695818424224854, -0.04020093381404877, 0.027075214311480522, -0.018678219988942146, 0.018020810559391975, -0.012658443301916122, -0.016878090798854828, 0.032543621957302094, 0.06331312656402588, 0.029579920694231987, 0.028356868773698807, -0.002665538340806961, -0.015735959634184837, 0.011708595789968967, -0.041501034051179886, -0.018878323957324028, -0.012561487965285778, -0.0028220312669873238, -0.019430674612522125, 0.05601811408996582, 0.03190598636865616, -0.05710767209529877, -0.07445402443408966, 0.03712849318981171, 0.020855309441685677, -0.0012659698259085417, 0.008485482074320316, 0.04516015574336052, 0.033006392419338226, 0.04167892411351204, -0.015447304584085941, -0.007195679936558008, 0.0007049113628454506, -0.05028045177459717, 0.022309545427560806, -0.004626533482223749, 0.024827608838677406, 0.013477654196321964, -0.04376516118645668, -0.022656815126538277, 0.057355426251888275, 0.023798231035470963, 0.024812722578644753, 0.0035750451497733593, -0.042983341962099075, 0.03801410272717476, 0.007181461434811354, -0.035101570188999176, 0.03030499629676342, 0.010106796398758888, -0.0224459208548069, 0.04495617747306824, -0.009727451018989086, 0.0030272321309894323, 0.06153262406587601, 0.017430564388632774, -0.020894566550850868, 0.06921865791082382, -0.0376724898815155, 0.012078646570444107, 0.03997131437063217, -0.07604018598794937, -0.009981454350054264, -0.05044296011328697, 0.05736900493502617, -0.0680236965417862, 0.02341580204665661, 0.05834932252764702, -0.0015074053080752492, 0.029303250834345818, -0.05273152515292168, -0.059644848108291626, 0.018991149961948395, -0.039240628480911255, 0.06879574060440063, 0.010686960071325302, -0.0439704954624176, 0.053058281540870667, 0.012260504066944122, -0.06268895417451859, 0.03589412569999695, 0.02611124888062477, 0.055685125291347504, 0.03796335309743881, 0.04881000146269798, -0.04282582551240921, -0.005118128843605518, -0.035138655453920364, 0.015214168466627598, -0.052149709314107895, -0.01348719373345375, 0.035944610834121704, -0.043159764260053635, -0.026177171617746353, 0.028562992811203003, -0.013083873316645622, -0.01873093843460083, 0.05214396491646767, -0.052575744688510895, -0.03971855714917183, 0.015584302134811878, 0.02035602554678917, -0.04207102954387665, -0.012350397184491158, -0.030290596187114716, 0.011366231366991997, 0.010166431777179241, 0.0031870880629867315, -0.02061447873711586, -0.01860179752111435, 0.030258476734161377, -0.042807843536138535, -0.031025409698486328, 0.02034737542271614, -0.007528272923082113, -0.023362694308161736, 0.040442079305648804, 0.008742612786591053, 0.014193802140653133, 0.030281411483883858, -0.013851551339030266, 0.024504171684384346, -0.03638114407658577, -0.017535995692014694, 0.031443480402231216, -0.007196017540991306, 0.01959354430437088, 0.008359536528587341, 0.030718553811311722, 0.0364987775683403, 0.02395973913371563, -0.0016704980516806245, -0.03647463768720627, -0.031018678098917007, 0.015957292169332504, -0.040594134479761124, 0.007075416389852762, -0.004935121163725853, -0.053126342594623566, -0.021744409576058388, 0.005232621915638447, -0.042668990790843964, 0.03878489509224892, -0.06383952498435974, 0.009068665094673634, 0.047291263937950134, -0.016960086300969124, -0.059475548565387726, -0.11525601148605347, -0.014797545969486237, -0.056163180619478226, -0.013874201104044914, 0.050659749656915665, -0.03638024255633354, 0.04342048242688179, -0.050228726118803024, -0.03151264786720276, 0.039119306951761246, 0.05335915833711624, -0.0593232735991478, 0.06148868799209595, 0.04359341785311699, -0.049675844609737396, 0.009454181417822838, 0.021383704617619514, -0.051785461604595184, 0.0036890520714223385, 0.015122633427381516, -0.00401011249050498, 0.021024389192461967, 0.014080682769417763, -0.05693957582116127, -0.0190204456448555, -0.07083573937416077, -0.037618834525346756, -0.04647986590862274, 0.006623099558055401, 0.04708292707800865 ]
DeltaHub/adapter_t5-3b_cola
[ "pytorch", "transformers" ]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
2022-02-02T21:07:51Z
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst2__train-8-9 results: [] --- <!-- 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__sst2__train-8-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6925 - Accuracy: 0.5140 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7204 | 1.0 | 3 | 0.7025 | 0.5 | | 0.6885 | 2.0 | 6 | 0.7145 | 0.5 | | 0.6662 | 3.0 | 9 | 0.7222 | 0.5 | | 0.6182 | 4.0 | 12 | 0.7427 | 0.25 | | 0.5707 | 5.0 | 15 | 0.7773 | 0.25 | | 0.5247 | 6.0 | 18 | 0.8137 | 0.25 | | 0.5003 | 7.0 | 21 | 0.8556 | 0.25 | | 0.4195 | 8.0 | 24 | 0.9089 | 0.5 | | 0.387 | 9.0 | 27 | 0.9316 | 0.25 | | 0.2971 | 10.0 | 30 | 0.9558 | 0.25 | | 0.2581 | 11.0 | 33 | 0.9420 | 0.25 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01252251211553812, 0.01429056841880083, -0.044194139540195465, 0.04255730286240578, 0.05123763903975487, 0.017067186534404755, -0.019317135214805603, -0.022526437416672707, -0.05602142959833145, 0.06484617292881012, 0.014162002131342888, -0.03257748484611511, 0.012469418346881866, 0.04265797510743141, -0.01398769672960043, -0.03598196059465408, -0.0038914941251277924, -0.011828030459582806, -0.03305424749851227, -0.003002711571753025, 0.0036648090463131666, -0.015803663060069084, -0.016114061698317528, 0.0023460183292627335, -0.0048197004944086075, 0.017521794885396957, 0.005912304390221834, 0.02150258794426918, 0.03911601006984711, -0.06901641935110092, 0.006115161348134279, -0.030048411339521408, -0.053256236016750336, -0.022242624312639236, -0.012040268629789352, -0.01737452670931816, -0.004942550789564848, 0.027756650000810623, 0.034967582672834396, 0.03642163425683975, 0.008453096263110638, 0.03266536816954613, -0.0010459660552442074, -0.011865530163049698, 0.06172424927353859, 0.010263243690133095, -0.03946532681584358, 0.0007378690061159432, 0.04035815969109535, -0.024777840822935104, -0.07941911369562149, -0.04604722186923027, -0.01890750788152218, 0.024136848747730255, -0.01701100915670395, -0.013097355142235756, -0.06059451028704643, 0.017501138150691986, 0.0651848316192627, -0.04526665806770325, -0.029842255637049675, 0.0023056326899677515, -0.07309138029813766, 0.003909916616976261, 0.035627733916044235, -0.019420791417360306, 0.012428696267306805, -0.05022020265460014, 0.026005154475569725, -0.011639196425676346, 0.05603020265698433, -0.02050386555492878, 0.012428360991179943, -0.07171550393104553, -0.019108004868030548, -0.008878640830516815, 0.04352160915732384, 0.05637580528855324, -0.030754070729017258, 0.05061937868595123, 0.030330194160342216, -0.0010910284472629428, 0.0425393283367157, -0.029404547065496445, 0.009413616731762886, 0.031875669956207275, -0.044992029666900635, -0.0008252147817984223, 0.01764146238565445, 0.026041818782687187, -0.036784324795007706, -0.03676199913024902, -0.029549071565270424, -0.03149732947349548, -0.001816829782910645, 0.018310662358999252, 0.025741804391145706, 0.017994003370404243, 0.03744839131832123, 0.012703703716397285, 0.025270288810133934, 0.03699277713894844, -0.017737755551934242, 0.06860727816820145, -0.007326490245759487, -0.010962835513055325, -0.005635709036141634, -0.017976688221096992, -0.050416819751262665, 0.019649840891361237, 0.02713220752775669, -0.019456276670098305, -0.012092809192836285, 0.0388360358774662, 0.0037503584753721952, 0.005651434417814016, 0.07648266106843948, -0.024493537843227386, -0.03987161070108414, -0.033886849880218506, 0.025008060038089752, 0.016873758286237717, -0.018018756061792374, 0.01759408786892891, -0.04470163583755493, -0.017295323312282562, -0.02617761306464672, -0.017085542902350426, -0.021179454401135445, 0.021580306813120842, 0.014583194628357887, 0.06493081152439117, 0.03272167593240738, -0.08782991021871567, 0.005206891801208258, 0.014773908071219921, -0.05479816347360611, 0.047453805804252625, 0.023242661729454994, 0.11457470059394836, -0.05674266442656517, -0.06779293715953827, 0.008010641671717167, 0.00033390417229384184, -0.04188808798789978, 0.013610294088721275, 0.0027029728516936302, -0.026703301817178726, 0.005786258261650801, 0.004844077862799168, 0.06812171638011932, -0.040507178753614426, -0.009091144427657127, 0.07415363937616348, 0.005180477164685726, 0.045823123306035995, -0.057021044194698334, -0.02903679572045803, 0.018678514286875725, -0.021937642246484756, -0.0351710207760334, 0.050588857382535934, -0.027034414932131767, -0.018601447343826294, -0.01789090968668461, -0.024975458160042763, 0.010659518651664257, 0.07395479828119278, -0.006820156704634428, -0.03254648670554161, -0.018480701372027397, 0.02537047117948532, 0.04570459574460983, 0.05070056766271591, -0.026120593771338463, 0.02516024000942707, 0.05776555836200714, 0.028091995045542717, -0.0314970389008522, 0.040011536329984665, 0.022348668426275253, -0.024865228682756424, -0.021768871694803238, 0.03226645663380623, 0.002762728603556752, -0.04711602255702019, 0.04032665491104126, 0.012873935513198376, 0.0027912643272429705, -0.06864001601934433, -0.04581441730260849, 0.04011574015021324, -0.0039158775471150875, -0.012622034177184105, 0.01345276553183794, 0.02243598736822605, -0.014592032879590988, 0.046313293278217316, -0.011988361366093159, 0.007255042437463999, -0.024011263623833656, -0.01988924853503704, 0.012478618882596493, -0.021847035735845566, 0.028523800894618034, 0.04859225079417229, -0.0012974909041076899, 0.09581919759511948, -0.04624833166599274, 0.019698096439242363, -0.054968781769275665, -0.03640284016728401, 0.01977352797985077, 0.056587040424346924, 0.05520106106996536, 0.05475543066859245, 0.006765013560652733, -0.026016036048531532, 0.04528557136654854, 0.07107163220643997, 0.045932337641716, -0.003825034946203232, -0.033620379865169525, -0.017829641699790955, 0.043072473257780075, 0.05174364894628525, -0.0495619922876358, -0.013864954933524132, 0.010550281032919884, 0.031851839274168015, -0.0038050429429858923, 0.016695313155651093, -0.024388113990426064, 0.03960328549146652, -0.04599250853061676, -0.04187086969614029, 0.043437618762254715, 0.018373921513557434, -0.0005719073233194649, 0.029140356928110123, 0.027765750885009766, 0.010831836611032486, 0.02492472529411316, 0.02037001959979534, 0.017270930111408234, -0.05204696208238602, 0.024080032482743263, 0.004498716909438372, 0.0584854856133461, -0.05347819626331329, 0.033248405903577805, -0.016915909945964813, 0.018137913197278976, 0.043048467487096786, -0.03315388783812523, 0.028175460174679756, 0.050883084535598755, 0.035193685442209244, -0.0375930555164814, 0.026470758020877838, 0.003655052278190851, 0.032776933163404465, 0.040485307574272156, 0.00901751033961773, 0.06962906569242477, 0.021395307034254074, 0.04407394304871559, 0.07408873736858368, 0.019498804584145546, 0.03203985467553139, 0.013057286851108074, 0.07035423815250397, 0.017162369564175606, -0.01101623848080635, 0.04636897146701813, -0.04581374675035477, 0.022498706355690956, -0.052160680294036865, -0.0031482300255447626, -0.023405205458402634, -0.01033028308302164, 0.05408243089914322, 0.026134897023439407, -0.03735562413930893, -0.011391256004571915, 0.016032783314585686, -0.008219338022172451, 0.02137039601802826, -0.005256364122033119, 0.009771383367478848, -0.005997425876557827, -0.021860748529434204, -0.029944634065032005, -0.07081925868988037, -0.051078714430332184, -0.030712218955159187, -0.01638840138912201, -0.023244708776474, -0.08972647786140442, -0.004084581509232521, -0.0858365073800087, -0.02277335338294506, 0.027754925191402435, 0.009028640575706959, -0.02685120888054371, -0.03230223059654236, 0.021410539746284485, -0.048902422189712524, -0.04098308086395264, -0.040886685252189636, -0.05924323946237564, -0.04987969249486923, -0.08147714287042618, 0.035053566098213196, 0.035035643726587296, 0.005935669410973787, 0.0016254649963229895, 0.025799067690968513, 0.01603969931602478, -0.027887161821126938, 0.03830740600824356, 0.06623825430870056, -0.038049980998039246, -0.056994013488292694, 0.032452184706926346, -0.009419628418982029, 0.018677011132240295, 0.0212347824126482, -0.03039116971194744, 0.0908186212182045, 0.07144638895988464, 0.008067511953413486, 0.021313698962330818, -0.012027955614030361, -0.06298728287220001, -0.0652003213763237, -0.023776235058903694, -0.039346110075712204, -0.008742999285459518, -0.04487621784210205, -0.03852708265185356, -0.03532838821411133, -0.04082798585295677, 0.0050098346546292305, -0.01093475241214037, 0.025617828592658043, 0.021456150338053703, 0.036498185247182846, 0.020943041890859604, 0.04418431967496872, -0.028873929753899574, -0.03973781317472458, 0.05824485048651695, 0.009793496690690517, 0.00568575132638216, -0.0856483057141304, -0.0023037579376250505, 0.026961084455251694, 0.016392746940255165, 0.01728913001716137, -0.0054790242575109005, 0.0720197930932045, -0.011943172663450241, 0.004039916209876537, 0.01314692385494709, -0.011207005940377712, -0.012122496962547302, -0.0030639355536550283, -0.004925699904561043, 0.0032120386604219675, -0.02309747226536274, -0.0337228998541832, -0.008761037141084671, 0.02864089235663414, -0.05772536247968674, -0.062417171895504, -0.01694524474442005, 0.03549526259303093, 0.0423390157520771, -0.004262235481292009, -0.04679495096206665, -0.00736742839217186, -0.07656422257423401, -0.003439846448600292, 0.037819720804691315, 0.01667114719748497, -0.004212134052067995, 0.04333912208676338, 0.014647095464169979, -0.007708694785833359, 0.029238754883408546, 0.0573447160422802, 0.07001148164272308, 0.008515575900673866, -0.08467380702495575, -0.0024305132683366537, -0.016800949349999428, 0.009843909181654453, -0.011548830196261406, -0.019259409978985786, -0.02140643075108528, -0.09945864230394363, -0.020790517330169678, 0.017267661169171333, 0.01118475291877985, -0.01700870506465435, 0.03268356993794441, 0.0038384089712053537, -0.029647894203662872, -0.004516755696386099, 0.01302761398255825, 0.046387042850255966, -0.028378788381814957, 0.05269014462828636, -0.030912665650248528, 0.00006597890751436353, -0.05802970379590988, 0.01619388535618782, -0.05301773175597191, -0.02212800644338131, 0.013401455245912075, 0.04631970822811127, -0.027460748329758644, 0.05252367630600929, 0.07041774690151215, 0.041723549365997314, -0.05206277221441269, 0.037747181951999664, 0.07335970550775528, -0.04413613677024841, -0.04578624293208122, -0.004155386704951525, 0.0012094025732949376, -0.01481159683316946, 0.0014285653596743941, -0.003687830176204443, 0.05297545716166496, 0.025613509118556976, 0.004490782506763935, 0.001676873886026442, -0.008451185189187527, -0.008281316608190536, -0.027648426592350006, -0.05106540024280548, -0.02912527695298195, 0.0044188909232616425, -0.026661518961191177, 0.021874966099858284, 0.026689870283007622, 0.03401420637965202, 0.07476738840341568, 0.02024191990494728, -0.0391501784324646, -0.002769859042018652, 0.024082040414214134, 0.009316304698586464, -0.016639431938529015, -0.06968450546264648, -0.04095906391739845, 0.029404498636722565, 0.048719264566898346, -0.02337450347840786, -0.06139359623193741, 0.014011268503963947, 0.05098198726773262, -0.058481525629758835, 0.05751427635550499, -0.004669863265007734, 0.05543570965528488, 0.055800411850214005, -0.008916961029171944, 0.043208640068769455, -0.019833311438560486, -0.005857515148818493, -0.003363982541486621, 0.040852636098861694, -0.01076030358672142, -0.03343328461050987, -0.04799387603998184, 0.01947353594005108, 0.04048558697104454, 0.03226381540298462, 0.043241340667009354, -0.035174768418073654, -0.04141591116786003, 0.006735675502568483, 0.02454804815351963, -0.03974517062306404, -0.006263786926865578, 0.03738301992416382, 0.030559873208403587, -0.04730226472020149, -0.0222527664154768, -0.021665727719664574, -0.016016239300370216, 0.03859409689903259, 0.006740625016391277, -0.01819942332804203, -0.04613865911960602, 0.040620118379592896, -0.016328910365700722, -0.027907919138669968, -0.06592511385679245, 0.04909622669219971, -0.013678057119250298, -0.02317107655107975, 0.054963868111371994, 0.03667400777339935, 0.01892358437180519, 0.07246386259794235, 0.033360984176397324, 0.015391885302960873, -0.03395221009850502, 0.04137880727648735, -0.03462281450629234, -0.019191132858395576, 0.007023427169770002, -0.031259018927812576, -0.03825569152832031, -0.0013141920790076256, -0.06510636955499649, -0.03639638423919678, -0.02924581989645958, 0.018605520948767662, 0.0016857266891747713, -0.018847521394491196, -0.00008610440272605047, 0.0587642677128315, -0.006959961727261543, -0.041110020130872726, -0.047006938606500626, -0.014238523319363594, -0.0690622553229332, -0.05102658271789551, -0.0011940463446080685, 0.005387399345636368, 0.032901179045438766, 0.035748470574617386, 0.0246567465364933, 0.018259238451719284, 0.01953725330531597, -0.04038882255554199, 0.016428301110863686, 0.019810860976576805, -0.042175669223070145, -0.020029056817293167, 0.03762318566441536, 0.011780519038438797, 0.024072375148534775, -0.039248328655958176, 0.035547707229852676, 0.0010615898063406348, -0.006240454036742449, -0.024478498846292496, 0.015922753140330315, 0.030410919338464737, -0.06309473514556885, -0.03498068079352379, -0.015624863095581532, -0.027506263926625252, 0.03080953098833561, -0.02497558668255806, -0.02091136947274208, 0.012817583046853542, 0.004628414753824472, 0.03561798110604286, -0.035154227167367935, -0.010899081826210022, 0.028465889394283295, -0.0001997592771658674, 0.01904512196779251, -0.05602020025253296, 0.06293386965990067, -0.03720046579837799, 0.023813733831048012, -0.020374208688735962, 0.01037662010639906, -0.022409791126847267, 0.025956597179174423, -0.025805210694670677, -0.02277090586721897, -0.012023781426250935, 0.057817500084638596, -0.013193877413868904, 0.029504375532269478, -0.011041329242289066, 0.03898005932569504, -0.028120780363678932, 0.0703427866101265, -0.039666008204221725, 0.0193743035197258, -0.039180781692266464, 0.02774730883538723, -0.019126765429973602, 0.019952863454818726, -0.012337961234152317, -0.017202157527208328, 0.03236713260412216, 0.06384269148111343, 0.03057856112718582, 0.028927993029356003, -0.0026463225949555635, -0.01502828299999237, 0.011124440468847752, -0.04093053936958313, -0.019211627542972565, -0.011541870422661304, -0.002228259574621916, -0.02035185508430004, 0.056570444256067276, 0.03096609376370907, -0.05651502311229706, -0.074618399143219, 0.037859994918107986, 0.018746575340628624, -0.0008949604816734791, 0.006017701234668493, 0.04774331673979759, 0.03312310948967934, 0.04042480140924454, -0.015799731016159058, -0.0069365487433969975, 0.000754325243178755, -0.05161397531628609, 0.022739078849554062, -0.004377908539026976, 0.026736712083220482, 0.013621973805129528, -0.04264089837670326, -0.02290293388068676, 0.0580253042280674, 0.02403135597705841, 0.026140980422496796, 0.0030794234480708838, -0.04276072606444359, 0.03825909644365311, 0.006947080604732037, -0.034716542810201645, 0.029910989105701447, 0.009318336844444275, -0.02333488129079342, 0.04524717107415199, -0.008543972857296467, 0.0035075130872428417, 0.060770269483327866, 0.01661369763314724, -0.019785486161708832, 0.0694136917591095, -0.038604676723480225, 0.0113558080047369, 0.04057443141937256, -0.07628656178712845, -0.009343380108475685, -0.05022075027227402, 0.05622120201587677, -0.06787098944187164, 0.02389119379222393, 0.058321528136730194, -0.001225943909958005, 0.02890593744814396, -0.052055176347494125, -0.06004814803600311, 0.018501708284020424, -0.04078634828329086, 0.07001013308763504, 0.010717321187257767, -0.043904680758714676, 0.053654205054044724, 0.012230975553393364, -0.06467901915311813, 0.036013271659612656, 0.027545476332306862, 0.05496411770582199, 0.03884344547986984, 0.048788197338581085, -0.0436721034348011, -0.002380143152549863, -0.03394021466374397, 0.015825621783733368, -0.05090043693780899, -0.013479819521307945, 0.03570923954248428, -0.04317852854728699, -0.024830877780914307, 0.029215415939688683, -0.014151268638670444, -0.018716974183917046, 0.052708882838487625, -0.05291127786040306, -0.03888806700706482, 0.016546664759516716, 0.02202405035495758, -0.042754851281642914, -0.013669858686625957, -0.03011355549097061, 0.011726172640919685, 0.009925726801156998, 0.00400862842798233, -0.020548993721604347, -0.0170869380235672, 0.030011897906661034, -0.04231301322579384, -0.0323612205684185, 0.021409355103969574, -0.008191794157028198, -0.02181234024465084, 0.039676547050476074, 0.010470157489180565, 0.014887900091707706, 0.02995447814464569, -0.014653447084128857, 0.022500263527035713, -0.03701763600111008, -0.01679925248026848, 0.030441412702202797, -0.008835663087666035, 0.020420119166374207, 0.010298127308487892, 0.03057106025516987, 0.03846606984734535, 0.024136949330568314, -0.002027445239946246, -0.03699738159775734, -0.031414300203323364, 0.014985498040914536, -0.03975464031100273, 0.007284059189260006, -0.004737977869808674, -0.052036087960004807, -0.021811554208397865, 0.00477509293705225, -0.04215944558382034, 0.03965134918689728, -0.06605995446443558, 0.009979295544326305, 0.04631420224905014, -0.015864240005612373, -0.0599590465426445, -0.11556795984506607, -0.015245728194713593, -0.05519772693514824, -0.0145850395783782, 0.05170035734772682, -0.03644326329231262, 0.043471403419971466, -0.049753058701753616, -0.030053285881876945, 0.03864531219005585, 0.052693650126457214, -0.05928921326994896, 0.060498930513858795, 0.04483938589692116, -0.04855518415570259, 0.00981917604804039, 0.021666141226887703, -0.05067504942417145, 0.0031167068518698215, 0.01465737633407116, -0.004610270727425814, 0.022414157167077065, 0.014069157652556896, -0.059297531843185425, -0.018459489569067955, -0.07115307450294495, -0.03893987461924553, -0.04620935395359993, 0.007075380068272352, 0.04596833884716034 ]
DeltaHub/adapter_t5-3b_mrpc
[ "pytorch", "transformers" ]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__sst5__all-train results: [] --- <!-- 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__sst5__all-train This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 1.3757 - Accuracy: 0.5045 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 1.2492 | 1.0 | 534 | 1.1163 | 0.4991 | | 0.9937 | 2.0 | 1068 | 1.1232 | 0.5122 | | 0.7867 | 3.0 | 1602 | 1.2097 | 0.5045 | | 0.595 | 4.0 | 2136 | 1.3757 | 0.5045 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.1+cu102 - Datasets 1.17.0 - Tokenizers 0.10.3
[ -0.019008353352546692, 0.013731466606259346, -0.03929578512907028, 0.046971291303634644, 0.0518462099134922, 0.025353722274303436, -0.014980463311076164, -0.027936149388551712, -0.05167729780077934, 0.06105276569724083, 0.03003508411347866, -0.027918608859181404, 0.001148892450146377, 0.04866908863186836, -0.01485765166580677, -0.0394534133374691, 0.003365280106663704, -0.010553381405770779, -0.03769683837890625, -0.001698582898825407, 0.005987708922475576, -0.014752069488167763, -0.007426480762660503, 0.002017041901126504, -0.00015567909576930106, 0.018320661038160324, 0.0078606391325593, 0.023225031793117523, 0.03186966851353645, -0.07410657405853271, 0.01099482923746109, -0.029713574796915054, -0.047372736036777496, -0.020136862993240356, -0.012593104504048824, -0.010698877274990082, 0.0018213308649137616, 0.016760459169745445, 0.033797021955251694, 0.03535095602273941, 0.0025289319455623627, 0.02681034244596958, 0.0017716718139126897, -0.015296058729290962, 0.062393397092819214, 0.007562077604234219, -0.036706823855638504, -0.002709765685722232, 0.040669552981853485, -0.017063559964299202, -0.07681931555271149, -0.05787155404686928, -0.02440612018108368, 0.024652715772390366, -0.020219601690769196, -0.008113239891827106, -0.06420685350894928, 0.011405288241803646, 0.05460478365421295, -0.05452117696404457, -0.02231835573911667, 0.010572453029453754, -0.06608305126428604, 0.0064446693286299706, 0.02949655055999756, -0.011803495697677135, 0.015407590195536613, -0.04585085064172745, 0.033997878432273865, -0.017968427389860153, 0.05705023184418678, -0.02334563061594963, 0.01818418689072132, -0.07401642948389053, -0.01474954467266798, -0.01400263886898756, 0.033278368413448334, 0.054621510207653046, -0.029581425711512566, 0.04758095368742943, 0.028875749558210373, -0.003936450462788343, 0.04101264104247093, -0.03560500591993332, 0.005694083869457245, 0.030884237959980965, -0.03930439427495003, 0.000264788483036682, 0.015566502697765827, 0.03209485486149788, -0.03808999061584473, -0.03993755951523781, -0.03567646071314812, -0.03579570725560188, -0.004346481990069151, 0.018413586542010307, 0.030911613255739212, 0.012950192205607891, 0.03594757616519928, 0.021069267764687538, 0.0358101949095726, 0.039996109902858734, -0.017302146181464195, 0.06362452358007431, -0.0008374029421247542, -0.006484572310000658, -0.0030826805159449577, -0.02385152317583561, -0.047880977392196655, 0.026720309630036354, 0.03236761316657066, -0.019840696826577187, -0.017066143453121185, 0.03825734555721283, 0.009285257197916508, -0.0003050478990189731, 0.07053055614233017, -0.027208682149648666, -0.03653346002101898, -0.016655387356877327, 0.02652136981487274, 0.01905057393014431, -0.01477159932255745, 0.018199343234300613, -0.028455525636672974, -0.023781510069966316, -0.03338742256164551, -0.018576236441731453, -0.01703190989792347, 0.027086272835731506, 0.020655546337366104, 0.0651208758354187, 0.029051488265395164, -0.07859362661838531, 0.008726903237402439, 0.020281968638300896, -0.05332320183515549, 0.0582171268761158, 0.021785074844956398, 0.11677202582359314, -0.06260240823030472, -0.06551764905452728, 0.008375619538128376, -0.0025162443052977324, -0.04799294099211693, 0.014151751063764095, 0.007177397608757019, -0.030697626993060112, 0.00003891646338161081, 0.005675864405930042, 0.06738229840993881, -0.03643525391817093, -0.008334760554134846, 0.06277016550302505, -0.0020396090112626553, 0.0360698476433754, -0.050247203558683395, -0.02439672313630581, 0.021228326484560966, -0.02537822350859642, -0.04440614953637123, 0.05431748554110527, -0.02478608302772045, -0.016179444268345833, -0.01764828898012638, -0.021785441786050797, 0.013917249627411366, 0.07943184673786163, -0.013935599476099014, -0.032741397619247437, -0.015487812459468842, 0.025688325986266136, 0.04084120690822601, 0.05615498498082161, -0.029422344639897346, 0.029913632199168205, 0.05988628417253494, 0.03495184704661369, -0.0213477686047554, 0.030031239613890648, 0.025754505768418312, -0.029104825109243393, -0.01267281174659729, 0.02725403569638729, 0.0010879987385123968, -0.04237889498472214, 0.042778898030519485, 0.013765322975814342, -0.0022156338673084974, -0.06368214637041092, -0.044233646243810654, 0.04398137703537941, -0.00024777158978395164, -0.001970442943274975, 0.01650361344218254, 0.01554897241294384, -0.009316772222518921, 0.048695847392082214, -0.010123105719685555, 0.013854263350367546, -0.02002871222794056, -0.020063292235136032, 0.009552584029734135, -0.018529992550611496, 0.03042927011847496, 0.05258164182305336, -0.0024420220870524645, 0.08965834975242615, -0.04849950224161148, 0.024463828653097153, -0.059042301028966904, -0.033833857625722885, 0.024244364351034164, 0.05463605746626854, 0.052794598042964935, 0.04891990125179291, 0.008628257550299168, -0.028852898627519608, 0.046595294028520584, 0.06143248453736305, 0.0420997254550457, -0.005688817240297794, -0.024124300107359886, -0.02497328445315361, 0.03318845480680466, 0.05947599187493324, -0.0531960092484951, -0.008648737333714962, 0.0004588683368638158, 0.027316709980368614, 0.005477303639054298, 0.022537196055054665, -0.02648034133017063, 0.04135347157716751, -0.04983827471733093, -0.04149271547794342, 0.04605339467525482, 0.019808953627943993, -0.0025202403776347637, 0.023567700758576393, 0.02994779869914055, 0.003731740405783057, 0.013400689698755741, 0.017630701884627342, 0.009009547531604767, -0.04838431626558304, 0.017729856073856354, 0.0010193282505497336, 0.050246257334947586, -0.0567716583609581, 0.029309339821338654, -0.014626340009272099, 0.013593729585409164, 0.04303249344229698, -0.037377867847681046, 0.01706596277654171, 0.04623951017856598, 0.037381742149591446, -0.038929395377635956, 0.023725595325231552, -0.0038461736403405666, 0.03711634501814842, 0.05004015564918518, 0.007633579429239035, 0.06508582830429077, 0.018634004518389702, 0.04523629695177078, 0.07492587715387344, 0.020461883395910263, 0.038050636649131775, 0.014186576008796692, 0.06982450187206268, 0.023141438141465187, -0.012284294702112675, 0.04479225352406502, -0.04503630846738815, 0.018122078850865364, -0.05198325961828232, -0.008293144404888153, -0.030985193327069283, -0.013384818099439144, 0.050732921808958054, 0.024131877347826958, -0.03335201367735863, -0.014727544039487839, 0.012497266754508018, -0.004824940115213394, 0.026695558801293373, -0.005723785143345594, -0.0027041498105973005, -0.0042773955501616, -0.026965370401740074, -0.03316592425107956, -0.07353698462247849, -0.055697787553071976, -0.030867040157318115, -0.018691007047891617, -0.014591165818274021, -0.09311516582965851, -0.008227668702602386, -0.08345028758049011, -0.031813349574804306, 0.03202823922038078, 0.008972729556262493, -0.02594241127371788, -0.037773750722408295, 0.015725696459412575, -0.04900174215435982, -0.03908529505133629, -0.05372786149382591, -0.05824460834264755, -0.04871188849210739, -0.07997105270624161, 0.038403939455747604, 0.02665543369948864, 0.0042979721911251545, -0.0037961762864142656, 0.026280956342816353, 0.005827780347317457, -0.021547336131334305, 0.042327795177698135, 0.06418238580226898, -0.03659828007221222, -0.06200552359223366, 0.027783377096056938, -0.011041801422834396, 0.013071664609014988, 0.02956470474600792, -0.028438396751880646, 0.09332673996686935, 0.0726085901260376, 0.00827963836491108, 0.02797500416636467, -0.01499368716031313, -0.06349615007638931, -0.062468674033880234, -0.019075654447078705, -0.04361863434314728, -0.005574348848313093, -0.043181922286748886, -0.044613275676965714, -0.032197825610637665, -0.03903772309422493, 0.002087031491100788, -0.009699592366814613, 0.027956722304224968, 0.02290845476090908, 0.05036285147070885, 0.027074916288256645, 0.041687607765197754, -0.027321038767695427, -0.03268777206540108, 0.05502733215689659, 0.016792403534054756, -0.0032344995997846127, -0.08620866388082504, -0.008081193082034588, 0.027122367173433304, 0.019888579845428467, 0.010008828714489937, -0.0009795313235372305, 0.07080744951963425, -0.012276049703359604, 0.00044331245590001345, 0.009598341770470142, -0.00952174048870802, -0.0057102832943201065, -0.003469053888693452, -0.006962231360375881, 0.003337354399263859, -0.02387731708586216, -0.041922152042388916, -0.003736387938261032, 0.027626026421785355, -0.052611589431762695, -0.06487243622541428, -0.018606066703796387, 0.035026438534259796, 0.04423496127128601, -0.002385067520663142, -0.05498293787240982, -0.0038678795099258423, -0.07334891706705093, -0.006817169021815062, 0.044452227652072906, 0.020984593778848648, -0.0010259607806801796, 0.045417457818984985, 0.01312700379639864, -0.01875689998269081, 0.026366394013166428, 0.05571361631155014, 0.07426996529102325, 0.011766286566853523, -0.07728733867406845, -0.0115761524066329, -0.02955670654773712, 0.013811402022838593, -0.005120241083204746, -0.020441899076104164, -0.016699131578207016, -0.09654657542705536, -0.02178841270506382, 0.015158265829086304, 0.011875482276082039, -0.017199423164129257, 0.03543628007173538, 0.006687750108540058, -0.033788736909627914, -0.0002821465313900262, 0.016642378643155098, 0.048036057502031326, -0.021845271810889244, 0.05802762508392334, -0.01946595311164856, 0.005670554935932159, -0.04948526620864868, 0.013698149472475052, -0.04186233505606651, -0.022275488823652267, 0.005992391146719456, 0.04769933968782425, -0.01601943001151085, 0.06265401095151901, 0.07316911965608597, 0.035062871873378754, -0.05422056466341019, 0.03151822090148926, 0.07139470428228378, -0.04351537674665451, -0.0430263876914978, 0.001303589902818203, -0.002348045352846384, -0.014049859717488289, -0.0051514944061636925, -0.009400617331266403, 0.04730887711048126, 0.03754740208387375, 0.0029067404102534056, 0.00788115058094263, -0.005414302460849285, -0.006860220339149237, -0.03370837867259979, -0.04813927412033081, -0.028729626908898354, 0.009962504729628563, -0.021423235535621643, 0.02152830734848976, 0.025549519807100296, 0.031281549483537674, 0.07335034012794495, 0.018203558400273323, -0.029281480237841606, -0.008703703060746193, 0.023049434646964073, 0.011616965755820274, -0.016483468934893608, -0.07387259602546692, -0.05012825131416321, 0.019362468272447586, 0.05410178005695343, -0.0185753982514143, -0.06197992339730263, 0.015559608116745949, 0.050866927951574326, -0.048363372683525085, 0.06410425901412964, -0.008709494955837727, 0.058025624603033066, 0.05691860243678093, -0.008589861914515495, 0.02970370277762413, -0.02374059520661831, -0.00283306953497231, -0.002533251652494073, 0.043683476746082306, -0.015534601174294949, -0.03696448728442192, -0.04907633736729622, 0.02555105648934841, 0.04260311648249626, 0.034137941896915436, 0.045108288526535034, -0.03473537415266037, -0.049765828996896744, 0.011057978495955467, 0.027813926339149475, -0.03907198831439018, 0.000005500487532117404, 0.034106649458408356, 0.03071870654821396, -0.044732578098773956, -0.02597190998494625, -0.029717864468693733, -0.015285969711840153, 0.041250210255384445, 0.005725441500544548, -0.02994600310921669, -0.04435725510120392, 0.04163525626063347, -0.01986612379550934, -0.037083663046360016, -0.06876373291015625, 0.045312315225601196, -0.00972268171608448, -0.016443239524960518, 0.05825219675898552, 0.03398549184203148, 0.023573776707053185, 0.0755297914147377, 0.039874155074357986, 0.016131075099110603, -0.035623881965875626, 0.04245275631546974, -0.03585823252797127, -0.016390936449170113, 0.0072362651117146015, -0.03289029747247696, -0.030428290367126465, -0.003009720705449581, -0.06478239595890045, -0.040002018213272095, -0.030539631843566895, 0.012112152762711048, 0.0007121976232156157, -0.021808676421642303, 0.0034913956187665462, 0.044851820915937424, -0.015844201669096947, -0.028357459232211113, -0.05156383663415909, -0.012135282158851624, -0.06857872754335403, -0.05592479556798935, -0.008700331673026085, 0.00963444821536541, 0.03615489974617958, 0.030141422525048256, 0.02272007428109646, 0.02303374744951725, 0.01703881472349167, -0.03565835580229759, 0.007890982553362846, 0.01919962652027607, -0.03984987363219261, -0.020397884771227837, 0.04131187126040459, 0.012573424726724625, 0.028784284368157387, -0.0240784864872694, 0.039770834147930145, 0.001574931782670319, 0.0044041904620826244, -0.029373889788985252, 0.011531342752277851, 0.027133891358971596, -0.0681009292602539, -0.03373975679278374, -0.016218122094869614, -0.03283455967903137, 0.029880233108997345, -0.029240362346172333, -0.03380950912833214, 0.0194685161113739, 0.0067268842831254005, 0.037443313747644424, -0.0336587019264698, -0.009040341712534428, 0.030359793454408646, -0.003541461192071438, 0.02393379621207714, -0.04804665595293045, 0.05457162484526634, -0.04029946029186249, 0.026125745847821236, -0.0179942324757576, 0.004801938775926828, -0.027488330379128456, 0.03440942242741585, -0.029013710096478462, -0.01790827326476574, -0.019687015563249588, 0.05058642104268074, -0.012101137079298496, 0.030328312888741493, -0.012201591394841671, 0.034806977957487106, -0.026610780507326126, 0.06918938457965851, -0.046506915241479874, 0.022770334035158157, -0.03971155732870102, 0.03298250585794449, -0.02606426179409027, 0.010907022282481194, -0.003285772632807493, -0.013173245824873447, 0.027779467403888702, 0.05936611071228981, 0.03229545056819916, 0.026425374671816826, -0.0034602296072989702, -0.014651602134108543, 0.007679104804992676, -0.05162537842988968, -0.026833590120077133, -0.0167526975274086, -0.007070457562804222, -0.019005874171853065, 0.05337104946374893, 0.031821999698877335, -0.05037212371826172, -0.07315154373645782, 0.030723290517926216, 0.023819575086236, 0.002023958135396242, 0.011357368901371956, 0.04088769108057022, 0.024076111614704132, 0.043764349073171616, -0.022834613919258118, -0.003385513322427869, 0.0011064335703849792, -0.04807894676923752, 0.026503950357437134, -0.0012027428019791842, 0.03305813670158386, 0.010766591876745224, -0.04045141488313675, -0.020462462678551674, 0.06455200165510178, 0.026868073269724846, 0.02170552872121334, -0.0003238350327592343, -0.05077559873461723, 0.04347819462418556, 0.011172574944794178, -0.027185562998056412, 0.031185833737254143, 0.014212525449693203, -0.03251387178897858, 0.060518864542245865, -0.0015671056462451816, 0.0037122040521353483, 0.04847786948084831, 0.02407739870250225, -0.021388418972492218, 0.06728383898735046, -0.038884036242961884, 0.009135964326560497, 0.034504782408475876, -0.07143393903970718, -0.011697091162204742, -0.04825424775481224, 0.05569599196314812, -0.06294054538011551, 0.028776753693819046, 0.05270941182971001, 0.005157122854143381, 0.025868574157357216, -0.054770294576883316, -0.0688650980591774, 0.01836962066590786, -0.04474029317498207, 0.0645163506269455, -0.00035550229949876666, -0.049413714557886124, 0.06405173987150192, 0.008202973753213882, -0.0680418312549591, 0.03692491725087166, 0.028259623795747757, 0.06726376712322235, 0.0327579565346241, 0.04684416949748993, -0.04177319258451462, -0.003941915463656187, -0.039476484060287476, 0.012287741526961327, -0.05778006091713905, -0.009908827021718025, 0.035564668476581573, -0.0366634801030159, -0.02782682329416275, 0.04024567827582359, -0.008865399286150932, -0.009106318466365337, 0.04892388731241226, -0.05318078771233559, -0.03633143752813339, 0.000008315150807902683, 0.009995869360864162, -0.04134618863463402, -0.009150240570306778, -0.03327344357967377, 0.01836278848350048, 0.011860202066600323, -0.006805642042309046, -0.01877697743475437, -0.018231652677059174, 0.03308084234595299, -0.03193288668990135, -0.035430215299129486, 0.016065428033471107, 0.00019045875524170697, -0.02562570758163929, 0.044023171067237854, 0.0022045294754207134, 0.01773969642817974, 0.022962648421525955, -0.009772032499313354, 0.028713654726743698, -0.02968590520322323, -0.013167554512619972, 0.025763265788555145, -0.004805098287761211, 0.01952234096825123, 0.011194005608558655, 0.04354317858815193, 0.04210823401808739, 0.028172940015792847, -0.007802879903465509, -0.02806769497692585, -0.03127194941043854, 0.02013876661658287, -0.04203331097960472, 0.00817055068910122, 0.0012270744191482663, -0.0469646193087101, -0.01779126189649105, 0.0025643480475991964, -0.03930171579122543, 0.04480503499507904, -0.06232351437211037, 0.008688566274940968, 0.04455721378326416, -0.01315944641828537, -0.06182297691702843, -0.10676315426826477, -0.015718424692749977, -0.05524545907974243, -0.013318503275513649, 0.057667218148708344, -0.04209911823272705, 0.043005846440792084, -0.03909841179847717, -0.03924630582332611, 0.045262694358825684, 0.052086107432842255, -0.06083105131983757, 0.06453567743301392, 0.03948128968477249, -0.043369047343730927, 0.014311747625470161, 0.01928330399096012, -0.05537297576665878, -0.00039425736758857965, 0.019448140636086464, -0.004961890634149313, 0.01889798976480961, 0.01411144807934761, -0.053051695227622986, -0.024985169991850853, -0.07423911243677139, -0.0359673947095871, -0.048880938440561295, 0.0015802450943738222, 0.04664832353591919 ]
DeltaHub/adapter_t5-3b_qnli
[ "pytorch", "transformers" ]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__all-train results: [] --- <!-- 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__subj__all-train This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.3193 - Accuracy: 0.9485 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.1992 | 1.0 | 500 | 0.1236 | 0.963 | | 0.084 | 2.0 | 1000 | 0.1428 | 0.963 | | 0.0333 | 3.0 | 1500 | 0.1906 | 0.965 | | 0.0159 | 4.0 | 2000 | 0.3193 | 0.9485 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.1+cu102 - Datasets 1.17.0 - Tokenizers 0.10.3
[ -0.020412009209394455, 0.009671366773545742, -0.03824837505817413, 0.053720999509096146, 0.05130526423454285, 0.025854293256998062, -0.01250623632222414, -0.029451310634613037, -0.047610875219106674, 0.05870036408305168, 0.022406084463000298, -0.03073844127357006, 0.002014057943597436, 0.046380866318941116, -0.020942749455571175, -0.03634835034608841, 0.001943709678016603, -0.010862288065254688, -0.0409349761903286, 0.0011286560911685228, 0.0024953107349574566, -0.0127725126221776, -0.004592705052345991, 0.003200276754796505, -0.002204383723437786, 0.016858873888850212, 0.002447139471769333, 0.020969273522496223, 0.030285367742180824, -0.0690891370177269, 0.018504561856389046, -0.027614109218120575, -0.044319722801446915, -0.018267545849084854, -0.013718084432184696, -0.010148106142878532, 0.003865570528432727, 0.02219885028898716, 0.04014081880450249, 0.04257194325327873, 0.000015705662008258514, 0.023344611749053, 0.002306120004504919, -0.011428424157202244, 0.05704653635621071, 0.006535676307976246, -0.025533143430948257, -0.0044564977288246155, 0.03936947509646416, -0.01654871553182602, -0.07863355427980423, -0.05590469017624855, -0.02500227279961109, 0.02287151850759983, -0.020101873204112053, -0.0032652695663273335, -0.0595100075006485, 0.008864791132509708, 0.056312259286642075, -0.04995773360133171, -0.021624842658638954, 0.006823273841291666, -0.0641832947731018, 0.006529801990836859, 0.025326967239379883, -0.012897578999400139, 0.01343326922506094, -0.04206794872879982, 0.03806140646338463, -0.018980873748660088, 0.06484994292259216, -0.023034069687128067, 0.020377306267619133, -0.07235098630189896, -0.015048745088279247, -0.008153824135661125, 0.03865427151322365, 0.05592842027544975, -0.03019033558666706, 0.04886678233742714, 0.0243057943880558, 0.0014772984432056546, 0.0383150577545166, -0.03149782121181488, 0.011002401821315289, 0.033993665128946304, -0.04060595855116844, -0.006708449684083462, 0.01214972697198391, 0.030256228521466255, -0.03944249823689461, -0.04182131960988045, -0.0380864292383194, -0.031687285751104355, -0.004332059528678656, 0.017647085711359978, 0.0358613058924675, 0.01540117897093296, 0.04108034819364548, 0.027126656845211983, 0.03309192880988121, 0.04017901420593262, -0.027863577008247375, 0.07105004787445068, 0.0016579745570197701, -0.0030162890907377005, -0.009761166758835316, -0.024803608655929565, -0.047495100647211075, 0.025838349014520645, 0.03880239278078079, -0.01904253102838993, -0.018702741712331772, 0.037903957068920135, 0.008038832806050777, -0.005597212817519903, 0.07816046476364136, -0.021663285791873932, -0.04211750254034996, -0.025628484785556793, 0.022182904183864594, 0.01764240674674511, -0.01316156703978777, 0.01960439793765545, -0.03222661092877388, -0.02505628764629364, -0.033914025872945786, -0.013088835403323174, -0.012204908765852451, 0.02605021931231022, 0.01038057915866375, 0.06684364378452301, 0.03693537786602974, -0.07679276168346405, 0.00761493481695652, 0.020777324214577675, -0.05603957921266556, 0.058576151728630066, 0.026530366390943527, 0.11691161245107651, -0.06541091948747635, -0.06400199234485626, 0.010387991555035114, -0.002456249203532934, -0.043750301003456116, 0.01711541786789894, 0.010240865871310234, -0.03197446092963219, 0.00014725666551385075, 0.003842479782178998, 0.06517993658781052, -0.041066862642765045, -0.013590533286333084, 0.06551843136548996, -0.009307846426963806, 0.03929055109620094, -0.05362618342041969, -0.025387804955244064, 0.02303151600062847, -0.025034742429852486, -0.042964864522218704, 0.052660007029771805, -0.024759721010923386, -0.011350431479513645, -0.01598093844950199, -0.0259399451315403, 0.008332179859280586, 0.08194205164909363, -0.010003221221268177, -0.02830708771944046, -0.01853201910853386, 0.025589697062969208, 0.036772601306438446, 0.05008668452501297, -0.032541994005441666, 0.03007548116147518, 0.06225452199578285, 0.03736293688416481, -0.024746963754296303, 0.027401095256209373, 0.030840424820780754, -0.030345575883984566, -0.016598496586084366, 0.029350606724619865, 0.001500388840213418, -0.04123520106077194, 0.04370321333408356, 0.011984172277152538, -0.0011827173875644803, -0.06132828816771507, -0.043054159730672836, 0.0396905317902565, -0.0032158223912119865, -0.0031418136786669493, 0.01855231262743473, 0.011265397071838379, -0.014229023829102516, 0.04622586444020271, -0.01186685636639595, 0.009486624971032143, -0.02237899787724018, -0.02211938612163067, 0.006400584243237972, -0.011311223730444908, 0.028363311663269997, 0.04732392355799675, -0.006881730630993843, 0.09823887795209885, -0.04212525859475136, 0.021907420828938484, -0.05862097442150116, -0.03358232229948044, 0.03271405026316643, 0.054780878126621246, 0.05262913182377815, 0.04992669075727463, 0.012001244351267815, -0.030119433999061584, 0.04298216849565506, 0.06382470577955246, 0.04049691930413246, -0.00041114274063147604, -0.0234975703060627, -0.01517514418810606, 0.028081746771931648, 0.0546448789536953, -0.05110687389969826, -0.012846087105572224, -0.0025995061732828617, 0.030935164541006088, 0.005544906482100487, 0.021223651245236397, -0.028765639290213585, 0.04182462394237518, -0.04171884432435036, -0.05278090387582779, 0.040604133158922195, 0.026080748066306114, -0.008125407621264458, 0.02524629421532154, 0.03876415640115738, 0.0049435654655098915, 0.010388121008872986, 0.023347871378064156, 0.006908077280968428, -0.04759083688259125, 0.009344041347503662, 0.0012912554666399956, 0.04861539229750633, -0.05906246230006218, 0.02976323291659355, -0.018735915422439575, 0.020546721294522285, 0.04595819488167763, -0.034456998109817505, 0.026241537183523178, 0.05181455239653587, 0.02902662381529808, -0.0351952388882637, 0.027245013043284416, -0.0005898249801248312, 0.04237716645002365, 0.04988791048526764, 0.008836371824145317, 0.06485811620950699, 0.019697608426213264, 0.05169779434800148, 0.07374822348356247, 0.013567584566771984, 0.04014136269688606, 0.01666785590350628, 0.06708509474992752, 0.020431112498044968, -0.01126470509916544, 0.04414103925228119, -0.03995050862431526, 0.027592858299613, -0.06137055903673172, -0.0020773636642843485, -0.025333896279335022, -0.009774439968168736, 0.05347761884331703, 0.025955328717827797, -0.02605237253010273, -0.009994445368647575, 0.010383492335677147, -0.010430723428726196, 0.025616463273763657, -0.005606925114989281, 0.0029055974446237087, -0.005843388848006725, -0.026445357128977776, -0.026559263467788696, -0.0746450126171112, -0.052950166165828705, -0.02173587679862976, -0.01698019541800022, -0.018644921481609344, -0.0898597463965416, -0.006908691022545099, -0.08096988499164581, -0.022231092676520348, 0.03294573724269867, 0.007940756157040596, -0.02532958798110485, -0.03857312351465225, 0.02193966880440712, -0.05047762393951416, -0.030364705249667168, -0.0578322634100914, -0.06220793351531029, -0.05304061621427536, -0.07664778083562851, 0.0432821623980999, 0.027896223589777946, -0.0028620585799217224, -0.0049225580878555775, 0.028012247756123543, 0.0016461408231407404, -0.021201929077506065, 0.03863082081079483, 0.06387634575366974, -0.034373775124549866, -0.05372608080506325, 0.03175795450806618, -0.013729647733271122, 0.0132022425532341, 0.02673506923019886, -0.032098188996315, 0.091604083776474, 0.06974828243255615, 0.01616576313972473, 0.033330272883176804, -0.017239699140191078, -0.06396093219518661, -0.06484750658273697, -0.02429160289466381, -0.047512054443359375, -0.0019317854894325137, -0.047754138708114624, -0.0472353994846344, -0.031127970665693283, -0.03652989864349365, 0.009718267247080803, -0.011293020099401474, 0.03244995325803757, 0.02778751030564308, 0.049008093774318695, 0.029052697122097015, 0.04055410251021385, -0.029540635645389557, -0.025684650987386703, 0.05610299110412598, 0.011299483478069305, 0.0018832175992429256, -0.0883416160941124, -0.008178823627531528, 0.028522051870822906, 0.024482036009430885, 0.013118891976773739, -0.003758683567866683, 0.07461020350456238, -0.00983730610460043, 0.0068279136903584, 0.013345117680728436, -0.006979695521295071, -0.005347174126654863, -0.0018971257377415895, -0.006317984312772751, 0.004406650550663471, -0.025207972154021263, -0.03805086761713028, -0.0045720841735601425, 0.03003791719675064, -0.05482864752411842, -0.05915934592485428, -0.015796933323144913, 0.035139888525009155, 0.044591858983039856, -0.005940563045442104, -0.050302304327487946, -0.007302514277398586, -0.06795845180749893, -0.00811567809432745, 0.03326907008886337, 0.015064067207276821, -0.003180826548486948, 0.04508194699883461, 0.011973874643445015, -0.016203587874770164, 0.0204506516456604, 0.05245334282517433, 0.07636170834302902, 0.01409025490283966, -0.0724920853972435, -0.010550359264016151, -0.028768517076969147, 0.01875186339020729, -0.009514409117400646, -0.016612259671092033, -0.016143083572387695, -0.09421776235103607, -0.019121520221233368, 0.006138459779322147, 0.007089854683727026, -0.016774244606494904, 0.04197237640619278, 0.008583384566009045, -0.03200095519423485, 0.0056634703651070595, 0.01775435358285904, 0.0417012944817543, -0.021484384313225746, 0.05585680529475212, -0.02006753906607628, 0.0032447194680571556, -0.051045116037130356, 0.01251931395381689, -0.04635268822312355, -0.0313759408891201, 0.007016004528850317, 0.05974171683192253, -0.014239124953746796, 0.05636949464678764, 0.07896291464567184, 0.03740909323096275, -0.059788379818201065, 0.03285469487309456, 0.07354088127613068, -0.03946901857852936, -0.04135912284255028, 0.001003549317829311, -0.0019799694418907166, -0.019160732626914978, -0.007505005691200495, -0.014202883467078209, 0.049851156771183014, 0.03525128960609436, 0.004899284336715937, 0.014832358807325363, -0.006584712769836187, -0.01144252810627222, -0.03787417337298393, -0.04769470542669296, -0.030886802822351456, 0.005679486319422722, -0.025164663791656494, 0.015019666403532028, 0.025947479531168938, 0.03175588324666023, 0.07781895995140076, 0.02339312806725502, -0.029579265043139458, -0.015957461670041084, 0.023493923246860504, 0.01269530039280653, -0.022030465304851532, -0.0740734189748764, -0.051231224089860916, 0.022402292117476463, 0.049778375774621964, -0.021686390042304993, -0.06789125502109528, 0.014917418360710144, 0.046795543283224106, -0.042721498757600784, 0.06145576015114784, -0.012406967580318451, 0.0625191181898117, 0.05619551241397858, -0.013658120296895504, 0.02655942365527153, -0.021960703656077385, -0.00939155276864767, -0.0006041229935362935, 0.0448804572224617, -0.015032854862511158, -0.04084701091051102, -0.050475265830755234, 0.02332501858472824, 0.04206080734729767, 0.033310145139694214, 0.04140111058950424, -0.03931518644094467, -0.0497279167175293, 0.01573716476559639, 0.03382120653986931, -0.03997968137264252, 0.00032886493136174977, 0.033139899373054504, 0.03270459920167923, -0.04902127757668495, -0.02622712403535843, -0.027587471529841423, -0.020381825044751167, 0.043793514370918274, 0.004378590267151594, -0.02965088188648224, -0.047930072993040085, 0.03936391696333885, -0.02353684790432453, -0.039696674793958664, -0.07215861231088638, 0.04867655411362648, -0.0037229193840175867, -0.016858570277690887, 0.0639149472117424, 0.02768489345908165, 0.02986740693449974, 0.06447933614253998, 0.037486933171749115, 0.01921512372791767, -0.03144102171063423, 0.04298938065767288, -0.03790156543254852, -0.019626669585704803, 0.0111153619363904, -0.03787728399038315, -0.030678756535053253, -0.00012171093840152025, -0.06529133021831512, -0.03641306981444359, -0.023148424923419952, 0.011616315692663193, -0.0017929162131622434, -0.016341708600521088, -0.002093255054205656, 0.042928170412778854, -0.015736762434244156, -0.031859807670116425, -0.04895327240228653, -0.018680701032280922, -0.06427887082099915, -0.0515289232134819, -0.007272362243384123, 0.006566026713699102, 0.03405848518013954, 0.02990301512181759, 0.02009197510778904, 0.022669615224003792, 0.01880410686135292, -0.036961864680051804, 0.012400041334331036, 0.026130087673664093, -0.037040743976831436, -0.02251347154378891, 0.040253594517707825, 0.016291597858071327, 0.02277163788676262, -0.02899216301739216, 0.03633511811494827, 0.0034908493980765343, -0.0008579428540542722, -0.02095615677535534, 0.011593428440392017, 0.026965012773871422, -0.06921204179525375, -0.030216652899980545, -0.015687398612499237, -0.033755913376808167, 0.033272527158260345, -0.027508025988936424, -0.031114380806684494, 0.017949281260371208, 0.005593151319772005, 0.0392717644572258, -0.028262631967663765, -0.009016004391014576, 0.027836812660098076, -0.000625831657089293, 0.02701360359787941, -0.04730837047100067, 0.05476975440979004, -0.041219379752874374, 0.023056205362081528, -0.015788551419973373, 0.00753776915371418, -0.0322723463177681, 0.031140197068452835, -0.023875433951616287, -0.01907327026128769, -0.012081277556717396, 0.0514519065618515, -0.015703627839684486, 0.03385097533464432, -0.014852799475193024, 0.036567322909832, -0.023276852443814278, 0.06670962274074554, -0.05018717423081398, 0.023069508373737335, -0.03537903353571892, 0.03133885934948921, -0.02661946415901184, 0.013965161517262459, 0.0037745183799415827, -0.012166441418230534, 0.02810821495950222, 0.055812571197748184, 0.02837882563471794, 0.02958129160106182, 0.0015351228648796678, -0.009572175331413746, 0.008557749912142754, -0.05336854234337807, -0.021602611988782883, -0.016392802819609642, -0.003397740423679352, -0.02000787854194641, 0.05869368091225624, 0.03055718168616295, -0.04722079262137413, -0.07647305727005005, 0.036247655749320984, 0.024526216089725494, 0.0045347861014306545, 0.0059908549301326275, 0.04757168889045715, 0.02406054176390171, 0.040889639407396317, -0.024794895201921463, -0.008730224333703518, -0.0013031316921114922, -0.05210120975971222, 0.025175852701067924, -0.004966646432876587, 0.030278293415904045, 0.009221847169101238, -0.03572242707014084, -0.019477125257253647, 0.06458793580532074, 0.02498176507651806, 0.02514215186238289, 0.002359178150072694, -0.044408392161130905, 0.040439095348119736, 0.008939709514379501, -0.02699308656156063, 0.02695273794233799, 0.013369458727538586, -0.0295345988124609, 0.05373522266745567, -0.0007065213867463171, 0.006870585959404707, 0.047716107219457626, 0.02491091936826706, -0.017818422988057137, 0.06634785979986191, -0.038519229739904404, 0.014327351935207844, 0.03378758952021599, -0.07342806458473206, -0.015347929671406746, -0.048731282353401184, 0.05259183049201965, -0.06188875436782837, 0.028695005923509598, 0.05223853513598442, 0.0028718437533825636, 0.027295755222439766, -0.05104973167181015, -0.0634467825293541, 0.021691031754016876, -0.03826342895627022, 0.06060388684272766, 0.006780053488910198, -0.048626359552145004, 0.06535977125167847, 0.013128217309713364, -0.05598670244216919, 0.03873438015580177, 0.027789197862148285, 0.0651669055223465, 0.026748504489660263, 0.046555519104003906, -0.044698316603899, -0.004760297480970621, -0.04160863161087036, 0.016460983082652092, -0.05609288066625595, -0.00939101167023182, 0.03394262492656708, -0.03358699753880501, -0.020696299150586128, 0.0376005582511425, -0.015423238277435303, -0.006652636919170618, 0.050270549952983856, -0.05039653182029724, -0.03872805833816528, 0.0010823189513757825, 0.01586289145052433, -0.0455143079161644, -0.008172173984348774, -0.035769298672676086, 0.010488685220479965, 0.01472486462444067, -0.00626252219080925, -0.02016940712928772, -0.02115553617477417, 0.03343259170651436, -0.03044511377811432, -0.03317379578948021, 0.01841973513364792, -0.0031443489715456963, -0.023270267993211746, 0.04139585420489311, 0.006800968665629625, 0.01484841387718916, 0.02442585863173008, -0.01608828455209732, 0.023060739040374756, -0.036373551934957504, -0.013638211414217949, 0.028348233550786972, -0.009669429622590542, 0.022830035537481308, 0.00881026592105627, 0.043995097279548645, 0.04678929224610329, 0.034471746534109116, -0.007774359080940485, -0.02956617809832096, -0.0331403948366642, 0.021466733887791634, -0.04111260175704956, 0.007633486296981573, 0.00640921900048852, -0.03782474249601364, -0.023887312039732933, 0.0031088469550013542, -0.03054109402000904, 0.04880029335618019, -0.06305484473705292, 0.004869699478149414, 0.03769389167428017, -0.017325803637504578, -0.06668924540281296, -0.10319249331951141, -0.015439612790942192, -0.05233392491936684, -0.015393766574561596, 0.05390440300107002, -0.039511539041996, 0.04354710131883621, -0.044330351054668427, -0.04274972155690193, 0.044753313064575195, 0.052657488733530045, -0.06677347421646118, 0.06298574805259705, 0.039929717779159546, -0.04819822311401367, 0.013811503536999226, 0.020086677744984627, -0.05665585771203041, 0.005002021789550781, 0.019119704142212868, -0.0036723881494253874, 0.025144901126623154, 0.014504584483802319, -0.05570598319172859, -0.02606278844177723, -0.0699123740196228, -0.033504314720630646, -0.05269978567957878, 0.00624951021745801, 0.04609902575612068 ]
DeltaHub/lora_t5-base_mrpc
[ "pytorch", "transformers" ]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-0 results: [] --- <!-- 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__subj__train-8-0 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4440 - Accuracy: 0.789 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7163 | 1.0 | 3 | 0.6868 | 0.5 | | 0.6683 | 2.0 | 6 | 0.6804 | 0.75 | | 0.6375 | 3.0 | 9 | 0.6702 | 0.75 | | 0.5997 | 4.0 | 12 | 0.6686 | 0.75 | | 0.5345 | 5.0 | 15 | 0.6720 | 0.75 | | 0.4673 | 6.0 | 18 | 0.6646 | 0.75 | | 0.4214 | 7.0 | 21 | 0.6494 | 0.75 | | 0.3439 | 8.0 | 24 | 0.6313 | 0.75 | | 0.3157 | 9.0 | 27 | 0.6052 | 0.75 | | 0.2329 | 10.0 | 30 | 0.5908 | 0.75 | | 0.1989 | 11.0 | 33 | 0.5768 | 0.75 | | 0.1581 | 12.0 | 36 | 0.5727 | 0.75 | | 0.1257 | 13.0 | 39 | 0.5678 | 0.75 | | 0.1005 | 14.0 | 42 | 0.5518 | 0.75 | | 0.0836 | 15.0 | 45 | 0.5411 | 0.75 | | 0.0611 | 16.0 | 48 | 0.5320 | 0.75 | | 0.0503 | 17.0 | 51 | 0.5299 | 0.75 | | 0.0407 | 18.0 | 54 | 0.5368 | 0.75 | | 0.0332 | 19.0 | 57 | 0.5455 | 0.75 | | 0.0293 | 20.0 | 60 | 0.5525 | 0.75 | | 0.0254 | 21.0 | 63 | 0.5560 | 0.75 | | 0.0231 | 22.0 | 66 | 0.5569 | 0.75 | | 0.0201 | 23.0 | 69 | 0.5572 | 0.75 | | 0.0179 | 24.0 | 72 | 0.5575 | 0.75 | | 0.0184 | 25.0 | 75 | 0.5547 | 0.75 | | 0.0148 | 26.0 | 78 | 0.5493 | 0.75 | | 0.0149 | 27.0 | 81 | 0.5473 | 0.75 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014152370393276215, 0.007939516566693783, -0.03639451041817665, 0.04504454508423805, 0.04979652166366577, 0.016184601932764053, -0.018706481903791428, -0.026494573801755905, -0.05138890817761421, 0.06004558131098747, 0.01078527420759201, -0.03760569915175438, 0.008084711618721485, 0.042623475193977356, -0.024392137303948402, -0.034059345722198486, -0.00348832318559289, -0.009600887075066566, -0.035792071372270584, -0.00023841850634198636, 0.0013320473954081535, -0.011769353412091732, -0.012808121740818024, 0.005482969339936972, -0.005363817326724529, 0.018048765137791634, 0.005185501649975777, 0.022686664015054703, 0.03166712075471878, -0.06354646384716034, 0.01575111597776413, -0.03118712641298771, -0.05080747231841087, -0.01864980347454548, -0.010976235382258892, -0.014559786766767502, -0.00026313256239518523, 0.0328240729868412, 0.040133871138095856, 0.04929725453257561, 0.0052744196727871895, 0.02840818651020527, 0.002019087551161647, -0.010147631168365479, 0.05456860363483429, 0.009320821613073349, -0.02627751976251602, 0.0005203711334615946, 0.040223367512226105, -0.026273608207702637, -0.08120621740818024, -0.051584236323833466, -0.018467992544174194, 0.017920855432748795, -0.01754205860197544, -0.010352847166359425, -0.06093217059969902, 0.012644287198781967, 0.06401565670967102, -0.046704284846782684, -0.029364271089434624, -0.0023674764670431614, -0.07181431353092194, 0.006419200450181961, 0.027600573375821114, -0.014617896638810635, 0.008186126127839088, -0.046997442841529846, 0.03364627808332443, -0.011715482920408249, 0.06220120191574097, -0.020474137738347054, 0.014194885268807411, -0.06875550001859665, -0.018779776990413666, -0.0026166317984461784, 0.04607900604605675, 0.06149226799607277, -0.03461657091975212, 0.048679132014513016, 0.026881206780672073, 0.0008552089566364884, 0.044124577194452286, -0.02588927000761032, 0.017943764105439186, 0.027957674115896225, -0.04262464493513107, -0.010226219892501831, 0.012755977921187878, 0.024296317249536514, -0.03569004684686661, -0.037848833948373795, -0.032508786767721176, -0.026114484295248985, -0.004169462248682976, 0.01982155069708824, 0.029074568301439285, 0.015088986605405807, 0.04345401003956795, 0.020435970276594162, 0.025999944657087326, 0.0413065031170845, -0.02896149270236492, 0.07706384360790253, -0.008682412095367908, -0.002642796142026782, -0.011611833237111568, -0.018161974847316742, -0.04881887137889862, 0.02562393620610237, 0.03194597363471985, -0.019465040415525436, -0.01680615358054638, 0.03798224776983261, 0.004841137677431107, -0.0001545134000480175, 0.08321157842874527, -0.016517924144864082, -0.043003860861063004, -0.036052532494068146, 0.02333993837237358, 0.015584138222038746, -0.014215126633644104, 0.015914546325802803, -0.04903176799416542, -0.016093719750642776, -0.027453742921352386, -0.018122952431440353, -0.016238823533058167, 0.02052348665893078, 0.003801223123446107, 0.06826052069664001, 0.03674548864364624, -0.08455013483762741, 0.0013483084039762616, 0.013139321468770504, -0.05457199364900589, 0.053908925503492355, 0.025700122117996216, 0.1147928535938263, -0.05842834711074829, -0.06623639911413193, 0.015104524791240692, 0.002751529449597001, -0.04455528035759926, 0.016188476234674454, 0.0049853017553687096, -0.026224210858345032, 0.0027324510738253593, 0.004316776059567928, 0.062463436275720596, -0.04359501227736473, -0.008557826280593872, 0.07289808988571167, -0.0025400707963854074, 0.04359564930200577, -0.05495842173695564, -0.02949279546737671, 0.01490988489240408, -0.02171897515654564, -0.03173958137631416, 0.0461261123418808, -0.030234888195991516, -0.017696812748908997, -0.01942566968500614, -0.026545636355876923, 0.010652693919837475, 0.07610376179218292, -0.003320203861221671, -0.03018387407064438, -0.019794756546616554, 0.021919341757893562, 0.03926050290465355, 0.04424349591135979, -0.029687877744436264, 0.025423167273402214, 0.05802794173359871, 0.031211573630571365, -0.030607327818870544, 0.037781521677970886, 0.03202727809548378, -0.02452988177537918, -0.0241065863519907, 0.033648788928985596, 0.011724939569830894, -0.04628126695752144, 0.04043634608387947, 0.01446430291980505, 0.0033551284577697515, -0.06583479046821594, -0.04041505232453346, 0.04197988286614418, -0.009108928963541985, -0.011124726384878159, 0.010475519113242626, 0.017833253368735313, -0.01998298056423664, 0.04190400242805481, -0.015027125366032124, 0.005431271158158779, -0.029373927041888237, -0.021817483007907867, 0.010108445771038532, -0.017292208969593048, 0.023645414039492607, 0.044345635920763016, -0.003613005857914686, 0.10218212753534317, -0.04133309796452522, 0.02101091854274273, -0.05877607315778732, -0.03652537241578102, 0.03163643181324005, 0.0601639486849308, 0.054567690938711166, 0.050633128732442856, 0.006679389625787735, -0.02980569377541542, 0.04322662949562073, 0.06806287914514542, 0.041751764714717865, -0.004388486500829458, -0.036651816219091415, -0.007679406087845564, 0.037874236702919006, 0.04887458309531212, -0.050568096339702606, -0.012886513024568558, 0.0053902724757790565, 0.03306104615330696, -0.007790405303239822, 0.017877576872706413, -0.021075544878840446, 0.04152044281363487, -0.04169304296374321, -0.049768805503845215, 0.036887191236019135, 0.023588715121150017, -0.004908150527626276, 0.030235160142183304, 0.03600652888417244, 0.009904790669679642, 0.019153526052832603, 0.02400011010468006, 0.010084551759064198, -0.051998481154441833, 0.019607681781053543, -0.00025558986817486584, 0.056322600692510605, -0.05446293577551842, 0.03158622980117798, -0.022879673168063164, 0.02499367482960224, 0.04825035482645035, -0.028476599603891373, 0.035440392792224884, 0.058795664459466934, 0.022481320425868034, -0.036511197686195374, 0.02867165394127369, 0.0054669869132339954, 0.037869032472372055, 0.038297511637210846, 0.01031841803342104, 0.07080486416816711, 0.020257581025362015, 0.04745495319366455, 0.07718656212091446, 0.012878036126494408, 0.03845413774251938, 0.02091352641582489, 0.06775134801864624, 0.013451551087200642, -0.010656562633812428, 0.05105573311448097, -0.04171403497457504, 0.02961820177733898, -0.06028648465871811, 0.001817018841393292, -0.022262418642640114, -0.005784277338534594, 0.058436065912246704, 0.024956263601779938, -0.02928253263235092, -0.009960638359189034, 0.015754293650388718, -0.012427684850990772, 0.0222527664154768, -0.0070245214737951756, 0.012093106284737587, -0.007696507498621941, -0.024185745045542717, -0.020665986463427544, -0.06914981454610825, -0.04684046655893326, -0.024116214364767075, -0.015109437517821789, -0.02541646733880043, -0.09250739216804504, -0.003818890079855919, -0.08422605693340302, -0.017999310046434402, 0.02906499058008194, 0.008791755884885788, -0.023764418438076973, -0.037387631833553314, 0.028785066679120064, -0.04767837002873421, -0.030146509408950806, -0.04730331897735596, -0.06262929737567902, -0.05541524663567543, -0.08186649531126022, 0.04355504363775253, 0.035897769033908844, 0.006086053792387247, -0.001159779611043632, 0.03197285905480385, 0.012352068908512592, -0.02948249876499176, 0.03426700457930565, 0.061824578791856766, -0.03667102009057999, -0.04826314374804497, 0.03457103297114372, -0.009971476159989834, 0.012875690124928951, 0.0172390379011631, -0.0298983883112669, 0.09293195605278015, 0.06822461634874344, 0.015067195519804955, 0.0284348763525486, -0.012575536035001278, -0.06565731018781662, -0.06559044122695923, -0.026557641103863716, -0.04153481125831604, -0.003708423348143697, -0.044186029583215714, -0.03980608657002449, -0.038420043885707855, -0.04112982004880905, 0.014348560012876987, -0.014961241744458675, 0.02740238979458809, 0.02389615774154663, 0.037108857184648514, 0.026001328602433205, 0.04651552066206932, -0.028317850083112717, -0.027246560901403427, 0.05636407807469368, 0.011269999668002129, 0.009074270725250244, -0.08431673049926758, -0.0014040882233530283, 0.024352462962269783, 0.02084645815193653, 0.023624926805496216, -0.00315141212195158, 0.07648324966430664, -0.0126014593988657, 0.004775110632181168, 0.015033774077892303, -0.006465585436671972, -0.011234304867684841, -0.0026157950051128864, -0.0036678125616163015, 0.0039729890413582325, -0.02662690356373787, -0.03248994052410126, -0.01099685300141573, 0.02889121323823929, -0.057955242693424225, -0.059774015098810196, -0.01478241104632616, 0.03470369428396225, 0.04325404390692711, -0.00861363299190998, -0.04455508291721344, -0.009329861961305141, -0.07091809809207916, -0.005063536111265421, 0.02680133655667305, 0.010983604937791824, -0.004407787229865789, 0.03948567435145378, 0.013411717489361763, -0.00509687652811408, 0.02478017285466194, 0.0538233146071434, 0.06723883748054504, 0.013272141106426716, -0.07703746110200882, -0.0006714485352858901, -0.019047198817133904, 0.014033008366823196, -0.015065222047269344, -0.018643701449036598, -0.021513057872653008, -0.09480269253253937, -0.015886526554822922, 0.009985662065446377, 0.00571936322376132, -0.013520305044949055, 0.044589295983314514, 0.0001113499965867959, -0.026630671694874763, 0.0016403092304244637, 0.016511784866452217, 0.03919602930545807, -0.03312526270747185, 0.049620114266872406, -0.02812202088534832, 0.0005086343735456467, -0.06079835072159767, 0.016707055270671844, -0.05153711885213852, -0.029341157525777817, 0.011638454161584377, 0.0525425523519516, -0.019010186195373535, 0.05304771289229393, 0.07608984410762787, 0.04668300598859787, -0.06196165829896927, 0.03999641165137291, 0.07635340839624405, -0.036121442914009094, -0.04344746097922325, -0.008171044290065765, -0.003491658717393875, -0.015522881411015987, -0.0023222933523356915, -0.013158882036805153, 0.04867355898022652, 0.025558998808264732, 0.00818069837987423, 0.011724606156349182, -0.0065024481154978275, -0.011381274089217186, -0.032712068408727646, -0.05423475801944733, -0.03288028761744499, 0.0014409220311790705, -0.02764420211315155, 0.015813786536455154, 0.029556753113865852, 0.03598841652274132, 0.0795610323548317, 0.024391289800405502, -0.04000426456332207, -0.011278769001364708, 0.021440057083964348, 0.013379025273025036, -0.018528759479522705, -0.07516457885503769, -0.04240541160106659, 0.027755603194236755, 0.04581926763057709, -0.024361414834856987, -0.06769314408302307, 0.018378525972366333, 0.04988647252321243, -0.05054917931556702, 0.05199630185961723, -0.011339808814227581, 0.05900522321462631, 0.05275712162256241, -0.009153950028121471, 0.03878262639045715, -0.021747378632426262, -0.011330806650221348, -0.006226162891834974, 0.04199361801147461, -0.013825743459165096, -0.03532039001584053, -0.05435071885585785, 0.023160027340054512, 0.03726479783654213, 0.03088982030749321, 0.039541203528642654, -0.034245580434799194, -0.04473721235990524, 0.01172729767858982, 0.026858655735850334, -0.04118957370519638, -0.0015421361895278096, 0.03979770466685295, 0.03521328791975975, -0.04934868589043617, -0.02356169931590557, -0.019772371277213097, -0.02150457352399826, 0.04343618452548981, 0.0062215677462518215, -0.022854041308164597, -0.04718105122447014, 0.0402035266160965, -0.01965831033885479, -0.03269193693995476, -0.069283127784729, 0.052842795848846436, -0.010800783522427082, -0.022831296548247337, 0.06063884496688843, 0.0278642475605011, 0.020004410296678543, 0.06543765217065811, 0.03014157898724079, 0.017407434061169624, -0.03515313193202019, 0.04595313221216202, -0.035002436488866806, -0.01874345913529396, 0.00586521252989769, -0.03811328858137131, -0.03649387136101723, 0.0022530080750584602, -0.06396496295928955, -0.031462978571653366, -0.024745192378759384, 0.01846330612897873, -0.00346197048202157, -0.018225137144327164, -0.004727359861135483, 0.05989815667271614, -0.008294537663459778, -0.045693978667259216, -0.04332715645432472, -0.01932733692228794, -0.058563876897096634, -0.046375203877687454, -0.004601900465786457, 0.008964055217802525, 0.03503043204545975, 0.03035191260278225, 0.020255684852600098, 0.017510127276182175, 0.01649116724729538, -0.040265392512083054, 0.01907903514802456, 0.027461986988782883, -0.03639565035700798, -0.018907571211457253, 0.03757241740822792, 0.0156365055590868, 0.019919462502002716, -0.03673011437058449, 0.033317290246486664, 0.004913046956062317, -0.007573289331048727, -0.01732778735458851, 0.011483672074973583, 0.03394404798746109, -0.06742528080940247, -0.03308474272489548, -0.016019277274608612, -0.0291853379458189, 0.03190495818853378, -0.026371702551841736, -0.02234720252454281, 0.011504736728966236, -0.0010675153462216258, 0.03588807210326195, -0.025166288018226624, -0.01065617986023426, 0.028136903420090675, 0.007462003268301487, 0.02346433885395527, -0.05243943631649017, 0.06380826979875565, -0.03637959808111191, 0.019448088482022285, -0.02426980994641781, 0.011051134206354618, -0.026395641267299652, 0.02302035503089428, -0.018753860145807266, -0.026435965672135353, -0.002623926382511854, 0.05925263836979866, -0.01366084162145853, 0.033937450498342514, -0.012778162956237793, 0.03843432292342186, -0.026167988777160645, 0.07090047001838684, -0.04364201799035072, 0.022114308550953865, -0.038076940923929214, 0.026088841259479523, -0.019799593836069107, 0.01877857744693756, -0.006093726959079504, -0.016171038150787354, 0.03396306931972504, 0.057232607156038284, 0.024157604202628136, 0.03542507439851761, 0.003393525956198573, -0.010731554590165615, 0.007270913105458021, -0.04664021357893944, -0.023868415504693985, -0.006370676681399345, -0.001944046700373292, -0.02354402095079422, 0.06271495670080185, 0.030416637659072876, -0.04958171024918556, -0.07567428797483444, 0.03703879192471504, 0.023191872984170914, 0.004397417418658733, 0.00479506328701973, 0.05033401399850845, 0.03433019295334816, 0.037038080394268036, -0.022775745019316673, -0.010216107591986656, 0.005328863859176636, -0.048894740641117096, 0.0251027699559927, -0.010117518715560436, 0.022474171593785286, 0.011380476877093315, -0.036683473736047745, -0.02311413176357746, 0.054850947111845016, 0.022118590772151947, 0.026676667854189873, 0.002352982759475708, -0.03843282535672188, 0.03303740173578262, 0.007543525192886591, -0.03834815323352814, 0.024058090522885323, 0.011466125026345253, -0.021333258599042892, 0.03723488748073578, -0.010831323452293873, 0.011949420906603336, 0.06253620982170105, 0.018652310594916344, -0.01648700423538685, 0.06892608106136322, -0.04148566722869873, 0.011928669176995754, 0.03533713519573212, -0.07483935356140137, -0.013340052217245102, -0.0529409684240818, 0.0572834312915802, -0.06384149938821793, 0.023214956745505333, 0.058146893978118896, -0.001888164086267352, 0.03155998885631561, -0.04650453105568886, -0.06018667295575142, 0.02306128665804863, -0.03485527262091637, 0.06326030194759369, 0.016649549826979637, -0.05135415121912956, 0.053655896335840225, 0.017093341797590256, -0.0542873740196228, 0.036882225424051285, 0.028080789372324944, 0.054997608065605164, 0.02839609421789646, 0.04907821863889694, -0.04616216942667961, -0.0010032198624685407, -0.03786030411720276, 0.023678384721279144, -0.05549682304263115, -0.013513044454157352, 0.0345500186085701, -0.03775043785572052, -0.023072287440299988, 0.03115285374224186, -0.018280263990163803, -0.01435359288007021, 0.05896158143877983, -0.05199969932436943, -0.042729590088129044, 0.014062580652534962, 0.021460644900798798, -0.04628755524754524, -0.011479446664452553, -0.03264680132269859, 0.008092897944152355, 0.011797633953392506, -0.00046660267980769277, -0.026722915470600128, -0.020519450306892395, 0.028007688000798225, -0.03893613815307617, -0.027728138491511345, 0.024297164753079414, -0.010411988943815231, -0.02386265993118286, 0.03654765337705612, 0.011155788786709309, 0.011574878357350826, 0.02947847545146942, -0.019384566694498062, 0.023019028827548027, -0.04504763334989548, -0.016728129237890244, 0.03702890872955322, -0.00821017101407051, 0.018751950934529305, 0.007606409955769777, 0.032404668629169464, 0.042457740753889084, 0.029088398441672325, -0.0025262723211199045, -0.03570658341050148, -0.03326510637998581, 0.02008311077952385, -0.03755691275000572, 0.007111874409019947, -0.0005210897652432323, -0.04270722717046738, -0.02603149227797985, 0.000009187726391246542, -0.03575849533081055, 0.04648430645465851, -0.06532977521419525, 0.00441387016326189, 0.04145003482699394, -0.01773814857006073, -0.06049593538045883, -0.1094910278916359, -0.01202505175024271, -0.05168591067194939, -0.015044773928821087, 0.04910394549369812, -0.036446429789066315, 0.046658955514431, -0.05135205388069153, -0.03945820406079292, 0.03807123377919197, 0.045033108443021774, -0.0612790584564209, 0.05771898850798607, 0.04242583364248276, -0.04696904867887497, 0.010289872996509075, 0.01844048500061035, -0.057422518730163574, 0.005056619178503752, 0.01633993163704872, -0.002167297527194023, 0.024861082434654236, 0.01439750101417303, -0.05534342676401138, -0.02259512059390545, -0.06418635696172714, -0.0327424481511116, -0.04718826338648796, 0.010505418293178082, 0.04819795489311218 ]
DemangeJeremy/4-sentiments-with-flaubert
[ "pytorch", "flaubert", "text-classification", "fr", "transformers", "sentiments", "french", "flaubert-large" ]
text-classification
{ "architectures": [ "FlaubertForSequenceClassification" ], "model_type": "flaubert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
226
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-1 results: [] --- <!-- 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__subj__train-8-1 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5488 - Accuracy: 0.791 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.703 | 1.0 | 3 | 0.6906 | 0.5 | | 0.666 | 2.0 | 6 | 0.6945 | 0.25 | | 0.63 | 3.0 | 9 | 0.6885 | 0.5 | | 0.588 | 4.0 | 12 | 0.6888 | 0.25 | | 0.5181 | 5.0 | 15 | 0.6899 | 0.25 | | 0.4508 | 6.0 | 18 | 0.6770 | 0.5 | | 0.4025 | 7.0 | 21 | 0.6579 | 0.5 | | 0.3361 | 8.0 | 24 | 0.6392 | 0.5 | | 0.2919 | 9.0 | 27 | 0.6113 | 0.5 | | 0.2151 | 10.0 | 30 | 0.5774 | 0.75 | | 0.1728 | 11.0 | 33 | 0.5248 | 0.75 | | 0.1313 | 12.0 | 36 | 0.4824 | 0.75 | | 0.1046 | 13.0 | 39 | 0.4456 | 0.75 | | 0.0858 | 14.0 | 42 | 0.4076 | 0.75 | | 0.0679 | 15.0 | 45 | 0.3755 | 0.75 | | 0.0485 | 16.0 | 48 | 0.3422 | 0.75 | | 0.0416 | 17.0 | 51 | 0.3055 | 0.75 | | 0.0358 | 18.0 | 54 | 0.2731 | 1.0 | | 0.0277 | 19.0 | 57 | 0.2443 | 1.0 | | 0.0234 | 20.0 | 60 | 0.2187 | 1.0 | | 0.0223 | 21.0 | 63 | 0.1960 | 1.0 | | 0.0187 | 22.0 | 66 | 0.1762 | 1.0 | | 0.017 | 23.0 | 69 | 0.1629 | 1.0 | | 0.0154 | 24.0 | 72 | 0.1543 | 1.0 | | 0.0164 | 25.0 | 75 | 0.1476 | 1.0 | | 0.0131 | 26.0 | 78 | 0.1423 | 1.0 | | 0.0139 | 27.0 | 81 | 0.1387 | 1.0 | | 0.0107 | 28.0 | 84 | 0.1360 | 1.0 | | 0.0108 | 29.0 | 87 | 0.1331 | 1.0 | | 0.0105 | 30.0 | 90 | 0.1308 | 1.0 | | 0.0106 | 31.0 | 93 | 0.1276 | 1.0 | | 0.0104 | 32.0 | 96 | 0.1267 | 1.0 | | 0.0095 | 33.0 | 99 | 0.1255 | 1.0 | | 0.0076 | 34.0 | 102 | 0.1243 | 1.0 | | 0.0094 | 35.0 | 105 | 0.1235 | 1.0 | | 0.0103 | 36.0 | 108 | 0.1228 | 1.0 | | 0.0086 | 37.0 | 111 | 0.1231 | 1.0 | | 0.0094 | 38.0 | 114 | 0.1236 | 1.0 | | 0.0074 | 39.0 | 117 | 0.1240 | 1.0 | | 0.0085 | 40.0 | 120 | 0.1246 | 1.0 | | 0.0079 | 41.0 | 123 | 0.1253 | 1.0 | | 0.0088 | 42.0 | 126 | 0.1248 | 1.0 | | 0.0082 | 43.0 | 129 | 0.1244 | 1.0 | | 0.0082 | 44.0 | 132 | 0.1234 | 1.0 | | 0.0082 | 45.0 | 135 | 0.1223 | 1.0 | | 0.0071 | 46.0 | 138 | 0.1212 | 1.0 | | 0.0073 | 47.0 | 141 | 0.1208 | 1.0 | | 0.0081 | 48.0 | 144 | 0.1205 | 1.0 | | 0.0067 | 49.0 | 147 | 0.1202 | 1.0 | | 0.0077 | 50.0 | 150 | 0.1202 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.013517078943550587, 0.00803579855710268, -0.03762910142540932, 0.04531310126185417, 0.05014495551586151, 0.01615404337644577, -0.018238913267850876, -0.025744300335645676, -0.05224022641777992, 0.05998653173446655, 0.010927632451057434, -0.036682289093732834, 0.009975684806704521, 0.042748868465423584, -0.02373488061130047, -0.03342783451080322, -0.003146294504404068, -0.00989504624158144, -0.03575446084141731, 0.00017933167691808194, 0.0013341846643015742, -0.011629710905253887, -0.013314570300281048, 0.0054650683887302876, -0.006424104329198599, 0.01803983934223652, 0.004849831573665142, 0.02246578224003315, 0.032888345420360565, -0.06315911561250687, 0.015806550160050392, -0.0314449705183506, -0.05111505836248398, -0.018694113940000534, -0.011506563052535057, -0.015500123612582684, -0.000044536278437590227, 0.03258904069662094, 0.03909774497151375, 0.04934043064713478, 0.005797385238111019, 0.027356361970305443, 0.0013201404362916946, -0.009327558800578117, 0.05520462244749069, 0.010282485745847225, -0.02644088864326477, 0.0014175897231325507, 0.0397515669465065, -0.025266192853450775, -0.08142666518688202, -0.051640916615724564, -0.018113942816853523, 0.018613392487168312, -0.017864858731627464, -0.010634717531502247, -0.06075361743569374, 0.012598120607435703, 0.06414230167865753, -0.04771437123417854, -0.029210422188043594, -0.002257181331515312, -0.07163064926862717, 0.00634818896651268, 0.027583856135606766, -0.015307587571442127, 0.008138243108987808, -0.047666285187006, 0.03315368667244911, -0.01108595635741949, 0.06137115880846977, -0.020473292097449303, 0.014437524601817131, -0.06972991675138474, -0.0178831834346056, -0.003098506713286042, 0.046091899275779724, 0.062123704701662064, -0.03436799347400665, 0.04849334433674812, 0.027374064549803734, 0.0013253232464194298, 0.04318760707974434, -0.025611665099859238, 0.017015134915709496, 0.028186341747641563, -0.0436653308570385, -0.009390461258590221, 0.012010335922241211, 0.024137012660503387, -0.037459708750247955, -0.03713148459792137, -0.03288325294852257, -0.027253909036517143, -0.0058021885342895985, 0.019660666584968567, 0.028712205588817596, 0.01517616305500269, 0.0427684560418129, 0.019704556092619896, 0.025338277220726013, 0.04102431237697601, -0.02805611863732338, 0.07617343962192535, -0.009069796651601791, -0.003449975745752454, -0.010900037363171577, -0.018711643293499947, -0.049592338502407074, 0.023854447528719902, 0.03224058449268341, -0.019210679456591606, -0.016291869804263115, 0.03772880882024765, 0.004625281319022179, -0.00004809594975085929, 0.08179111033678055, -0.017177311703562737, -0.04253698140382767, -0.03523726388812065, 0.022198840975761414, 0.014844169840216637, -0.014095354825258255, 0.015703056007623672, -0.0489610880613327, -0.014967918395996094, -0.027700848877429962, -0.01854301244020462, -0.016730740666389465, 0.021131671965122223, 0.004137718118727207, 0.06675611436367035, 0.037022873759269714, -0.08432603627443314, 0.0007641373085789382, 0.012817978858947754, -0.05488789081573486, 0.05284499004483223, 0.026024430990219116, 0.11416126042604446, -0.058214280754327774, -0.06744637340307236, 0.014859922230243683, 0.0029641324654221535, -0.04341483488678932, 0.016666483134031296, 0.004546589683741331, -0.02580830827355385, 0.0031281413976103067, 0.004734895657747984, 0.06316131353378296, -0.042432770133018494, -0.00879781972616911, 0.07392953336238861, -0.002041881438344717, 0.04425835609436035, -0.05559321492910385, -0.029330667108297348, 0.014858201146125793, -0.020698005333542824, -0.032201722264289856, 0.04539291560649872, -0.03059033863246441, -0.017618652433156967, -0.01917346939444542, -0.02763644978404045, 0.010452418588101864, 0.07675811648368835, -0.0035831837449222803, -0.030321361497044563, -0.019782481715083122, 0.020954279229044914, 0.040248170495033264, 0.04514392092823982, -0.02892589196562767, 0.02412165328860283, 0.057841360569000244, 0.031073765829205513, -0.03152531757950783, 0.038133349269628525, 0.031789276748895645, -0.02443925477564335, -0.023872146382927895, 0.033478789031505585, 0.010906397365033627, -0.046716224402189255, 0.04004165157675743, 0.01390400156378746, 0.004293976817280054, -0.06567265093326569, -0.04059118777513504, 0.042084887623786926, -0.008083921857178211, -0.011349557898938656, 0.009425008669495583, 0.017105771228671074, -0.02061130665242672, 0.04198286682367325, -0.01454218104481697, 0.006444548722356558, -0.028146058320999146, -0.022036081179976463, 0.010604027658700943, -0.01699724607169628, 0.023882955312728882, 0.044340699911117554, -0.004537511616945267, 0.10231227427721024, -0.04124870151281357, 0.021257763728499413, -0.05902133509516716, -0.03660932555794716, 0.031618718057870865, 0.059700336307287216, 0.054505638778209686, 0.051173146814107895, 0.007035822607576847, -0.028847062960267067, 0.04327216371893883, 0.06932400912046432, 0.0411268025636673, -0.004466604441404343, -0.036018382757902145, -0.007906223647296429, 0.038198210299015045, 0.04903450980782509, -0.05052264779806137, -0.01350323110818863, 0.005681802984327078, 0.03270028531551361, -0.006245722994208336, 0.016446329653263092, -0.02150680311024189, 0.04097997024655342, -0.041736047714948654, -0.04964514076709747, 0.0380532406270504, 0.023239141330122948, -0.004229298327118158, 0.031111598014831543, 0.036026231944561005, 0.009425315074622631, 0.019826317206025124, 0.024070391431450844, 0.010677443817257881, -0.050696082413196564, 0.02023656666278839, -0.00017804311937652528, 0.057014793157577515, -0.05349551886320114, 0.031593166291713715, -0.02220851182937622, 0.02302515134215355, 0.048811767250299454, -0.028311187401413918, 0.035611528903245926, 0.05866296961903572, 0.022986996918916702, -0.037450019270181656, 0.028553348034620285, 0.006026101764291525, 0.038203902542591095, 0.03868655860424042, 0.010157852433621883, 0.06936195492744446, 0.01925083063542843, 0.0481095090508461, 0.07896562665700912, 0.01346889603883028, 0.037734806537628174, 0.01965314894914627, 0.06799762696027756, 0.013598540797829628, -0.01036889012902975, 0.05065960809588432, -0.04169619828462601, 0.029206322506070137, -0.05938603729009628, 0.003009396605193615, -0.020901544019579887, -0.005087434779852629, 0.05756070092320442, 0.025316307321190834, -0.030344512313604355, -0.009974326007068157, 0.015786759555339813, -0.014068701304495335, 0.02263822965323925, -0.0069648101925849915, 0.012559519149363041, -0.006927949842065573, -0.024014752358198166, -0.020654471591114998, -0.06873467564582825, -0.04708622768521309, -0.02376110665500164, -0.01492535974830389, -0.026049204170703888, -0.0921860858798027, -0.0034974433947354555, -0.08359042555093765, -0.018396589905023575, 0.029819313436746597, 0.009267485700547695, -0.023833030834794044, -0.037144191563129425, 0.027626750990748405, -0.047636933624744415, -0.029648564755916595, -0.04741419479250908, -0.06350940465927124, -0.05610602721571922, -0.08131593465805054, 0.04336624965071678, 0.03604622185230255, 0.006735638715326786, -0.0006400543497875333, 0.03125762939453125, 0.011807545088231564, -0.029980357736349106, 0.0332246795296669, 0.06216665357351303, -0.03684094548225403, -0.049488410353660583, 0.03518272191286087, -0.010176069103181362, 0.01308972854167223, 0.017846815288066864, -0.03030749037861824, 0.09284836798906326, 0.06942582875490189, 0.016189496964216232, 0.0274959746748209, -0.012514867819845676, -0.06588304042816162, -0.06637045741081238, -0.027738185599446297, -0.041430387645959854, -0.0046684290282428265, -0.04325051233172417, -0.040107809007167816, -0.037981413304805756, -0.040413402020931244, 0.013262803666293621, -0.014214366674423218, 0.028489332646131516, 0.024096857756376266, 0.036747634410858154, 0.026418622583150864, 0.045291800051927567, -0.028997423127293587, -0.028761571273207664, 0.05792751908302307, 0.010907920077443123, 0.009062135592103004, -0.08506050705909729, -0.002260207897052169, 0.02449621446430683, 0.02004602923989296, 0.02342565730214119, -0.0035201713908463717, 0.07640669494867325, -0.011606130748987198, 0.005555600393563509, 0.016136420890688896, -0.007256823591887951, -0.010178097523748875, -0.0021061564330011606, -0.0036200599279254675, 0.0038873779121786356, -0.026987042278051376, -0.03277350589632988, -0.011052954010665417, 0.030297776684165, -0.05768676847219467, -0.06011086329817772, -0.014761803671717644, 0.0352126769721508, 0.042445965111255646, -0.00779313500970602, -0.04452034831047058, -0.010009648278355598, -0.07211429625749588, -0.004944993648678064, 0.028655294328927994, 0.010886098258197308, -0.004012055229395628, 0.04003351181745529, 0.013321579433977604, -0.005192290060222149, 0.024994658306241035, 0.05381757393479347, 0.06825415045022964, 0.012438087724149227, -0.07807377725839615, -0.0011797853512689471, -0.01843278482556343, 0.013244322501122952, -0.01448039896786213, -0.01857435703277588, -0.02143196389079094, -0.09482542425394058, -0.015669839456677437, 0.010778029449284077, 0.006079037673771381, -0.0135700898244977, 0.043782953172922134, 0.0010931732831522822, -0.027048194780945778, 0.0027679805643856525, 0.01582666113972664, 0.04007231444120407, -0.03285188972949982, 0.048315033316612244, -0.028182340785861015, 0.0010616397485136986, -0.05933869257569313, 0.01679430529475212, -0.051231130957603455, -0.02901451662182808, 0.012487654574215412, 0.05273675173521042, -0.019039146602153778, 0.05300549417734146, 0.07497154176235199, 0.04595281928777695, -0.060422394424676895, 0.04034734517335892, 0.07713019102811813, -0.035682495683431625, -0.044449348002672195, -0.008288329467177391, -0.002023370936512947, -0.015682702884078026, -0.002400403842329979, -0.01155687216669321, 0.048652105033397675, 0.02584143914282322, 0.008344084955751896, 0.011761818081140518, -0.005957347806543112, -0.010379785671830177, -0.03232820704579353, -0.054304756224155426, -0.03371627628803253, 0.0009511608514003456, -0.02817535027861595, 0.015477027744054794, 0.030173853039741516, 0.036204636096954346, 0.07876745611429214, 0.02481316588819027, -0.04007132723927498, -0.010575924068689346, 0.0210738405585289, 0.014692666940391064, -0.01952076330780983, -0.07373862713575363, -0.043308746069669724, 0.02711687982082367, 0.04678560048341751, -0.02479551173746586, -0.0672079473733902, 0.017632335424423218, 0.049621641635894775, -0.05081024393439293, 0.052136849611997604, -0.010524958372116089, 0.05916830152273178, 0.05273173376917839, -0.009145687334239483, 0.039124131202697754, -0.020774150267243385, -0.010160869918763638, -0.00670703174546361, 0.04177827015519142, -0.013359409756958485, -0.03479098901152611, -0.05361410975456238, 0.02172498218715191, 0.03732934221625328, 0.031735971570014954, 0.04021894559264183, -0.034482091665267944, -0.04515056312084198, 0.012081426568329334, 0.026139214634895325, -0.042309585958719254, -0.0019506424432620406, 0.038989245891571045, 0.03515870124101639, -0.04901737719774246, -0.02308724634349346, -0.019478803500533104, -0.02146354876458645, 0.04222122207283974, 0.005322101525962353, -0.022348497062921524, -0.04667484015226364, 0.04058079048991203, -0.01855677366256714, -0.034369491040706635, -0.06876310706138611, 0.05180912837386131, -0.010476674884557724, -0.02293138951063156, 0.05959830433130264, 0.029414869844913483, 0.02106018178164959, 0.06529439985752106, 0.030288025736808777, 0.01740499772131443, -0.034503091126680374, 0.045893345028162, -0.03534823656082153, -0.018910322338342667, 0.005467772018164396, -0.0379321351647377, -0.036778710782527924, 0.001467150286771357, -0.06452468782663345, -0.031488969922065735, -0.024948719888925552, 0.018198730424046516, -0.0029581033159047365, -0.017401760444045067, -0.0040837619453668594, 0.0590774267911911, -0.009581285528838634, -0.04585648700594902, -0.043722230941057205, -0.01999281533062458, -0.05935803800821304, -0.04670285806059837, -0.004209583159536123, 0.009132631123065948, 0.03342544659972191, 0.030288090929389, 0.019597603008151054, 0.016731228679418564, 0.017550978809595108, -0.03940453752875328, 0.019219519570469856, 0.026140650734305382, -0.03670043498277664, -0.018352756276726723, 0.03632783144712448, 0.014424988999962807, 0.019404392689466476, -0.037300821393728256, 0.03255486488342285, 0.0057630380615592, -0.006308349315077066, -0.016996312886476517, 0.012914707884192467, 0.03319542109966278, -0.06704980134963989, -0.033403899520635605, -0.014514848589897156, -0.029398439452052116, 0.03202124685049057, -0.026788923889398575, -0.020828837528824806, 0.012112949043512344, -0.0013334871036931872, 0.03554169088602066, -0.02611657977104187, -0.01020908448845148, 0.029017824679613113, 0.006812088657170534, 0.021860890090465546, -0.0526636578142643, 0.06343144923448563, -0.037209153175354004, 0.019232608377933502, -0.02337281033396721, 0.011865777894854546, -0.02552640624344349, 0.023106805980205536, -0.018677884712815285, -0.02532140351831913, -0.003927372395992279, 0.059666234999895096, -0.013835379853844643, 0.035001467913389206, -0.01333780586719513, 0.03798774257302284, -0.025633135810494423, 0.0707239955663681, -0.043611906468868256, 0.020949186757206917, -0.03779834508895874, 0.024822715669870377, -0.020540347322821617, 0.018688932061195374, -0.006855873856693506, -0.016852015629410744, 0.033850330859422684, 0.05793256685137749, 0.025330839678645134, 0.03598380461335182, 0.0031629286240786314, -0.010843883268535137, 0.0066169267520308495, -0.04590507596731186, -0.024056758731603622, -0.007121566217392683, -0.0013851792318746448, -0.022249437868595123, 0.062375105917453766, 0.029384400695562363, -0.050334833562374115, -0.07609077543020248, 0.03697453811764717, 0.021977590397000313, 0.0043068393133580685, 0.004532587714493275, 0.0511159747838974, 0.03409327194094658, 0.03738461807370186, -0.020595433190464973, -0.010650783777236938, 0.004369563423097134, -0.05036332085728645, 0.02556331641972065, -0.008573845960199833, 0.022359581664204597, 0.011451893486082554, -0.037053149193525314, -0.022278273478150368, 0.054887235164642334, 0.022378064692020416, 0.027231965214014053, 0.0030093116220086813, -0.0387813001871109, 0.0341653935611248, 0.006516096647828817, -0.038369983434677124, 0.023896751925349236, 0.01127319224178791, -0.02208106592297554, 0.03787894919514656, -0.0105059165507555, 0.012279589660465717, 0.062240246683359146, 0.018464211374521255, -0.017178189009428024, 0.06949757784605026, -0.0410282239317894, 0.012235012836754322, 0.03664237633347511, -0.07469186186790466, -0.012900033965706825, -0.052462007850408554, 0.0569688156247139, -0.06392767280340195, 0.0226567555218935, 0.05900173634290695, -0.0017324899090453982, 0.031079912558197975, -0.04605402797460556, -0.06036357209086418, 0.022965896874666214, -0.034964051097631454, 0.06381972879171371, 0.01702161505818367, -0.05044097453355789, 0.054850492626428604, 0.017577392980456352, -0.0541827566921711, 0.037368327379226685, 0.028254589065909386, 0.05542118474841118, 0.029648784548044205, 0.04934431612491608, -0.046038780361413956, -0.0021083431784063578, -0.036788634955883026, 0.023900173604488373, -0.05337822437286377, -0.013309226371347904, 0.03389061614871025, -0.03850485384464264, -0.02179301343858242, 0.03037882409989834, -0.018069477751851082, -0.015429439023137093, 0.05831754952669144, -0.05111033096909523, -0.04140806943178177, 0.013922006823122501, 0.021680256351828575, -0.046333443373441696, -0.011604869738221169, -0.03257181495428085, 0.00891651026904583, 0.012172866612672806, -0.00035235699033364654, -0.025964440777897835, -0.02038537710905075, 0.027690643444657326, -0.03903060033917427, -0.02831258252263069, 0.024960119277238846, -0.010006573982536793, -0.023824717849493027, 0.03681312873959541, 0.010925890877842903, 0.012472330592572689, 0.02966870367527008, -0.018656335771083832, 0.023239001631736755, -0.04497456178069115, -0.016300596296787262, 0.037963006645441055, -0.009055224247276783, 0.018966516479849815, 0.007402285002171993, 0.032438673079013824, 0.043496739119291306, 0.029073433950543404, -0.00281071150675416, -0.036319050937891006, -0.03287373483181, 0.019846951588988304, -0.03759855777025223, 0.0071135335601866245, -0.0001576955255586654, -0.04349121078848839, -0.026362599804997444, 0.00003330513209220953, -0.03609286993741989, 0.045986078679561615, -0.06543097645044327, 0.0045525380410254, 0.04146166518330574, -0.018251273781061172, -0.05936615169048309, -0.10992942750453949, -0.0138026662170887, -0.05254901200532913, -0.015173017978668213, 0.04917774721980095, -0.03615768253803253, 0.04724560305476189, -0.051180388778448105, -0.040232494473457336, 0.03796609118580818, 0.04644958674907684, -0.061158135533332825, 0.05820782855153084, 0.040451209992170334, -0.04809154197573662, 0.011110946536064148, 0.019286753609776497, -0.05675099417567253, 0.005295165348798037, 0.015383750200271606, -0.002975097857415676, 0.02541811391711235, 0.013665879145264626, -0.0572984553873539, -0.022425001487135887, -0.06498061865568161, -0.03284796327352524, -0.04839564114809036, 0.010118749924004078, 0.04798020422458649 ]
Denilson/gbert-base-germaner
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-2 results: [] --- <!-- 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__subj__train-8-2 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.3081 - Accuracy: 0.8755 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7146 | 1.0 | 3 | 0.6798 | 0.75 | | 0.6737 | 2.0 | 6 | 0.6847 | 0.75 | | 0.6519 | 3.0 | 9 | 0.6783 | 0.75 | | 0.6105 | 4.0 | 12 | 0.6812 | 0.25 | | 0.5463 | 5.0 | 15 | 0.6869 | 0.25 | | 0.4922 | 6.0 | 18 | 0.6837 | 0.5 | | 0.4543 | 7.0 | 21 | 0.6716 | 0.5 | | 0.3856 | 8.0 | 24 | 0.6613 | 0.75 | | 0.3475 | 9.0 | 27 | 0.6282 | 0.75 | | 0.2717 | 10.0 | 30 | 0.6045 | 0.75 | | 0.2347 | 11.0 | 33 | 0.5620 | 0.75 | | 0.1979 | 12.0 | 36 | 0.5234 | 1.0 | | 0.1535 | 13.0 | 39 | 0.4771 | 1.0 | | 0.1332 | 14.0 | 42 | 0.4277 | 1.0 | | 0.1041 | 15.0 | 45 | 0.3785 | 1.0 | | 0.082 | 16.0 | 48 | 0.3318 | 1.0 | | 0.0672 | 17.0 | 51 | 0.2885 | 1.0 | | 0.0538 | 18.0 | 54 | 0.2568 | 1.0 | | 0.0412 | 19.0 | 57 | 0.2356 | 1.0 | | 0.0361 | 20.0 | 60 | 0.2217 | 1.0 | | 0.0303 | 21.0 | 63 | 0.2125 | 1.0 | | 0.0268 | 22.0 | 66 | 0.2060 | 1.0 | | 0.0229 | 23.0 | 69 | 0.2015 | 1.0 | | 0.0215 | 24.0 | 72 | 0.1989 | 1.0 | | 0.0211 | 25.0 | 75 | 0.1969 | 1.0 | | 0.0172 | 26.0 | 78 | 0.1953 | 1.0 | | 0.0165 | 27.0 | 81 | 0.1935 | 1.0 | | 0.0132 | 28.0 | 84 | 0.1923 | 1.0 | | 0.0146 | 29.0 | 87 | 0.1914 | 1.0 | | 0.0125 | 30.0 | 90 | 0.1904 | 1.0 | | 0.0119 | 31.0 | 93 | 0.1897 | 1.0 | | 0.0122 | 32.0 | 96 | 0.1886 | 1.0 | | 0.0118 | 33.0 | 99 | 0.1875 | 1.0 | | 0.0097 | 34.0 | 102 | 0.1866 | 1.0 | | 0.0111 | 35.0 | 105 | 0.1861 | 1.0 | | 0.0111 | 36.0 | 108 | 0.1855 | 1.0 | | 0.0102 | 37.0 | 111 | 0.1851 | 1.0 | | 0.0109 | 38.0 | 114 | 0.1851 | 1.0 | | 0.0085 | 39.0 | 117 | 0.1854 | 1.0 | | 0.0089 | 40.0 | 120 | 0.1855 | 1.0 | | 0.0092 | 41.0 | 123 | 0.1863 | 1.0 | | 0.0105 | 42.0 | 126 | 0.1868 | 1.0 | | 0.0089 | 43.0 | 129 | 0.1874 | 1.0 | | 0.0091 | 44.0 | 132 | 0.1877 | 1.0 | | 0.0096 | 45.0 | 135 | 0.1881 | 1.0 | | 0.0081 | 46.0 | 138 | 0.1881 | 1.0 | | 0.0086 | 47.0 | 141 | 0.1883 | 1.0 | | 0.009 | 48.0 | 144 | 0.1884 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012690913863480091, 0.005783121567219496, -0.034932684153318405, 0.046733248978853226, 0.051736295223236084, 0.01613248884677887, -0.018445897847414017, -0.02621304988861084, -0.050869908183813095, 0.05810995772480965, 0.011172612197697163, -0.03387206792831421, 0.00701052276417613, 0.04419519007205963, -0.027159586548805237, -0.03444811329245567, -0.002094856696203351, -0.007602396886795759, -0.03454053774476051, -0.0020785953383892775, 0.0011282369960099459, -0.010373326018452644, -0.013486945070326328, 0.007697765249758959, -0.005391564220190048, 0.016404544934630394, 0.004442455247044563, 0.023990806192159653, 0.02919819764792919, -0.06402695178985596, 0.017058109864592552, -0.03197520971298218, -0.050043072551488876, -0.01829911582171917, -0.011736096814274788, -0.016590900719165802, -0.001506324508227408, 0.034681402146816254, 0.040709398686885834, 0.04811380058526993, 0.004950132220983505, 0.02915920317173004, -0.002235331106930971, -0.009723306633532047, 0.05409321188926697, 0.011217407882213593, -0.02451072260737419, -0.00024778503575362265, 0.038922958076000214, -0.025447815656661987, -0.08240527659654617, -0.05237717181444168, -0.015386024489998817, 0.01611202582716942, -0.016149839386343956, -0.009013203904032707, -0.060205258429050446, 0.012689829804003239, 0.06463570892810822, -0.048304907977581024, -0.02728501707315445, -0.00532775791361928, -0.0703214555978775, 0.006848879158496857, 0.028291452676057816, -0.016561591997742653, 0.008271229453384876, -0.045850519090890884, 0.03273649141192436, -0.010545328259468079, 0.06479521840810776, -0.020357025787234306, 0.015377349220216274, -0.07115670293569565, -0.017769012600183487, -0.0017743153730407357, 0.047175634652376175, 0.06355320662260056, -0.03620609641075134, 0.04929923638701439, 0.027343453839421272, 0.002993395086377859, 0.04274260997772217, -0.025017691776156425, 0.01979408971965313, 0.028544092550873756, -0.04367204010486603, -0.009793739765882492, 0.010883673094213009, 0.024395039305090904, -0.0360291488468647, -0.036564022302627563, -0.03465544059872627, -0.025386527180671692, -0.005831283982843161, 0.021171096712350845, 0.029058760032057762, 0.013347802683711052, 0.04249327629804611, 0.022285792976617813, 0.02415594272315502, 0.03984176367521286, -0.03179735317826271, 0.07898306101560593, -0.006151732988655567, -0.000904129643458873, -0.011879351921379566, -0.017730729654431343, -0.049918368458747864, 0.0255472119897604, 0.03327951580286026, -0.019951973110437393, -0.016448328271508217, 0.03793177381157875, 0.004628296941518784, -0.0012557137524709105, 0.08326467871665955, -0.016230344772338867, -0.044253431260585785, -0.03648403286933899, 0.023795111104846, 0.014101384207606316, -0.016894860193133354, 0.017699718475341797, -0.05118256062269211, -0.015375939197838306, -0.026143278926610947, -0.017873084172606468, -0.015039792284369469, 0.01977614313364029, 0.0004041407082695514, 0.06727933138608932, 0.037432294338941574, -0.08511976897716522, -0.000037005818739999086, 0.015069879591464996, -0.05797761678695679, 0.052572332322597504, 0.025827741250395775, 0.11483604460954666, -0.059098824858665466, -0.06538758426904678, 0.013389208354055882, 0.001642377581447363, -0.04475570097565651, 0.016521107405424118, 0.006684662774205208, -0.027314672246575356, 0.004510574974119663, 0.002542936010286212, 0.0653921440243721, -0.04770737886428833, -0.008884422481060028, 0.07423234730958939, -0.004724745638668537, 0.04442764073610306, -0.055291321128606796, -0.027967404574155807, 0.013452739454805851, -0.021048786118626595, -0.030020542442798615, 0.04663638398051262, -0.027822650969028473, -0.016653988510370255, -0.021865058690309525, -0.02729969471693039, 0.010212897323071957, 0.07922998815774918, -0.0030515415128320456, -0.031016578897833824, -0.01937316358089447, 0.021442960947752, 0.04107116162776947, 0.04496190324425697, -0.029177775606513023, 0.024394959211349487, 0.05755306035280228, 0.031644515693187714, -0.03049159049987793, 0.03835243731737137, 0.03247096389532089, -0.025928134098649025, -0.025018177926540375, 0.03400979936122894, 0.013048170134425163, -0.0473816953599453, 0.0384051688015461, 0.013174312189221382, 0.004260558169335127, -0.06276195496320724, -0.03963371366262436, 0.0433044508099556, -0.0090670520439744, -0.013223135843873024, 0.009797298349440098, 0.014795433729887009, -0.021290283650159836, 0.04174347594380379, -0.015110171400010586, 0.004379681311547756, -0.030519364401698112, -0.019295640289783478, 0.008956672623753548, -0.017256317660212517, 0.023878954350948334, 0.04300599545240402, -0.00580498157069087, 0.10306623578071594, -0.040139924734830856, 0.02337530069053173, -0.05796103551983833, -0.037902794778347015, 0.028584852814674377, 0.05989683419466019, 0.05350309982895851, 0.05107467249035835, 0.008203329518437386, -0.030369693413376808, 0.043550360947847366, 0.06815876066684723, 0.04282853752374649, -0.0011068299645558, -0.03650827705860138, -0.008376381359994411, 0.03420708701014519, 0.048460453748703, -0.0484912283718586, -0.015925312414765358, 0.00532079441472888, 0.03558690845966339, -0.008075080811977386, 0.017047632485628128, -0.021283963695168495, 0.04059406742453575, -0.0402274988591671, -0.05034441873431206, 0.03381502255797386, 0.02257080189883709, -0.004578688181936741, 0.03124956414103508, 0.03547830134630203, 0.010424653068184853, 0.01723097451031208, 0.023097053170204163, 0.009925447404384613, -0.053077179938554764, 0.019387006759643555, 0.0012928220676258206, 0.05671397224068642, -0.053796060383319855, 0.03202126920223236, -0.022491397336125374, 0.02249385416507721, 0.04893593117594719, -0.027497246861457825, 0.037287283688783646, 0.05863064154982567, 0.020710095763206482, -0.03728922829031944, 0.026418505236506462, 0.006839977577328682, 0.037766728550195694, 0.03761766105890274, 0.011050875298678875, 0.07227513194084167, 0.01814296282827854, 0.05127551034092903, 0.07610926032066345, 0.014602653682231903, 0.03624599426984787, 0.022492025047540665, 0.06672025471925735, 0.013948253355920315, -0.012308173812925816, 0.04958491027355194, -0.042206112295389175, 0.030933519825339317, -0.061273109167814255, 0.00410452950745821, -0.02074619196355343, -0.006523618474602699, 0.05714399740099907, 0.02554124966263771, -0.026971617713570595, -0.007221265230327845, 0.01397838443517685, -0.01634570211172104, 0.022472910583019257, -0.006857180502265692, 0.014445899054408073, -0.006824682001024485, -0.024252718314528465, -0.022178079932928085, -0.06893280148506165, -0.047559503465890884, -0.02184988558292389, -0.015949947759509087, -0.02475685253739357, -0.08906442672014236, -0.004846405703574419, -0.085087351500988, -0.017794718965888023, 0.030064769089221954, 0.008737768046557903, -0.02209370769560337, -0.03554700314998627, 0.030054088681936264, -0.04716534912586212, -0.027585048228502274, -0.04627597704529762, -0.06287828087806702, -0.055023010820150375, -0.0814761221408844, 0.042607631534338, 0.036393433809280396, 0.006354980636388063, 0.0009243706590496004, 0.03240993991494179, 0.012443697080016136, -0.031736720353364944, 0.036261238157749176, 0.060627542436122894, -0.038394201546907425, -0.04829833656549454, 0.03698590770363808, -0.011332946829497814, 0.013314969837665558, 0.01580127701163292, -0.029889311641454697, 0.090741828083992, 0.06670568883419037, 0.01655721478164196, 0.029060158878564835, -0.01104284729808569, -0.06515125930309296, -0.06770660728216171, -0.02866079844534397, -0.04170578345656395, -0.0033087751362472773, -0.0455925315618515, -0.03834451735019684, -0.03662523627281189, -0.04324162006378174, 0.011977658607065678, -0.014804117381572723, 0.02589789591729641, 0.026800505816936493, 0.03534626588225365, 0.025079568848013878, 0.04505814611911774, -0.02949773147702217, -0.02479379065334797, 0.056104570627212524, 0.00971171073615551, 0.009215242229402065, -0.08516766130924225, -0.001192388590425253, 0.023784251883625984, 0.022255929186940193, 0.023232445120811462, -0.0022280977573245764, 0.0759856179356575, -0.011067311279475689, 0.007821210660040379, 0.016666211187839508, -0.007966544479131699, -0.00773561280220747, -0.0030558330472558737, -0.0018623440992087126, 0.004112005699425936, -0.027174990624189377, -0.03227680176496506, -0.01152380183339119, 0.028217004612088203, -0.058211371302604675, -0.059685613960027695, -0.010677056387066841, 0.034882985055446625, 0.04253707826137543, -0.00819334201514721, -0.04352567344903946, -0.011557512916624546, -0.07035001367330551, -0.0054360986687242985, 0.023590827360749245, 0.009319409728050232, -0.00688457814976573, 0.04075491055846214, 0.015273629687726498, -0.006180841941386461, 0.026406243443489075, 0.05298499017953873, 0.06723973155021667, 0.014242804609239101, -0.0760042816400528, -0.0017172968946397305, -0.017661556601524353, 0.014700331725180149, -0.013871130533516407, -0.018980812281370163, -0.02313312329351902, -0.09390298277139664, -0.014310112223029137, 0.009208939038217068, 0.005736622028052807, -0.012592929415404797, 0.04485892876982689, -0.00045755162136629224, -0.02488148771226406, 0.0027808693703264, 0.017486991360783577, 0.04045465588569641, -0.03079719841480255, 0.047016698867082596, -0.02742188610136509, 0.001990867778658867, -0.059824831783771515, 0.013513249345123768, -0.053689949214458466, -0.030618367716670036, 0.010620019398629665, 0.05394871532917023, -0.017786085605621338, 0.05253886803984642, 0.07619736343622208, 0.044939324259757996, -0.06074213981628418, 0.04101070389151573, 0.0764666423201561, -0.035224758088588715, -0.044998832046985626, -0.010209644213318825, -0.0015406712191179395, -0.017621561884880066, -0.00281725637614727, -0.011749867349863052, 0.04845628887414932, 0.026861293241381645, 0.005704060662537813, 0.01261858269572258, -0.006376173812896013, -0.010904076509177685, -0.03362632915377617, -0.05309009552001953, -0.03377876430749893, 0.0014110396150499582, -0.026722431182861328, 0.01355722825974226, 0.027941664680838585, 0.036723360419273376, 0.08014839887619019, 0.025881674140691757, -0.039597220718860626, -0.01506882905960083, 0.02128628082573414, 0.01635538600385189, -0.018404757604002953, -0.07272586971521378, -0.042297836393117905, 0.03015277162194252, 0.04322981461882591, -0.02531559206545353, -0.06893003731966019, 0.020186617970466614, 0.04891252890229225, -0.05090434104204178, 0.05260630324482918, -0.0115021588280797, 0.05582228675484657, 0.05150319263339043, -0.00817585363984108, 0.03748846426606178, -0.020683420822024345, -0.010936609469354153, -0.0023479871451854706, 0.04110255464911461, -0.015962844714522362, -0.036791231483221054, -0.05510053038597107, 0.024148577824234962, 0.03727100417017937, 0.029824383556842804, 0.038490474224090576, -0.03383916988968849, -0.043771516531705856, 0.01211603544652462, 0.026138456538319588, -0.042229216545820236, -0.0017091430490836501, 0.04131787642836571, 0.034068502485752106, -0.04839049279689789, -0.024235064163804054, -0.020952532067894936, -0.020085113123059273, 0.045165978372097015, 0.005434415768831968, -0.022797206416726112, -0.04708074405789375, 0.03944230452179909, -0.01771080121397972, -0.03291734680533409, -0.06983444094657898, 0.0535898357629776, -0.010484402999281883, -0.023575756698846817, 0.06060835346579552, 0.027104955166578293, 0.021682649850845337, 0.06492230296134949, 0.03026321716606617, 0.019617337733507156, -0.034853387624025345, 0.045540060847997665, -0.03493201360106468, -0.019817207008600235, 0.005261618178337812, -0.03947215899825096, -0.038184020668268204, 0.004208844155073166, -0.06084097921848297, -0.032364118844270706, -0.026721710339188576, 0.017729192972183228, -0.00503120431676507, -0.015660129487514496, -0.004400021396577358, 0.05913546681404114, -0.007459673099219799, -0.047449443489313126, -0.04267522692680359, -0.02089652046561241, -0.05818760395050049, -0.04481922462582588, -0.0022542860824614763, 0.007220648694783449, 0.03389011323451996, 0.02957497164607048, 0.020403509959578514, 0.016531581059098244, 0.015192956663668156, -0.04333317279815674, 0.020211586728692055, 0.027511510998010635, -0.03428340703248978, -0.018849844112992287, 0.038631610572338104, 0.014257972128689289, 0.01920725777745247, -0.036313798278570175, 0.03234809264540672, 0.004522097762674093, -0.00749767292290926, -0.016843663528561592, 0.012605534866452217, 0.03461020067334175, -0.06699995696544647, -0.032362859696149826, -0.01654049940407276, -0.028858765959739685, 0.033921029418706894, -0.02606748417019844, -0.020644536241889, 0.011819284409284592, -0.002219391753897071, 0.03585715964436531, -0.023105645552277565, -0.010958297178149223, 0.03158118575811386, 0.005517865531146526, 0.02205749601125717, -0.05414891242980957, 0.0631970539689064, -0.036107052117586136, 0.01996213011443615, -0.024044036865234375, 0.012061920017004013, -0.026674168184399605, 0.022170037031173706, -0.01905004493892193, -0.02417074516415596, -0.0040673124603927135, 0.05891494080424309, -0.012598743662238121, 0.03459114208817482, -0.012218205258250237, 0.03692762181162834, -0.02432461827993393, 0.07020021229982376, -0.043396979570388794, 0.020860856398940086, -0.03915383666753769, 0.026176195591688156, -0.019725246354937553, 0.019460391253232956, -0.007556014694273472, -0.017594436183571815, 0.03468718379735947, 0.05556115135550499, 0.02386738732457161, 0.03372195363044739, 0.0006291504832915962, -0.008941901847720146, 0.009609311819076538, -0.04511526972055435, -0.02341676503419876, -0.007561922073364258, -0.0005659858579747379, -0.02313699573278427, 0.064543217420578, 0.029114393517374992, -0.04994140565395355, -0.07348925620317459, 0.03811829909682274, 0.022761467844247818, 0.006062319967895746, 0.003658443922176957, 0.04937250167131424, 0.03403008356690407, 0.03757966309785843, -0.02145170047879219, -0.01084529235959053, 0.004324444569647312, -0.04858610779047012, 0.027091864496469498, -0.00869323592633009, 0.020220130681991577, 0.009382017888128757, -0.03871498256921768, -0.02379303239285946, 0.05374988913536072, 0.021993638947606087, 0.02693670615553856, 0.0031564021483063698, -0.040035370737314224, 0.03290669620037079, 0.006083694286644459, -0.03783123195171356, 0.02294773794710636, 0.01066158153116703, -0.02281198278069496, 0.03499038890004158, -0.0137663334608078, 0.01049464289098978, 0.06072326377034187, 0.020836522802710533, -0.016829758882522583, 0.07074552029371262, -0.04082202911376953, 0.013609690591692924, 0.03655655309557915, -0.07506868988275528, -0.011909284628927708, -0.05125536397099495, 0.05619657412171364, -0.0649903267621994, 0.02316792868077755, 0.05929112434387207, -0.0005526400054804981, 0.030545612797141075, -0.04562876373529434, -0.06237747147679329, 0.0210389643907547, -0.03301125764846802, 0.06495828926563263, 0.016599241644144058, -0.05058090016245842, 0.05601993948221207, 0.01718158833682537, -0.05177871137857437, 0.03746414929628372, 0.027453484013676643, 0.05447052791714668, 0.027005745097994804, 0.049232710152864456, -0.04806229844689369, -0.0007576904608868062, -0.03775127977132797, 0.02352183870971203, -0.05579608306288719, -0.014253826811909676, 0.035427697002887726, -0.03837593272328377, -0.022067202255129814, 0.030861228704452515, -0.019312331452965736, -0.015331742353737354, 0.0593152716755867, -0.05196233093738556, -0.041796233505010605, 0.01406425703316927, 0.021480098366737366, -0.04786814749240875, -0.01208252739161253, -0.03382718190550804, 0.007070270832628012, 0.01239361334592104, 0.0013847977388650179, -0.0253626499325037, -0.01847863756120205, 0.027305200695991516, -0.03655567765235901, -0.028540294617414474, 0.023300064727663994, -0.009304061532020569, -0.024061737582087517, 0.03699277713894844, 0.010105131193995476, 0.01155031006783247, 0.031622324138879776, -0.017760101705789566, 0.024961551651358604, -0.04490715637803078, -0.014461014419794083, 0.03808215260505676, -0.010182607918977737, 0.01948084682226181, 0.0064741140231490135, 0.030324727296829224, 0.04192931577563286, 0.029899269342422485, -0.003457398619502783, -0.03536123409867287, -0.031477417796850204, 0.020231418311595917, -0.03732038661837578, 0.0078777140006423, -0.0016258338000625372, -0.04365333542227745, -0.027008023113012314, -0.0003494861302897334, -0.033397872000932693, 0.04720018804073334, -0.06482424587011337, 0.0024791189935058355, 0.03985726088285446, -0.0174274779856205, -0.0617205910384655, -0.10844548791646957, -0.01200797688215971, -0.05177827179431915, -0.0135196503251791, 0.04921625927090645, -0.035339850932359695, 0.04738400876522064, -0.05110897123813629, -0.04388083517551422, 0.039133816957473755, 0.045248035341501236, -0.06251780688762665, 0.060503169894218445, 0.044403668493032455, -0.04625830054283142, 0.008806392550468445, 0.019095655530691147, -0.05911374092102051, 0.0064071062952280045, 0.017238624393939972, 0.002460161689668894, 0.024050256237387657, 0.016210544854402542, -0.05665689334273338, -0.024363229051232338, -0.06393960863351822, -0.03301228582859039, -0.050674013793468475, 0.009654175490140915, 0.04729655012488365 ]
Deniskin/emailer_medium_300
[ "pytorch", "gpt2", "text-generation", "transformers" ]
text-generation
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
14
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-3 results: [] --- <!-- 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__subj__train-8-3 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.3496 - Accuracy: 0.859 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7136 | 1.0 | 3 | 0.6875 | 0.75 | | 0.6702 | 2.0 | 6 | 0.6824 | 0.75 | | 0.6456 | 3.0 | 9 | 0.6687 | 0.75 | | 0.5934 | 4.0 | 12 | 0.6564 | 0.75 | | 0.537 | 5.0 | 15 | 0.6428 | 0.75 | | 0.4812 | 6.0 | 18 | 0.6180 | 0.75 | | 0.4279 | 7.0 | 21 | 0.5864 | 0.75 | | 0.3608 | 8.0 | 24 | 0.5540 | 0.75 | | 0.3076 | 9.0 | 27 | 0.5012 | 1.0 | | 0.2292 | 10.0 | 30 | 0.4497 | 1.0 | | 0.1991 | 11.0 | 33 | 0.3945 | 1.0 | | 0.1495 | 12.0 | 36 | 0.3483 | 1.0 | | 0.1176 | 13.0 | 39 | 0.3061 | 1.0 | | 0.0947 | 14.0 | 42 | 0.2683 | 1.0 | | 0.0761 | 15.0 | 45 | 0.2295 | 1.0 | | 0.0584 | 16.0 | 48 | 0.1996 | 1.0 | | 0.0451 | 17.0 | 51 | 0.1739 | 1.0 | | 0.0387 | 18.0 | 54 | 0.1521 | 1.0 | | 0.0272 | 19.0 | 57 | 0.1333 | 1.0 | | 0.0247 | 20.0 | 60 | 0.1171 | 1.0 | | 0.0243 | 21.0 | 63 | 0.1044 | 1.0 | | 0.0206 | 22.0 | 66 | 0.0943 | 1.0 | | 0.0175 | 23.0 | 69 | 0.0859 | 1.0 | | 0.0169 | 24.0 | 72 | 0.0799 | 1.0 | | 0.0162 | 25.0 | 75 | 0.0746 | 1.0 | | 0.0137 | 26.0 | 78 | 0.0705 | 1.0 | | 0.0141 | 27.0 | 81 | 0.0674 | 1.0 | | 0.0107 | 28.0 | 84 | 0.0654 | 1.0 | | 0.0117 | 29.0 | 87 | 0.0634 | 1.0 | | 0.0113 | 30.0 | 90 | 0.0617 | 1.0 | | 0.0107 | 31.0 | 93 | 0.0599 | 1.0 | | 0.0106 | 32.0 | 96 | 0.0585 | 1.0 | | 0.0101 | 33.0 | 99 | 0.0568 | 1.0 | | 0.0084 | 34.0 | 102 | 0.0553 | 1.0 | | 0.0101 | 35.0 | 105 | 0.0539 | 1.0 | | 0.0102 | 36.0 | 108 | 0.0529 | 1.0 | | 0.009 | 37.0 | 111 | 0.0520 | 1.0 | | 0.0092 | 38.0 | 114 | 0.0511 | 1.0 | | 0.0073 | 39.0 | 117 | 0.0504 | 1.0 | | 0.0081 | 40.0 | 120 | 0.0497 | 1.0 | | 0.0079 | 41.0 | 123 | 0.0492 | 1.0 | | 0.0092 | 42.0 | 126 | 0.0488 | 1.0 | | 0.008 | 43.0 | 129 | 0.0483 | 1.0 | | 0.0087 | 44.0 | 132 | 0.0479 | 1.0 | | 0.009 | 45.0 | 135 | 0.0474 | 1.0 | | 0.0076 | 46.0 | 138 | 0.0470 | 1.0 | | 0.0075 | 47.0 | 141 | 0.0467 | 1.0 | | 0.008 | 48.0 | 144 | 0.0465 | 1.0 | | 0.0069 | 49.0 | 147 | 0.0464 | 1.0 | | 0.0077 | 50.0 | 150 | 0.0464 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014166310429573059, 0.005501443054527044, -0.03922983631491661, 0.044674456119537354, 0.05135652795433998, 0.018258823081851006, -0.017847787588834763, -0.02732650749385357, -0.051409244537353516, 0.06061355397105217, 0.011690722778439522, -0.037838369607925415, 0.007809715811163187, 0.04120030999183655, -0.024289695546030998, -0.03299480676651001, -0.0005947180907242, -0.009280238300561905, -0.031835343688726425, -0.0000644366882625036, 0.0013472894206643105, -0.008504326455295086, -0.012101239524781704, 0.00601420272141695, -0.008554314263164997, 0.017735235393047333, 0.0006574655999429524, 0.025845428928732872, 0.03185766562819481, -0.06420937925577164, 0.01742500253021717, -0.03285438194870949, -0.05305292829871178, -0.019422663375735283, -0.011776803992688656, -0.016997549682855606, 0.003185317385941744, 0.032987311482429504, 0.03523005172610283, 0.05137140676379204, 0.004011869430541992, 0.029181502759456635, 0.005754085723310709, -0.011266265995800495, 0.05272702872753143, 0.009233813732862473, -0.028328802436590195, 0.003325277240946889, 0.04091842472553253, -0.025718197226524353, -0.08053495734930038, -0.05176573991775513, -0.014938969165086746, 0.01926715113222599, -0.018119603395462036, -0.01050538569688797, -0.0585472472012043, 0.009229106828570366, 0.06346029043197632, -0.04737859219312668, -0.028690548613667488, -0.0009924336336553097, -0.06861023604869843, 0.007062731310725212, 0.025274010375142097, -0.016709866002202034, 0.008626377210021019, -0.048326361924409866, 0.03470101207494736, -0.011585365980863571, 0.0630926638841629, -0.02048814855515957, 0.014171567745506763, -0.07099099457263947, -0.017868105322122574, -0.002996973693370819, 0.046295057982206345, 0.06511897593736649, -0.03579152747988701, 0.04932344704866409, 0.025487083941698074, 0.0010286369360983372, 0.04331726208329201, -0.027538832277059555, 0.01976938359439373, 0.029221294447779655, -0.041311390697956085, -0.009937546215951443, 0.013765986077487469, 0.025032851845026016, -0.03336318954825401, -0.03435464948415756, -0.032885707914829254, -0.025758039206266403, -0.00489615136757493, 0.019869979470968246, 0.028775889426469803, 0.015526375733315945, 0.042876698076725006, 0.019543718546628952, 0.02161513827741146, 0.03936352953314781, -0.032077208161354065, 0.07703513652086258, -0.007747966330498457, -0.00022438184532802552, -0.008001269772648811, -0.016459638252854347, -0.047307826578617096, 0.024417715147137642, 0.03243619576096535, -0.020039042457938194, -0.019718945026397705, 0.03883197903633118, 0.007413007318973541, -0.0022332840599119663, 0.08118859678506851, -0.01671767793595791, -0.04317111894488335, -0.0359598733484745, 0.0217327531427145, 0.01403980702161789, -0.01425038930028677, 0.013713551685214043, -0.04850180447101593, -0.015364110469818115, -0.027415120974183083, -0.02095663733780384, -0.01881490834057331, 0.016445865854620934, 0.0036726645193994045, 0.06776366382837296, 0.035577885806560516, -0.08357119560241699, 0.0008701522019691765, 0.011182684451341629, -0.05490085110068321, 0.05260682478547096, 0.02516053430736065, 0.11955025047063828, -0.05882098525762558, -0.06925196945667267, 0.012596999295055866, 0.0025759402196854353, -0.04375892132520676, 0.018672926351428032, 0.00624098302796483, -0.026009878143668175, 0.0045280479826033115, 0.002956622978672385, 0.06404776871204376, -0.04480479657649994, -0.008944615721702576, 0.07325497269630432, -0.0019160599913448095, 0.040922798216342926, -0.05522143095731735, -0.02766500413417816, 0.014240048825740814, -0.02543153241276741, -0.031108343973755836, 0.047423843294382095, -0.031169624999165535, -0.017765721306204796, -0.021113857626914978, -0.028645336627960205, 0.011688146740198135, 0.07479459047317505, -0.0030236828606575727, -0.030289987102150917, -0.019901717081665993, 0.022749708965420723, 0.03891269862651825, 0.0428486131131649, -0.028372691944241524, 0.026247255504131317, 0.05788961425423622, 0.02820408344268799, -0.03364691883325577, 0.037513989955186844, 0.03227679058909416, -0.026766179129481316, -0.023631490767002106, 0.032800570130348206, 0.010186946950852871, -0.044987138360738754, 0.03991204872727394, 0.013105555437505245, 0.003973941318690777, -0.0665670856833458, -0.043082986027002335, 0.04120437800884247, -0.005703652277588844, -0.010628032498061657, 0.011495254933834076, 0.017442872747778893, -0.020839335396885872, 0.04094399884343147, -0.015740280970931053, 0.0037351062055677176, -0.03238159418106079, -0.020094236359000206, 0.010434972122311592, -0.01749407686293125, 0.023464296013116837, 0.04445546120405197, -0.005695973057299852, 0.101782888174057, -0.04160216823220253, 0.02545412816107273, -0.057128164917230606, -0.03916002810001373, 0.03415169566869736, 0.06138650327920914, 0.053295280784368515, 0.051582712680101395, 0.0046531702391803265, -0.030423598363995552, 0.042032595723867416, 0.06871005147695541, 0.043168239295482635, -0.003647861536592245, -0.03564121201634407, -0.006991789676249027, 0.03797812759876251, 0.04744340479373932, -0.051937006413936615, -0.015791190788149834, 0.0076851327903568745, 0.033793993294239044, -0.0058823819272220135, 0.019942570477724075, -0.021805990487337112, 0.042374301701784134, -0.042517613619565964, -0.05200142040848732, 0.036495141685009, 0.023940078914165497, -0.004486178979277611, 0.030134590342640877, 0.03391031548380852, 0.012038156390190125, 0.02008039504289627, 0.024103689938783646, 0.008372086100280285, -0.05326652526855469, 0.021948080509901047, -0.0002419445081613958, 0.0547797866165638, -0.052835818380117416, 0.029382355511188507, -0.023378893733024597, 0.02161707729101181, 0.0464121475815773, -0.029733682051301003, 0.03441402316093445, 0.06320621818304062, 0.02433059923350811, -0.037189729511737823, 0.02854807674884796, 0.004515284672379494, 0.0365230068564415, 0.037893861532211304, 0.009928769432008266, 0.06985532492399216, 0.01884746551513672, 0.05138101801276207, 0.08220141381025314, 0.013881123624742031, 0.03839663788676262, 0.021346133202314377, 0.07001867890357971, 0.015219579450786114, -0.008615267463028431, 0.04967277869582176, -0.04167274385690689, 0.03193272277712822, -0.062205079942941666, 0.0005076114903204143, -0.022618232294917107, -0.004313656594604254, 0.05430041626095772, 0.02597450092434883, -0.02850378304719925, -0.009665386751294136, 0.013258825987577438, -0.013011356815695763, 0.022237518802285194, -0.005074348766356707, 0.011755721643567085, -0.00614186143502593, -0.025258028879761696, -0.023235158994793892, -0.06767959147691727, -0.04666204750537872, -0.026103036478161812, -0.01429692655801773, -0.024754125624895096, -0.08939461410045624, -0.002979177748784423, -0.08214596658945084, -0.017634257674217224, 0.03219089284539223, 0.007354958914220333, -0.022149749100208282, -0.03814255818724632, 0.02885027602314949, -0.04924763739109039, -0.029705019667744637, -0.0481073260307312, -0.06221047043800354, -0.056305695325136185, -0.08108677715063095, 0.044066425412893295, 0.03394186496734619, 0.00628803251311183, -0.0024163853377103806, 0.02993606962263584, 0.011833702214062214, -0.02901737578213215, 0.03136860579252243, 0.06270313262939453, -0.035380128771066666, -0.04595449939370155, 0.03241328150033951, -0.009515450336039066, 0.010743244551122189, 0.018946625292301178, -0.031146971508860588, 0.09354519844055176, 0.06637419760227203, 0.015338958241045475, 0.026627175509929657, -0.011477532796561718, -0.06848782300949097, -0.06680873781442642, -0.029637688770890236, -0.043252576142549515, -0.0036228890530765057, -0.04397115483880043, -0.04091712459921837, -0.03685501962900162, -0.04331320524215698, 0.012558706104755402, -0.016846003010869026, 0.027510644868016243, 0.02509744092822075, 0.03892703726887703, 0.025736145675182343, 0.04594467207789421, -0.03190556541085243, -0.026179639622569084, 0.05611387640237808, 0.013799709267914295, 0.010481946170330048, -0.08558009564876556, -0.0031919286120682955, 0.021542921662330627, 0.022935204207897186, 0.022425279021263123, -0.006108400411903858, 0.0760241150856018, -0.008301835507154465, 0.007199551910161972, 0.0160147063434124, -0.006376426201313734, -0.00945750717073679, -0.0027368441224098206, 0.0011711380211636424, 0.0015596142038702965, -0.026460794731974602, -0.03070499561727047, -0.008869792334735394, 0.03134153410792351, -0.057806435972452164, -0.058826811611652374, -0.013970631174743176, 0.032930485904216766, 0.042426787316799164, -0.005290765780955553, -0.045894503593444824, -0.009479373693466187, -0.07041268050670624, -0.006677065975964069, 0.028750386089086533, 0.00823040958493948, -0.0021490203216671944, 0.0398278646171093, 0.013572621159255505, -0.005121540743857622, 0.020917989313602448, 0.052554622292518616, 0.06793724000453949, 0.013695872388780117, -0.07583855837583542, 0.00003109349199803546, -0.018633609637618065, 0.017040206119418144, -0.016025926917791367, -0.018420599400997162, -0.021976230666041374, -0.09508997946977615, -0.015362712554633617, 0.008919988758862019, 0.0018473663367331028, -0.01122971810400486, 0.04787635803222656, 0.0003223270468879491, -0.024091649800539017, 0.000528206117451191, 0.018161891028285027, 0.03715405985713005, -0.031694862991571426, 0.051739417016506195, -0.02655749022960663, -0.001354886218905449, -0.0598791278898716, 0.016267573460936546, -0.05107426270842552, -0.03248950466513634, 0.011967151425778866, 0.0520549900829792, -0.01970008574426174, 0.05689840391278267, 0.07854809612035751, 0.044740136712789536, -0.06107519567012787, 0.03943699970841408, 0.0772373229265213, -0.03270236775279045, -0.04511282593011856, -0.008514171466231346, -0.0033360421657562256, -0.014202806167304516, -0.0006184331141412258, -0.01361829973757267, 0.04541017860174179, 0.029355676844716072, 0.007819721475243568, 0.01170487143099308, -0.006832531653344631, -0.010035638697445393, -0.03279344365000725, -0.05313122645020485, -0.03244422748684883, 0.0012960778549313545, -0.025125565007328987, 0.01517834048718214, 0.028206337243318558, 0.03422630950808525, 0.07665488868951797, 0.024496128782629967, -0.0391087532043457, -0.01097719743847847, 0.021796999499201775, 0.013243249617516994, -0.020451299846172333, -0.07532497495412827, -0.039060987532138824, 0.029108988121151924, 0.04478447511792183, -0.02595938742160797, -0.06744034588336945, 0.015556340105831623, 0.04935068637132645, -0.049943707883358, 0.049505867063999176, -0.00952444039285183, 0.05638834461569786, 0.05289258062839508, -0.009326656349003315, 0.038287509232759476, -0.023231888189911842, -0.011544696986675262, -0.0068462141789495945, 0.04449814185500145, -0.016429683193564415, -0.0339360348880291, -0.05456101894378662, 0.025906257331371307, 0.03527994081377983, 0.02993444725871086, 0.04236925393342972, -0.034133367240428925, -0.046740710735321045, 0.011248528026044369, 0.02702360413968563, -0.04310835152864456, -0.003465477842837572, 0.0412774533033371, 0.03512609377503395, -0.04836726933717728, -0.02397359162569046, -0.01936948671936989, -0.022590717300772667, 0.0426337867975235, 0.007047894410789013, -0.022875230759382248, -0.04256567358970642, 0.03738865256309509, -0.019756942987442017, -0.034507088363170624, -0.06546085327863693, 0.05451113358139992, -0.010243556462228298, -0.02178359590470791, 0.06027189642190933, 0.0304288137704134, 0.019238123670220375, 0.06539387255907059, 0.032562460750341415, 0.01673295348882675, -0.03581361472606659, 0.04480736330151558, -0.03441913053393364, -0.018795408308506012, 0.0053019109182059765, -0.04053375497460365, -0.03692902997136116, 0.0007868019747547805, -0.05880151316523552, -0.03012695349752903, -0.023180387914180756, 0.017611417919397354, -0.0036649773828685284, -0.01599813438951969, -0.0013970431173220277, 0.05882882699370384, -0.007448696531355381, -0.04553980380296707, -0.04262835532426834, -0.021518243476748466, -0.056387122720479965, -0.04909056797623634, -0.003818109165877104, 0.011251593939960003, 0.03297220543026924, 0.029357295483350754, 0.018946537747979164, 0.01651565544307232, 0.016256866976618767, -0.04103205353021622, 0.018782414495944977, 0.02491115592420101, -0.035480763763189316, -0.017465097829699516, 0.03531922027468681, 0.012933873571455479, 0.019514940679073334, -0.033715907484292984, 0.03035692311823368, 0.0038460781797766685, -0.008917586877942085, -0.016663482412695885, 0.009335513226687908, 0.033473752439022064, -0.06401187181472778, -0.03237561881542206, -0.015349059365689754, -0.029135389253497124, 0.033303793519735336, -0.025452103465795517, -0.02425428107380867, 0.008643831126391888, -0.0025622809771448374, 0.03596917539834976, -0.022144200280308723, -0.014298106543719769, 0.03035929799079895, 0.007582359481602907, 0.021852487698197365, -0.054647352546453476, 0.06321310251951218, -0.03755716606974602, 0.02003520354628563, -0.025482434779405594, 0.012119791470468044, -0.027189524844288826, 0.021359402686357498, -0.016210686415433884, -0.024688884615898132, -0.0018718321807682514, 0.05720646306872368, -0.01434416975826025, 0.033375442028045654, -0.014233295805752277, 0.03881757706403732, -0.025020861998200417, 0.06872324645519257, -0.04286693036556244, 0.020548928529024124, -0.03539354354143143, 0.026078324764966965, -0.022420844063162804, 0.017879748716950417, -0.005292388144880533, -0.01820751093327999, 0.03682083636522293, 0.05745110288262367, 0.02413061447441578, 0.0352831669151783, -0.0017700076568871737, -0.011040250770747662, 0.008030128665268421, -0.044042035937309265, -0.0251157283782959, -0.00715451268479228, 0.0002714746515266597, -0.021801788359880447, 0.06499557942152023, 0.030345240607857704, -0.04809969663619995, -0.07535834610462189, 0.03558081388473511, 0.024290025234222412, 0.005342612508684397, 0.004403595346957445, 0.047840338200330734, 0.03205973282456398, 0.03814768046140671, -0.022448919713497162, -0.009560217149555683, 0.004619578830897808, -0.04823443666100502, 0.026433710008859634, -0.009664686396718025, 0.021210048347711563, 0.01146015152335167, -0.03986229747533798, -0.0228240005671978, 0.05480131134390831, 0.02264387160539627, 0.025163600221276283, 0.0009482880122959614, -0.040703341364860535, 0.034848012030124664, 0.008201472461223602, -0.03862356022000313, 0.02682465687394142, 0.00950451847165823, -0.022657915949821472, 0.03629140183329582, -0.009184381924569607, 0.012866482138633728, 0.06221875175833702, 0.02085021883249283, -0.021235588937997818, 0.06810930371284485, -0.041375745087862015, 0.013473392464220524, 0.03469017148017883, -0.0774226039648056, -0.01047179289162159, -0.05603175237774849, 0.05798925459384918, -0.0627463087439537, 0.02266835607588291, 0.05717085301876068, -0.0025563163217157125, 0.03044077940285206, -0.0478484183549881, -0.06274672597646713, 0.02346034348011017, -0.034160066395998, 0.0649181455373764, 0.016736559569835663, -0.053747404366731644, 0.05339604616165161, 0.015027903951704502, -0.05237826332449913, 0.03663914278149605, 0.02954227291047573, 0.056648995727300644, 0.02791012078523636, 0.05057503655552864, -0.04945630207657814, 0.00010256375389872119, -0.03964012488722801, 0.025909598916769028, -0.050752803683280945, -0.013076386414468288, 0.03114996664226055, -0.036078281700611115, -0.023751208558678627, 0.0340966135263443, -0.0191546268761158, -0.01608976162970066, 0.06138356029987335, -0.05183258280158043, -0.04441434144973755, 0.01402362436056137, 0.019471554085612297, -0.04675811156630516, -0.014591289684176445, -0.03366970270872116, 0.008980346843600273, 0.01211006473749876, 0.00008396153134526685, -0.027461590245366096, -0.02099432796239853, 0.028362702578306198, -0.035545364022254944, -0.02979094907641411, 0.025980770587921143, -0.010326075367629528, -0.024023033678531647, 0.034208592027425766, 0.011074312962591648, 0.009266119450330734, 0.03023776412010193, -0.01755860075354576, 0.02371450886130333, -0.046738382428884506, -0.01585131138563156, 0.03785242512822151, -0.00900163035839796, 0.01998531073331833, 0.006100303493440151, 0.02980496920645237, 0.04070108011364937, 0.026635415852069855, -0.0030882672872394323, -0.03658675402402878, -0.03173953294754028, 0.019683340564370155, -0.03748473525047302, 0.005064686760306358, -0.00031354109523817897, -0.04462265595793724, -0.02691088430583477, 0.0005596591508947313, -0.03747827932238579, 0.047399356961250305, -0.06668058782815933, 0.0030618675518780947, 0.04131200909614563, -0.016712097451090813, -0.0607718899846077, -0.10763480514287949, -0.011627168394625187, -0.050795070827007294, -0.016330650076270103, 0.04772214591503143, -0.035332001745700836, 0.045892633497714996, -0.05106509476900101, -0.03947613760828972, 0.04016201198101044, 0.04539700597524643, -0.05870916321873665, 0.05793660506606102, 0.04555537551641464, -0.04805043339729309, 0.00945598166435957, 0.016133949160575867, -0.05769701302051544, 0.006112393457442522, 0.01784994825720787, 0.00010300790017936379, 0.024154754355549812, 0.015832701697945595, -0.05637938156723976, -0.021806534379720688, -0.06581272929906845, -0.033564768731594086, -0.048748817294836044, 0.00905498769134283, 0.050205573439598083 ]
Deniskin/essays_small_2000
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-4 results: [] --- <!-- 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__subj__train-8-4 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.3305 - Accuracy: 0.8565 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6991 | 1.0 | 3 | 0.6772 | 0.75 | | 0.6707 | 2.0 | 6 | 0.6704 | 0.75 | | 0.6402 | 3.0 | 9 | 0.6608 | 1.0 | | 0.5789 | 4.0 | 12 | 0.6547 | 0.75 | | 0.5211 | 5.0 | 15 | 0.6434 | 0.75 | | 0.454 | 6.0 | 18 | 0.6102 | 1.0 | | 0.4187 | 7.0 | 21 | 0.5701 | 1.0 | | 0.3401 | 8.0 | 24 | 0.5289 | 1.0 | | 0.3107 | 9.0 | 27 | 0.4737 | 1.0 | | 0.2381 | 10.0 | 30 | 0.4255 | 1.0 | | 0.1982 | 11.0 | 33 | 0.3685 | 1.0 | | 0.1631 | 12.0 | 36 | 0.3200 | 1.0 | | 0.1234 | 13.0 | 39 | 0.2798 | 1.0 | | 0.0993 | 14.0 | 42 | 0.2455 | 1.0 | | 0.0781 | 15.0 | 45 | 0.2135 | 1.0 | | 0.0586 | 16.0 | 48 | 0.1891 | 1.0 | | 0.0513 | 17.0 | 51 | 0.1671 | 1.0 | | 0.043 | 18.0 | 54 | 0.1427 | 1.0 | | 0.0307 | 19.0 | 57 | 0.1225 | 1.0 | | 0.0273 | 20.0 | 60 | 0.1060 | 1.0 | | 0.0266 | 21.0 | 63 | 0.0920 | 1.0 | | 0.0233 | 22.0 | 66 | 0.0823 | 1.0 | | 0.0185 | 23.0 | 69 | 0.0751 | 1.0 | | 0.0173 | 24.0 | 72 | 0.0698 | 1.0 | | 0.0172 | 25.0 | 75 | 0.0651 | 1.0 | | 0.0142 | 26.0 | 78 | 0.0613 | 1.0 | | 0.0151 | 27.0 | 81 | 0.0583 | 1.0 | | 0.0117 | 28.0 | 84 | 0.0563 | 1.0 | | 0.0123 | 29.0 | 87 | 0.0546 | 1.0 | | 0.0121 | 30.0 | 90 | 0.0531 | 1.0 | | 0.0123 | 31.0 | 93 | 0.0511 | 1.0 | | 0.0112 | 32.0 | 96 | 0.0496 | 1.0 | | 0.0103 | 33.0 | 99 | 0.0481 | 1.0 | | 0.0086 | 34.0 | 102 | 0.0468 | 1.0 | | 0.0096 | 35.0 | 105 | 0.0457 | 1.0 | | 0.0107 | 36.0 | 108 | 0.0447 | 1.0 | | 0.0095 | 37.0 | 111 | 0.0439 | 1.0 | | 0.0102 | 38.0 | 114 | 0.0429 | 1.0 | | 0.0077 | 39.0 | 117 | 0.0422 | 1.0 | | 0.0092 | 40.0 | 120 | 0.0415 | 1.0 | | 0.0083 | 41.0 | 123 | 0.0409 | 1.0 | | 0.0094 | 42.0 | 126 | 0.0404 | 1.0 | | 0.0084 | 43.0 | 129 | 0.0400 | 1.0 | | 0.0085 | 44.0 | 132 | 0.0396 | 1.0 | | 0.0092 | 45.0 | 135 | 0.0392 | 1.0 | | 0.0076 | 46.0 | 138 | 0.0389 | 1.0 | | 0.0073 | 47.0 | 141 | 0.0388 | 1.0 | | 0.0085 | 48.0 | 144 | 0.0387 | 1.0 | | 0.0071 | 49.0 | 147 | 0.0386 | 1.0 | | 0.0079 | 50.0 | 150 | 0.0386 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014929325319826603, 0.0082008745521307, -0.037814103066921234, 0.045487064868211746, 0.0499056801199913, 0.017715925350785255, -0.01835598051548004, -0.02615819126367569, -0.05233009159564972, 0.05950583517551422, 0.011123333126306534, -0.03761330246925354, 0.009344330057501793, 0.0436568558216095, -0.024891190230846405, -0.033481478691101074, -0.002818906446918845, -0.0071610258892178535, -0.034756921231746674, -0.0000094376846391242, -0.0008399797370657325, -0.011627737432718277, -0.012672360986471176, 0.005427645053714514, -0.004978453740477562, 0.016749804839491844, 0.0026325909420847893, 0.0229291133582592, 0.031662240624427795, -0.06357210129499435, 0.016631681472063065, -0.030889861285686493, -0.05085177719593048, -0.017291713505983353, -0.012300219386816025, -0.013749171048402786, 0.0019781554583460093, 0.03260128200054169, 0.03791140764951706, 0.04806985706090927, 0.005665995646268129, 0.028584744781255722, 0.0021087704226374626, -0.011138576082885265, 0.0562950037419796, 0.009200113825500011, -0.027260107919573784, 0.0018832448404282331, 0.03965141996741295, -0.026756439357995987, -0.08109990507364273, -0.052442628890275955, -0.017249617725610733, 0.019224513322114944, -0.018945245072245598, -0.011483783833682537, -0.06182883307337761, 0.012518143281340599, 0.06622635573148727, -0.04847710207104683, -0.02912074513733387, -0.0016124582616612315, -0.07391688972711563, 0.006101296283304691, 0.028112832456827164, -0.016641100868582726, 0.008917739614844322, -0.04733022302389145, 0.0320480540394783, -0.010234725661575794, 0.061453044414520264, -0.01966376043856144, 0.014508209191262722, -0.06824494898319244, -0.017855742946267128, -0.004587680567055941, 0.047611597925424576, 0.06372212618589401, -0.035265762358903885, 0.04859360307455063, 0.026206105947494507, -0.0005918092792853713, 0.043600548058748245, -0.026820732280611992, 0.0194393303245306, 0.02804461121559143, -0.04343090578913689, -0.0078604556620121, 0.012691541574895382, 0.024173680692911148, -0.03581983223557472, -0.036238525062799454, -0.03176139295101166, -0.026796968653798103, -0.005180567968636751, 0.020596178248524666, 0.02903822623193264, 0.01591700315475464, 0.04295019432902336, 0.020046748220920563, 0.024654895067214966, 0.04032621905207634, -0.027859123423695564, 0.07645926624536514, -0.009138550609350204, -0.0026337699964642525, -0.011445307172834873, -0.017173387110233307, -0.04758038744330406, 0.025903550907969475, 0.031898096203804016, -0.020378094166517258, -0.01676635816693306, 0.037370990961790085, 0.005198549944907427, -0.0009501894819550216, 0.08134229481220245, -0.01748940534889698, -0.04332606494426727, -0.033327504992485046, 0.02302173711359501, 0.015469960868358612, -0.01474841870367527, 0.014366541989147663, -0.049642063677310944, -0.016040099784731865, -0.028100378811359406, -0.01946999318897724, -0.0156415943056345, 0.020201092585921288, 0.004060965031385422, 0.06901931017637253, 0.03553570434451103, -0.08456435799598694, 0.0006700721569359303, 0.01334379892796278, -0.054554104804992676, 0.053838349878787994, 0.025540130212903023, 0.11484628915786743, -0.05820823833346367, -0.06821320205926895, 0.013817895203828812, 0.0033115858677774668, -0.04524460807442665, 0.01641911081969738, 0.003403491573408246, -0.02582380175590515, 0.003053262596949935, 0.004619605839252472, 0.0632837563753128, -0.04434400424361229, -0.007451866753399372, 0.07254880666732788, -0.0023719030432403088, 0.044433631002902985, -0.05429188907146454, -0.02791162207722664, 0.014324505813419819, -0.022119399160146713, -0.03209332004189491, 0.04484396427869797, -0.029918838292360306, -0.01896546594798565, -0.020380398258566856, -0.025361288338899612, 0.012959850020706654, 0.07608116418123245, -0.002894742414355278, -0.031057825312018394, -0.018942438066005707, 0.021599262952804565, 0.03858531638979912, 0.04535243287682533, -0.029292019084095955, 0.026535093784332275, 0.056945811957120895, 0.02994149550795555, -0.03230268135666847, 0.03648686408996582, 0.03196408599615097, -0.023986289277672768, -0.023085586726665497, 0.03417406603693962, 0.010383299551904202, -0.04641013592481613, 0.03848814219236374, 0.013913482427597046, 0.004324361681938171, -0.06704089045524597, -0.04016244038939476, 0.04247182235121727, -0.00819521676748991, -0.010311898775398731, 0.010445870459079742, 0.017076024785637856, -0.019994406029582024, 0.043126724660396576, -0.015500632114708424, 0.005357877817004919, -0.03023068606853485, -0.02148343250155449, 0.011148517951369286, -0.018013902008533478, 0.02405991032719612, 0.04525750130414963, -0.00332047906704247, 0.10164180397987366, -0.042727455496788025, 0.02247118577361107, -0.05964076146483421, -0.03746829926967621, 0.03192603960633278, 0.06153014302253723, 0.05514904856681824, 0.0500740222632885, 0.00680695753544569, -0.029840756207704544, 0.04540875926613808, 0.0686086118221283, 0.04107699543237686, -0.004769586026668549, -0.036386314779520035, -0.007320104166865349, 0.0382065586745739, 0.048070285469293594, -0.05128370597958565, -0.012258517555892467, 0.0060193813405931, 0.03254640847444534, -0.007725670468062162, 0.017740940675139427, -0.02164343371987343, 0.04168181121349335, -0.0432622916996479, -0.05021088197827339, 0.0388568714261055, 0.023471461609005928, -0.0032089620362967253, 0.030875185504555702, 0.035662129521369934, 0.008251992054283619, 0.018204262480139732, 0.021718988195061684, 0.011396785266697407, -0.05196450650691986, 0.019206374883651733, 0.0008956173551268876, 0.05658789724111557, -0.05409957095980644, 0.03039625845849514, -0.022694887593388557, 0.022737544029951096, 0.0474746972322464, -0.028455112129449844, 0.03505360707640648, 0.059111375361680984, 0.023648859933018684, -0.037078019231557846, 0.02907216176390648, 0.003648709272965789, 0.036086101084947586, 0.03924476355314255, 0.01116621308028698, 0.07087428122758865, 0.0191118735820055, 0.0474017933011055, 0.07860807329416275, 0.013066085986793041, 0.03752465173602104, 0.019169794395565987, 0.0698854997754097, 0.014523125253617764, -0.010534411296248436, 0.050735954195261, -0.042487096041440964, 0.030547665432095528, -0.061953164637088776, 0.0020997514948248863, -0.022526860237121582, -0.005397866014391184, 0.05734839662909508, 0.023053059354424477, -0.030444784089922905, -0.011192562058568, 0.015248267911374569, -0.013467413373291492, 0.023470604792237282, -0.008022474125027657, 0.01226490642875433, -0.007746045012027025, -0.023284759372472763, -0.02158552221953869, -0.06997916847467422, -0.04591112583875656, -0.024267353117465973, -0.015366205945611, -0.024019498378038406, -0.09182127565145493, -0.003695335704833269, -0.08077448606491089, -0.01886608451604843, 0.03009490668773651, 0.005811931099742651, -0.023570720106363297, -0.03676610440015793, 0.029931355267763138, -0.04781121760606766, -0.03006945364177227, -0.048002369701862335, -0.062152568250894547, -0.05490640178322792, -0.08298999071121216, 0.04306004196405411, 0.03427687659859657, 0.007208597846329212, -0.0006409053457900882, 0.030829256400465965, 0.012501399032771587, -0.030372900888323784, 0.032788392156362534, 0.06154835224151611, -0.03428100422024727, -0.04691220074892044, 0.0357067808508873, -0.010466945357620716, 0.012124521657824516, 0.017277700826525688, -0.02974851243197918, 0.09205081313848495, 0.06792227178812027, 0.014343634247779846, 0.027419457212090492, -0.012422335334122181, -0.06630745530128479, -0.06483402103185654, -0.029715927317738533, -0.04284990578889847, -0.004911006428301334, -0.04411158338189125, -0.04015263915061951, -0.036393482238054276, -0.04158250615000725, 0.01282544806599617, -0.016328787431120872, 0.027880460023880005, 0.02426765114068985, 0.03690232336521149, 0.02566368132829666, 0.04575611650943756, -0.02810964733362198, -0.029417110607028008, 0.056461673229932785, 0.013805186375975609, 0.009608959779143333, -0.08356136828660965, -0.0019794104155153036, 0.02415544167160988, 0.021283438429236412, 0.022761331871151924, -0.0035763413179665804, 0.07767299562692642, -0.00917975977063179, 0.004419785924255848, 0.016115957871079445, -0.0059151011519134045, -0.010083286091685295, -0.0027356219943612814, -0.0035981228575110435, 0.002329295501112938, -0.02568046748638153, -0.033946096897125244, -0.011608161963522434, 0.02985466830432415, -0.05662304908037186, -0.05903834104537964, -0.012631021440029144, 0.0342312790453434, 0.04382194206118584, -0.00647415267303586, -0.04546671360731125, -0.009722824208438396, -0.07154882699251175, -0.0059228455647826195, 0.027416707947850227, 0.010791396722197533, -0.0036401671823114157, 0.03905806317925453, 0.01316793728619814, -0.004098488949239254, 0.02261323854327202, 0.053539324551820755, 0.06840571761131287, 0.013627255335450172, -0.0773458331823349, -0.0009727930882945657, -0.02075844816863537, 0.014217070303857327, -0.014652960002422333, -0.018574533984065056, -0.021652808412909508, -0.09348125010728836, -0.01562509313225746, 0.011239852756261826, 0.0046098860912024975, -0.014356140978634357, 0.045855432748794556, -0.0001965790579561144, -0.026851927861571312, 0.002062705112621188, 0.016702190041542053, 0.03810059279203415, -0.0338740237057209, 0.049505822360515594, -0.027775106951594353, 0.002354787429794669, -0.05877470597624779, 0.0170243289321661, -0.05039018392562866, -0.029805036261677742, 0.013608545996248722, 0.053454671055078506, -0.021115373820066452, 0.05455763638019562, 0.07726416736841202, 0.046128418296575546, -0.061661217361688614, 0.04105488583445549, 0.07622335106134415, -0.03477815166115761, -0.04323607683181763, -0.008695471100509167, -0.0015284953406080604, -0.016695339232683182, -0.0015802782727405429, -0.01167303416877985, 0.0483640618622303, 0.027439778670668602, 0.005484459456056356, 0.013285965658724308, -0.006773119792342186, -0.01127494964748621, -0.030758420005440712, -0.054291531443595886, -0.032288309186697006, 0.0006567228119820356, -0.027919387444853783, 0.017163818702101707, 0.028358502313494682, 0.03397349640727043, 0.07797504961490631, 0.022678205743432045, -0.0398881658911705, -0.011601556092500687, 0.020656483247876167, 0.01506711170077324, -0.018965456634759903, -0.07217925786972046, -0.04218066483736038, 0.028045833110809326, 0.0466419942677021, -0.025579050183296204, -0.0692443922162056, 0.017659414559602737, 0.04940061643719673, -0.050943389534950256, 0.052541814744472504, -0.010853766463696957, 0.057803891599178314, 0.05083072558045387, -0.0091893021017313, 0.039819810539484024, -0.021331006661057472, -0.010489003732800484, -0.006610384676605463, 0.0405474454164505, -0.015849120914936066, -0.035798922181129456, -0.05277494341135025, 0.023077605292201042, 0.03610682114958763, 0.029586587101221085, 0.03888261318206787, -0.034481555223464966, -0.04741961136460304, 0.012447361834347248, 0.02575710043311119, -0.042741380631923676, -0.002396860858425498, 0.039500799030065536, 0.033815979957580566, -0.049105726182460785, -0.023586291819810867, -0.02075873874127865, -0.019101180136203766, 0.04346776381134987, 0.007178930100053549, -0.02237420156598091, -0.04513473063707352, 0.03954727202653885, -0.02063257433474064, -0.03220745548605919, -0.06980707496404648, 0.0510503351688385, -0.011862307786941528, -0.022578343749046326, 0.0601583868265152, 0.02743564173579216, 0.01993969827890396, 0.06642984598875046, 0.03284876421093941, 0.019014794379472733, -0.03441564738750458, 0.04702531173825264, -0.03340859338641167, -0.018287908285856247, 0.004257082473486662, -0.03886440768837929, -0.03565052151679993, 0.0012339124223217368, -0.06344282627105713, -0.030908823013305664, -0.023400399833917618, 0.018588149920105934, -0.0038822502829134464, -0.018447650596499443, -0.003270927118137479, 0.05814003199338913, -0.009418176487088203, -0.044547758996486664, -0.04492291808128357, -0.020482344552874565, -0.058531083166599274, -0.04687357693910599, -0.002283917274326086, 0.009995688684284687, 0.035514287650585175, 0.029531950131058693, 0.02113385498523712, 0.017861230298876762, 0.015599596314132214, -0.04080525413155556, 0.019187700003385544, 0.025743229314684868, -0.03505445271730423, -0.017627663910388947, 0.03675452247262001, 0.01524158101528883, 0.02038402669131756, -0.03567415103316307, 0.03393515199422836, 0.004521738272160292, -0.007850177586078644, -0.01840691640973091, 0.011638002470135689, 0.03176058828830719, -0.06425399333238602, -0.033526789397001266, -0.015214786864817142, -0.03213830292224884, 0.03216111287474632, -0.026772839948534966, -0.021199652925133705, 0.010647469200193882, -0.0018792152404785156, 0.03549643233418465, -0.026021260768175125, -0.011088810861110687, 0.029599491506814957, 0.0069155157543718815, 0.022265197709202766, -0.054195381700992584, 0.06508508324623108, -0.03722459077835083, 0.020196953788399696, -0.025190697982907295, 0.010012811049818993, -0.025213127955794334, 0.02221980132162571, -0.017632614821195602, -0.026256529614329338, -0.0028494740836322308, 0.058301735669374466, -0.013663903810083866, 0.03436107560992241, -0.012527910061180592, 0.03792889043688774, -0.02605205960571766, 0.07075128704309464, -0.044271890074014664, 0.022248107939958572, -0.03908644989132881, 0.02727576531469822, -0.021264083683490753, 0.01894766464829445, -0.005642290227115154, -0.017650604248046875, 0.03498098626732826, 0.0571117103099823, 0.02654595486819744, 0.03565240651369095, 0.001515983953140676, -0.010986991226673126, 0.006796900182962418, -0.04488956555724144, -0.02433406002819538, -0.007340205833315849, -0.001098929438740015, -0.022781725972890854, 0.06364552676677704, 0.028870027512311935, -0.04969887062907219, -0.07553143054246902, 0.037987176328897476, 0.021139731630682945, 0.005647352430969477, 0.003625558689236641, 0.05051835998892784, 0.03396454453468323, 0.036853186786174774, -0.022147255018353462, -0.008015798404812813, 0.007743261754512787, -0.05019690841436386, 0.025862833485007286, -0.008625751361250877, 0.02414701133966446, 0.01110848505049944, -0.03672325611114502, -0.02356448955833912, 0.054536521434783936, 0.02337387204170227, 0.025499219074845314, 0.00047080600052140653, -0.03983953222632408, 0.03335597366094589, 0.008793013170361519, -0.03761381655931473, 0.02523399330675602, 0.011076494120061398, -0.020709337666630745, 0.037423789501190186, -0.011424957774579525, 0.012866572476923466, 0.06240638718008995, 0.019615469500422478, -0.01817021332681179, 0.06895020604133606, -0.040819838643074036, 0.012395148165524006, 0.0353015661239624, -0.07698673754930496, -0.01174247171729803, -0.0520329624414444, 0.05679375305771828, -0.06374461948871613, 0.0219219159334898, 0.057517148554325104, -0.0017916063079610467, 0.03164086118340492, -0.04692456126213074, -0.0612894743680954, 0.02075514942407608, -0.03360800817608833, 0.06315817683935165, 0.015097752213478088, -0.053189147263765335, 0.05418704077601433, 0.016580387949943542, -0.0531901940703392, 0.03638290986418724, 0.028262890875339508, 0.05498693510890007, 0.028578530997037888, 0.04771217703819275, -0.04745078831911087, -0.0012288832804188132, -0.03839043155312538, 0.024260075762867928, -0.05323810130357742, -0.014256196096539497, 0.03511948883533478, -0.03785591945052147, -0.02269436977803707, 0.03250895068049431, -0.017156673595309258, -0.015382440760731697, 0.05848905071616173, -0.051488153636455536, -0.042842961847782135, 0.012753779999911785, 0.019156599417328835, -0.04627027362585068, -0.01161154918372631, -0.03376035764813423, 0.009731867350637913, 0.010366406291723251, -0.0006731264293193817, -0.02607552707195282, -0.02049504779279232, 0.028441207483410835, -0.03708941116929054, -0.029131624847650528, 0.02364109642803669, -0.010339099913835526, -0.025578733533620834, 0.036101847887039185, 0.00916677713394165, 0.011183707974851131, 0.030288076028227806, -0.018086183816194534, 0.022316794842481613, -0.04560570418834686, -0.014446212910115719, 0.035882022231817245, -0.00781164038926363, 0.019261285662651062, 0.007383496034890413, 0.03326062485575676, 0.04280178248882294, 0.02878412790596485, -0.0035577283706516027, -0.035543832927942276, -0.032743584364652634, 0.02252626046538353, -0.037077076733112335, 0.006639912724494934, -0.0009158802567981184, -0.04371124878525734, -0.02679126150906086, -0.0016135290497913957, -0.03716050460934639, 0.0471016988158226, -0.06633629649877548, 0.005198407918214798, 0.04110679030418396, -0.018382851034402847, -0.06003087759017944, -0.10828860849142075, -0.011972324922680855, -0.0525052547454834, -0.01666436716914177, 0.048092320561409, -0.03553733602166176, 0.04641230031847954, -0.05008198320865631, -0.039077699184417725, 0.03743891790509224, 0.04555180296301842, -0.0594085268676281, 0.05875931307673454, 0.044213589280843735, -0.04728162661194801, 0.011346136219799519, 0.019951125606894493, -0.056432850658893585, 0.005018071737140417, 0.017069384455680847, -0.00205287616699934, 0.024980172514915466, 0.013690846040844917, -0.05700569972395897, -0.025026360526680946, -0.06566297262907028, -0.0328642912209034, -0.04765282943844795, 0.01068602129817009, 0.049044519662857056 ]
Deniskin/essays_small_2000i
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-5 results: [] --- <!-- 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__subj__train-8-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6927 - Accuracy: 0.506 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7102 | 1.0 | 3 | 0.6790 | 0.75 | | 0.6693 | 2.0 | 6 | 0.6831 | 0.75 | | 0.6438 | 3.0 | 9 | 0.6876 | 0.75 | | 0.6047 | 4.0 | 12 | 0.6970 | 0.75 | | 0.547 | 5.0 | 15 | 0.7065 | 0.75 | | 0.4885 | 6.0 | 18 | 0.7114 | 0.75 | | 0.4601 | 7.0 | 21 | 0.7147 | 0.5 | | 0.4017 | 8.0 | 24 | 0.7178 | 0.5 | | 0.3474 | 9.0 | 27 | 0.7145 | 0.5 | | 0.2624 | 10.0 | 30 | 0.7153 | 0.5 | | 0.2175 | 11.0 | 33 | 0.7158 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.011592134833335876, 0.007668898440897465, -0.034938931465148926, 0.04412686079740524, 0.04996125027537346, 0.015197671949863434, -0.020527739077806473, -0.026405341923236847, -0.05242229625582695, 0.0582183338701725, 0.013383426703512669, -0.037816599011421204, 0.006703599821776152, 0.04293002188205719, -0.024991359561681747, -0.03377292677760124, -0.002065241103991866, -0.009560354053974152, -0.03549518808722496, 0.00024587029474787414, 0.001813960261642933, -0.011371217668056488, -0.015020482242107391, 0.004625733941793442, -0.004487174097448587, 0.01892220973968506, 0.005939260125160217, 0.022987589240074158, 0.030915994197130203, -0.06532103568315506, 0.01868496462702751, -0.032593175768852234, -0.05066974088549614, -0.020309878513216972, -0.011119166389107704, -0.014185813255608082, -0.000012197082469356246, 0.03244057297706604, 0.03787305951118469, 0.04929551109671593, 0.005876337643712759, 0.02999008819460869, -0.0005209761438891292, -0.010105321183800697, 0.05439112335443497, 0.009989291429519653, -0.02676975168287754, 0.001481387997046113, 0.040924619883298874, -0.024687714874744415, -0.08157557994127274, -0.052239276468753815, -0.016807913780212402, 0.017868658527731895, -0.020898621529340744, -0.01194263156503439, -0.0627795085310936, 0.013808292336761951, 0.062992163002491, -0.048253659158945084, -0.030160099267959595, -0.002175977686420083, -0.07050872594118118, 0.006463922094553709, 0.026148410513997078, -0.015689371153712273, 0.00872470811009407, -0.04571699723601341, 0.032737381756305695, -0.010121745057404041, 0.06088288128376007, -0.019337931647896767, 0.013297026976943016, -0.0685800239443779, -0.01731904223561287, -0.003097480395808816, 0.04319489002227783, 0.06434813141822815, -0.03660544380545616, 0.04710542783141136, 0.027321385219693184, -0.0005037567461840808, 0.04340585693717003, -0.02826785296201706, 0.019820839166641235, 0.028353769332170486, -0.04079717397689819, -0.008876264095306396, 0.010840480215847492, 0.02359720878303051, -0.036689989268779755, -0.03639813885092735, -0.031275998800992966, -0.026758404448628426, -0.007204469293355942, 0.01842624880373478, 0.02743915654718876, 0.013685466721653938, 0.0409977026283741, 0.018371354788541794, 0.02664174512028694, 0.04143107309937477, -0.027102213352918625, 0.07826991379261017, -0.009054765105247498, -0.0016109044663608074, -0.009584153071045876, -0.018434658646583557, -0.04782944917678833, 0.02830798737704754, 0.030703362077474594, -0.019765974953770638, -0.01779101975262165, 0.03727884218096733, 0.004192275460809469, 0.000865613401401788, 0.08186576515436172, -0.01709960587322712, -0.04192424938082695, -0.03051096946001053, 0.022697195410728455, 0.015810729935765266, -0.012909922748804092, 0.014715424738824368, -0.04659774526953697, -0.015483935363590717, -0.029073165729641914, -0.0205608531832695, -0.017518043518066406, 0.0208791121840477, 0.003419635584577918, 0.06849392503499985, 0.037855856120586395, -0.08394705504179001, 0.0004157146322540939, 0.01171539444476366, -0.05375463142991066, 0.054074715822935104, 0.024963825941085815, 0.1157417818903923, -0.05704577639698982, -0.06848060339689255, 0.015148557722568512, 0.001432719174772501, -0.04562755674123764, 0.01627412997186184, 0.004640099126845598, -0.02731643058359623, 0.002679665805771947, 0.004466067999601364, 0.06355264037847519, -0.04123571142554283, -0.006057793274521828, 0.07036805152893066, -0.0013288127956911922, 0.04133163020014763, -0.05233430862426758, -0.027899298816919327, 0.014297866262495518, -0.023336071521043777, -0.03039352409541607, 0.044021088629961014, -0.031490810215473175, -0.019667496904730797, -0.021198613569140434, -0.026760738343000412, 0.012378535233438015, 0.07464684545993805, -0.003186197252944112, -0.030608970671892166, -0.019919198006391525, 0.018765093758702278, 0.04226892068982124, 0.045974768698215485, -0.028725100681185722, 0.025221416726708412, 0.058283641934394836, 0.03236771374940872, -0.03070979006588459, 0.0384908989071846, 0.032372649759054184, -0.025130223482847214, -0.02276764065027237, 0.03436923399567604, 0.012170406058430672, -0.046950820833444595, 0.041406113654375076, 0.016271689906716347, 0.0051273456774652, -0.06474068760871887, -0.03874979168176651, 0.043446384370326996, -0.008997319266200066, -0.010099062696099281, 0.007241603918373585, 0.017783258110284805, -0.02052413858473301, 0.04077988862991333, -0.014148591086268425, 0.008083407767117023, -0.028802502900362015, -0.021900728344917297, 0.010984985157847404, -0.017559099942445755, 0.023260632529854774, 0.04378326237201691, -0.00290072918869555, 0.10066256672143936, -0.043685220181941986, 0.022603075951337814, -0.059387288987636566, -0.03558963164687157, 0.030193058773875237, 0.06256937980651855, 0.05442420393228531, 0.04923415929079056, 0.005571574904024601, -0.02912283129990101, 0.04328912869095802, 0.06783454865217209, 0.04232748597860336, -0.0067297895438969135, -0.035005394369363785, -0.008094945922493935, 0.03935680165886879, 0.05082226172089577, -0.05183792859315872, -0.011245637200772762, 0.004742087796330452, 0.033777154982089996, -0.0072344099171459675, 0.016293399035930634, -0.02004079520702362, 0.04003462940454483, -0.04363885149359703, -0.04801492020487785, 0.037576768547296524, 0.022276809439063072, -0.003910298924893141, 0.02948942221701145, 0.03345983475446701, 0.009392698295414448, 0.01834644377231598, 0.022410130128264427, 0.008672093041241169, -0.05280635133385658, 0.019963786005973816, -0.001636441913433373, 0.05578753724694252, -0.05423726513981819, 0.03154025226831436, -0.02663033828139305, 0.024247152730822563, 0.049096446484327316, -0.028117697685956955, 0.03284010663628578, 0.05747881159186363, 0.022407200187444687, -0.03711159527301788, 0.02866164967417717, 0.006641688756644726, 0.03759131580591202, 0.038604188710451126, 0.010284917429089546, 0.07062198221683502, 0.01816466636955738, 0.04632357135415077, 0.0785573422908783, 0.013856377452611923, 0.037642791867256165, 0.01890755631029606, 0.06786699593067169, 0.013743937015533447, -0.009380817413330078, 0.05118333920836449, -0.045111700892448425, 0.02774740941822529, -0.059498388320207596, 0.002202798379585147, -0.024277660995721817, -0.0042048185132443905, 0.054674409329891205, 0.026250256225466728, -0.031520769000053406, -0.010897070169448853, 0.015379347838461399, -0.012794433161616325, 0.022438086569309235, -0.007967286743223667, 0.01099591888487339, -0.006117332261055708, -0.023246673867106438, -0.020160667598247528, -0.06713820993900299, -0.04529598727822304, -0.026262780651450157, -0.015549320727586746, -0.02308870293200016, -0.09476348757743835, -0.0053182197734713554, -0.08326668292284012, -0.020944342017173767, 0.028609730303287506, 0.008070605807006359, -0.024140704423189163, -0.03532896190881729, 0.027575235813856125, -0.04762393608689308, -0.030315089970827103, -0.0494145043194294, -0.06358062475919724, -0.05564364045858383, -0.08222125470638275, 0.045755535364151, 0.03517572954297066, 0.008936104364693165, 0.00006842394213890657, 0.032019276171922684, 0.012422168627381325, -0.031187204644083977, 0.033591847866773605, 0.06022561341524124, -0.038474924862384796, -0.050021905452013016, 0.034274980425834656, -0.009442551992833614, 0.01084867399185896, 0.019250214099884033, -0.029049528762698174, 0.09281513839960098, 0.06922668218612671, 0.015310944989323616, 0.02885596640408039, -0.010146996937692165, -0.06646772474050522, -0.06608930975198746, -0.0276604313403368, -0.04059125483036041, -0.004877646453678608, -0.044330522418022156, -0.03967183828353882, -0.03750108182430267, -0.043359410017728806, 0.013843249529600143, -0.013474061153829098, 0.026269325986504555, 0.02543911710381508, 0.039063163101673126, 0.026892274618148804, 0.04669921100139618, -0.027914926409721375, -0.02738913521170616, 0.05578513815999031, 0.014634661376476288, 0.007990844547748566, -0.08452796190977097, -0.0025533027946949005, 0.023361101746559143, 0.020065676420927048, 0.02361876331269741, -0.004068847745656967, 0.07721594721078873, -0.012215998023748398, 0.00333788082934916, 0.015352735295891762, -0.006239801645278931, -0.011040729470551014, -0.002796807559207082, -0.0050934297032654285, 0.0040694335475564, -0.026881273835897446, -0.03461028262972832, -0.011513126082718372, 0.029381275177001953, -0.05606905370950699, -0.061397142708301544, -0.015320797450840473, 0.0337689183652401, 0.04319014772772789, -0.00857892818748951, -0.045349594205617905, -0.010716037824749947, -0.07243285328149796, -0.004760805517435074, 0.02828650176525116, 0.010961953550577164, -0.004155398812144995, 0.03956148400902748, 0.01214457768946886, -0.004878812003880739, 0.025619812309741974, 0.051291678100824356, 0.06569555401802063, 0.013704757206141949, -0.07684233784675598, -0.0011117591056972742, -0.021056151017546654, 0.013508813455700874, -0.01474682055413723, -0.019465895369648933, -0.022348059341311455, -0.09446084499359131, -0.016754936426877975, 0.011500251479446888, 0.0055010258220136166, -0.013736358843743801, 0.04572086036205292, -0.0004557209322229028, -0.027102576568722725, -0.0003660754591692239, 0.016305364668369293, 0.039449043571949005, -0.034806471318006516, 0.04845835641026497, -0.027562668547034264, 0.003212165320292115, -0.059687539935112, 0.01687587983906269, -0.04803569242358208, -0.027814196422696114, 0.010609863325953484, 0.05228492245078087, -0.017381034791469574, 0.05618450790643692, 0.0746898353099823, 0.04595133289694786, -0.062472160905599594, 0.03977154567837715, 0.07908051460981369, -0.033852387219667435, -0.042938705533742905, -0.008636475540697575, -0.0027424010913819075, -0.01546472404152155, -0.0016166988061740994, -0.013514569029211998, 0.04691385105252266, 0.027161968871951103, 0.005602112039923668, 0.011607091873884201, -0.006398869212716818, -0.01127684861421585, -0.03093169815838337, -0.05410135164856911, -0.03219982981681824, -0.00004521316441241652, -0.029028816148638725, 0.017481079325079918, 0.02708365023136139, 0.03629675135016441, 0.07754816859960556, 0.021810824051499367, -0.041860856115818024, -0.010157310403883457, 0.017980806529521942, 0.015258369036018848, -0.016965927556157112, -0.074200339615345, -0.04304099082946777, 0.025886215269565582, 0.04631371051073074, -0.026228755712509155, -0.06763338297605515, 0.01932307705283165, 0.05160323530435562, -0.050825972110033035, 0.05205569043755531, -0.011939317919313908, 0.058488935232162476, 0.0505852997303009, -0.007676187437027693, 0.03915514424443245, -0.022246554493904114, -0.009182735346257687, -0.007757262792438269, 0.040749043226242065, -0.015091302804648876, -0.03434990346431732, -0.053316351026296616, 0.02418244071304798, 0.03470858931541443, 0.030597442761063576, 0.04055819660425186, -0.03293841332197189, -0.04877287149429321, 0.012794259004294872, 0.024811746552586555, -0.041873499751091, -0.0016822657780721784, 0.041451409459114075, 0.03480697050690651, -0.04689338430762291, -0.023589106276631355, -0.019233733415603638, -0.02039632387459278, 0.04463202878832817, 0.006863932590931654, -0.02341615781188011, -0.045017533004283905, 0.040329765528440475, -0.01929974928498268, -0.03585308417677879, -0.06882528215646744, 0.050117406994104385, -0.012946642003953457, -0.023486435413360596, 0.05926958844065666, 0.02800547145307064, 0.015903042629361153, 0.0667167380452156, 0.03180428966879845, 0.016262080520391464, -0.034975480288267136, 0.04743501543998718, -0.03379269316792488, -0.0176350399851799, 0.003965320531278849, -0.03885659947991371, -0.034568700939416885, 0.002970147179439664, -0.06331796944141388, -0.031373925507068634, -0.024599352851510048, 0.018282737582921982, -0.003921273164451122, -0.019521502777934074, -0.002717995783314109, 0.0597103014588356, -0.011056461371481419, -0.045152634382247925, -0.043505940586328506, -0.01823350228369236, -0.0586002953350544, -0.047315891832113266, -0.0036828494630753994, 0.010754532180726528, 0.03608253598213196, 0.029566552489995956, 0.019595813006162643, 0.018857281655073166, 0.014888678677380085, -0.03912699967622757, 0.018216261640191078, 0.02454184554517269, -0.0365549772977829, -0.01859346404671669, 0.03633361682295799, 0.015198773704469204, 0.021333983168005943, -0.03525594249367714, 0.032493215054273605, 0.006294547114521265, -0.005306370090693235, -0.01816796138882637, 0.011221352033317089, 0.033672064542770386, -0.06486447155475616, -0.034156326204538345, -0.013543244451284409, -0.028647148981690407, 0.03157544881105423, -0.02756187878549099, -0.02363705076277256, 0.012599818408489227, -0.002635045675560832, 0.03507975488901138, -0.026844916865229607, -0.011486968956887722, 0.02933240495622158, 0.007525155320763588, 0.02200610376894474, -0.05195929482579231, 0.06486252695322037, -0.0342428982257843, 0.01767948642373085, -0.026272853836417198, 0.009018282406032085, -0.026211878284811974, 0.025786014273762703, -0.017191046848893166, -0.02748938836157322, -0.003475954756140709, 0.05843353644013405, -0.013587079010903835, 0.03472656384110451, -0.011640127748250961, 0.03762754797935486, -0.026212727651000023, 0.07155422121286392, -0.04360273480415344, 0.02214929088950157, -0.03929866850376129, 0.026104280725121498, -0.020839707925915718, 0.018536752089858055, -0.00689893402159214, -0.0181878749281168, 0.03487556427717209, 0.05643150210380554, 0.025705887004733086, 0.03677273541688919, 0.002459375886246562, -0.010931847617030144, 0.006400836631655693, -0.04635936766862869, -0.02610761672258377, -0.005992847494781017, -0.002152652246877551, -0.02451680786907673, 0.06196032464504242, 0.02978588454425335, -0.04976281896233559, -0.07482043653726578, 0.03578568622469902, 0.021413002163171768, 0.006211496889591217, 0.0048020682297647, 0.05095561221241951, 0.03409401327371597, 0.03760712593793869, -0.02416212111711502, -0.008039497770369053, 0.0063023753464221954, -0.04870494455099106, 0.02759384736418724, -0.007602218072861433, 0.02477734535932541, 0.011210071854293346, -0.03797079250216484, -0.02307347021996975, 0.054258909076452255, 0.022743165493011475, 0.025163598358631134, 0.0010848151287063956, -0.04103776812553406, 0.0328814834356308, 0.008921969681978226, -0.03898550570011139, 0.02595771662890911, 0.012022783979773521, -0.021563081070780754, 0.0373074933886528, -0.010735428892076015, 0.01288203988224268, 0.0636182501912117, 0.01952274516224861, -0.01662895828485489, 0.07061392068862915, -0.042152710258960724, 0.010574535466730595, 0.034929290413856506, -0.07451491802930832, -0.009561833925545216, -0.0542469248175621, 0.058267299085855484, -0.06368108093738556, 0.022928768768906593, 0.055677082389593124, 0.00047015532618388534, 0.02835158444941044, -0.044805120676755905, -0.0638822615146637, 0.021553287282586098, -0.03632013872265816, 0.06478272378444672, 0.016282103955745697, -0.05418414995074272, 0.05549176409840584, 0.016315575689077377, -0.055041179060935974, 0.03686942532658577, 0.02915065549314022, 0.056280311197042465, 0.029575541615486145, 0.047904279083013535, -0.04689309746026993, 0.0004204706638120115, -0.036586321890354156, 0.02502608671784401, -0.05581812560558319, -0.014985219575464725, 0.034463271498680115, -0.03997112065553665, -0.023035893216729164, 0.03386174514889717, -0.019811445847153664, -0.014983635395765305, 0.06053605675697327, -0.052995678037405014, -0.041279491037130356, 0.013041062280535698, 0.017809545621275902, -0.046634286642074585, -0.013524658046662807, -0.03379669785499573, 0.010005781427025795, 0.011242711916565895, -0.0022568129934370518, -0.028309820219874382, -0.019559131935238838, 0.026765553280711174, -0.03745923563838005, -0.02893706038594246, 0.02429625391960144, -0.009551994502544403, -0.025392334908246994, 0.036317311227321625, 0.011322246864438057, 0.010628795251250267, 0.028203900903463364, -0.01937846653163433, 0.025102831423282623, -0.04545840248465538, -0.01493899617344141, 0.037882402539253235, -0.008122514933347702, 0.017409121617674828, 0.00857300590723753, 0.03449948504567146, 0.04258545860648155, 0.027533497661352158, -0.002719305921345949, -0.03319074213504791, -0.03185829520225525, 0.021259285509586334, -0.037357211112976074, 0.006391179747879505, -0.0016330344369634986, -0.0442100390791893, -0.026125550270080566, -0.003425480565056205, -0.03566832095384598, 0.04739571735262871, -0.06592026352882385, 0.004133068956434727, 0.041496679186820984, -0.017005909234285355, -0.0590977780520916, -0.11042995005846024, -0.010339751839637756, -0.05320007726550102, -0.016039442270994186, 0.050112951546907425, -0.03807895630598068, 0.04767480120062828, -0.05020889267325401, -0.040724314749240875, 0.037901371717453, 0.04491757974028587, -0.05784742161631584, 0.0569843165576458, 0.042732249945402145, -0.046901050955057144, 0.012062624096870422, 0.020238419994711876, -0.05774976685643196, 0.003275074064731598, 0.017392953857779503, -0.0024605686776340008, 0.024845067411661148, 0.013527600094676018, -0.056092604994773865, -0.024725792929530144, -0.06444402784109116, -0.033400923013687134, -0.046677496284246445, 0.010473091155290604, 0.048927612602710724 ]
Deniskin/gpt3_medium
[ "pytorch", "gpt2", "text-generation", "transformers", "has_space" ]
text-generation
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
52
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-6 results: [] --- <!-- 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__subj__train-8-6 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6075 - Accuracy: 0.7485 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7163 | 1.0 | 3 | 0.6923 | 0.5 | | 0.6648 | 2.0 | 6 | 0.6838 | 0.5 | | 0.6329 | 3.0 | 9 | 0.6747 | 0.75 | | 0.5836 | 4.0 | 12 | 0.6693 | 0.5 | | 0.5287 | 5.0 | 15 | 0.6670 | 0.25 | | 0.4585 | 6.0 | 18 | 0.6517 | 0.5 | | 0.415 | 7.0 | 21 | 0.6290 | 0.5 | | 0.3353 | 8.0 | 24 | 0.6019 | 0.5 | | 0.2841 | 9.0 | 27 | 0.5613 | 0.75 | | 0.2203 | 10.0 | 30 | 0.5222 | 1.0 | | 0.1743 | 11.0 | 33 | 0.4769 | 1.0 | | 0.1444 | 12.0 | 36 | 0.4597 | 1.0 | | 0.1079 | 13.0 | 39 | 0.4462 | 1.0 | | 0.0891 | 14.0 | 42 | 0.4216 | 1.0 | | 0.0704 | 15.0 | 45 | 0.3880 | 1.0 | | 0.0505 | 16.0 | 48 | 0.3663 | 1.0 | | 0.0428 | 17.0 | 51 | 0.3536 | 1.0 | | 0.0356 | 18.0 | 54 | 0.3490 | 1.0 | | 0.0283 | 19.0 | 57 | 0.3531 | 1.0 | | 0.025 | 20.0 | 60 | 0.3595 | 1.0 | | 0.0239 | 21.0 | 63 | 0.3594 | 1.0 | | 0.0202 | 22.0 | 66 | 0.3521 | 1.0 | | 0.0168 | 23.0 | 69 | 0.3475 | 1.0 | | 0.0159 | 24.0 | 72 | 0.3458 | 1.0 | | 0.0164 | 25.0 | 75 | 0.3409 | 1.0 | | 0.0132 | 26.0 | 78 | 0.3360 | 1.0 | | 0.0137 | 27.0 | 81 | 0.3302 | 1.0 | | 0.0112 | 28.0 | 84 | 0.3235 | 1.0 | | 0.0113 | 29.0 | 87 | 0.3178 | 1.0 | | 0.0111 | 30.0 | 90 | 0.3159 | 1.0 | | 0.0113 | 31.0 | 93 | 0.3108 | 1.0 | | 0.0107 | 32.0 | 96 | 0.3101 | 1.0 | | 0.0101 | 33.0 | 99 | 0.3100 | 1.0 | | 0.0083 | 34.0 | 102 | 0.3110 | 1.0 | | 0.0092 | 35.0 | 105 | 0.3117 | 1.0 | | 0.0102 | 36.0 | 108 | 0.3104 | 1.0 | | 0.0086 | 37.0 | 111 | 0.3086 | 1.0 | | 0.0092 | 38.0 | 114 | 0.3047 | 1.0 | | 0.0072 | 39.0 | 117 | 0.3024 | 1.0 | | 0.0079 | 40.0 | 120 | 0.3014 | 1.0 | | 0.0079 | 41.0 | 123 | 0.2983 | 1.0 | | 0.0091 | 42.0 | 126 | 0.2948 | 1.0 | | 0.0077 | 43.0 | 129 | 0.2915 | 1.0 | | 0.0085 | 44.0 | 132 | 0.2890 | 1.0 | | 0.009 | 45.0 | 135 | 0.2870 | 1.0 | | 0.0073 | 46.0 | 138 | 0.2856 | 1.0 | | 0.0073 | 47.0 | 141 | 0.2844 | 1.0 | | 0.0076 | 48.0 | 144 | 0.2841 | 1.0 | | 0.0065 | 49.0 | 147 | 0.2836 | 1.0 | | 0.0081 | 50.0 | 150 | 0.2835 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014481935650110245, 0.00838092714548111, -0.03544297814369202, 0.04480515047907829, 0.04947074502706528, 0.013141404837369919, -0.018027804791927338, -0.02624860592186451, -0.0540071576833725, 0.057861752808094025, 0.011387033388018608, -0.03870054706931114, 0.006547556258738041, 0.04115763306617737, -0.023395389318466187, -0.03312524035573006, -0.001775506534613669, -0.00906128529459238, -0.036105696111917496, 0.0012137945741415024, 0.002275220351293683, -0.012161584571003914, -0.013851865194737911, 0.004172818269580603, -0.005545370280742645, 0.017420370131731033, 0.004602949135005474, 0.02121572382748127, 0.03309188783168793, -0.0654248297214508, 0.0167616605758667, -0.0337100587785244, -0.04967396333813667, -0.02007506601512432, -0.011375290341675282, -0.013476955704391003, -0.000157011192641221, 0.03235712647438049, 0.03929014131426811, 0.047856297343969345, 0.007190849166363478, 0.027380894869565964, 0.0007651564665138721, -0.009600098244845867, 0.05427245795726776, 0.01143396832048893, -0.02725672349333763, 0.0015213118167594075, 0.03988140448927879, -0.025639904662966728, -0.08164643496274948, -0.0497436597943306, -0.016772259026765823, 0.017128076404333115, -0.019345056265592575, -0.010252188891172409, -0.05920450761914253, 0.014135032892227173, 0.06414233148097992, -0.04579029977321625, -0.02912060357630253, -0.0016389990923926234, -0.07053077220916748, 0.006156104151159525, 0.026605207473039627, -0.016518186777830124, 0.009476660750806332, -0.04652028903365135, 0.03136177361011505, -0.010997972451150417, 0.05951236933469772, -0.019215909764170647, 0.01386320311576128, -0.06845755130052567, -0.019909285008907318, -0.002879729261621833, 0.04592837020754814, 0.06466967612504959, -0.03480784222483635, 0.04806983470916748, 0.02510881796479225, 0.0008962309220805764, 0.04442491754889488, -0.0273832306265831, 0.020033979788422585, 0.03045601211488247, -0.043075885623693466, -0.006211701314896345, 0.011250765062868595, 0.02428395301103592, -0.03721773251891136, -0.03910473734140396, -0.033046379685401917, -0.028472254052758217, -0.006057660095393658, 0.02005184069275856, 0.02659148909151554, 0.0169743150472641, 0.04408813640475273, 0.02004857361316681, 0.028952473774552345, 0.04011130332946777, -0.027964472770690918, 0.0752810388803482, -0.006922793108969927, -0.005475700367242098, -0.009912383742630482, -0.020399414002895355, -0.04763069003820419, 0.027012962847948074, 0.031400978565216064, -0.020058492198586464, -0.016742568463087082, 0.037757717072963715, 0.004475689493119717, -0.0003239410580135882, 0.08303406834602356, -0.017173299565911293, -0.04337005317211151, -0.033630531281232834, 0.023702343925833702, 0.0161052905023098, -0.013452626764774323, 0.016959333792328835, -0.04778357967734337, -0.016410084441304207, -0.02914884313941002, -0.018915211781859398, -0.01740332320332527, 0.01946594938635826, 0.005608070641756058, 0.07156264036893845, 0.03554298356175423, -0.08395472913980484, 0.0017961960984393954, 0.01447695679962635, -0.054572492837905884, 0.05373052880167961, 0.025982754305005074, 0.11501961201429367, -0.060656867921352386, -0.06556877493858337, 0.014471733942627907, 0.0017914007185027003, -0.04338536411523819, 0.016761722043156624, 0.0021108200307935476, -0.027656540274620056, 0.0030971895903348923, 0.0037886733189225197, 0.06534331291913986, -0.04128596931695938, -0.010206280276179314, 0.07255467027425766, -0.0029037389904260635, 0.04244423285126686, -0.05230160057544708, -0.025299614295363426, 0.01566590927541256, -0.023565609008073807, -0.03015819750726223, 0.04601827263832092, -0.03299655765295029, -0.019621731713414192, -0.019894268363714218, -0.024598749354481697, 0.011064156889915466, 0.0747913271188736, -0.0040292441844940186, -0.029848670586943626, -0.01843256503343582, 0.020321549847722054, 0.04188607260584831, 0.04425258934497833, -0.02978530339896679, 0.02617107518017292, 0.06011044606566429, 0.031673505902290344, -0.031558647751808167, 0.03800171986222267, 0.028663819655776024, -0.0268001239746809, -0.023763485252857208, 0.035658542066812515, 0.009180852212011814, -0.0444786362349987, 0.041854288429021835, 0.013925138860940933, 0.0037659811787307262, -0.0663832500576973, -0.04029269143939018, 0.03922135382890701, -0.010288129560649395, -0.008399885147809982, 0.011447935365140438, 0.016937969252467155, -0.020743807777762413, 0.040951088070869446, -0.012819354422390461, 0.006673904601484537, -0.02738683857023716, -0.022575531154870987, 0.011068925261497498, -0.017747221514582634, 0.02416616678237915, 0.04521746188402176, -0.004185449797660112, 0.10141923278570175, -0.042241644114255905, 0.020036350935697556, -0.05681874603033066, -0.03628252446651459, 0.03035687655210495, 0.05957230180501938, 0.05376789718866348, 0.051925018429756165, 0.006921192165464163, -0.027472779154777527, 0.04225405678153038, 0.06926190108060837, 0.0425906628370285, -0.00727724377065897, -0.0362890250980854, -0.006712996866554022, 0.03839480131864548, 0.049170512706041336, -0.05004672706127167, -0.012191325426101685, 0.005997953470796347, 0.03296329453587532, -0.005700250156223774, 0.01603502593934536, -0.023921875283122063, 0.0396764911711216, -0.04332748055458069, -0.04984439164400101, 0.038375526666641235, 0.022148381918668747, -0.0066734845750033855, 0.02751348726451397, 0.03488665074110031, 0.008434532210230827, 0.019027890637516975, 0.023860175162553787, 0.01091712899506092, -0.05361378937959671, 0.017953652888536453, -0.0012739722151309252, 0.05321625620126724, -0.05264560133218765, 0.0307291429489851, -0.024545084685087204, 0.024771278724074364, 0.04809005185961723, -0.028539299964904785, 0.03376829996705055, 0.05949436128139496, 0.022210458293557167, -0.03608982637524605, 0.028625115752220154, 0.004871467128396034, 0.037126556038856506, 0.03652703016996384, 0.010904253460466862, 0.07317309826612473, 0.020088043063879013, 0.0474100187420845, 0.07766379415988922, 0.01362794078886509, 0.03873100504279137, 0.018833978101611137, 0.06830734759569168, 0.013575216755270958, -0.007186663802713156, 0.048818886280059814, -0.04427536949515343, 0.027783330529928207, -0.060439638793468475, 0.0009910762310028076, -0.021944591775536537, -0.004473057575523853, 0.056507792323827744, 0.02529597096145153, -0.02918572537600994, -0.010902565903961658, 0.016619792208075523, -0.011747046373784542, 0.0210178941488266, -0.006975926924496889, 0.010132739320397377, -0.00735440431162715, -0.02102784439921379, -0.019910302013158798, -0.06793756783008575, -0.04602488502860069, -0.021940704435110092, -0.016739359125494957, -0.024686681106686592, -0.09251262247562408, -0.003981877118349075, -0.0835404247045517, -0.01967686228454113, 0.02723534405231476, 0.006148412358015776, -0.025354797020554543, -0.03669045865535736, 0.02796579711139202, -0.04659372568130493, -0.03149091824889183, -0.04737618565559387, -0.06425363570451736, -0.05513516440987587, -0.08055461943149567, 0.043798159807920456, 0.03576020896434784, 0.006582422647625208, -0.0019918058533221483, 0.03228854760527611, 0.012952701188623905, -0.03033563867211342, 0.03505146875977516, 0.05977576971054077, -0.03576294332742691, -0.04883768409490585, 0.03324999287724495, -0.010919010266661644, 0.014253243803977966, 0.01938636228442192, -0.029553638771176338, 0.09486209601163864, 0.06785260140895844, 0.015445847995579243, 0.026613909751176834, -0.012399205006659031, -0.0668892189860344, -0.06631390750408173, -0.026325050741434097, -0.04275331273674965, -0.004913204815238714, -0.04339268431067467, -0.04000156745314598, -0.03699176758527756, -0.043252069503068924, 0.01615704782307148, -0.013106029480695724, 0.027566976845264435, 0.02601877972483635, 0.03917725384235382, 0.027377041056752205, 0.04637070745229721, -0.028313441202044487, -0.028456449508666992, 0.0548960343003273, 0.013967933133244514, 0.00859412644058466, -0.08463744074106216, -0.0021838569082319736, 0.025068184360861778, 0.019335055723786354, 0.02354826033115387, -0.006063832435756922, 0.07558593899011612, -0.011551574803888798, 0.0044225286692380905, 0.016547227278351784, -0.005848110653460026, -0.009386435151100159, -0.0028772500809282064, -0.00641320226714015, 0.004224632866680622, -0.0271553136408329, -0.03189999610185623, -0.010730704292654991, 0.027907632291316986, -0.0572497583925724, -0.06036410853266716, -0.01467969547957182, 0.033011917024850845, 0.04248552769422531, -0.009065343998372555, -0.045956362038850784, -0.009176811203360558, -0.07124887406826019, -0.005374226253479719, 0.026103926822543144, 0.0110996188595891, -0.005991769954562187, 0.04101032018661499, 0.014345075003802776, -0.0059258281253278255, 0.024456482380628586, 0.05129283294081688, 0.06728079169988632, 0.01499494444578886, -0.07747238874435425, -0.00192066200543195, -0.019742870703339577, 0.015790002420544624, -0.014773146249353886, -0.016896840184926987, -0.021466510370373726, -0.09387432783842087, -0.018732212483882904, 0.01067862194031477, 0.005838535726070404, -0.01242248248308897, 0.04428407922387123, 0.000814035243820399, -0.028570793569087982, -0.0013415298890322447, 0.01631530374288559, 0.03764814883470535, -0.033762767910957336, 0.04904894530773163, -0.029535191133618355, 0.003640861948952079, -0.06230022385716438, 0.01467331126332283, -0.05118096247315407, -0.03046136349439621, 0.01016529742628336, 0.052051443606615067, -0.021617157384753227, 0.05716881528496742, 0.07569347321987152, 0.045535631477832794, -0.06151352450251579, 0.03830635920166969, 0.0785459578037262, -0.03535043075680733, -0.04198223352432251, -0.00721823750063777, -0.0016964819515123963, -0.016414321959018707, -0.000861453649122268, -0.012587281875312328, 0.04838881641626358, 0.02557297609746456, 0.005748232360929251, 0.011945277452468872, -0.006956249941140413, -0.010617406107485294, -0.0311906598508358, -0.0534752793610096, -0.0330975204706192, -0.00038927202695049345, -0.0296783410012722, 0.01927526667714119, 0.027218759059906006, 0.03573941811919212, 0.077363982796669, 0.022192196920514107, -0.042137086391448975, -0.006967916153371334, 0.01863926090300083, 0.015321657992899418, -0.01772857829928398, -0.07303529232740402, -0.044694654643535614, 0.025641676038503647, 0.04540223628282547, -0.025839366018772125, -0.06676375865936279, 0.01820247992873192, 0.049948904663324356, -0.05151371657848358, 0.053027309477329254, -0.013110779225826263, 0.0579073503613472, 0.05291493982076645, -0.009231461212038994, 0.038185372948646545, -0.022503258660435677, -0.00982040073722601, -0.0063986093737185, 0.04166285693645477, -0.013691417872905731, -0.03496421501040459, -0.051558561623096466, 0.022876065224409103, 0.03550942987203598, 0.03134438395500183, 0.0393037348985672, -0.033034659922122955, -0.0473656952381134, 0.011001340113580227, 0.025564072653651237, -0.042082712054252625, -0.004200274124741554, 0.04059181362390518, 0.03476209193468094, -0.04953848198056221, -0.023555578663945198, -0.02095356583595276, -0.022754443809390068, 0.04239790141582489, 0.006280073896050453, -0.024205831810832024, -0.046158675104379654, 0.0380435511469841, -0.019594548270106316, -0.03400115668773651, -0.071247898042202, 0.05204205960035324, -0.010789920575916767, -0.023104587569832802, 0.05881686136126518, 0.02924766018986702, 0.017413411289453506, 0.0670277327299118, 0.030285052955150604, 0.01726861298084259, -0.03321902081370354, 0.04663391038775444, -0.035746730864048004, -0.01910766214132309, 0.006779818795621395, -0.03888756409287453, -0.032767023891210556, 0.0029439397621899843, -0.06314028799533844, -0.03222338482737541, -0.02640746906399727, 0.017700865864753723, -0.0029719281010329723, -0.020422348752617836, -0.004437323659658432, 0.05836721137166023, -0.01007761899381876, -0.045153986662626266, -0.044270142912864685, -0.019562384113669395, -0.06014977768063545, -0.04667046293616295, -0.002096916316077113, 0.011091634631156921, 0.03413473442196846, 0.03020554408431053, 0.018925663083791733, 0.018299059942364693, 0.016162866726517677, -0.039015885442495346, 0.0197359137237072, 0.024163415655493736, -0.03640897944569588, -0.018011845648288727, 0.03711702674627304, 0.01495872437953949, 0.02094314806163311, -0.0360255166888237, 0.03200709447264671, 0.003735202131792903, -0.00672703143209219, -0.017286840826272964, 0.01197952963411808, 0.03333421051502228, -0.06428777426481247, -0.03309169039130211, -0.01590954139828682, -0.029664503410458565, 0.032154738903045654, -0.02488386631011963, -0.021586824208498, 0.012688986957073212, -0.0006152873975224793, 0.034912001341581345, -0.026867596432566643, -0.010556520894169807, 0.02786967158317566, 0.007590155582875013, 0.02118716575205326, -0.05282570794224739, 0.06421861052513123, -0.03575698658823967, 0.019279034808278084, -0.02440456487238407, 0.008635006844997406, -0.02730979584157467, 0.027106953784823418, -0.0169347133487463, -0.027979696169495583, -0.005230254493653774, 0.05853673815727234, -0.013840400613844395, 0.03524680435657501, -0.010555104352533817, 0.039124995470047, -0.026961645111441612, 0.07214006036520004, -0.04369208216667175, 0.02135399542748928, -0.0381125882267952, 0.02773321606218815, -0.02147717773914337, 0.018871162086725235, -0.007222842425107956, -0.01795041933655739, 0.03486607223749161, 0.05516478791832924, 0.02425229363143444, 0.0363040566444397, 0.0025679506361484528, -0.011627617292106152, 0.007635911460965872, -0.045612841844558716, -0.023626534268260002, -0.0056595648638904095, -0.002130316337570548, -0.02292867936193943, 0.0636027604341507, 0.030726507306098938, -0.04995181784033775, -0.07582680881023407, 0.03826422616839409, 0.02072966657578945, 0.004543675109744072, 0.0041690487414598465, 0.050592489540576935, 0.033894866704940796, 0.036385249346494675, -0.02551647461950779, -0.010050501674413681, 0.003911284729838371, -0.049577418714761734, 0.02511032298207283, -0.00966392457485199, 0.024584779515862465, 0.010640411637723446, -0.036404650658369064, -0.02435317449271679, 0.05565522238612175, 0.023571979254484177, 0.024868514388799667, 0.0014706592774018645, -0.039502110332250595, 0.031478140503168106, 0.009890304878354073, -0.0390632227063179, 0.02396206371486187, 0.010180630721151829, -0.023199809715151787, 0.03624093160033226, -0.011206764727830887, 0.011389090679585934, 0.06292321532964706, 0.018424473702907562, -0.016346797347068787, 0.07085579633712769, -0.04243118315935135, 0.012064103037118912, 0.0370229035615921, -0.07678734511137009, -0.012417417950928211, -0.05560232326388359, 0.05793175846338272, -0.06454911082983017, 0.023542974144220352, 0.05555181950330734, -0.0015279134968295693, 0.029449835419654846, -0.04767703264951706, -0.06375963240861893, 0.021978061646223068, -0.03745843842625618, 0.06448159366846085, 0.016779936850070953, -0.051392458379268646, 0.053816284984350204, 0.015758482739329338, -0.05442113056778908, 0.037827495485544205, 0.030533742159605026, 0.05428971350193024, 0.029418015852570534, 0.047769784927368164, -0.04650165140628815, -0.0012255427427589893, -0.03455006703734398, 0.02223285846412182, -0.05370834842324257, -0.014435132034122944, 0.03292715549468994, -0.039329420775175095, -0.02231430634856224, 0.03241801634430885, -0.0184011310338974, -0.012421839870512486, 0.059732452034950256, -0.05096480995416641, -0.04595073312520981, 0.012088716961443424, 0.019355613738298416, -0.04781018942594528, -0.012080268934369087, -0.03320068493485451, 0.006880173459649086, 0.010276712477207184, -0.002307045506313443, -0.027750149369239807, -0.02033986710011959, 0.027184272184967995, -0.0392925851047039, -0.029684968292713165, 0.02498852275311947, -0.009027920663356781, -0.024391774088144302, 0.03507831692695618, 0.012462997809052467, 0.011039607226848602, 0.029559344053268433, -0.019144563004374504, 0.02300897426903248, -0.04398803412914276, -0.01580463908612728, 0.0373687818646431, -0.010450180619955063, 0.021187487989664078, 0.009951340034604073, 0.03402990847826004, 0.04170972481369972, 0.026865258812904358, -0.002570061944425106, -0.03375216946005821, -0.03036770038306713, 0.018718374893069267, -0.038669753819704056, 0.003803177271038294, -0.0005087894969619811, -0.045271407812833786, -0.026319298893213272, -0.005018615163862705, -0.03573654592037201, 0.04620550945401192, -0.0646551176905632, 0.005021438002586365, 0.04282817989587784, -0.01905272901058197, -0.06029728055000305, -0.11184681951999664, -0.008762574754655361, -0.051451001316308975, -0.015092156827449799, 0.04911751672625542, -0.03663371875882149, 0.047993991523981094, -0.050045933574438095, -0.039779387414455414, 0.0351436622440815, 0.0471884049475193, -0.05815669149160385, 0.057393431663513184, 0.04357133433222771, -0.04661092907190323, 0.01247384212911129, 0.02036394365131855, -0.05851602181792259, 0.003599919145926833, 0.018181685358285904, -0.003449495881795883, 0.02649819478392601, 0.014889165759086609, -0.05585815757513046, -0.023479875177145004, -0.06679301708936691, -0.034795042127370834, -0.04793805256485939, 0.010900781489908695, 0.04831758141517639 ]
Denny29/DialoGPT-medium-asunayuuki
[ "pytorch", "gpt2", "text-generation", "transformers", "conversational" ]
conversational
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": 1000 }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-7 results: [] --- <!-- 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__subj__train-8-7 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.2766 - Accuracy: 0.8845 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7044 | 1.0 | 3 | 0.6909 | 0.5 | | 0.6678 | 2.0 | 6 | 0.6901 | 0.5 | | 0.6336 | 3.0 | 9 | 0.6807 | 0.5 | | 0.5926 | 4.0 | 12 | 0.6726 | 0.5 | | 0.5221 | 5.0 | 15 | 0.6648 | 0.5 | | 0.4573 | 6.0 | 18 | 0.6470 | 0.5 | | 0.4177 | 7.0 | 21 | 0.6251 | 0.5 | | 0.3252 | 8.0 | 24 | 0.5994 | 0.5 | | 0.2831 | 9.0 | 27 | 0.5529 | 0.5 | | 0.213 | 10.0 | 30 | 0.5078 | 0.75 | | 0.1808 | 11.0 | 33 | 0.4521 | 1.0 | | 0.1355 | 12.0 | 36 | 0.3996 | 1.0 | | 0.1027 | 13.0 | 39 | 0.3557 | 1.0 | | 0.0862 | 14.0 | 42 | 0.3121 | 1.0 | | 0.0682 | 15.0 | 45 | 0.2828 | 1.0 | | 0.0517 | 16.0 | 48 | 0.2603 | 1.0 | | 0.0466 | 17.0 | 51 | 0.2412 | 1.0 | | 0.038 | 18.0 | 54 | 0.2241 | 1.0 | | 0.0276 | 19.0 | 57 | 0.2096 | 1.0 | | 0.0246 | 20.0 | 60 | 0.1969 | 1.0 | | 0.0249 | 21.0 | 63 | 0.1859 | 1.0 | | 0.0201 | 22.0 | 66 | 0.1770 | 1.0 | | 0.018 | 23.0 | 69 | 0.1703 | 1.0 | | 0.0164 | 24.0 | 72 | 0.1670 | 1.0 | | 0.0172 | 25.0 | 75 | 0.1639 | 1.0 | | 0.0135 | 26.0 | 78 | 0.1604 | 1.0 | | 0.014 | 27.0 | 81 | 0.1585 | 1.0 | | 0.0108 | 28.0 | 84 | 0.1569 | 1.0 | | 0.0116 | 29.0 | 87 | 0.1549 | 1.0 | | 0.0111 | 30.0 | 90 | 0.1532 | 1.0 | | 0.0113 | 31.0 | 93 | 0.1513 | 1.0 | | 0.0104 | 32.0 | 96 | 0.1503 | 1.0 | | 0.01 | 33.0 | 99 | 0.1490 | 1.0 | | 0.0079 | 34.0 | 102 | 0.1479 | 1.0 | | 0.0097 | 35.0 | 105 | 0.1466 | 1.0 | | 0.0112 | 36.0 | 108 | 0.1458 | 1.0 | | 0.0091 | 37.0 | 111 | 0.1457 | 1.0 | | 0.0098 | 38.0 | 114 | 0.1454 | 1.0 | | 0.0076 | 39.0 | 117 | 0.1451 | 1.0 | | 0.0085 | 40.0 | 120 | 0.1448 | 1.0 | | 0.0079 | 41.0 | 123 | 0.1445 | 1.0 | | 0.0096 | 42.0 | 126 | 0.1440 | 1.0 | | 0.0081 | 43.0 | 129 | 0.1430 | 1.0 | | 0.0083 | 44.0 | 132 | 0.1424 | 1.0 | | 0.0088 | 45.0 | 135 | 0.1418 | 1.0 | | 0.0077 | 46.0 | 138 | 0.1414 | 1.0 | | 0.0073 | 47.0 | 141 | 0.1413 | 1.0 | | 0.0084 | 48.0 | 144 | 0.1412 | 1.0 | | 0.0072 | 49.0 | 147 | 0.1411 | 1.0 | | 0.0077 | 50.0 | 150 | 0.1411 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.01392266433686018, 0.008558557368814945, -0.03684787079691887, 0.04543646052479744, 0.04995344951748848, 0.014860196970403194, -0.017867814749479294, -0.02525707706809044, -0.052877526730298996, 0.05980440974235535, 0.012594262138009071, -0.036884959787130356, 0.007440758403390646, 0.042630840092897415, -0.02228701114654541, -0.03439806029200554, -0.0032868320122361183, -0.009048627689480782, -0.03632808104157448, 0.0016791909001767635, 0.0024765427224338055, -0.012877482920885086, -0.014480320736765862, 0.004272655583918095, -0.005757708102464676, 0.018760746344923973, 0.0043511465191841125, 0.021491874009370804, 0.03310873731970787, -0.06375712901353836, 0.015661541372537613, -0.03236057609319687, -0.050488632172346115, -0.02008644863963127, -0.010982583276927471, -0.01450236514210701, -0.0015658969059586525, 0.0326969139277935, 0.03856645151972771, 0.0482027642428875, 0.005686205346137285, 0.02885199524462223, 0.0013125764671713114, -0.008433308452367783, 0.05606423318386078, 0.01070188358426094, -0.02572205662727356, 0.0017942276317626238, 0.04062972590327263, -0.025449246168136597, -0.08087291568517685, -0.05089392885565758, -0.018858935683965683, 0.018141619861125946, -0.018669670447707176, -0.010602463036775589, -0.06157195568084717, 0.01235602144151926, 0.06337717175483704, -0.04612854868173599, -0.028806058689951897, -0.0023764572106301785, -0.07107117772102356, 0.005281488411128521, 0.02784760855138302, -0.015828974545001984, 0.007674574386328459, -0.047288473695516586, 0.03267091512680054, -0.012205460108816624, 0.06139373779296875, -0.020288577303290367, 0.014450592920184135, -0.07026397436857224, -0.018352635204792023, -0.003201194806024432, 0.046104490756988525, 0.06397371739149094, -0.03386227414011955, 0.04791555926203728, 0.02571845054626465, 0.0007439125911332667, 0.04381940886378288, -0.027391312643885612, 0.01879262365400791, 0.029421057552099228, -0.042797304689884186, -0.008462542667984962, 0.011808052659034729, 0.02361741103231907, -0.03704153001308441, -0.038014914840459824, -0.03258099406957626, -0.027955664321780205, -0.007289252709597349, 0.01905689388513565, 0.028069131076335907, 0.015270349569618702, 0.042909469455480576, 0.018779167905449867, 0.02590639889240265, 0.04024558141827583, -0.028855817392468452, 0.07635104656219482, -0.008887615986168385, -0.0033679059706628323, -0.010602614842355251, -0.01898578368127346, -0.04896809533238411, 0.026389144361019135, 0.03206373751163483, -0.01977200247347355, -0.01748543232679367, 0.037775807082653046, 0.004931382369250059, 0.00008296656596940011, 0.0825284793972969, -0.017758911475539207, -0.04371646046638489, -0.03428083285689354, 0.02234220877289772, 0.015502003021538258, -0.014109060168266296, 0.0160808302462101, -0.048327915370464325, -0.01643385924398899, -0.028694432228803635, -0.017952967435121536, -0.015805652365088463, 0.020183514803647995, 0.00367826409637928, 0.06775468587875366, 0.03737048804759979, -0.08390028029680252, 0.0010292557999491692, 0.01426801085472107, -0.05421268567442894, 0.05252548307180405, 0.026489030569791794, 0.11455489695072174, -0.06006660684943199, -0.0671362429857254, 0.014554295688867569, 0.00148188101593405, -0.044034793972969055, 0.01571955904364586, 0.003876198548823595, -0.025945700705051422, 0.0019000519532710314, 0.004865126218646765, 0.0640832856297493, -0.042386770248413086, -0.009067303501069546, 0.0732187032699585, -0.0030109162908047438, 0.04362804442644119, -0.05407623574137688, -0.028800243511795998, 0.01582714170217514, -0.021904094144701958, -0.032049618661403656, 0.04593318700790405, -0.031170599162578583, -0.01925123669207096, -0.020543653517961502, -0.02599935233592987, 0.01037522405385971, 0.07513453811407089, -0.0026872630696743727, -0.030964050441980362, -0.01744057610630989, 0.01960061304271221, 0.04175419360399246, 0.045892003923654556, -0.029564369469881058, 0.025654751807451248, 0.05858435481786728, 0.0322243869304657, -0.030809985473752022, 0.03771894797682762, 0.03131863474845886, -0.025788439437747, -0.02362741157412529, 0.033281490206718445, 0.010140080004930496, -0.046485308557748795, 0.04134080559015274, 0.014482839964330196, 0.004732026252895594, -0.06563156843185425, -0.04086099937558174, 0.04152211919426918, -0.008220134302973747, -0.010161611251533031, 0.011115244589745998, 0.01699434220790863, -0.01903918944299221, 0.041822101920843124, -0.01417261641472578, 0.0063139889389276505, -0.02831358090043068, -0.021682506427168846, 0.011429790407419205, -0.01711328700184822, 0.024792952463030815, 0.04435574263334274, -0.004406788852065802, 0.10197030007839203, -0.04149245470762253, 0.019751396030187607, -0.05773355811834335, -0.035525672137737274, 0.02990778535604477, 0.060016799718141556, 0.054704029113054276, 0.05243752896785736, 0.008402491919696331, -0.029774965718388557, 0.044518351554870605, 0.06850267201662064, 0.041066043078899384, -0.005208943970501423, -0.0352342426776886, -0.007240741513669491, 0.03787686675786972, 0.050041843205690384, -0.04953181371092796, -0.012678866274654865, 0.005297950468957424, 0.03344373404979706, -0.006894939579069614, 0.015930872410535812, -0.02304881252348423, 0.04112318158149719, -0.041441503912210464, -0.05007745325565338, 0.03794918954372406, 0.02287363074719906, -0.00449084909632802, 0.02968616411089897, 0.03573814406991005, 0.008556239306926727, 0.01987936906516552, 0.023227233439683914, 0.01027021836489439, -0.05270848423242569, 0.018976662307977676, 0.0004947847919538617, 0.05481493100523949, -0.053804073482751846, 0.03136860951781273, -0.022997811436653137, 0.023788494989275932, 0.049436215311288834, -0.027315741404891014, 0.03589966148138046, 0.05910817161202431, 0.023189444094896317, -0.03578938916325569, 0.028332501649856567, 0.00549438176676631, 0.03681488335132599, 0.03761591017246246, 0.010879365727305412, 0.07095406949520111, 0.021168161183595657, 0.04680024832487106, 0.07777141779661179, 0.014647283591330051, 0.036810796707868576, 0.01940794847905636, 0.06695675849914551, 0.013237177394330502, -0.010377459228038788, 0.04932016134262085, -0.04306777939200401, 0.02860572375357151, -0.060203470289707184, 0.0014741735067218542, -0.021817347034811974, -0.004534828010946512, 0.055914271622896194, 0.02562602609395981, -0.03037433885037899, -0.0105440653860569, 0.01625112071633339, -0.011683906428515911, 0.0223556999117136, -0.006364660803228617, 0.012173944152891636, -0.007003052160143852, -0.02294040657579899, -0.01912611350417137, -0.06790454685688019, -0.046930763870477676, -0.023057112470269203, -0.015929119661450386, -0.0259405467659235, -0.09230208396911621, -0.003852732013911009, -0.08367777615785599, -0.01842138171195984, 0.027930278331041336, 0.007670244202017784, -0.023789167404174805, -0.035569462925195694, 0.027669085189700127, -0.04809456691145897, -0.030609063804149628, -0.048305608332157135, -0.0629022866487503, -0.05486287921667099, -0.08112800866365433, 0.04326134920120239, 0.03558851033449173, 0.005298723466694355, 0.0004568645672407001, 0.031161384657025337, 0.013332556001842022, -0.02999677136540413, 0.03439083322882652, 0.06075098365545273, -0.036257751286029816, -0.04923748970031738, 0.03479711711406708, -0.011203411966562271, 0.013466404750943184, 0.018547886982560158, -0.02932511270046234, 0.09184898436069489, 0.06911643594503403, 0.016063377261161804, 0.028389375656843185, -0.011246695183217525, -0.06608453392982483, -0.06718483567237854, -0.02712436579167843, -0.04230748862028122, -0.0034911083057522774, -0.04390595108270645, -0.0397045761346817, -0.03791245445609093, -0.041560977697372437, 0.01562236063182354, -0.01265040598809719, 0.02772348001599312, 0.02361500822007656, 0.03938206285238266, 0.02688148058950901, 0.04672399163246155, -0.028080221265554428, -0.027989136055111885, 0.05724665895104408, 0.012064658105373383, 0.008633106015622616, -0.08438187837600708, -0.0020910343155264854, 0.02502775751054287, 0.02022014558315277, 0.02320484071969986, -0.0060546258464455605, 0.07689036428928375, -0.011407497338950634, 0.005082085262984037, 0.014919977635145187, -0.0064026606269180775, -0.010191040113568306, -0.0012017656117677689, -0.004939052276313305, 0.0029567626770585775, -0.027798905968666077, -0.03219137340784073, -0.010683289729058743, 0.02975080907344818, -0.0581519715487957, -0.06003667041659355, -0.015701184049248695, 0.034183651208877563, 0.041618265211582184, -0.008375846780836582, -0.04593261331319809, -0.010754107497632504, -0.07191422581672668, -0.004529568832367659, 0.028957869857549667, 0.011538777500391006, -0.0036153707187622786, 0.04001938924193382, 0.012808351777493954, -0.005479188170284033, 0.0247108843177557, 0.051940154284238815, 0.06843815743923187, 0.01354729663580656, -0.07716086506843567, -0.0022576097398996353, -0.019330007955431938, 0.014356010593473911, -0.01375727728009224, -0.01834002137184143, -0.021748393774032593, -0.09431549906730652, -0.016778478398919106, 0.011683543212711811, 0.0060137854889035225, -0.01403388287872076, 0.04383506253361702, 0.0012024929746985435, -0.02768365852534771, 0.000010070527423522435, 0.015679217875003815, 0.03864696994423866, -0.03280472010374069, 0.04808182641863823, -0.029434483498334885, 0.0020793399307876825, -0.060340605676174164, 0.01507993508130312, -0.05095762759447098, -0.02798367105424404, 0.010932855308055878, 0.053213607519865036, -0.020064381882548332, 0.05351269617676735, 0.07494398951530457, 0.04560672491788864, -0.06000475957989693, 0.03967620059847832, 0.07784173637628555, -0.03574135899543762, -0.04279074817895889, -0.0074270935729146, -0.001871723448857665, -0.016306553035974503, -0.0027975894045084715, -0.012154470197856426, 0.049894269555807114, 0.0266313087195158, 0.005961480550467968, 0.011137434281408787, -0.00657403189688921, -0.01082638930529356, -0.03127444162964821, -0.05249323323369026, -0.032764844596385956, -0.0005264131468720734, -0.02853316068649292, 0.018147099763154984, 0.02807401306927204, 0.034413304179906845, 0.07769102603197098, 0.022561123594641685, -0.04181373119354248, -0.01024975161999464, 0.021005241200327873, 0.01417880691587925, -0.019451433792710304, -0.07334326207637787, -0.04400862380862236, 0.027089444920420647, 0.047496918588876724, -0.02394680678844452, -0.06680826097726822, 0.017609836533665657, 0.04872678220272064, -0.049417223781347275, 0.05404132977128029, -0.012338186614215374, 0.05822181701660156, 0.052849434316158295, -0.008865508250892162, 0.037630777806043625, -0.022056858986616135, -0.01040620356798172, -0.006222355179488659, 0.041741739958524704, -0.012726133689284325, -0.03548576310276985, -0.05195749178528786, 0.02230820246040821, 0.03667961061000824, 0.031795091927051544, 0.040117159485816956, -0.03421344235539436, -0.045607347041368484, 0.012299483641982079, 0.025501294061541557, -0.04220465198159218, -0.002419935306534171, 0.03946494311094284, 0.03466451168060303, -0.04979346692562103, -0.024003509432077408, -0.020684864372015, -0.02016228437423706, 0.04261723905801773, 0.007193955592811108, -0.023784518241882324, -0.046540651470422745, 0.038759395480155945, -0.020422963425517082, -0.03458666801452637, -0.06927397102117538, 0.05182643234729767, -0.010495895519852638, -0.02350330911576748, 0.05981855466961861, 0.028251828625798225, 0.019666844978928566, 0.06641297042369843, 0.031315576285123825, 0.01720268465578556, -0.0337512344121933, 0.046815358102321625, -0.03514207527041435, -0.018511543050408363, 0.0063712261617183685, -0.03900458663702011, -0.034947577863931656, 0.001097079017199576, -0.06412079930305481, -0.032438725233078, -0.02515270560979843, 0.017776047810912132, -0.002811744110658765, -0.01966962032020092, -0.003770986804738641, 0.057771578431129456, -0.009671304374933243, -0.04600822553038597, -0.04466836899518967, -0.019386017695069313, -0.059532150626182556, -0.04830804839730263, -0.004140352364629507, 0.009187060408294201, 0.03521910682320595, 0.031759027391672134, 0.019332485273480415, 0.01826195791363716, 0.0173140000551939, -0.0401390939950943, 0.018228881061077118, 0.02561238966882229, -0.03686680644750595, -0.019113915041089058, 0.037613000720739365, 0.014397811144590378, 0.01986338198184967, -0.038158245384693146, 0.0316552110016346, 0.0036750982981175184, -0.006817028857767582, -0.017403753474354744, 0.01191845815628767, 0.03331698104739189, -0.06623481959104538, -0.03449269384145737, -0.014476045034825802, -0.029885776340961456, 0.03212296590209007, -0.025926318019628525, -0.02258588746190071, 0.013036715798079967, -0.0010811571264639497, 0.035794664174318314, -0.02743103727698326, -0.011030912399291992, 0.028293343260884285, 0.0057876575738191605, 0.021614868193864822, -0.05260269343852997, 0.06480491906404495, -0.035783130675554276, 0.0193839892745018, -0.02220914140343666, 0.0099888751283288, -0.026367180049419403, 0.0249763373285532, -0.01701308786869049, -0.025948448106646538, -0.0028161676600575447, 0.059569794684648514, -0.013836427591741085, 0.0347382090985775, -0.012634153477847576, 0.03875056281685829, -0.02566981315612793, 0.07055646926164627, -0.04360658675432205, 0.022279484197497368, -0.03803006559610367, 0.025379713624715805, -0.02023341879248619, 0.019498441368341446, -0.007145232055336237, -0.018500227481126785, 0.0334596149623394, 0.056884076446294785, 0.025813695043325424, 0.035807110369205475, 0.0025177928619086742, -0.010747003369033337, 0.008381005376577377, -0.04655032604932785, -0.022525697946548462, -0.006019669584929943, -0.001264185644686222, -0.022899556905031204, 0.0627908930182457, 0.02893037535250187, -0.050348911434412, -0.07695339620113373, 0.03865013271570206, 0.021814344450831413, 0.004670990165323019, 0.003768906695768237, 0.05241306126117706, 0.0337827131152153, 0.03784237802028656, -0.022765880450606346, -0.010131199844181538, 0.004419092088937759, -0.04979667067527771, 0.025422675535082817, -0.007775539066642523, 0.023943796753883362, 0.011877148412168026, -0.03592650592327118, -0.022647811099886894, 0.05470610037446022, 0.023102540522813797, 0.025910040363669395, 0.002323252148926258, -0.03976927325129509, 0.033126868307590485, 0.006600999739021063, -0.03838960453867912, 0.02469528838992119, 0.010707649402320385, -0.022264130413532257, 0.03783382475376129, -0.010917510837316513, 0.011804426088929176, 0.06278946995735168, 0.019086480140686035, -0.016150595620274544, 0.06837160885334015, -0.041899897158145905, 0.010950101539492607, 0.036308709532022476, -0.07617457211017609, -0.011080294847488403, -0.05329490453004837, 0.05826687440276146, -0.06448611617088318, 0.023276936262845993, 0.05627880617976189, -0.000776114990003407, 0.02956450916826725, -0.04693054035305977, -0.06096960976719856, 0.021370157599449158, -0.0365942120552063, 0.06433592736721039, 0.016990451142191887, -0.050972092896699905, 0.055083051323890686, 0.017126096412539482, -0.05440039187669754, 0.037042852491140366, 0.029018161818385124, 0.05332855135202408, 0.029332825914025307, 0.048261858522892, -0.04612788185477257, -0.0015433937078341842, -0.03644140064716339, 0.022807219997048378, -0.05377217009663582, -0.013980592601001263, 0.034239791333675385, -0.038860078901052475, -0.022027092054486275, 0.03148607537150383, -0.018679179251194, -0.014223827980458736, 0.05901951342821121, -0.05147156864404678, -0.04299566522240639, 0.013384186662733555, 0.020826013758778572, -0.04769068583846092, -0.010927844792604446, -0.033140137791633606, 0.006594607140868902, 0.011567172594368458, -0.0011293269926682115, -0.027466868981719017, -0.018506132066249847, 0.026713186874985695, -0.03893176093697548, -0.029558371752500534, 0.024764887988567352, -0.010563712567090988, -0.023497741669416428, 0.03486744686961174, 0.010864447802305222, 0.011317968368530273, 0.029956480488181114, -0.0197416003793478, 0.02185293659567833, -0.04422655329108238, -0.015767736360430717, 0.037747811526060104, -0.00869532860815525, 0.021255284547805786, 0.00792887806892395, 0.03383991867303848, 0.044037025421857834, 0.029838738963007927, -0.0015879286220297217, -0.034140776842832565, -0.0333281084895134, 0.01969916932284832, -0.038820382207632065, 0.006042839493602514, -0.001690753735601902, -0.043655287474393845, -0.026494944468140602, -0.0014358663465827703, -0.035958558320999146, 0.04556230083107948, -0.06506090611219406, 0.004033220466226339, 0.041213762015104294, -0.018403057008981705, -0.059815190732479095, -0.11128795892000198, -0.011270430870354176, -0.05171346291899681, -0.014294786378741264, 0.04869435727596283, -0.03596291318535805, 0.04865538701415062, -0.050973184406757355, -0.03942928835749626, 0.03748597204685211, 0.046856589615345, -0.059410210698843, 0.05710352957248688, 0.04277309775352478, -0.04744696244597435, 0.013463877141475677, 0.019492678344249725, -0.05674094706773758, 0.003320979420095682, 0.015639372169971466, -0.0030592065304517746, 0.026124484837055206, 0.013456249609589577, -0.05741249769926071, -0.02309645526111126, -0.06479733437299728, -0.03389090299606323, -0.04764639958739281, 0.009184783324599266, 0.04832367226481438 ]
Denver/distilbert-base-uncased-finetuned-squad
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-8 results: [] --- <!-- 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__subj__train-8-8 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.3160 - Accuracy: 0.8735 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7187 | 1.0 | 3 | 0.6776 | 1.0 | | 0.684 | 2.0 | 6 | 0.6608 | 1.0 | | 0.6532 | 3.0 | 9 | 0.6364 | 1.0 | | 0.5996 | 4.0 | 12 | 0.6119 | 1.0 | | 0.5242 | 5.0 | 15 | 0.5806 | 1.0 | | 0.4612 | 6.0 | 18 | 0.5320 | 1.0 | | 0.4192 | 7.0 | 21 | 0.4714 | 1.0 | | 0.3274 | 8.0 | 24 | 0.4071 | 1.0 | | 0.2871 | 9.0 | 27 | 0.3378 | 1.0 | | 0.2082 | 10.0 | 30 | 0.2822 | 1.0 | | 0.1692 | 11.0 | 33 | 0.2271 | 1.0 | | 0.1242 | 12.0 | 36 | 0.1793 | 1.0 | | 0.0977 | 13.0 | 39 | 0.1417 | 1.0 | | 0.0776 | 14.0 | 42 | 0.1117 | 1.0 | | 0.0631 | 15.0 | 45 | 0.0894 | 1.0 | | 0.0453 | 16.0 | 48 | 0.0733 | 1.0 | | 0.0399 | 17.0 | 51 | 0.0617 | 1.0 | | 0.0333 | 18.0 | 54 | 0.0528 | 1.0 | | 0.0266 | 19.0 | 57 | 0.0454 | 1.0 | | 0.0234 | 20.0 | 60 | 0.0393 | 1.0 | | 0.0223 | 21.0 | 63 | 0.0345 | 1.0 | | 0.0195 | 22.0 | 66 | 0.0309 | 1.0 | | 0.0161 | 23.0 | 69 | 0.0281 | 1.0 | | 0.0167 | 24.0 | 72 | 0.0260 | 1.0 | | 0.0163 | 25.0 | 75 | 0.0242 | 1.0 | | 0.0134 | 26.0 | 78 | 0.0227 | 1.0 | | 0.0128 | 27.0 | 81 | 0.0214 | 1.0 | | 0.0101 | 28.0 | 84 | 0.0204 | 1.0 | | 0.0109 | 29.0 | 87 | 0.0194 | 1.0 | | 0.0112 | 30.0 | 90 | 0.0186 | 1.0 | | 0.0108 | 31.0 | 93 | 0.0179 | 1.0 | | 0.011 | 32.0 | 96 | 0.0174 | 1.0 | | 0.0099 | 33.0 | 99 | 0.0169 | 1.0 | | 0.0083 | 34.0 | 102 | 0.0164 | 1.0 | | 0.0096 | 35.0 | 105 | 0.0160 | 1.0 | | 0.01 | 36.0 | 108 | 0.0156 | 1.0 | | 0.0084 | 37.0 | 111 | 0.0152 | 1.0 | | 0.0089 | 38.0 | 114 | 0.0149 | 1.0 | | 0.0073 | 39.0 | 117 | 0.0146 | 1.0 | | 0.0082 | 40.0 | 120 | 0.0143 | 1.0 | | 0.008 | 41.0 | 123 | 0.0141 | 1.0 | | 0.0093 | 42.0 | 126 | 0.0139 | 1.0 | | 0.0078 | 43.0 | 129 | 0.0138 | 1.0 | | 0.0086 | 44.0 | 132 | 0.0136 | 1.0 | | 0.009 | 45.0 | 135 | 0.0135 | 1.0 | | 0.0072 | 46.0 | 138 | 0.0134 | 1.0 | | 0.0075 | 47.0 | 141 | 0.0133 | 1.0 | | 0.0082 | 48.0 | 144 | 0.0133 | 1.0 | | 0.0068 | 49.0 | 147 | 0.0132 | 1.0 | | 0.0074 | 50.0 | 150 | 0.0132 | 1.0 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.014044046401977539, 0.008455183357000351, -0.03695850819349289, 0.04546646773815155, 0.0503644198179245, 0.017126750200986862, -0.018819328397512436, -0.027136074379086494, -0.05093137547373772, 0.06060856953263283, 0.012207351624965668, -0.03679078444838524, 0.010410280898213387, 0.04303367808461189, -0.021924737840890884, -0.03406986594200134, -0.0027858405373990536, -0.0073263621889054775, -0.034980520606040955, -0.000037080786569276825, 0.0011600871803238988, -0.011607480235397816, -0.012966001406311989, 0.004154894966632128, -0.005861982237547636, 0.01912774331867695, 0.005006512627005577, 0.02200547605752945, 0.0331776961684227, -0.06349537521600723, 0.015345009043812752, -0.03108922578394413, -0.05054553225636482, -0.01842505671083927, -0.01019600871950388, -0.015891829505562782, 0.00039895903319120407, 0.03215266019105911, 0.03866808861494064, 0.04830805957317352, 0.005262475460767746, 0.028919795528054237, 0.0025187949649989605, -0.010748550295829773, 0.056340623646974564, 0.0070708319544792175, -0.02664121985435486, -0.0004698665579780936, 0.040589816868305206, -0.025742027908563614, -0.08186280727386475, -0.0518224723637104, -0.018388884142041206, 0.017903871834278107, -0.018010804429650307, -0.010827124118804932, -0.06029980629682541, 0.011245880275964737, 0.06483545899391174, -0.04764930531382561, -0.028320571407675743, -0.0013840575702488422, -0.07238627970218658, 0.005891470238566399, 0.027792029082775116, -0.015174895524978638, 0.008988475427031517, -0.04811879247426987, 0.033692147582769394, -0.012094303034245968, 0.06121426075696945, -0.021992644295096397, 0.01392502710223198, -0.06988096982240677, -0.019069533795118332, -0.0028833337128162384, 0.04777587577700615, 0.0625121220946312, -0.034593354910612106, 0.04904799535870552, 0.027515888214111328, 0.0011044456623494625, 0.04374851658940315, -0.026358135044574738, 0.01730506122112274, 0.02808735892176628, -0.043793048709630966, -0.0091329924762249, 0.012028555385768414, 0.023919638246297836, -0.03679048269987106, -0.036980584263801575, -0.03211680054664612, -0.027744974941015244, -0.004327414557337761, 0.020648814737796783, 0.02900482341647148, 0.015010759234428406, 0.04236927628517151, 0.018939634785056114, 0.026143042370676994, 0.040670111775398254, -0.028662212193012238, 0.07614756375551224, -0.008545396849513054, -0.002970457309857011, -0.009937840513885021, -0.01873057149350643, -0.049164872616529465, 0.025361724197864532, 0.031849052757024765, -0.018495267257094383, -0.01663370616734028, 0.037539366632699966, 0.0040107835084199905, -0.0010901218047365546, 0.08176994323730469, -0.01716945692896843, -0.04293196648359299, -0.03480575978755951, 0.02329731173813343, 0.015377041883766651, -0.013864761218428612, 0.015551806427538395, -0.049793414771556854, -0.016370706260204315, -0.027333246544003487, -0.01955554448068142, -0.0169858168810606, 0.021173277869820595, 0.005418441724032164, 0.06807959079742432, 0.036148350685834885, -0.08480770140886307, 0.0006166025996208191, 0.013782806694507599, -0.055226583033800125, 0.053516220301389694, 0.02578592672944069, 0.11450529843568802, -0.05946802347898483, -0.06735816597938538, 0.013828619383275509, 0.003953377716243267, -0.044531695544719696, 0.01669139415025711, 0.005552783142775297, -0.025775687769055367, 0.0012313640909269452, 0.004632608033716679, 0.0627901628613472, -0.04318603128194809, -0.009641721844673157, 0.07317432761192322, -0.0016302979784086347, 0.04574401304125786, -0.05498489737510681, -0.030190221965312958, 0.015394563786685467, -0.019979719072580338, -0.033374179154634476, 0.04690549522638321, -0.02963932603597641, -0.017459746450185776, -0.019453367218375206, -0.02660120278596878, 0.010892539285123348, 0.07641306519508362, -0.005012213718146086, -0.029288575053215027, -0.019291475415229797, 0.02193688042461872, 0.03957514464855194, 0.04379165545105934, -0.02923738770186901, 0.025329599156975746, 0.05791546776890755, 0.03133261948823929, -0.030000286176800728, 0.03722501918673515, 0.030488986521959305, -0.024214448407292366, -0.023234648630023003, 0.03325873985886574, 0.010870613157749176, -0.04712919890880585, 0.03978077322244644, 0.015599558129906654, 0.003941018600016832, -0.06592950224876404, -0.04144216328859329, 0.04201800748705864, -0.008877874352037907, -0.011210964992642403, 0.009885553270578384, 0.0164601132273674, -0.020232917740941048, 0.042719218879938126, -0.015802886337041855, 0.005254235118627548, -0.028437260538339615, -0.02084190957248211, 0.01059307437390089, -0.017809975892305374, 0.02493017353117466, 0.04368650168180466, -0.004986689891666174, 0.10120711475610733, -0.042172640562057495, 0.02081618830561638, -0.05986713618040085, -0.036974936723709106, 0.03157972916960716, 0.060490693897008896, 0.053078118711709976, 0.05101849511265755, 0.005990937817841768, -0.0301857627928257, 0.04263029992580414, 0.06840556114912033, 0.041199300438165665, -0.004550089593976736, -0.03632408007979393, -0.008991729468107224, 0.03838764503598213, 0.04943588003516197, -0.051252592355012894, -0.013742741197347641, 0.006073938682675362, 0.033600788563489914, -0.0088494336232543, 0.017170779407024384, -0.02220141515135765, 0.041042983531951904, -0.04146668687462807, -0.0484074167907238, 0.03822830319404602, 0.02279726043343544, -0.00421673059463501, 0.03001801110804081, 0.03564687818288803, 0.008790642954409122, 0.01837233267724514, 0.02335682325065136, 0.010696577839553356, -0.051175013184547424, 0.02030230686068535, -0.0003942658076994121, 0.05836104974150658, -0.05412471666932106, 0.03232649341225624, -0.02138860709965229, 0.022713622078299522, 0.04880983382463455, -0.028210442513227463, 0.03516795486211777, 0.05954296141862869, 0.022797277197241783, -0.03647340461611748, 0.029668660834431648, 0.003807653905823827, 0.03748159483075142, 0.03786414861679077, 0.01043123472481966, 0.07127194106578827, 0.018914077430963516, 0.04745948314666748, 0.07755123823881149, 0.014302527531981468, 0.03709683194756508, 0.020651808008551598, 0.0676429271697998, 0.014247492887079716, -0.011364401318132877, 0.05242284759879112, -0.04120216146111488, 0.02897123247385025, -0.05994146317243576, 0.000918868463486433, -0.022851869463920593, -0.007090331055223942, 0.05828719586133957, 0.024355443194508553, -0.029371263459324837, -0.01033877208828926, 0.015874333679676056, -0.012419476173818111, 0.022889157757163048, -0.006445268634706736, 0.010262755677103996, -0.007072660140693188, -0.024577384814620018, -0.020611383020877838, -0.06923943758010864, -0.047451987862586975, -0.024321286007761955, -0.014513548463582993, -0.02604714222252369, -0.09209762513637543, -0.004432146903127432, -0.08299456536769867, -0.018904512748122215, 0.02997751161456108, 0.009013611823320389, -0.02126362919807434, -0.036802083253860474, 0.02751084417104721, -0.047409966588020325, -0.030249640345573425, -0.047959864139556885, -0.06234496831893921, -0.05475300922989845, -0.08121665567159653, 0.04230324923992157, 0.034796807914972305, 0.006925559137016535, -0.001615585875697434, 0.03124811127781868, 0.01142995897680521, -0.029871031641960144, 0.034132447093725204, 0.06294199824333191, -0.037070728838443756, -0.04921773448586464, 0.035256631672382355, -0.009432638995349407, 0.013850774616003036, 0.016406547278165817, -0.029750103130936623, 0.09181816130876541, 0.06860511004924774, 0.01661427691578865, 0.02727544866502285, -0.012356205843389034, -0.06541892886161804, -0.0666307806968689, -0.026642542332410812, -0.041981957852840424, -0.004608327057212591, -0.04287664592266083, -0.039066486060619354, -0.03778228536248207, -0.03973973169922829, 0.011791062541306019, -0.014178710989654064, 0.028245702385902405, 0.023474425077438354, 0.03681154176592827, 0.027177199721336365, 0.046082496643066406, -0.030253011733293533, -0.027436833828687668, 0.056552957743406296, 0.012190038338303566, 0.007918952032923698, -0.08511658012866974, -0.0034545366652309895, 0.025230860337615013, 0.021229101344943047, 0.024111343547701836, -0.003282112767919898, 0.07717131823301315, -0.011692986823618412, 0.0053989579901099205, 0.015335870906710625, -0.006987013388425112, -0.010790035128593445, -0.002833140315487981, -0.004333734046667814, 0.004114071372896433, -0.02754821814596653, -0.034944191575050354, -0.01063026674091816, 0.030559351667761803, -0.058056868612766266, -0.05884178727865219, -0.01359598245471716, 0.034395355731248856, 0.043633658438920975, -0.008596973493695259, -0.0459040105342865, -0.008367794565856457, -0.07107261568307877, -0.0039290981367230415, 0.02872616983950138, 0.01125042699277401, -0.0031518861651420593, 0.03935727849602699, 0.013687974773347378, -0.005528838373720646, 0.02299094758927822, 0.05443887040019035, 0.068330317735672, 0.013389313593506813, -0.07821746170520782, -0.0008322431240230799, -0.01899290829896927, 0.014270073734223843, -0.015142454765737057, -0.018382057547569275, -0.022411128506064415, -0.09431349486112595, -0.015455599874258041, 0.011167069897055626, 0.006972300820052624, -0.014487631618976593, 0.04468855261802673, 0.0013964944519102573, -0.027723129838705063, 0.002205595374107361, 0.01629711501300335, 0.039826296269893646, -0.03247978910803795, 0.04871935024857521, -0.02952173724770546, 0.0016385543858632445, -0.060920875519514084, 0.016265451908111572, -0.051168184727430344, -0.028318114578723907, 0.012559854425489902, 0.05207797884941101, -0.02031021937727928, 0.05354517698287964, 0.07497088611125946, 0.045316506177186966, -0.061105839908123016, 0.04032578691840172, 0.07661941647529602, -0.03580251336097717, -0.044484809041023254, -0.007578376680612564, -0.0029592029750347137, -0.01595619134604931, -0.003573325462639332, -0.01356844324618578, 0.048255398869514465, 0.026486758142709732, 0.008230545558035374, 0.010745941661298275, -0.005719162058085203, -0.011048877611756325, -0.03258717060089111, -0.05480676144361496, -0.03388817608356476, 0.0017425479600206017, -0.02720349095761776, 0.01590411737561226, 0.030849967151880264, 0.03499831259250641, 0.07934855669736862, 0.025074288249015808, -0.03986449912190437, -0.011449823155999184, 0.021496577188372612, 0.013883846811950207, -0.019199158996343613, -0.07488136738538742, -0.04204173758625984, 0.02751891128718853, 0.04645621031522751, -0.025365542620420456, -0.06654489040374756, 0.0174543559551239, 0.050240181386470795, -0.050592005252838135, 0.05272304266691208, -0.010506784543395042, 0.057612765580415726, 0.05281124636530876, -0.008712326176464558, 0.03795851022005081, -0.021654943004250526, -0.010410127229988575, -0.00601084204390645, 0.04234975948929787, -0.014403515495359898, -0.036074940115213394, -0.05347102880477905, 0.02288724295794964, 0.03730905055999756, 0.029845502227544785, 0.0402560792863369, -0.03552902489900589, -0.044594984501600266, 0.012316901236772537, 0.026371683925390244, -0.0412394255399704, -0.0012555603170767426, 0.0389595627784729, 0.03499476611614227, -0.04857724905014038, -0.022260723635554314, -0.020060932263731956, -0.02125040628015995, 0.04155283421278, 0.006036740727722645, -0.02282021753489971, -0.046660684049129486, 0.038971468806266785, -0.019387975335121155, -0.03247663751244545, -0.06914546340703964, 0.05203736945986748, -0.010814458131790161, -0.023427337408065796, 0.05988482013344765, 0.030189335346221924, 0.02082974463701248, 0.06682147830724716, 0.031024087220430374, 0.01728050969541073, -0.03511424735188484, 0.04626086354255676, -0.03477957472205162, -0.01928449608385563, 0.005684454459697008, -0.03769742697477341, -0.03661193326115608, 0.0003148819669149816, -0.06396839767694473, -0.03215968608856201, -0.025145556777715683, 0.017891358584165573, -0.0036514378152787685, -0.015628797933459282, -0.004516609478741884, 0.057582587003707886, -0.008780536241829395, -0.04508316516876221, -0.042618170380592346, -0.02036813460290432, -0.06034432351589203, -0.04752880707383156, -0.005101151764392853, 0.009127391502261162, 0.034622643142938614, 0.03075059875845909, 0.02067389152944088, 0.017025239765644073, 0.017169984057545662, -0.04010028764605522, 0.018500832840800285, 0.027132272720336914, -0.03674938902258873, -0.018597526475787163, 0.036536406725645065, 0.015133633278310299, 0.019570840522646904, -0.03652063384652138, 0.032740700989961624, 0.004661220125854015, -0.006852470804005861, -0.01877504773437977, 0.012248333543539047, 0.032126285135746, -0.06577644497156143, -0.032997976988554, -0.015497421845793724, -0.0295749269425869, 0.032765015959739685, -0.026657160371541977, -0.021824616938829422, 0.013230637647211552, -0.00028317124815657735, 0.0362410768866539, -0.02667209319770336, -0.010610113851726055, 0.029581423848867416, 0.005457384046167135, 0.02296523191034794, -0.05285150185227394, 0.06366900354623795, -0.038223739713430405, 0.02060580626130104, -0.02436729148030281, 0.010668158531188965, -0.02619894966483116, 0.022899458184838295, -0.01987513154745102, -0.02536619082093239, -0.004513200838118792, 0.058186452835798264, -0.013809681870043278, 0.033874861896038055, -0.014055839739739895, 0.03807425871491432, -0.026249581947922707, 0.07241219282150269, -0.04414943978190422, 0.0224020853638649, -0.038640350103378296, 0.02529866434633732, -0.0206584595143795, 0.016927698627114296, -0.005720648914575577, -0.01647958904504776, 0.034738894551992416, 0.05742204561829567, 0.024301309138536453, 0.034891657531261444, 0.002215228509157896, -0.010951478965580463, 0.008008910343050957, -0.04619714617729187, -0.022553015500307083, -0.006924058776348829, -0.00139906897675246, -0.02123887650668621, 0.06249316409230232, 0.029881833121180534, -0.050171516835689545, -0.07507079839706421, 0.039289139211177826, 0.02289813570678234, 0.004638767335563898, 0.0055193472653627396, 0.049436066299676895, 0.03378254920244217, 0.03752870485186577, -0.021224023774266243, -0.010303364135324955, 0.005420948378741741, -0.049444664269685745, 0.024415897205471992, -0.009661347605288029, 0.022460348904132843, 0.012266981415450573, -0.036170076578855515, -0.023104259744286537, 0.05434602126479149, 0.022245801985263824, 0.02679309993982315, 0.002606770023703575, -0.03882129490375519, 0.03408757224678993, 0.007026359438896179, -0.037471797317266464, 0.025152288377285004, 0.011492558754980564, -0.02285150997340679, 0.03854319825768471, -0.010670100338757038, 0.011913754977285862, 0.06168452277779579, 0.017994556576013565, -0.017627421766519547, 0.06981362402439117, -0.041946373879909515, 0.012284544296562672, 0.034820567816495895, -0.0738702267408371, -0.013714391738176346, -0.0521707721054554, 0.056996963918209076, -0.06347791850566864, 0.023984437808394432, 0.05814395099878311, -0.0014226960483938456, 0.03032914735376835, -0.04708218574523926, -0.059484582394361496, 0.021983524784445763, -0.03533351421356201, 0.06416594237089157, 0.015023034997284412, -0.05210919305682182, 0.0547211728990078, 0.01748540811240673, -0.05242036283016205, 0.03641362860798836, 0.027518661692738533, 0.05531936138868332, 0.02742757461965084, 0.04957681894302368, -0.045811571180820465, -0.001842042081989348, -0.03920327499508858, 0.023142460733652115, -0.0548630952835083, -0.0131455697119236, 0.0352291502058506, -0.038188636302948, -0.023230765014886856, 0.030286114662885666, -0.018858080729842186, -0.01414240151643753, 0.057911477982997894, -0.05026153102517128, -0.042596448212862015, 0.01318473368883133, 0.020218200981616974, -0.045850712805986404, -0.011629613116383553, -0.03216737508773804, 0.008624880574643612, 0.010414921678602695, -0.0010919899214059114, -0.0261785127222538, -0.01917899027466774, 0.027294252067804337, -0.037983786314725876, -0.0292581208050251, 0.02485637739300728, -0.011368724517524242, -0.0245367344468832, 0.03634261339902878, 0.010142345912754536, 0.012295661494135857, 0.028737006708979607, -0.01800655387341976, 0.023749709129333496, -0.04483996331691742, -0.016360018402338028, 0.037258196622133255, -0.008094964548945427, 0.018811743706464767, 0.006248724181205034, 0.032088201493024826, 0.042356256395578384, 0.02934618666768074, -0.002923369174823165, -0.035949356853961945, -0.03340734913945198, 0.02092904970049858, -0.03714512288570404, 0.007599181029945612, -0.001316208392381668, -0.043937500566244125, -0.026095030829310417, 0.002176659880205989, -0.036428213119506836, 0.04630393162369728, -0.06548897176980972, 0.004101812373846769, 0.041509974747896194, -0.017744801938533783, -0.06019566208124161, -0.10850495845079422, -0.012709176167845726, -0.05245760455727577, -0.015283756889402866, 0.04742499440908432, -0.03546708822250366, 0.047511715441942215, -0.05141276866197586, -0.04014052823185921, 0.03761438652873039, 0.04701504483819008, -0.06124933809041977, 0.05861138552427292, 0.04166705906391144, -0.045886360108852386, 0.010236391797661781, 0.018516000360250473, -0.05587459355592728, 0.005077773239463568, 0.014972066506743431, -0.0033070927020162344, 0.024099262431263924, 0.013886749744415283, -0.05651962757110596, -0.02327597141265869, -0.06501367688179016, -0.03240590915083885, -0.04842419922351837, 0.010412455536425114, 0.048701830208301544 ]
DeskDown/MarianMixFT_en-fil
[ "pytorch", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: distilbert-base-uncased__subj__train-8-9 results: [] --- <!-- 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__subj__train-8-9 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4865 - Accuracy: 0.778 ## 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: 50 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7024 | 1.0 | 3 | 0.6843 | 0.75 | | 0.67 | 2.0 | 6 | 0.6807 | 0.5 | | 0.6371 | 3.0 | 9 | 0.6677 | 0.5 | | 0.585 | 4.0 | 12 | 0.6649 | 0.5 | | 0.5122 | 5.0 | 15 | 0.6707 | 0.5 | | 0.4379 | 6.0 | 18 | 0.6660 | 0.5 | | 0.4035 | 7.0 | 21 | 0.6666 | 0.5 | | 0.323 | 8.0 | 24 | 0.6672 | 0.5 | | 0.2841 | 9.0 | 27 | 0.6534 | 0.5 | | 0.21 | 10.0 | 30 | 0.6456 | 0.5 | | 0.1735 | 11.0 | 33 | 0.6325 | 0.5 | | 0.133 | 12.0 | 36 | 0.6214 | 0.5 | | 0.0986 | 13.0 | 39 | 0.6351 | 0.5 | | 0.081 | 14.0 | 42 | 0.6495 | 0.5 | | 0.0638 | 15.0 | 45 | 0.6671 | 0.5 | | 0.0449 | 16.0 | 48 | 0.7156 | 0.5 | | 0.0399 | 17.0 | 51 | 0.7608 | 0.5 | | 0.0314 | 18.0 | 54 | 0.7796 | 0.5 | | 0.0243 | 19.0 | 57 | 0.7789 | 0.5 | | 0.0227 | 20.0 | 60 | 0.7684 | 0.5 | | 0.0221 | 21.0 | 63 | 0.7628 | 0.5 | | 0.0192 | 22.0 | 66 | 0.7728 | 0.5 | ### Framework versions - Transformers 4.15.0 - Pytorch 1.10.2+cu102 - Datasets 1.18.2 - Tokenizers 0.10.3
[ -0.012821118347346783, 0.00937874335795641, -0.03686241805553436, 0.04549409821629524, 0.04893127456307411, 0.015537066385149956, -0.019683022052049637, -0.02473207749426365, -0.05338018760085106, 0.06032735854387283, 0.011657086201012135, -0.03659204766154289, 0.008878236636519432, 0.041586823761463165, -0.02072732336819172, -0.0339558944106102, -0.004350998904556036, -0.009815908037126064, -0.03479349985718727, 0.0009929366642609239, 0.0021062646992504597, -0.01221451535820961, -0.014150440692901611, 0.003993107937276363, -0.005543810781091452, 0.019223134964704514, 0.00438228715211153, 0.021517610177397728, 0.034746650606393814, -0.06467658281326294, 0.014787212014198303, -0.03260309621691704, -0.05166326463222504, -0.019458701834082603, -0.009708914905786514, -0.015021869912743568, 0.0007390473620034754, 0.03214938938617706, 0.03782101720571518, 0.046587325632572174, 0.006405484396964312, 0.029944822192192078, 0.0009182780049741268, -0.008997071534395218, 0.05683976039290428, 0.009303832426667213, -0.028209663927555084, 0.001555908122099936, 0.04112944006919861, -0.025864649564027786, -0.08154327422380447, -0.04885546490550041, -0.019442418590188026, 0.019157735630869865, -0.018321001902222633, -0.010500176809728146, -0.061744723469018936, 0.014077185653150082, 0.06312596797943115, -0.045777518302202225, -0.028902193531394005, -0.0016613334883004427, -0.07261589914560318, 0.004170919302850962, 0.027204198762774467, -0.015613887459039688, 0.008375323377549648, -0.04740225896239281, 0.03258061781525612, -0.011835670098662376, 0.062428269535303116, -0.019186411052942276, 0.014464441686868668, -0.06897266954183578, -0.01876818761229515, -0.0021728589199483395, 0.04519115015864372, 0.06254701316356659, -0.03316063433885574, 0.048410866409540176, 0.02604280225932598, 0.001110564568080008, 0.04262751713395119, -0.02640525810420513, 0.019187230616807938, 0.029109420254826546, -0.04339462146162987, -0.009166869334876537, 0.011384137906134129, 0.023165253922343254, -0.03589460998773575, -0.037190522998571396, -0.032458849251270294, -0.02752949669957161, -0.006950144190341234, 0.018513353541493416, 0.027358675375580788, 0.016793852671980858, 0.04301767796278, 0.019070571288466454, 0.026095639914274216, 0.03935424983501434, -0.027486268430948257, 0.0748579278588295, -0.009205292910337448, -0.005141434259712696, -0.009968186728656292, -0.019340571016073227, -0.048497069627046585, 0.025524189695715904, 0.03086932934820652, -0.019150596112012863, -0.01692156121134758, 0.03888383507728577, 0.004068652633577585, 0.0011643108446151018, 0.0817737877368927, -0.017511844635009766, -0.04290840029716492, -0.03487532585859299, 0.022128963842988014, 0.015129723586142063, -0.014289221726357937, 0.016756655648350716, -0.048797186464071274, -0.01755535788834095, -0.02866111509501934, -0.018012482672929764, -0.01672663912177086, 0.020639287307858467, 0.004822850693017244, 0.06813132017850876, 0.03799102455377579, -0.08499637246131897, 0.001370611134916544, 0.013489597477018833, -0.05469004437327385, 0.05216384679079056, 0.025487834587693214, 0.11563485860824585, -0.05794244632124901, -0.06821207702159882, 0.013843230903148651, 0.0027430092450231314, -0.043932147324085236, 0.015921451151371002, 0.004457581788301468, -0.02626054920256138, 0.003346662037074566, 0.004915354773402214, 0.06349223852157593, -0.04199843853712082, -0.009918244555592537, 0.07370830327272415, -0.0013419773895293474, 0.04447440057992935, -0.05498269200325012, -0.030112583190202713, 0.015571340918540955, -0.02352622151374817, -0.03326357156038284, 0.04731009900569916, -0.03126514330506325, -0.01936248503625393, -0.019402701407670975, -0.02657354436814785, 0.010492125526070595, 0.07520930469036102, -0.0031420004088431597, -0.030111141502857208, -0.018417740240693092, 0.02074412815272808, 0.03990216553211212, 0.04507550597190857, -0.02868587151169777, 0.02572939731180668, 0.057890236377716064, 0.031362999230623245, -0.030034204944968224, 0.03732458874583244, 0.029680155217647552, -0.02565496787428856, -0.024795306846499443, 0.03337639570236206, 0.008416099473834038, -0.04627888649702072, 0.041377197951078415, 0.013543513603508472, 0.0026954002678394318, -0.06564140319824219, -0.040304768830537796, 0.041079312562942505, -0.007873419672250748, -0.011545445770025253, 0.01083550974726677, 0.01673336885869503, -0.019662724807858467, 0.04125482961535454, -0.014387893490493298, 0.005688908044248819, -0.02861364558339119, -0.02145250141620636, 0.010875163599848747, -0.018111029639840126, 0.024942884221673012, 0.04556044191122055, -0.0044255368411540985, 0.10270035266876221, -0.04226590692996979, 0.020450998097658157, -0.058475133031606674, -0.03699363023042679, 0.030073905363678932, 0.05951026827096939, 0.05342984199523926, 0.05128251016139984, 0.007164886686950922, -0.029482519254088402, 0.04301723465323448, 0.06817744672298431, 0.04178959131240845, -0.005103595554828644, -0.035882171243429184, -0.00801647175103426, 0.039686836302280426, 0.049509238451719284, -0.05000577121973038, -0.011854966171085835, 0.004868900869041681, 0.03314187005162239, -0.0066920178942382336, 0.01524437591433525, -0.022916151210665703, 0.04149990528821945, -0.04167245700955391, -0.04950718209147453, 0.03859524801373482, 0.02206355705857277, -0.0042046066373586655, 0.029079370200634003, 0.035367969423532486, 0.009159181267023087, 0.02136160060763359, 0.023278387263417244, 0.010240309871733189, -0.05263160541653633, 0.01938559301197529, 0.0005199434235692024, 0.05572153255343437, -0.0532660111784935, 0.03172752261161804, -0.023893436416983604, 0.024844730272889137, 0.04894917830824852, -0.028095290064811707, 0.036227453500032425, 0.05776100605726242, 0.023471806198358536, -0.03661005571484566, 0.02871382050216198, 0.005868993233889341, 0.035463400185108185, 0.03750290721654892, 0.010953519493341446, 0.07090345770120621, 0.020581932738423347, 0.04660233110189438, 0.07766597718000412, 0.014084042981266975, 0.03617069870233536, 0.01875532977283001, 0.06704968214035034, 0.012888921424746513, -0.009783639572560787, 0.04915166646242142, -0.043954961001873016, 0.028835149481892586, -0.060738369822502136, 0.001737007056362927, -0.022440968081355095, -0.005293502006679773, 0.057859309017658234, 0.025619711726903915, -0.03148664906620979, -0.010197890922427177, 0.016223086044192314, -0.01192836370319128, 0.022016992792487144, -0.006574961822479963, 0.010819646529853344, -0.005609389394521713, -0.02281101793050766, -0.021695373579859734, -0.06860186159610748, -0.04691855236887932, -0.02421657182276249, -0.01633860357105732, -0.026226675137877464, -0.09288214147090912, -0.0030819610692560673, -0.08390981703996658, -0.01928195357322693, 0.02860443852841854, 0.008531756699085236, -0.023804718628525734, -0.035535652190446854, 0.026096666231751442, -0.0489245168864727, -0.030525213107466698, -0.04729916527867317, -0.06285126507282257, -0.0552578940987587, -0.08095888793468475, 0.043998826295137405, 0.03552759066224098, 0.00440721120685339, -0.0009574312716722488, 0.031027168035507202, 0.013520709238946438, -0.029705164954066277, 0.03497571870684624, 0.061316654086112976, -0.03593175485730171, -0.049548134207725525, 0.03481069207191467, -0.01101450715214014, 0.015090684406459332, 0.018012847751379013, -0.029375988990068436, 0.09204386174678802, 0.0686713233590126, 0.016729941591620445, 0.027138203382492065, -0.012278299778699875, -0.06570841372013092, -0.06740926206111908, -0.026419058442115784, -0.040625475347042084, -0.00444532698020339, -0.04269944876432419, -0.03941870108246803, -0.036452583968639374, -0.03975719213485718, 0.013700622133910656, -0.012495067901909351, 0.028510114178061485, 0.023538922891020775, 0.03815780580043793, 0.026912089437246323, 0.046766262501478195, -0.028857683762907982, -0.03073410876095295, 0.05632311478257179, 0.011157450266182423, 0.009837862104177475, -0.08612991869449615, -0.0022488527465611696, 0.02579367347061634, 0.01905183121562004, 0.024526318535208702, -0.006273108068853617, 0.07662168145179749, -0.01271677017211914, 0.006470606196671724, 0.015852168202400208, -0.006931789685040712, -0.010823679156601429, -0.003180881729349494, -0.00415992084890604, 0.0036206997465342283, -0.0274345763027668, -0.032303813844919205, -0.010099903680384159, 0.029648058116436005, -0.05767488852143288, -0.06135118007659912, -0.016192415729165077, 0.03536733612418175, 0.041552748531103134, -0.0077026281505823135, -0.045135967433452606, -0.010055162943899632, -0.0729229673743248, -0.003772780764847994, 0.02979358471930027, 0.011262432672083378, -0.004064916167408228, 0.04111151769757271, 0.012334815226495266, -0.004501258954405785, 0.022806352004408836, 0.05433390289545059, 0.06786517798900604, 0.012848326936364174, -0.07870125025510788, -0.0018554645357653499, -0.01915557123720646, 0.012624885886907578, -0.015051355585455894, -0.017962448298931122, -0.02128157578408718, -0.09461911767721176, -0.01719750091433525, 0.01158333383500576, 0.0058798640966415405, -0.013854303397238255, 0.04215938597917557, 0.0020196421537548304, -0.02751103602349758, 0.0005771926371380687, 0.015359573997557163, 0.038714174181222916, -0.0316975973546505, 0.04816221445798874, -0.02930448390543461, 0.0028461879119277, -0.05992801487445831, 0.01660483330488205, -0.05097750201821327, -0.028153574094176292, 0.01174507662653923, 0.05412179231643677, -0.021217482164502144, 0.05370877683162689, 0.07395234704017639, 0.04530300199985504, -0.05997757241129875, 0.03990233689546585, 0.07844897359609604, -0.03749701380729675, -0.04252061992883682, -0.006646738387644291, -0.0018531348323449492, -0.01629595085978508, -0.001629475736990571, -0.012154360301792622, 0.04916093870997429, 0.024939753115177155, 0.0076701766811311245, 0.010984622873365879, -0.007096443325281143, -0.011892629787325859, -0.03151724860072136, -0.05255313217639923, -0.03164957836270332, 0.0005745739326812327, -0.027706725522875786, 0.01739727519452572, 0.028316112235188484, 0.03581761196255684, 0.07818868011236191, 0.023226017132401466, -0.0411725752055645, -0.009582807309925556, 0.021052002906799316, 0.01323131937533617, -0.01934690773487091, -0.07338498532772064, -0.042427223175764084, 0.027396921068429947, 0.0468309223651886, -0.02582940272986889, -0.06632854789495468, 0.017110023647546768, 0.04849299043416977, -0.05154787749052048, 0.051983289420604706, -0.010766889899969101, 0.058661025017499924, 0.05375181511044502, -0.00943988561630249, 0.039775460958480835, -0.02105100080370903, -0.009499294683337212, -0.006432984955608845, 0.04248306527733803, -0.01394068356603384, -0.034337010234594345, -0.05073069408535957, 0.022014841437339783, 0.03726184368133545, 0.031097425147891045, 0.04072403907775879, -0.033992692828178406, -0.04452650994062424, 0.011801027692854404, 0.02702329307794571, -0.04057317227125168, -0.002161360578611493, 0.039350468665361404, 0.0348876491189003, -0.04870249330997467, -0.02319241873919964, -0.018929384648799896, -0.021262602880597115, 0.04191403463482857, 0.006441772915422916, -0.02275054156780243, -0.04703368619084358, 0.0396302305161953, -0.019723132252693176, -0.0346313901245594, -0.06861182302236557, 0.05182131752371788, -0.011430690996348858, -0.023039845749735832, 0.05986412242054939, 0.029860805720090866, 0.018442660570144653, 0.06654294580221176, 0.030527962371706963, 0.015968652442097664, -0.03416323661804199, 0.0455518439412117, -0.0357360765337944, -0.01750938408076763, 0.007136539556086063, -0.03904655575752258, -0.03607303276658058, -0.00022564381652045995, -0.06440260261297226, -0.03221960365772247, -0.02455625869333744, 0.018767083063721657, -0.0021908865310251713, -0.01832282915711403, -0.0034467068035155535, 0.05828527361154556, -0.010680467821657658, -0.04549281671643257, -0.04400616139173508, -0.019728247076272964, -0.06053999066352844, -0.04821121320128441, -0.004072149749845266, 0.009550200775265694, 0.03479321673512459, 0.03323374688625336, 0.020121213048696518, 0.017153000459074974, 0.01721726730465889, -0.03957310691475868, 0.02016841620206833, 0.02567942813038826, -0.03792991116642952, -0.019924692809581757, 0.03695814684033394, 0.01520446315407753, 0.01879662461578846, -0.03761720284819603, 0.032101213932037354, 0.0037433926481753588, -0.008453765884041786, -0.017639905214309692, 0.011824537999927998, 0.03341047838330269, -0.06526303291320801, -0.032387275248765945, -0.015505069866776466, -0.03043125569820404, 0.03224027156829834, -0.027066120877861977, -0.02113775908946991, 0.012554396875202656, 0.0002335795434191823, 0.03593546152114868, -0.028871167451143265, -0.010968386195600033, 0.02826104871928692, 0.006071844603866339, 0.022329477593302727, -0.05310175195336342, 0.064115971326828, -0.03718624264001846, 0.019062906503677368, -0.02169327437877655, 0.009821772575378418, -0.02606869675219059, 0.02487320639193058, -0.016926368698477745, -0.025708980858325958, -0.00448936503380537, 0.058336734771728516, -0.0142268231138587, 0.0348651185631752, -0.013393445871770382, 0.03931219503283501, -0.025305142626166344, 0.07059779763221741, -0.04354149475693703, 0.02146257273852825, -0.03699396923184395, 0.025680838152766228, -0.02117910608649254, 0.01990988291800022, -0.0063998200930655, -0.018961898982524872, 0.03434424474835396, 0.058096401393413544, 0.025787681341171265, 0.035478852689266205, 0.0010480890050530434, -0.011271467432379723, 0.006812829989939928, -0.046629223972558975, -0.023405876010656357, -0.005447921343147755, -0.001713089644908905, -0.021822717040777206, 0.062213849276304245, 0.030144859105348587, -0.04993891343474388, -0.07601679861545563, 0.038453806191682816, 0.02130221016705036, 0.005141542758792639, 0.0035497620701789856, 0.05118123069405556, 0.033604249358177185, 0.03721907362341881, -0.021603567525744438, -0.010991591960191727, 0.0044169737957417965, -0.049197327345609665, 0.02397920750081539, -0.008623926900327206, 0.024157172068953514, 0.01146544236689806, -0.0366436168551445, -0.023452166467905045, 0.054158974438905716, 0.023190418258309364, 0.026884354650974274, 0.0029931238386780024, -0.03908057510852814, 0.034452058374881744, 0.008171841502189636, -0.03781202808022499, 0.02484440617263317, 0.010487118735909462, -0.021998239681124687, 0.03770529478788376, -0.009887311607599258, 0.01247368473559618, 0.06275597959756851, 0.01900741271674633, -0.016588576138019562, 0.0692049190402031, -0.04262039437890053, 0.011504542082548141, 0.035467542707920074, -0.07594557851552963, -0.01234080083668232, -0.05203133448958397, 0.05646722763776779, -0.06367746740579605, 0.02350056730210781, 0.05830409377813339, -0.001328856567852199, 0.030043886974453926, -0.047371648252010345, -0.06241711974143982, 0.021511418744921684, -0.03665439411997795, 0.06632675230503082, 0.015926357358694077, -0.05149251967668533, 0.054834477603435516, 0.01673072949051857, -0.05471503734588623, 0.03733159229159355, 0.02913556434214115, 0.05421886220574379, 0.029677292332053185, 0.04918590188026428, -0.0460510328412056, -0.0011143989395350218, -0.03575582802295685, 0.02373563125729561, -0.05323810502886772, -0.013392921537160873, 0.034289177507162094, -0.03836424648761749, -0.021930905058979988, 0.030377252027392387, -0.01883833482861519, -0.014630327001214027, 0.05923355743288994, -0.05140513926744461, -0.041201476007699966, 0.013935452327132225, 0.021470753476023674, -0.04565516486763954, -0.012964141555130482, -0.031411610543727875, 0.008375248871743679, 0.012574885040521622, -0.00016902362403925508, -0.02738446183502674, -0.01819395273923874, 0.027416592463850975, -0.04029199108481407, -0.02936604432761669, 0.024610141292214394, -0.01160690002143383, -0.02379569597542286, 0.03569179028272629, 0.012683616019785404, 0.012993949465453625, 0.02940271981060505, -0.01874304749071598, 0.022011172026395798, -0.045660559087991714, -0.01625964604318142, 0.03593020141124725, -0.009830488823354244, 0.01984040066599846, 0.009129627607762814, 0.031563859432935715, 0.04343767464160919, 0.02792641520500183, -0.0024440623819828033, -0.035774122923612595, -0.033346861600875854, 0.01902289316058159, -0.03782849386334419, 0.007178946398198605, -0.00032731395913287997, -0.044279612600803375, -0.02508881874382496, 0.00027208056417293847, -0.03631143644452095, 0.045838404446840286, -0.06711065024137497, 0.004455862566828728, 0.04174383357167244, -0.0177711620926857, -0.059920940548181534, -0.11015941947698593, -0.011142934672534466, -0.051754146814346313, -0.014466637745499611, 0.04932807758450508, -0.03620075806975365, 0.04768441244959831, -0.05047391355037689, -0.03788179159164429, 0.036520957946777344, 0.04726928099989891, -0.05962280556559563, 0.056431472301483154, 0.043235894292593, -0.04605575278401375, 0.012667530216276646, 0.018429497256875038, -0.05609741061925888, 0.004706172738224268, 0.014467316679656506, -0.0038482423406094313, 0.02578025311231613, 0.01335178129374981, -0.05778779461979866, -0.021967701613903046, -0.06696505844593048, -0.03455085679888725, -0.048069633543491364, 0.010588746517896652, 0.04732973501086235 ]
DeskDown/MarianMixFT_en-ms
[ "pytorch", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- language: cs license: cc-by-4.0 --- # Small-E-Czech Small-E-Czech is an [Electra](https://arxiv.org/abs/2003.10555)-small model pretrained on a Czech web corpus created at [Seznam.cz](https://www.seznam.cz/) and introduced in an [IAAI 2022 paper](https://arxiv.org/abs/2112.01810). Like other pretrained models, it should be finetuned on a downstream task of interest before use. At Seznam.cz, it has helped improve [web search ranking](https://blog.seznam.cz/2021/02/vyhledavani-pomoci-vyznamovych-vektoru/), query typo correction or clickbait titles detection. We release it under [CC BY 4.0 license](https://creativecommons.org/licenses/by/4.0/) (i.e. allowing commercial use). To raise an issue, please visit our [github](https://github.com/seznam/small-e-czech). ### How to use the discriminator in transformers ```python from transformers import ElectraForPreTraining, ElectraTokenizerFast import torch discriminator = ElectraForPreTraining.from_pretrained("Seznam/small-e-czech") tokenizer = ElectraTokenizerFast.from_pretrained("Seznam/small-e-czech") sentence = "Za hory, za doly, mé zlaté parohy" fake_sentence = "Za hory, za doly, kočka zlaté parohy" fake_sentence_tokens = ["[CLS]"] + tokenizer.tokenize(fake_sentence) + ["[SEP]"] fake_inputs = tokenizer.encode(fake_sentence, return_tensors="pt") outputs = discriminator(fake_inputs) predictions = torch.nn.Sigmoid()(outputs[0]).cpu().detach().numpy() for token in fake_sentence_tokens: print("{:>7s}".format(token), end="") print() for prediction in predictions.squeeze(): print("{:7.1f}".format(prediction), end="") print() ``` In the output we can see the probabilities of particular tokens not belonging in the sentence (i.e. having been faked by the generator) according to the discriminator: ``` [CLS] za hory , za dol ##y , kočka zlaté paro ##hy [SEP] 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8 0.3 0.2 0.1 0.0 ``` ### Finetuning For instructions on how to finetune the model on a new task, see the official HuggingFace transformers [tutorial](https://huggingface.co/transformers/training.html).
[ -0.00909421220421791, -0.00038035461329855025, -0.005556757096201181, 0.05530587583780289, 0.042086321860551834, 0.03073306754231453, 0.0021444803569465876, 0.02011074870824814, -0.053459491580724716, 0.05971328914165497, 0.0152928801253438, 0.00973824504762888, -0.0301202405244112, 0.032098978757858276, -0.057035405188798904, -0.02659403532743454, -0.011185894720256329, -0.013616067357361317, -0.030750732868909836, -0.03383108228445053, -0.003982891328632832, 0.010610531084239483, -0.01815732754766941, 0.002941352780908346, -0.002267354167997837, 0.0017341497587040067, -0.020454974845051765, 0.023720597848296165, 0.01754896715283394, -0.06845524162054062, 0.01574675738811493, -0.02689450979232788, -0.033109065145254135, -0.03709728270769119, -0.036050911992788315, -0.010350008495151997, 0.00036655759322457016, 0.011797813698649406, 0.028123270720243454, 0.06952989846467972, -0.0025681331753730774, 0.03150947764515877, -0.0014863909455016255, -0.04261000454425812, 0.04472861811518669, 0.01970427855849266, -0.04666775465011597, 0.00614994065836072, 0.03652810677886009, -0.044762250036001205, -0.0666467472910881, -0.06278456002473831, -0.03190986067056656, 0.018184328451752663, -0.050428781658411026, -0.024080757051706314, -0.0726255252957344, 0.004465125966817141, 0.04754454270005226, -0.04545551538467407, -0.02055526152253151, 0.014566325582563877, -0.08349902927875519, 0.02562723308801651, 0.041433192789554596, -0.0480315200984478, 0.015528569929301739, -0.049819063395261765, 0.03420763462781906, -0.014335833489894867, 0.05635293573141098, -0.04369283840060234, -0.00027294468600302935, -0.07840517908334732, -0.0016184462001547217, -0.01948407106101513, 0.016420794650912285, 0.05804111808538437, -0.02481045201420784, 0.03665568307042122, 0.010322418995201588, 0.02848687395453453, 0.024881456047296524, -0.04278979077935219, 0.00549134099856019, 0.051152557134628296, -0.028318414464592934, -0.024169696494936943, 0.001781288767233491, 0.057580333203077316, -0.031117970123887062, -0.03338872641324997, -0.03465867042541504, -0.03046034276485443, -0.007980702444911003, 0.026481451466679573, 0.05082989111542702, -0.005317482631653547, 0.039182085543870926, 0.044495921581983566, 0.03570391610264778, 0.042029060423374176, -0.018680866807699203, 0.03593597188591957, -0.03520793467760086, -0.0002119257696904242, -0.005104586016386747, -0.02920609340071678, -0.04088028892874718, 0.050632983446121216, 0.023356642574071884, -0.04038373380899429, -0.044896047562360764, 0.048806361854076385, 0.051460523158311844, 0.005928287748247385, 0.06938176602125168, -0.018318302929401398, -0.031118443235754967, -0.0412370041012764, 0.01845504716038704, 0.025951704010367393, 0.0041574351489543915, 0.03612614423036575, -0.025007233023643494, 0.032984409481287, -0.04805891960859299, -0.045612648129463196, -0.00017836685583461076, 0.016078924760222435, -0.0018869861960411072, 0.061118047684431076, 0.02089003287255764, -0.04747221618890762, -0.011119354516267776, 0.011947737075388432, -0.09274493157863617, 0.05352079123258591, 0.04968175292015076, 0.10035443305969238, -0.05319758504629135, -0.021055560559034348, -0.020913230255246162, 0.00814821571111679, -0.027956154197454453, 0.009470240212976933, 0.0161312036216259, -0.05593221262097359, -0.013381371274590492, -0.0021625307854264975, 0.07483632862567902, -0.0611189566552639, 0.000764609663747251, 0.042237889021635056, -0.00853598490357399, 0.01741037331521511, -0.03040424920618534, 0.005429998971521854, -0.0031516198068857193, 0.010726889595389366, -0.03576233983039856, 0.03211049363017082, -0.004081518389284611, 0.015584456734359264, -0.037540677934885025, -0.04961993917822838, 0.003181255655363202, 0.10640361160039902, 0.003995891660451889, -0.01893237605690956, -0.02088848687708378, 0.00648860028013587, 0.05851026624441147, 0.03410203382372856, -0.029938850551843643, 0.03052750788629055, 0.042049381881952286, 0.03615684062242508, 0.01170444581657648, 0.048988647758960724, 0.03135017678141594, -0.04475121200084686, -0.023483028635382652, 0.012003025971353054, 0.004998837597668171, -0.04202369600534439, 0.020001592114567757, 0.03045184351503849, -0.028372328728437424, -0.04909425973892212, 0.0009494604310020804, 0.0715741217136383, -0.0015846681781113148, 0.010505257174372673, 0.011873151175677776, 0.008636129088699818, -0.01121669914573431, 0.05942402780056, -0.016387855634093285, 0.009545604698359966, -0.047103263437747955, -0.040218524634838104, -0.004848298151046038, 0.033415067940950394, 0.014068043790757656, 0.02142147719860077, -0.01207413524389267, 0.08215490728616714, -0.025438731536269188, 0.009711936116218567, -0.04272996261715889, -0.047030478715896606, 0.01422122959047556, 0.05392121151089668, -0.002942424500361085, 0.045144159346818924, 0.00024807339650578797, -0.02823564223945141, 0.004677041433751583, 0.06191070377826691, 0.03714786469936371, 0.014067847281694412, -0.009006713517010212, 0.007907223887741566, 0.014826767146587372, 0.07275503128767014, -0.02488032914698124, -0.029614413157105446, 0.01422221027314663, 0.04703246429562569, -0.006849410943686962, 0.007847689092159271, -0.014188151806592941, -0.003568839281797409, -0.03877986595034599, -0.02578739821910858, 0.04500168561935425, 0.008016700856387615, 0.01843240112066269, 0.008783258497714996, -0.0074885995127260685, 0.009807541035115719, 0.00815058033913374, 0.012867128476500511, 0.00018028102931566536, -0.051592692732810974, -0.005808597896248102, 0.016900423914194107, 0.034441836178302765, -0.06322094053030014, 0.02868601307272911, -0.015016759745776653, 0.002657261211425066, 0.03591897711157799, -0.0198899544775486, 0.051861152052879333, 0.02107025682926178, 0.045029494911432266, -0.019530950114130974, 0.0025169639848172665, 0.013031810522079468, 0.04016523063182831, 0.07200564444065094, 0.00411947350949049, 0.05807444825768471, -0.0011703507043421268, 0.058196987956762314, 0.06551468372344971, 0.0023128706961870193, 0.023284830152988434, 0.03498837351799011, 0.0764436349272728, -0.005691657308489084, 0.009303221479058266, 0.03338322788476944, -0.05256778374314308, 0.049245160073041916, -0.03726900741457939, 0.012974386103451252, -0.006733383983373642, -0.012728068046271801, 0.039537858217954636, 0.0012055103434249759, -0.007961196824908257, 0.0228474959731102, -0.04004768282175064, -0.021172599866986275, 0.03778403624892235, -0.007467863615602255, 0.018469613045454025, -0.01713821291923523, -0.03104783594608307, 0.010692505165934563, -0.0573897585272789, -0.05768890678882599, 0.013887617737054825, -0.03880540654063225, 0.0019102181540802121, -0.08397291600704193, -0.008240212686359882, -0.056795384734869, -0.004909273236989975, 0.0417732335627079, 0.028338942676782608, 0.005283031612634659, -0.020745225250720978, 0.018828650936484337, -0.017757240682840347, -0.03688271716237068, -0.056452278047800064, -0.037283509969711304, -0.02862350456416607, -0.07669182121753693, 0.055565811693668365, -0.003997639287263155, 0.04018629714846611, -0.0032092402689158916, 0.02561648003757, -0.04127368703484535, -0.02416921593248844, 0.055426012724637985, 0.024084659293293953, -0.028395328670740128, -0.046316616237163544, 0.03582373261451721, 0.00009990846592700109, 0.00815537292510271, -0.013568000867962837, -0.04435238614678383, 0.07393226772546768, 0.06570716947317123, 0.01514294184744358, 0.016043391078710556, -0.0009640559437684715, -0.05700141564011574, -0.04884566366672516, -0.03301870822906494, -0.05025048181414604, -0.010262664407491684, -0.030029743909835815, -0.040072739124298096, -0.01792249083518982, -0.05333496630191803, -0.016751902177929878, -0.00861191377043724, -0.0011953606735914946, 0.01917428895831108, 0.04184786602854729, 0.04043734446167946, 0.02172192931175232, -0.020527832210063934, -0.021757060661911964, 0.056160666048526764, 0.010636190883815289, 0.015388275496661663, -0.07297047227621078, -0.01666717603802681, 0.048768725246191025, 0.01334436796605587, 0.024049649015069008, -0.026836102828383446, 0.07109793275594711, 0.014336349442601204, -0.012942347675561905, -0.012026093900203705, -0.008770090527832508, -0.04204956814646721, -0.002571412129327655, -0.015746241435408592, -0.019418977200984955, -0.04218302294611931, -0.04314408823847771, -0.01656772755086422, 0.04395858570933342, -0.07157554477453232, -0.054568514227867126, -0.02010546252131462, 0.022348761558532715, 0.03448401764035225, 0.010832244530320168, -0.05459689721465111, 0.0018872431246563792, -0.037512511014938354, -0.06611006706953049, 0.008533232845366001, 0.02214810438454151, 0.03175831958651543, 0.033634137362241745, 0.017720114439725876, -0.04627136513590813, 0.025872308760881424, 0.03481127321720123, 0.04896701127290726, 0.037612833082675934, -0.038462962955236435, 0.020708203315734863, -0.011431167833507061, 0.025655852630734444, 0.008940517902374268, 0.0130400275811553, -0.05312981829047203, -0.0712776631116867, -0.022189021110534668, 0.015938637778162956, 0.003522147424519062, -0.025704383850097656, 0.03748368099331856, -0.007863747887313366, -0.02522377483546734, 0.004319657105952501, 0.03274005278944969, 0.06985128670930862, -0.07418983429670334, 0.06583521515130997, 0.0057834237813949585, 0.04583849757909775, -0.026701007038354874, -0.00034690272877924144, -0.028640231117606163, -0.03566049784421921, 0.016160933300852776, 0.08851784467697144, 0.04613995924592018, 0.05040603503584862, 0.07964061200618744, 0.009433619678020477, -0.022735925391316414, 0.019027700647711754, 0.05541841685771942, -0.020585743710398674, -0.03973818197846413, -0.017194489017128944, -0.013830665498971939, -0.028113437816500664, -0.005778423976153135, -0.04749070852994919, 0.04205040633678436, 0.024113498628139496, 0.012692693620920181, -0.022361762821674347, -0.0005010442109778523, -0.019851071760058403, -0.049236662685871124, -0.07030041515827179, -0.031176475808024406, 0.017487958073616028, -0.01616716757416725, 0.04090213030576706, 0.05089859664440155, 0.012548066675662994, 0.038396187126636505, 0.0457368902862072, -0.03219122812151909, -0.026484278962016106, 0.012417085468769073, 0.042232345789670944, -0.04065656289458275, -0.07141735404729843, -0.03278888389468193, 0.00938422605395317, 0.03908262029290199, -0.0062708607874810696, -0.0853172242641449, 0.02056778036057949, 0.027737611904740334, -0.02256089076399803, 0.0862969234585762, -0.006053196266293526, 0.046083297580480576, 0.06757368892431259, -0.01070210337638855, 0.02618907392024994, -0.018657246604561806, 0.01356602180749178, -0.002784008625894785, 0.08978863060474396, -0.017832554876804352, -0.0370093509554863, -0.056537047028541565, 0.025173697620630264, -0.00017932371702045202, 0.030571503564715385, 0.044589608907699585, -0.016020288690924644, -0.04420246556401253, 0.003440061118453741, 0.024841956794261932, -0.06259749829769135, 0.03006509318947792, 0.020458130165934563, 0.036852747201919556, -0.03985646739602089, -0.033751484006643295, -0.002019147388637066, -0.003588409163057804, 0.02302446775138378, -0.03402798995375633, -0.03059450164437294, -0.04869428649544716, 0.025997141376137733, -0.04632038250565529, -0.026030132547020912, -0.1043291836977005, 0.0015673377783969045, -0.00016001124458853155, 0.004270200617611408, 0.06137915700674057, 0.0428590402007103, 0.03245086222887039, 0.04527612775564194, -0.022678880020976067, 0.017199454829096794, -0.051434531807899475, 0.0450177937746048, -0.034857235848903656, -0.011189017444849014, -0.000240157765801996, -0.03977617621421814, 0.007190261967480183, -0.037541698664426804, -0.043569840490818024, -0.054145652800798416, -0.018708176910877228, 0.001721054781228304, 0.006196050904691219, 0.004090867005288601, -0.02783563733100891, 0.030685139819979668, -0.04939514398574829, -0.028772594407200813, -0.02362610213458538, -0.027778232470154762, -0.06591648608446121, -0.030770713463425636, 0.009394392371177673, 0.02631973847746849, 0.03802995756268501, 0.016714919358491898, -0.001089427387341857, 0.008900309912860394, -0.006674478761851788, -0.02663019299507141, 0.03709623962640762, 0.01123225037008524, -0.03293520212173462, -0.011618372052907944, -0.001955008367076516, 0.013632235117256641, 0.044892095029354095, -0.022064119577407837, 0.0313597172498703, 0.03423716872930527, -0.02314457669854164, -0.02100233919918537, 0.016179295256733894, 0.011472451500594616, -0.0566914863884449, -0.04711495712399483, -0.0055777691304683685, -0.057062532752752304, 0.04127978906035423, 0.0032540718093514442, -0.03309520706534386, 0.005146736744791269, 0.01110727060586214, 0.031672488898038864, -0.015552212484180927, -0.02524598129093647, 0.04665897414088249, -0.03810533136129379, 0.03280378505587578, -0.035463105887174606, 0.02100505493581295, -0.02993176504969597, 0.0037668724544346333, -0.034774601459503174, 0.011222520843148232, -0.05805549770593643, 0.04364999756217003, -0.01425936259329319, 0.00656175846233964, -0.03407745808362961, 0.03116195648908615, -0.04303940758109093, 0.020526915788650513, -0.017818108201026917, 0.011982159689068794, -0.024673806503415108, 0.03252963349223137, -0.05100179836153984, 0.03144815191626549, -0.04662332311272621, 0.0066584437154233456, -0.04313885048031807, -0.02672700583934784, -0.013241495937108994, -0.03830564394593239, 0.02215004153549671, 0.027150869369506836, 0.006760336924344301, 0.03492266312241554, -0.03273595869541168, -0.00192289799451828, 0.011274944059550762, -0.04276729002594948, -0.02652461640536785, -0.009542673826217651, 0.03087780624628067, -0.01265620905905962, 0.06490977853536606, 0.037828557193279266, -0.041814811527729034, -0.05310153588652611, 0.040809307247400284, 0.018763557076454163, -0.004823895171284676, 0.002531664911657572, 0.005246331915259361, 0.03666484355926514, 0.03122398816049099, -0.040463756769895554, 0.003910800442099571, -0.02980622835457325, -0.02676020748913288, 0.018919721245765686, -0.000805320858489722, 0.03627835586667061, -0.011263925582170486, -0.032966580241918564, -0.024670055136084557, 0.07044477760791779, 0.014937352389097214, 0.02035748027265072, -0.0009499667212367058, -0.040465209633111954, 0.03731789067387581, 0.0022586577106267214, -0.04877011105418205, 0.01244418416172266, 0.004762043710798025, -0.03584945201873779, 0.08190865814685822, -0.02336318977177143, -0.011990070343017578, 0.025994164869189262, 0.022455712780356407, -0.03419160470366478, 0.04650630056858063, -0.012654237449169159, -0.002214322565123439, 0.021686598658561707, -0.04406610503792763, -0.030651671811938286, -0.035385701805353165, 0.059812914580106735, -0.05168234556913376, 0.02626022696495056, 0.05341073125600815, 0.016424527391791344, 0.04139981046319008, -0.046907395124435425, -0.03480348736047745, 0.035219285637140274, -0.04611144959926605, 0.0634848028421402, 0.005099181085824966, -0.06728273630142212, 0.0522184893488884, 0.020276468247175217, -0.1023407131433487, 0.018068578094244003, 0.046806126832962036, 0.0025442547630518675, 0.010624611750245094, 0.03575592488050461, -0.04171089455485344, 0.001050956198014319, -0.0283778365701437, 0.01400082465261221, -0.06072304770350456, -0.00878969393670559, 0.0012637575855478644, -0.02678820490837097, -0.012630164623260498, 0.047053899616003036, 0.008721018210053444, -0.0007102919626049697, 0.022512342780828476, -0.06934647262096405, -0.04035778343677521, 0.014824827201664448, 0.031132997944951057, -0.03671938553452492, 0.012405473738908768, -0.04450598731637001, 0.03264779970049858, 0.03656553477048874, -0.02566668763756752, -0.04291411116719246, -0.028446387499570847, -0.005080027040094137, -0.08209216594696045, -0.014188345521688461, 0.009798708371818066, 0.0013904105871915817, -0.04262123629450798, 0.036683227866888046, -0.0030134653206914663, 0.036101192235946655, 0.017400655895471573, 0.01898754946887493, 0.014973836950957775, -0.06206982582807541, -0.009415246546268463, 0.03412213921546936, 0.03206732124090195, 0.04856082797050476, -0.0248368289321661, 0.04811457172036171, 0.0669482871890068, 0.025525281205773354, -0.010441367514431477, -0.04282185435295105, -0.025021208450198174, 0.02224854938685894, -0.041457731276750565, 0.04272061586380005, 0.016624916344881058, -0.06367675960063934, -0.04690299928188324, -0.0429985485970974, -0.011962497606873512, 0.03021034225821495, -0.060347169637680054, 0.003069463884457946, 0.052943527698516846, -0.012562851421535015, -0.06631053239107132, -0.07900851964950562, -0.033751193434000015, -0.018795737996697426, 0.03663041442632675, 0.04113970324397087, -0.033713199198246, 0.010133528150618076, -0.03822307288646698, -0.0679604783654213, 0.03800339996814728, 0.04256633296608925, -0.04127787426114082, 0.05346035584807396, 0.02513154409825802, -0.03644193708896637, 0.015690354630351067, 0.03613133728504181, -0.05086333677172661, 0.053544286638498306, 0.017533477395772934, 0.0001016535607050173, 0.03844888135790825, 0.02708176150918007, -0.0305460337549448, -0.024956785142421722, -0.049569886177778244, -0.005785936489701271, -0.028105221688747406, -0.014237694442272186, 0.05341967195272446 ]
DeskDown/MarianMix_en-ja-10
[ "pytorch", "tensorboard", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
1
null
--- license: apache-2.0 tags: - generated_from_trainer - summarization datasets: - mlsum language: de metrics: - rouge model-index: - name: mode-bart-deutsch results: - task: name: Summarization type: summarization dataset: name: mlsum de type: mlsum args: de metrics: - name: Rouge1 type: rouge value: 41.698 --- <!-- 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. --> # mode-bart-deutsch This model is a fine-tuned version of [facebook/bart-base](https://huggingface.co/facebook/bart-base) on the mlsum de dataset. It achieves the following results on the evaluation set: - Loss: 1.2152 - Rouge1: 41.698 - Rouge2: 31.3548 - Rougel: 38.2817 - Rougelsum: 39.6349 - Gen Len: 63.1723 ## 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: 6 - eval_batch_size: 6 - 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.16.0.dev0 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
[ -0.006894915364682674, -0.020166827365756035, -0.018173208460211754, 0.04812249541282654, 0.030755838379263878, 0.02670871838927269, -0.03403950482606888, -0.016029516234993935, -0.05277719348669052, 0.06693293154239655, 0.03927222639322281, -0.024893224239349365, 0.006995896343141794, 0.03275846317410469, -0.04055040329694748, -0.04715297371149063, 0.0029724074993282557, -0.016287416219711304, -0.03265116736292839, -0.0002636524150148034, 0.007370942272245884, 0.008491437882184982, 0.009229299612343311, 0.031013838946819305, 0.021225998178124428, 0.0020425317343324423, -0.018602503463625908, 0.0457170270383358, 0.03525910899043083, -0.07669804990291595, 0.003053319873288274, -0.028946494683623314, -0.060344140976667404, -0.013079877942800522, -0.006615011487156153, 0.0008687871159054339, 0.0016905494267120957, 0.012249406427145004, 0.043431274592876434, 0.05542612820863724, 0.004331092815846205, 0.010060925967991352, -0.036691293120384216, -0.03260784223675728, 0.04969598725438118, -0.0050000702030956745, -0.041241202503442764, -0.016952823847532272, 0.05623279884457588, -0.028402820229530334, -0.05373990908265114, -0.0701180100440979, -0.007748653180897236, 0.02872311882674694, -0.01081563625484705, -0.020210621878504753, -0.06123850867152214, 0.01402545440942049, 0.06100008636713028, -0.045724231749773026, -0.04969256371259689, 0.013021698221564293, -0.06382189691066742, 0.023618008941411972, 0.02637055702507496, -0.03449243679642677, 0.01603303849697113, -0.03342942148447037, 0.03603131324052811, -0.014973304234445095, 0.05569954961538315, -0.03342018276453018, 0.01258509885519743, -0.08749375492334366, -0.009471663273870945, -0.023286310955882072, 0.034382086247205734, 0.05465720221400261, -0.040673017501831055, 0.0576406866312027, 0.03098260797560215, -0.008158005774021149, 0.04447680339217186, -0.028575345873832703, -0.02416643127799034, 0.04022042453289032, -0.03355783224105835, 0.008854649029672146, 0.016042565926909447, 0.03728179633617401, -0.041445065289735794, -0.039888493716716766, -0.02880413644015789, -0.030495701357722282, -0.016421956941485405, 0.020751694217324257, 0.03999539092183113, 0.003428385592997074, 0.024916958063840866, 0.009091280400753021, 0.04337124899029732, 0.0371379591524601, -0.005268624983727932, 0.08752653747797012, -0.009581116028130054, -0.028856655582785606, -0.01977902092039585, -0.021837184205651283, -0.05639684572815895, 0.030262717977166176, 0.011322925798594952, -0.03334241360425949, -0.04571002349257469, 0.029588300734758377, 0.007745783310383558, -0.022424910217523575, 0.0597631074488163, -0.028187060728669167, -0.04858732223510742, -0.03008447028696537, 0.02898573875427246, 0.01286778599023819, -0.015126706101000309, 0.005093218293040991, -0.06314663589000702, -0.0021768256556242704, -0.03183426707983017, -0.04608926922082901, 0.013923760503530502, 0.019546814262866974, -0.004511410370469093, 0.06892654299736023, 0.024433409795165062, -0.04498962685465813, 0.0037042535841464996, -0.0028132658917456865, -0.04411372169852257, 0.061081573367118835, 0.022049203515052795, 0.12251017242670059, -0.05216650292277336, -0.07136142998933792, 0.027732668444514275, -0.0029757374431937933, -0.026289083063602448, 0.020140977576375008, 0.015526849776506424, -0.028380336239933968, -0.02237401157617569, -0.005604436155408621, 0.0414244569838047, -0.056553374975919724, -0.024373063817620277, 0.049798980355262756, -0.005081031937152147, 0.036307934671640396, -0.045743174850940704, -0.030339742079377174, 0.00797946099191904, -0.016203125938773155, -0.019788401201367378, 0.035673197358846664, 0.006833994761109352, -0.005560892168432474, -0.03204946219921112, -0.05285327881574631, -0.010039333254098892, 0.10220750421285629, -0.011320347897708416, -0.019767936319112778, -0.02399367466568947, 0.028834419324994087, 0.0516006238758564, 0.03482396528124809, -0.011704822070896626, 0.013350872322916985, 0.05611516907811165, 0.05136868357658386, -0.04318895936012268, 0.037879735231399536, 0.014444205909967422, -0.03146420046687126, -0.03469303250312805, 0.020951563492417336, -0.014774695970118046, -0.03766968101263046, 0.01784912869334221, 0.04037253186106682, 0.022220974788069725, -0.03669074550271034, -0.03222781792283058, 0.02869579941034317, -0.006711405701935291, 0.0030438853427767754, 0.02054026909172535, -0.00845411978662014, -0.01733943447470665, 0.031249692663550377, -0.009217867627739906, 0.006668546702712774, -0.017526812851428986, -0.03485585376620293, 0.011364090256392956, 0.00971098244190216, 0.039592500776052475, 0.0374922938644886, -0.018220655620098114, 0.08214657753705978, -0.03786217421293259, 0.013201621361076832, -0.025168316438794136, -0.04401162266731262, -0.009213317185640335, 0.052633464336395264, 0.06682795286178589, 0.06513313204050064, 0.0033761532977223396, -0.05466751381754875, 0.02768619731068611, 0.06218072026968002, 0.0374605767428875, 0.009523177519440651, -0.036299899220466614, -0.01183047704398632, 0.0355946384370327, 0.06047150492668152, -0.057275574654340744, -0.025276463478803635, 0.022257791832089424, 0.04867225140333176, -0.010090270079672337, 0.018001636490225792, -0.023714421316981316, 0.02770395576953888, -0.07578335702419281, -0.05812400206923485, 0.062268707901239395, 0.02301485277712345, -0.00786740705370903, 0.017660217359662056, 0.013469145633280277, 0.0009911414235830307, 0.012728296220302582, 0.015005754306912422, -0.009355691261589527, -0.04813454672694206, -0.008961138315498829, 0.013102948665618896, 0.034683242440223694, -0.0403766892850399, 0.0337502621114254, -0.008501327596604824, -0.007551469840109348, 0.033688873052597046, -0.04819317162036896, 0.011618347838521004, 0.04938982427120209, 0.026518216356635094, -0.0396684966981411, 0.006071486510336399, 0.023190168663859367, 0.036955613642930984, 0.046332333236932755, -0.004696231801062822, 0.0640614703297615, 0.004959720652550459, 0.044197842478752136, 0.06650324910879135, 0.033219918608665466, 0.052801813930273056, 0.022916942834854126, 0.07166404277086258, 0.0065985871478915215, -0.009903079830110073, 0.050094522535800934, -0.058875296264886856, 0.015193196013569832, -0.03417207673192024, 0.011638571508228779, -0.019847646355628967, -0.004920530132949352, 0.035320982336997986, -0.0003364984586369246, -0.028774719685316086, -0.01188312005251646, -0.004136431030929089, -0.007107267621904612, 0.04017443582415581, 0.003032536478713155, -0.006249203812330961, 0.0001286127371713519, -0.033104583621025085, 0.008679142221808434, -0.07266279309988022, -0.035251468420028687, -0.008209077641367912, -0.029775256291031837, -0.004055950324982405, -0.08314000815153122, -0.02242024801671505, -0.05631343647837639, -0.022590257227420807, 0.05031093582510948, 0.002787588397040963, -0.006086665205657482, -0.042719971388578415, 0.027313632890582085, -0.047238148748874664, -0.03501872345805168, -0.05139628052711487, -0.048445820808410645, -0.04442572966217995, -0.08253013342618942, 0.03534059226512909, 0.03104839101433754, 0.019690625369548798, 0.009498285129666328, 0.00935544352978468, -0.009172672405838966, -0.013826098293066025, 0.05256282538175583, 0.07326564937829971, -0.03389512747526169, -0.039507608860731125, 0.018504345789551735, -0.016878554597496986, 0.017625240609049797, 0.01038467325270176, -0.04462815821170807, 0.09498881548643112, 0.056017372757196426, -0.0007814302807673812, 0.012820732779800892, -0.011282723397016525, -0.05089801549911499, -0.06696557253599167, -0.013305087573826313, -0.020347807556390762, -0.006124648731201887, -0.04238167777657509, -0.03467924892902374, -0.03017723187804222, -0.03581107407808304, 0.014810377731919289, -0.014173331670463085, 0.027867712080478668, 0.032198578119277954, 0.025831861421465874, 0.022081848233938217, 0.03659141808748245, -0.02617783285677433, -0.05517857149243355, 0.07273885607719421, 0.005371828563511372, -0.01510197576135397, -0.07980246841907501, -0.028804095461964607, 0.03286303952336311, 0.036794424057006836, 0.0030629541724920273, -0.004123437684029341, 0.0839882642030716, 0.009914488531649113, 0.0036704600788652897, 0.009336397983133793, -0.013241657987236977, -0.016536543145775795, 0.008180183358490467, -0.000637598626781255, -0.013383567333221436, -0.04794633761048317, -0.02850768342614174, 0.010830409824848175, 0.02866620570421219, -0.05803588405251503, -0.054387375712394714, -0.021342353895306587, 0.028040476143360138, 0.05982382968068123, -0.015780283138155937, -0.02722320891916752, -0.003715061815455556, -0.057940348982810974, -0.016599973663687706, 0.03132026642560959, 0.01430083904415369, 0.02167540229856968, 0.0584133081138134, 0.03352271392941475, -0.02556724101305008, 0.02010533958673477, 0.04342370480298996, 0.07197224348783493, 0.02461910992860794, -0.059881068766117096, 0.008263765834271908, -0.02183692902326584, 0.028948115184903145, -0.006005771923810244, -0.01889151893556118, -0.018428320065140724, -0.08392054587602615, -0.013521374203264713, 0.008014276623725891, -0.006178345996886492, -0.006537833716720343, 0.05319469794631004, -0.006667468696832657, -0.0345059372484684, -0.006409397814422846, 0.013586578890681267, 0.041780322790145874, -0.03274087235331535, 0.05181525647640228, -0.02152344398200512, 0.006227222736924887, -0.04408713057637215, 0.0006671404698863626, -0.032682158052921295, -0.0016232588095590472, -0.0011724497890099883, 0.07157481461763382, -0.00139899761416018, 0.0474797859787941, 0.09028776735067368, 0.020655706524848938, -0.05069161206483841, 0.022663217037916183, 0.05963325873017311, -0.023517899215221405, -0.03322278708219528, 0.00482219411060214, -0.006983955390751362, -0.027850881218910217, -0.020363131538033485, -0.00674821250140667, 0.03099396638572216, 0.02905772067606449, 0.014790719375014305, 0.004224949516355991, 0.01656343974173069, -0.022805098444223404, -0.03438476473093033, -0.051539428532123566, -0.012803882360458374, 0.00453167362138629, -0.0334554985165596, 0.0010461185593158007, 0.044166967272758484, 0.019531216472387314, 0.07087619602680206, 0.04088485985994339, -0.0360570102930069, -0.020415587350726128, 0.02028406411409378, 0.008136282674968243, -0.032117877155542374, -0.06787661463022232, -0.033691875636577606, 0.029119819402694702, 0.048126835376024246, -0.016324631869792938, -0.04684288799762726, 0.003412674181163311, 0.06611587107181549, -0.040518831461668015, 0.06002141535282135, 0.011348460800945759, 0.0348401740193367, 0.04159406200051308, -0.015102379024028778, 0.040132153779268265, -0.022207584232091904, 0.006332418881356716, 0.012728555127978325, 0.026600850746035576, -0.025168675929307938, -0.03584529832005501, -0.040841538459062576, 0.009833897463977337, 0.012700602412223816, 0.04919600486755371, 0.038752250373363495, -0.01619308814406395, -0.035212475806474686, 0.016129598021507263, 0.057499706745147705, -0.05078591778874397, 0.013940219767391682, 0.019333424046635628, 0.0331403948366642, -0.035966429859399796, -0.046446509659290314, -0.03649992495775223, -0.020256182178854942, 0.04342395439743996, -0.0127826277166605, -0.046565622091293335, -0.0302756205201149, 0.043333787471055984, -0.0018218319164589047, -0.008077101781964302, -0.07470545917749405, 0.03408677503466606, -0.007016247604042292, 0.000027642758141155355, 0.06223144009709358, 0.025000814348459244, 0.016519702970981598, 0.04853097349405289, 0.03020946867763996, 0.0318998247385025, -0.0372818261384964, 0.03471008315682411, -0.061130061745643616, -0.01272987388074398, -0.004418394528329372, -0.028036165982484818, -0.024176422506570816, -0.028387099504470825, -0.06099534034729004, -0.05067375674843788, -0.009450709447264671, -0.0014162618899717927, -0.015690770000219345, 0.00234306906349957, -0.028012895956635475, 0.033599138259887695, -0.023517396301031113, -0.030084138736128807, -0.03594101592898369, -0.03833881393074989, -0.07967289537191391, -0.05559323728084564, 0.013434999622404575, 0.013265427201986313, 0.04101692512631416, 0.0385662280023098, 0.014294464141130447, 0.026305601000785828, 0.0011666860664263368, -0.03583963215351105, 0.022541241720318794, -0.016260776668787003, -0.02264486253261566, -0.02579972892999649, 0.010764612816274166, 0.011911536566913128, 0.04990949481725693, -0.03354909271001816, 0.04538533091545105, 0.03359535336494446, -0.01979081518948078, -0.017581291496753693, 0.027467254549264908, 0.02329338900744915, -0.06067365035414696, -0.04785308241844177, -0.014309486374258995, -0.038978468626737595, 0.016008445993065834, -0.0481843538582325, -0.02665894478559494, 0.012724567204713821, 0.016683053225278854, 0.03812003508210182, -0.0010487660765647888, -0.035447265952825546, 0.030229121446609497, -0.02411235123872757, 0.02040683478116989, -0.07110504060983658, 0.03574110567569733, -0.03783678263425827, 0.0026687891222536564, -0.003192109987139702, 0.0041361902840435505, -0.05186505988240242, 0.032281238585710526, -0.023608775809407234, -0.025436552241444588, -0.008500364609062672, 0.020345065742731094, -0.024028651416301727, 0.023339951410889626, -0.023229612037539482, 0.016995059326291084, -0.03609592840075493, 0.06004565954208374, -0.03891630470752716, 0.013782216235995293, -0.024230316281318665, 0.033147577196359634, -0.04824983328580856, 0.015576357953250408, -0.009373017586767673, -0.02144666388630867, 0.02762080542743206, 0.04913104325532913, 0.04614898934960365, 0.012102545239031315, -0.01863798312842846, -0.012052488513290882, 0.026198530569672585, -0.0539226159453392, -0.016765765845775604, -0.0022263459395617247, -0.0027678662445396185, -0.002475626766681671, 0.05315167084336281, 0.04639464616775513, -0.034768760204315186, -0.052736811339855194, 0.047030869871377945, -0.0008422014070674777, -0.011030422523617744, -0.0023604752495884895, 0.04309234023094177, 0.020173752680420876, 0.04434540495276451, -0.04007512331008911, -0.010755381546914577, -0.01993776112794876, -0.03151411935687065, 0.0287175253033638, -0.02213106118142605, 0.02651790902018547, 0.0030354559421539307, -0.025962641462683678, -0.03461664542555809, 0.09187395870685577, 0.03123617172241211, 0.03973084315657616, 0.0009388855542056262, -0.03874032199382782, 0.030096938833594322, 0.007670481689274311, -0.03351612389087677, 0.012577828951179981, 0.012096512131392956, -0.03521612286567688, 0.0730709582567215, 0.011365720070898533, 0.013790451921522617, 0.06159244477748871, 0.04284372553229332, -0.014743395149707794, 0.053283046931028366, -0.007184772752225399, 0.020587431266903877, 0.058361783623695374, -0.06802123785018921, -0.020232360810041428, -0.040609609335660934, 0.06784689426422119, -0.06748546659946442, 0.034633345901966095, 0.04363323748111725, 0.00031449709786102176, 0.03305979073047638, -0.0553336963057518, -0.046623118221759796, 0.0023577820975333452, -0.05215752124786377, 0.06907780468463898, 0.024852681905031204, -0.04106935113668442, 0.07297760993242264, 0.023418612778186798, -0.05692735314369202, 0.03517337888479233, 0.03475012257695198, 0.029492663219571114, 0.017126578837633133, 0.04161973297595978, -0.056037306785583496, 0.016863133758306503, -0.03745028004050255, 0.024050109088420868, -0.034802790731191635, -0.018290981650352478, 0.030415743589401245, -0.04023786261677742, -0.020067980512976646, 0.0276411771774292, -0.009693611413240433, -0.018368510529398918, 0.04499227926135063, -0.042301177978515625, -0.04900156706571579, 0.013235090300440788, 0.01267347764223814, -0.03300110623240471, 0.012984415516257286, -0.051337938755750656, 0.007519370410591364, 0.011959856376051903, 0.007110145874321461, 0.00037073722342029214, -0.0021270783618092537, 0.028632305562496185, -0.05900193378329277, -0.049316681921482086, 0.026470953598618507, -0.007677878253161907, -0.024173229932785034, 0.027927709743380547, -0.002543089212849736, 0.01190965250134468, 0.024167118594050407, 0.0009256448247469962, 0.018204545602202415, -0.04709240794181824, 0.004623243119567633, 0.006195832509547472, -0.006620349362492561, 0.035672325640916824, -0.0026529727037996054, 0.047860994935035706, 0.020792827010154724, 0.029307812452316284, -0.03039107471704483, -0.036420710384845734, -0.037857696413993835, 0.023266348987817764, -0.03671450912952423, 0.0033332251477986574, 0.007916277274489403, -0.050886813551187515, -0.05434463545680046, -0.011989162303507328, -0.045703209936618805, 0.023709474131464958, -0.055793646723032, 0.006940954830497503, 0.036078792065382004, -0.009124493226408958, -0.06072486937046051, -0.0973171666264534, -0.030605457723140717, -0.03148976340889931, 0.03349234163761139, 0.03338790684938431, -0.05112355574965477, 0.025573549792170525, -0.03960217162966728, -0.05406317859888077, 0.029568428173661232, 0.02276843599975109, -0.05426376685500145, 0.06323429197072983, 0.03717854619026184, -0.06166946515440941, -0.000059253077779430896, 0.037362538278102875, -0.03223671019077301, 0.008444992825388908, 0.04336479306221008, 0.00816030241549015, 0.03601064532995224, 0.023514389991760254, -0.0402996763586998, -0.03421305492520332, -0.09319818019866943, -0.048799287527799606, -0.05097552388906479, 0.014988298527896404, 0.06190525367856026 ]
DeskDown/MarianMix_en-zh-10
[ "pytorch", "tensorboard", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
3
null
--- license: apache-2.0 tags: - generated_from_trainer - summarization datasets: - mlsum language: de metrics: - rouge model-index: - name: t5-seven-epoch-base-german results: - task: name: Summarization type: summarization dataset: name: mlsum de type: mlsum args: de metrics: - name: Rouge1 type: rouge value: 42.3787 --- <!-- 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. --> # t5-seven-epoch-base-german This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the mlsum de dataset. It achieves the following results on the evaluation set: - Loss: 1.5491 - Rouge1: 42.3787 - Rouge2: 32.0253 - Rougel: 38.9529 - Rougelsum: 40.4544 - Gen Len: 47.7873 ## 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: 6 - eval_batch_size: 6 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 7.0 ### Training results ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.0+cu111 - Datasets 1.17.0 - Tokenizers 0.10.3
[ -0.013630995526909828, -0.011625617742538452, 0.0004535064217634499, 0.03206441551446915, 0.044245846569538116, 0.008036043494939804, -0.020608756691217422, -0.01213492639362812, -0.04646715149283409, 0.06019800528883934, 0.030575169250369072, -0.025600019842386246, -0.010842432267963886, 0.03614100441336632, -0.03629332408308983, -0.04064292833209038, -0.003998996689915657, -0.0013617820804938674, -0.03301353007555008, 0.012499304488301277, 0.021243158727884293, 0.009351145476102829, -0.007700340822339058, 0.00954468734562397, 0.016058456152677536, 0.011844250373542309, 0.0022091877181082964, 0.033574268221855164, 0.03286820277571678, -0.0845387876033783, -0.000055519914894830436, -0.03522626310586929, -0.04898524284362793, -0.02863157168030739, -0.021075157448649406, 0.006594379898160696, -0.006332546006888151, 0.0005952538922429085, 0.03818280249834061, 0.06139490753412247, -0.0008616757695563138, 0.024806223809719086, -0.028299003839492798, -0.02532035857439041, 0.06225895136594772, 0.01478776428848505, -0.033885445445775986, 0.00270312768407166, 0.04190242663025856, -0.022458290681242943, -0.0688878744840622, -0.06456363946199417, -0.00633019907400012, 0.02766617201268673, -0.014731178991496563, -0.014145134948194027, -0.07549269497394562, 0.017634669318795204, 0.061249520629644394, -0.041149113327264786, -0.042254216969013214, 0.004587673116475344, -0.07547929137945175, 0.026201732456684113, 0.042813632637262344, -0.010343165136873722, 0.01552671380341053, -0.03424456715583801, 0.0403338223695755, -0.013849787414073944, 0.0463344007730484, -0.010710245929658413, 0.012681339867413044, -0.0939612090587616, -0.01001791562885046, -0.022193830460309982, 0.024635575711727142, 0.04570953920483589, -0.05041284114122391, 0.04590816795825958, 0.03786466270685196, -0.020901357755064964, 0.04750092700123787, -0.023377185687422752, -0.008728367276489735, 0.032837171107530594, -0.02431391552090645, -0.0037001653108745813, 0.009339350275695324, 0.052047375589609146, -0.04310121014714241, -0.03714488074183464, -0.037844158709049225, -0.03820696845650673, -0.019086625427007675, 0.025938665494322777, 0.03904549777507782, 0.001784023130312562, 0.03496468439698219, 0.004561031702905893, 0.040890198200941086, 0.04547063261270523, -0.011002788320183754, 0.07204937934875488, -0.0033403392881155014, -0.020412644371390343, -0.0065108598209917545, -0.03429393842816353, -0.03730875253677368, 0.05788980424404144, 0.010982692241668701, -0.04332752898335457, -0.05601586401462555, 0.03693665936589241, 0.02381001226603985, -0.01697244867682457, 0.061816662549972534, -0.026120780035853386, -0.046522799879312515, -0.025375405326485634, 0.02716507948935032, 0.0189569890499115, -0.008661830797791481, 0.018147112801671028, -0.0439777635037899, -0.010612052865326405, -0.03134234622120857, -0.03649909049272537, 0.002877378137782216, 0.016806038096547127, -0.008866913616657257, 0.06732387840747833, 0.022301726043224335, -0.046009667217731476, 0.00037240891833789647, 0.0017712776316329837, -0.04822336137294769, 0.062342774122953415, 0.018129440024495125, 0.11224132776260376, -0.04652073606848717, -0.0668744146823883, 0.030887160450220108, -0.014192909933626652, -0.052409183233976364, 0.017173191532492638, 0.01189453899860382, -0.05763000622391701, -0.02044195868074894, -0.006119236350059509, 0.05305691435933113, -0.049113404005765915, -0.004600736778229475, 0.03975072503089905, 0.004417669028043747, 0.00632786238566041, -0.0411379374563694, -0.03641938790678978, 0.010765238665044308, -0.008105645887553692, -0.019349781796336174, 0.033032216131687164, 0.00223363796249032, 0.00985555537045002, -0.04320444166660309, -0.0527072437107563, 0.009113622829318047, 0.08831299096345901, 0.0008970079361461103, -0.021584527567029, -0.009301184676587582, 0.02582511678338051, 0.05145779624581337, 0.050460390746593475, -0.016660163179039955, 0.024460909888148308, 0.04514551907777786, 0.05137356370687485, -0.02647790126502514, 0.03990301489830017, 0.014434539712965488, -0.022365743294358253, -0.03255770355463028, 0.017926622182130814, -0.008717273361980915, -0.044355377554893494, 0.01900225318968296, 0.026897333562374115, 0.021706625819206238, -0.037031129002571106, -0.025918083265423775, 0.04051480442285538, -0.0036297894548624754, 0.00966595858335495, 0.007442042697221041, -0.013052285648882389, -0.017701949924230576, 0.04456169530749321, -0.0053435736335814, 0.01342210453003645, -0.027936026453971863, -0.029450206086039543, -0.0029071772005409002, 0.008024787530303001, 0.02821282483637333, 0.055329833179712296, -0.020615341141819954, 0.07189172506332397, -0.03573483228683472, -0.0009041780140250921, -0.026433946564793587, -0.04387887567281723, 0.0015251770382747054, 0.06576234102249146, 0.05429903417825699, 0.06124578416347504, -0.001533667091280222, -0.05833960697054863, 0.02823660895228386, 0.06775593757629395, 0.029619112610816956, 0.00700860470533371, -0.036910515278577805, -0.008344762027263641, 0.0374910868704319, 0.07716239988803864, -0.048355452716350555, -0.013884744606912136, 0.025728600099682808, 0.04188910499215126, -0.006732548587024212, 0.026254266500473022, -0.030045734718441963, 0.029348673298954964, -0.06473793089389801, -0.054854363203048706, 0.044683925807476044, 0.005149153992533684, -0.0066557214595377445, 0.017440399155020714, -0.0012050768127664924, -0.0012910058721899986, 0.01605580933392048, 0.00808391347527504, -0.00276659382507205, -0.05794939771294594, 0.003743579611182213, -0.011735709384083748, 0.03479044511914253, -0.04203686863183975, 0.0329904705286026, -0.013800445944070816, -0.004935496021062136, 0.049746304750442505, -0.050893329083919525, 0.0035623686853796244, 0.04906557500362396, 0.032513365149497986, -0.03376806154847145, 0.013949638232588768, 0.01602659747004509, 0.03505737707018852, 0.04081103950738907, 0.003003630554303527, 0.07897638529539108, -0.0025178277865052223, 0.03882428631186485, 0.07842707633972168, 0.024795737117528915, 0.03517964854836464, 0.02864622324705124, 0.06560520082712173, 0.016669366508722305, -0.006683185696601868, 0.05344465747475624, -0.057773202657699585, 0.005704169161617756, -0.03127305582165718, -0.002559301909059286, -0.03156090900301933, 0.0014296153094619513, 0.034185655415058136, 0.0009465863695368171, -0.024013377726078033, -0.005989953875541687, -0.011441310867667198, -0.012469463981688023, 0.015305085107684135, -0.005205781664699316, -0.01196055207401514, -0.0043688551522791386, -0.0256965309381485, 0.004478778224438429, -0.05618208646774292, -0.029993433505296707, -0.00857881922274828, -0.036555420607328415, -0.02217096835374832, -0.08188296109437943, -0.010851165279746056, -0.05897621810436249, -0.02556120604276657, 0.040472373366355896, -0.004670262802392244, -0.015006279572844505, -0.041180890053510666, 0.023339739069342613, -0.0475633405148983, -0.033585891127586365, -0.05100884288549423, -0.05095207318663597, -0.025268353521823883, -0.0832439735531807, 0.043933745473623276, 0.03573137894272804, 0.020017795264720917, 0.00839330442249775, 0.02410278469324112, -0.007602865807712078, -0.012118163518607616, 0.06763225048780441, 0.047717444598674774, -0.03662865236401558, -0.05911059305071831, 0.02475716918706894, -0.025100793689489365, 0.007867269217967987, 0.005826369393616915, -0.03508780151605606, 0.09416559338569641, 0.04830268770456314, -0.0026416201144456863, 0.017451247200369835, 0.00008886275463737547, -0.0627911239862442, -0.06313345581293106, -0.006590432953089476, -0.030572623014450073, -0.01617347076535225, -0.022315120324492455, -0.03458407148718834, -0.029698757454752922, -0.040509987622499466, 0.013215984217822552, 0.00552455335855484, -0.000039313905290327966, 0.02556583471596241, 0.029689282178878784, 0.03864690661430359, 0.03192560747265816, -0.032937079668045044, -0.04507417604327202, 0.0486171580851078, 0.012080622836947441, -0.011800630018115044, -0.08217865228652954, -0.020813219249248505, 0.026411471888422966, 0.021364478394389153, 0.02253628894686699, -0.00540423346683383, 0.07194700092077255, 0.011555647477507591, -0.012064388021826744, 0.01708686538040638, -0.015581785701215267, -0.023125359788537025, 0.015068062581121922, 0.013106315396726131, -0.009332972578704357, -0.055092163383960724, -0.03692058473825455, 0.0064026848413050175, 0.0283212848007679, -0.04161244258284569, -0.05291806533932686, -0.02994333580136299, 0.025882942602038383, 0.043351802974939346, -0.0189704317599535, -0.037230104207992554, -0.012883935123682022, -0.06391432136297226, -0.015526114962995052, 0.04779795929789543, 0.019122902303934097, 0.022291218861937523, 0.0649527981877327, 0.023779958486557007, -0.02969760075211525, 0.022244811058044434, 0.04260201379656792, 0.07424449920654297, 0.03572509437799454, -0.044415172189474106, -0.004429908934980631, -0.02947704680263996, 0.0261029452085495, -0.005673163570463657, -0.01665690541267395, -0.03531402722001076, -0.08136238902807236, -0.027968138456344604, 0.024714341387152672, -0.017537163570523262, -0.0009706499986350536, 0.05502976477146149, 0.0023550190962851048, -0.022610889747738838, -0.01611188054084778, 0.010524171404540539, 0.04579734429717064, -0.05385627970099449, 0.047735799103975296, -0.00997229851782322, 0.012233824469149113, -0.04824332147836685, 0.0010058770421892405, -0.0162454042583704, 0.003887068945914507, -0.014304066076874733, 0.0644112080335617, 0.009998414665460587, 0.06546682119369507, 0.0683707743883133, 0.024736275896430016, -0.047283388674259186, 0.02543427236378193, 0.06565355509519577, -0.015489510260522366, -0.03282322734594345, 0.010004899464547634, -0.004198001231998205, -0.02358946017920971, -0.009159994311630726, -0.012811504304409027, 0.02770894020795822, 0.050068449229002, -0.000639944220893085, 0.002882112516090274, 0.010290808975696564, -0.014812259934842587, -0.035080961883068085, -0.04647542163729668, -0.026534218341112137, 0.0017162358853965998, -0.026417847722768784, 0.006716429255902767, 0.047553014010190964, 0.01681339181959629, 0.07568555325269699, 0.03368689864873886, -0.04360801354050636, -0.03544653207063675, 0.01503218337893486, 0.024210255593061447, -0.01932983100414276, -0.07193033397197723, -0.03581349551677704, 0.01886141113936901, 0.03865763545036316, 0.0036808329168707132, -0.052898306399583817, 0.002660982310771942, 0.0649937093257904, -0.03030538000166416, 0.062132399529218674, -0.011088654398918152, 0.037633586674928665, 0.05691417306661606, -0.01602008379995823, 0.025619234889745712, -0.023437701165676117, 0.012435267679393291, 0.004475400783121586, 0.03077366016805172, -0.02228892222046852, -0.027533935382962227, -0.06131800264120102, 0.022583140060305595, 0.01720895804464817, 0.047650765627622604, 0.0283410232514143, -0.012597697786986828, -0.044096268713474274, 0.03912132978439331, 0.05596201494336128, -0.0530410073697567, 0.01859474927186966, 0.015468676574528217, 0.03259266912937164, -0.031212093308568, -0.03961795195937157, -0.04688471928238869, -0.010166004300117493, 0.044275589287281036, -0.0072652483358979225, -0.04421026632189751, -0.030742458999156952, 0.03409617021679878, -0.0008582847658544779, -0.018872177228331566, -0.07432632893323898, 0.03992175683379173, -0.014143798500299454, -0.0036394589114934206, 0.06579869240522385, 0.031916648149490356, -0.010764341801404953, 0.05011498183012009, 0.022549450397491455, 0.033526599407196045, -0.033000439405441284, 0.04821966215968132, -0.05807172507047653, -0.009321682155132294, -0.00856715627014637, -0.040581319481134415, -0.027297403663396835, -0.027520889416337013, -0.06406493484973907, -0.049832068383693695, -0.03311121091246605, 0.01198844239115715, -0.007273287046700716, -0.01069475244730711, -0.012729499489068985, 0.03463644161820412, -0.02844301611185074, -0.026825105771422386, -0.0362892672419548, -0.024707430973649025, -0.07620859891176224, -0.06357088685035706, 0.011247359216213226, 0.02398957498371601, 0.05129922553896904, 0.024822011590003967, -0.0002409278240520507, 0.021852834150195122, 0.0012762483675032854, -0.02551916055381298, 0.015225701965391636, -0.012207402847707272, -0.023657390847802162, -0.02027766965329647, 0.0129676079377532, 0.006285550072789192, 0.05379030853509903, -0.031246379017829895, 0.05511334165930748, 0.022370267659425735, 0.0010723966406658292, -0.013949982821941376, 0.0075098020024597645, 0.016420016065239906, -0.08625634014606476, -0.04530705139040947, -0.0034269443713128567, -0.0451049879193306, 0.004185805097222328, -0.03791097179055214, -0.017767304554581642, 0.0022790508810430765, 0.015897708013653755, 0.038300346583127975, -0.005911210086196661, -0.032896626740694046, 0.03422360494732857, -0.028342239558696747, 0.01757023297250271, -0.061461519449949265, 0.03879917412996292, -0.03115691803395748, 0.016241280362010002, -0.007743612863123417, -0.0034705873113125563, -0.035498425364494324, 0.036811597645282745, -0.021497288718819618, -0.0299734678119421, -0.0021127359941601753, 0.03539174050092697, -0.011996245011687279, 0.03825344517827034, -0.006201708689332008, 0.01804111897945404, -0.03006405383348465, 0.05649113282561302, -0.03435540199279785, 0.022198539227247238, -0.03261394053697586, 0.02694629319012165, -0.02335083670914173, -0.003181593958288431, -0.010398883372545242, -0.033676523715257645, 0.033418089151382446, 0.05999220162630081, 0.028259798884391785, 0.0034235187340527773, -0.025984827429056168, -0.01517797727137804, 0.01909198984503746, -0.06736447662115097, -0.03561883792281151, 0.007429536897689104, -0.010469326749444008, -0.022860104218125343, 0.06312230974435806, 0.05475226044654846, -0.026331037282943726, -0.06089331954717636, 0.030524246394634247, 0.00540503254160285, -0.011529684998095036, 0.006781463976949453, 0.04012180119752884, 0.01226452924311161, 0.04427718743681908, -0.05034584179520607, 0.0068903835490345955, -0.01288131158798933, -0.027673032134771347, 0.034033503383398056, -0.01399941835552454, 0.034771546721458435, 0.0014039598172530532, -0.019437847658991814, -0.02216000109910965, 0.0831390842795372, 0.03768240660429001, 0.029018187895417213, -0.007421535439789295, -0.0361795611679554, 0.029083525761961937, -0.002642005681991577, -0.032802313566207886, 0.023546481505036354, 0.03184431418776512, -0.033961497247219086, 0.0698612853884697, -0.012576707638800144, 0.006292601116001606, 0.05962786450982094, 0.03654186427593231, -0.009649707935750484, 0.04804954305291176, -0.021391931921243668, 0.014863470569252968, 0.057113997638225555, -0.06584680080413818, -0.003095104591920972, -0.04993446543812752, 0.07968375086784363, -0.053355373442173004, 0.03794727101922035, 0.03169858455657959, 0.008517075330018997, 0.02019304782152176, -0.0313086174428463, -0.048119157552719116, -0.00038888215203769505, -0.059927649796009064, 0.07625848799943924, 0.023270701989531517, -0.06050092354416847, 0.07201249152421951, 0.005121767986565828, -0.05381542071700096, 0.038907844573259354, 0.03237978368997574, 0.03577430918812752, 0.02839641273021698, 0.04416954144835472, -0.06224864721298218, 0.010665365494787693, -0.03639789670705795, 0.027352411299943924, -0.0614839568734169, -0.01865074783563614, 0.04133186116814613, -0.04205705597996712, -0.022899892181158066, 0.03923017159104347, -0.006415828596800566, -0.01752576418220997, 0.049537938088178635, -0.05388332158327103, -0.04343990236520767, 0.024355465546250343, 0.022946646437048912, -0.042058300226926804, 0.02670973539352417, -0.05966905876994133, 0.013071360997855663, 0.013478349894285202, -0.0005408899742178619, -0.01771649345755577, -0.004146446008235216, 0.02949637360870838, -0.053815219551324844, -0.0464673787355423, 0.023080671206116676, -0.0006728815496899188, -0.020335901528596878, 0.026055801659822464, 0.005338848568499088, 0.02078733965754509, 0.01609398052096367, 0.006396200507879257, 0.037880219519138336, -0.04063751548528671, -0.005490085110068321, 0.00914426427334547, 0.00940814707428217, 0.04983227327466011, 0.001616689725778997, 0.05731082335114479, 0.021299509331583977, 0.024888940155506134, -0.02667173743247986, -0.0241385605186224, -0.041521087288856506, 0.03083302080631256, -0.044453009963035583, 0.024519115686416626, 0.011070691980421543, -0.0527416430413723, -0.03701237216591835, -0.028812702745199203, -0.043106332421302795, 0.018523206934332848, -0.0646270290017128, 0.0013792422832921147, 0.048440851271152496, -0.008798398077487946, -0.05809139832854271, -0.10816897451877594, -0.011115232482552528, -0.025299370288848877, 0.03401476889848709, 0.033695317804813385, -0.05606028437614441, 0.019023802131414413, -0.041428275406360626, -0.07469750195741653, 0.04552042856812477, 0.017112314701080322, -0.044044990092515945, 0.061683639883995056, 0.04403677210211754, -0.051406800746917725, -0.0007785046473145485, 0.025642920285463333, -0.048984453082084656, 0.00872044637799263, 0.04058310389518738, 0.0067192125134170055, 0.025912612676620483, 0.01318957470357418, -0.020549442619085312, -0.026584740728139877, -0.08246289193630219, -0.04902602359652519, -0.0530216209590435, 0.01520880963653326, 0.06947401165962219 ]
DeskDown/MarianMix_en-zh_to_vi-ms-hi-ja
[ "pytorch", "tensorboard", "marian", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "MarianMTModel" ], "model_type": "marian", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
5
null
--- tags: - conversational --- # Spongebob DialoGPT model
[ -0.02955099195241928, 0.001582960831001401, -0.005665202625095844, 0.017039403319358826, 0.01857108622789383, 0.014459751546382904, 0.010102903470396996, 0.02905150316655636, 0.00009818594116950408, 0.023329338058829308, 0.03913433477282524, -0.03314294293522835, 0.013469251804053783, 0.03366096690297127, -0.04280783608555794, -0.004710984416306019, -0.03937484696507454, 0.0036189185921102762, -0.04168527200818062, -0.021324897184967995, 0.0248654056340456, 0.011430973187088966, -0.023459361866116524, 0.02436530776321888, 0.01365745160728693, 0.024041682481765747, -0.011979559436440468, 0.01115776039659977, 0.01625942811369896, -0.04699982330203056, 0.0051354109309613705, -0.04117419943213463, -0.017995085567235947, -0.025517724454402924, -0.030940454453229904, -0.05187593400478363, 0.015437021851539612, -0.0007474402082152665, -0.010568304918706417, 0.030596520751714706, -0.04096132889389992, 0.005371890962123871, -0.012277895584702492, -0.03296692669391632, 0.058205071836709976, -0.015301422215998173, -0.052198633551597595, -0.026989497244358063, 0.0424438938498497, -0.026092559099197388, -0.03586813062429428, -0.07192011177539825, -0.05142366513609886, -0.00588274747133255, 0.012414379976689816, -0.050029803067445755, -0.06908772140741348, -0.011902345344424248, 0.09825558215379715, -0.005938120651990175, -0.011459601111710072, 0.01718408241868019, -0.07149694859981537, 0.0037972002755850554, 0.013562604784965515, -0.07048627734184265, -0.000911044713575393, -0.05021492391824722, 0.0028933908324688673, -0.04161691293120384, 0.06476130336523056, -0.058999158442020416, 0.015112176537513733, -0.08367747813463211, -0.01340577658265829, 0.004782087169587612, 0.057530760765075684, 0.049673113971948624, -0.03930992633104324, 0.04888744652271271, 0.03460891917347908, 0.01457331981509924, 0.051174066960811615, -0.00995242316275835, -0.032954826951026917, 0.03862401470541954, -0.036297500133514404, 0.016783196479082108, -0.0230741947889328, 0.0032114884816110134, -0.029192013666033745, -0.05520278587937355, -0.020332343876361847, -0.019465293735265732, -0.0020199320279061794, 0.04517759755253792, 0.013221423141658306, -0.012550752609968185, 0.03071773611009121, 0.040972255170345306, 0.0023764055222272873, 0.04590952768921852, -0.014709089882671833, 0.042646296322345734, -0.006957001984119415, 0.02739843726158142, 0.01852063648402691, 0.002083614468574524, -0.04931902512907982, 0.029580552130937576, 0.015746351331472397, -0.039364270865917206, -0.010306883603334427, 0.04197203367948532, 0.0001472525327699259, 0.014615176245570183, 0.042264942079782486, -0.03192952647805214, -0.02343863807618618, -0.054280541837215424, 0.06749862432479858, -0.002917585661634803, -0.010104641318321228, -0.027611959725618362, -0.04831559583544731, -0.0003344791766721755, -0.03179052099585533, -0.019074443727731705, -0.027185959741473198, 0.005540847312659025, 0.01706305332481861, 0.027100728824734688, -0.0353342704474926, -0.0471661351621151, 0.0067505440674722195, 0.05065641179680824, -0.07488924264907837, 0.004968009423464537, 0.03803465887904167, 0.10998279601335526, -0.0845460593700409, -0.025317693129181862, -0.014675958082079887, 0.014436270110309124, -0.039490681141614914, -0.012724943459033966, 0.006742946803569794, -0.013319004327058792, -0.03857320174574852, -0.007980757392942905, 0.022143865004181862, -0.0414116345345974, -0.003726405557245016, 0.04081849008798599, 0.008298232220113277, 0.018939537927508354, -0.030393386259675026, 0.015971725806593895, -0.016254721209406853, -0.026943832635879517, -0.0702003538608551, 0.042668379843235016, -0.03334902226924896, -0.03556889668107033, -0.04338231310248375, -0.0277558583766222, 0.010062634944915771, 0.05551335960626602, 0.003887931350618601, -0.019827254116535187, -0.02561686560511589, 0.03211955726146698, 0.06250497698783875, 0.05205409228801727, -0.019456515088677406, 0.029165910556912422, 0.058450330048799515, 0.010183720849454403, -0.0444670245051384, 0.06262992322444916, 0.0011107053142040968, -0.026333315297961235, -0.05191256105899811, -0.00808080192655325, 0.03459784388542175, -0.030381491407752037, 0.017045021057128906, 0.03835709020495415, -0.01660837233066559, -0.03740697726607323, -0.0016846382059156895, 0.05014896020293236, -0.025193387642502785, -0.020017754286527634, -0.03162342682480812, -0.031232330948114395, -0.026820657774806023, 0.009665141813457012, -0.05515238642692566, -0.02208121307194233, -0.0265158973634243, -0.010603821836411953, 0.03728325664997101, 0.010303993709385395, 0.0020637335255742073, 0.03649101033806801, -7.196061915237806e-7, 0.06494352221488953, -0.056537020951509476, 0.03054007701575756, -0.046388525515794754, -0.02842731960117817, -0.03360215574502945, 0.028197109699249268, 0.02712811902165413, 0.03954978659749031, -0.021421626210212708, -0.05424491688609123, 0.02849791944026947, 0.0494622141122818, 0.027716349810361862, 0.024276725947856903, -0.015513005666434765, -0.002633881289511919, 0.02888915129005909, 0.04295612499117851, -0.05131785571575165, 0.011275121942162514, 0.009158369153738022, 0.029736153781414032, -0.01368938572704792, -0.021393699571490288, -0.02423105016350746, -0.006928307469934225, -0.05190056189894676, -0.07280281186103821, 0.041687123477458954, 0.029236316680908203, -0.008282558992505074, 0.04003101959824562, -0.011763031594455242, -0.0020780647173523903, 0.04416012763977051, 0.029319170862436295, 0.00010384448250988498, -0.08793096989393234, 0.0065542710945010185, 0.024796869605779648, 0.07821409404277802, -0.04090879485011101, 0.01604119874536991, 0.003207733854651451, 0.025896728038787842, 0.0335710309445858, -0.04083092510700226, 0.04831581935286522, 0.027490798383951187, 0.04593784734606743, -0.017104754224419594, 0.04992864280939102, -0.0068596298806369305, 0.04074344411492348, 0.04945259541273117, -0.005551038775593042, 0.07018588483333588, 0.0017056541983038187, 0.030723370611667633, 0.07154880464076996, 0.025414561852812767, -0.020804017782211304, 0.025775426998734474, 0.07813641428947449, -0.008532478474080563, 0.018982648849487305, 0.03995165228843689, 0.005130413919687271, -0.0018417465034872293, -0.03711691126227379, -0.010326498188078403, -0.011540337465703487, -0.03225627541542053, 0.07560216635465622, 0.008191096596419811, -0.009187262505292892, -0.004941802006214857, -0.0023318338207900524, 0.001236413256265223, 0.05729680135846138, -0.009317763149738312, -0.020231081172823906, -0.003736790269613266, -0.016816485673189163, 0.04283295199275017, -0.050952617079019547, -0.049832504242658615, -0.025094972923398018, -0.05316251143813133, -0.0077982801012694836, -0.09329874813556671, -0.055791255086660385, -0.08350425958633423, -0.02822854183614254, 0.04094841331243515, 0.02837814763188362, 0.023441806435585022, 0.004450474865734577, 0.01691884733736515, -0.03439848870038986, -0.05260305851697922, -0.05013420060276985, -0.027594171464443207, -0.0034747393801808357, -0.04848180711269379, 0.038635123521089554, 0.060535307973623276, 0.041980259120464325, 0.014141992665827274, -0.029622046276926994, -0.07455632090568542, -0.030015362426638603, 0.04096037149429321, 0.023698335513472557, -0.04418202117085457, -0.035587042570114136, 0.00458067562431097, 0.015821319073438644, -0.009871017187833786, -0.026374954730272293, -0.03295770660042763, 0.060785066336393356, 0.05701589584350586, -0.012342778034508228, 0.024726128205657005, 0.0015310280723497272, -0.049193840473890305, -0.02807133086025715, -0.05194726958870888, -0.025119775906205177, 0.0025831544771790504, -0.03169422969222069, -0.04701901227235794, -0.03355091065168381, -0.04636351391673088, -0.022662147879600525, -0.005820200778543949, 0.0073667606338858604, 0.03620504215359688, 0.031044667586684227, 0.024774176999926567, 0.017188839614391327, -0.02698620781302452, -0.023166943341493607, 0.02690192684531212, -0.037149980664253235, -0.019361699000000954, -0.08293183892965317, -0.0332677997648716, 0.007515464909374714, 0.007820922881364822, -0.007553795352578163, -0.011601362377405167, 0.046454187482595444, 0.03578765317797661, -0.0004579845117405057, 0.02490517497062683, -0.054547250270843506, 0.003184575354680419, -0.037660542875528336, -0.02869732491672039, -0.04110213369131088, -0.03849523514509201, 0.0032388530671596527, -0.019056830555200577, 0.041097242385149, -0.08331111073493958, -0.02982039377093315, -0.02267419919371605, 0.0209905244410038, 0.04179805889725685, 0.004577340558171272, -0.06268825381994247, -0.013012516312301159, -0.05903039127588272, -0.008454973809421062, 0.009859031066298485, -0.024527139961719513, 0.001898675225675106, 0.053538642823696136, 0.018718309700489044, -0.018822725862264633, 0.0561884343624115, 0.02441665716469288, 0.05081472173333168, 0.04757237806916237, -0.04096700996160507, 0.042262498289346695, -0.012747431173920631, 0.028160586953163147, -0.007580357603728771, -0.032647568732500076, -0.0417926087975502, -0.09408492594957352, -0.043573047965765, 0.020283306017518044, -0.025767484679818153, 0.01199656818062067, 0.04995061829686165, -0.04228648915886879, -0.022378068417310715, 0.0038012962322682142, 0.041319701820611954, 0.05736584588885307, -0.04024864733219147, 0.067780040204525, 0.0008458036463707685, 0.01872825063765049, -0.035608530044555664, -0.008743541315197945, -0.034912046045064926, -0.02230253256857395, 0.018054496496915817, 0.042818374931812286, 0.015111587941646576, 0.056210439652204514, 0.07492374628782272, 0.048707958310842514, -0.03674968332052231, 0.05490347370505333, 0.06481031328439713, -0.039291832596063614, -0.03653649240732193, 0.006449263077229261, -0.0038630939088761806, -0.03186524286866188, -0.011026200838387012, -0.029172468930482864, 0.023642530664801598, 0.03351731598377228, -0.00556839257478714, 0.001206745975650847, 0.016163840889930725, -0.03495733439922333, -0.03365308791399002, -0.07081325352191925, -0.014926544390618801, -0.009857915341854095, -0.019863897934556007, 0.055703308433294296, 0.03310044854879379, 0.01998305693268776, 0.06730728596448898, 0.016093526035547256, -0.02087188884615898, -0.047367628663778305, 0.033113107085227966, 0.031204700469970703, -0.032994989305734634, -0.05791512504220009, -0.0631350427865982, 0.028591101989150047, 0.03800196200609207, -0.013867051340639591, -0.08003314584493637, 0.03407233953475952, 0.042065396904945374, -0.037428513169288635, 0.06074729189276695, -0.006264455616474152, 0.049376435577869415, 0.03336728364229202, 0.01049858145415783, 0.050103671848773956, -0.06358902156352997, 0.019652772694826126, -0.01643305830657482, 0.017932839691638947, -0.053089119493961334, -0.050334230065345764, -0.052898697555065155, 0.034663911908864975, 0.04018442705273628, 0.031051600351929665, 0.005254954099655151, -0.04526621103286743, -0.052478618919849396, -0.020528623834252357, 0.03131698817014694, -0.029270490631461143, 0.021732084453105927, 0.03233989328145981, 0.04249696806073189, -0.06688904017210007, -0.0028601319063454866, 0.007103892974555492, 0.004671910312026739, 0.020071182399988174, 0.004266264382749796, -0.03576171025633812, -0.026957238093018532, 0.0032632979564368725, -0.014707851223647594, -0.031033214181661606, -0.08083628863096237, 0.028369076550006866, -0.032024335116147995, -0.04161792993545532, 0.05860985442996025, 0.052984461188316345, 0.05367787554860115, 0.054727282375097275, -0.022124696522951126, 0.036356281489133835, -0.027535641565918922, 0.03221185505390167, -0.03183292970061302, -0.033133022487163544, -0.0033531461376696825, -0.07461366057395935, -0.019413650035858154, -0.042430635541677475, -0.03326937183737755, -0.03428351879119873, -0.00022257553064264357, -0.003485914086923003, -0.010542815551161766, -0.02151312306523323, 0.023191899061203003, -0.0031880598980933428, -0.02491048350930214, -0.029807349666953087, -0.009386655874550343, -0.027748921886086464, -0.06424200534820557, -0.06674892455339432, 0.009681781753897667, -0.03389175608754158, 0.008222821168601513, -0.002165938960388303, 0.014918383210897446, 0.046596501022577286, -0.01427798718214035, -0.023781148716807365, 0.017646539956331253, 0.03488948941230774, -0.030062489211559296, -0.012268578633666039, 0.015362645499408245, 0.01614067144691944, 0.026442084461450577, -0.046399589627981186, 0.02410890720784664, -0.0011260397732257843, -0.04487083479762077, -0.029803916811943054, 0.02846548892557621, 0.016206687316298485, -0.06185337156057358, -0.008583216927945614, -0.04510900750756264, -0.02019296959042549, 0.011552383191883564, -0.04877544566988945, -0.017866570502519608, -0.017199279740452766, 0.025076476857066154, 0.039537183940410614, 0.011282464489340782, -0.013460365124046803, 0.01324990950524807, -0.015989940613508224, 0.01151020172983408, -0.09344866871833801, 0.025970101356506348, -0.028914500027894974, 0.02230035327374935, -0.007016599178314209, 0.01960737071931362, -0.044990308582782745, 0.04602589085698128, -0.02031320333480835, -0.01584399677813053, -0.007333046291023493, -0.0023577427491545677, -0.00412870105355978, 0.044516630470752716, 0.010665420442819595, 0.023594258353114128, -0.027894971892237663, 0.06509969383478165, -0.04407639801502228, 0.019134776666760445, -0.006612870842218399, -0.03164380043745041, -0.024891674518585205, -0.010505436919629574, 0.003594042733311653, -0.06659894436597824, 0.02633187174797058, 0.022826574742794037, 0.040255721658468246, 0.04197193682193756, 0.00219572801142931, 0.010658706538379192, 0.03171820193529129, -0.049476150423288345, -0.043802179396152496, -0.000030424323995248415, 0.009349984116852283, 0.00875526387244463, 0.06283710896968842, 0.024464033544063568, -0.04005581513047218, -0.0231789443641901, 0.0267900750041008, 0.0354938879609108, 0.028124475851655006, 0.0012802035780623555, 0.04598812758922577, 0.05037619546055794, 0.051398083567619324, -0.0016768231289461255, -0.002590273041278124, 0.02615157701075077, -0.008242212235927582, -0.021422963589429855, 0.0034569601994007826, 0.00661237770691514, 0.013562321662902832, -0.029042186215519905, -0.031052185222506523, 0.06465105712413788, 0.005086121615022421, 0.016072286292910576, -0.008857779204845428, -0.04454044997692108, 0.05365023389458656, 0.002054360928013921, -0.03768986463546753, 0.0012848317855969071, 0.03290639445185661, -0.015438031405210495, 0.04015829414129257, -0.007467466406524181, 0.013946437276899815, 0.052864450961351395, 0.03663152456283569, 0.013480246998369694, 0.004089494701474905, -0.017228631302714348, -0.0011765349190682173, 0.01453909557312727, -0.044655028730630875, -0.00619711447507143, -0.027074074372649193, 0.07465841621160507, -0.05287560075521469, 0.05836670845746994, 0.04191186651587486, 0.03411862626671791, 0.026252519339323044, -0.04864892363548279, -0.05920014902949333, -0.005537685938179493, -0.04262357950210571, 0.06281974166631699, -0.007718278095126152, -0.05268543213605881, 0.06330849975347519, 0.03219721093773842, -0.10005253553390503, 0.0270463228225708, 0.030921408906579018, 0.03922916576266289, 0.03077072463929653, 0.05779420584440231, -0.02767864055931568, 0.011513538658618927, -0.03704487904906273, 0.009337111376225948, -0.01993948593735695, -0.02205546945333481, -0.02763824723660946, -0.049475282430648804, 0.0035875733010470867, 0.03239743784070015, -0.037370093166828156, 0.0010549542494118214, 0.013558706268668175, -0.03813721984624863, -0.05976845324039459, -0.0168103389441967, 0.022596068680286407, -0.0021245419047772884, -0.022860601544380188, -0.03225334733724594, 0.01638503186404705, 0.03451840952038765, -0.00299485819414258, -0.06530420482158661, 0.017290882766246796, -0.015914732590317726, -0.07256078720092773, -0.06197981908917427, 0.06483224034309387, 0.011324976570904255, -0.016461364924907684, 0.003575621172785759, 0.023654606193304062, 0.023578884080052376, 0.020717866718769073, -0.005903874058276415, 0.005024983547627926, -0.07663195580244064, -0.00677234772592783, 0.015832556411623955, 0.01945432275533676, 0.019637612625956535, -0.01627536118030548, 0.0243169404566288, 0.06699603796005249, 0.03912254050374031, -0.006624198518693447, -0.05690133944153786, -0.020184608176350594, -0.012025953270494938, -0.046445537358522415, 0.03616158664226532, 0.007315118797123432, -0.049550049006938934, -0.02273447997868061, -0.010441262274980545, -0.0037283299025148153, 0.052738044410943985, -0.019901392981410027, 0.010248390026390553, 0.017744434997439384, -0.0030722434166818857, -0.033450521528720856, -0.10438597202301025, -0.05603664740920067, -0.006196499336510897, 0.02803206816315651, 0.03761224448680878, -0.04588557779788971, 0.0051115439273417, -0.038949042558670044, -0.0004370096721686423, 0.050097573548555374, -0.0010031197452917695, -0.021699344739317894, 0.054759908467531204, 0.06480111181735992, -0.041013311594724655, 0.0668228268623352, 0.017479080706834793, -0.040827516466379166, 0.07136397063732147, 0.006967931520193815, 0.017525598406791687, 0.016980165615677834, 0.022160572931170464, -0.03193030506372452, -0.018399305641651154, -0.025769537314772606, -0.03433528542518616, -0.00191445741802454, 0.0045667835511267185, 0.0394146554172039 ]
Despin89/test
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
# ChineseBERT-base This repository contains code, model, dataset for **ChineseBERT** at ACL2021. paper: **[ChineseBERT: Chinese Pretraining Enhanced by Glyph and Pinyin Information](https://arxiv.org/abs/2106.16038)** *Zijun Sun, Xiaoya Li, Xiaofei Sun, Yuxian Meng, Xiang Ao, Qing He, Fei Wu and Jiwei Li* code: [ChineseBERT github link](https://github.com/ShannonAI/ChineseBert) ## Model description We propose ChineseBERT, which incorporates both the glyph and pinyin information of Chinese characters into language model pretraining. First, for each Chinese character, we get three kind of embedding. - **Char Embedding:** the same as origin BERT token embedding. - **Glyph Embedding:** capture visual features based on different fonts of a Chinese character. - **Pinyin Embedding:** capture phonetic feature from the pinyin sequence ot a Chinese Character. Then, char embedding, glyph embedding and pinyin embedding are first concatenated, and mapped to a D-dimensional embedding through a fully connected layer to form the fusion embedding. Finally, the fusion embedding is added with the position embedding, which is fed as input to the BERT model. The following image shows an overview architecture of ChineseBERT model. ![MODEL](https://raw.githubusercontent.com/ShannonAI/ChineseBert/main/images/ChineseBERT.png) ChineseBERT leverages the glyph and pinyin information of Chinese characters to enhance the model's ability of capturing context semantics from surface character forms and disambiguating polyphonic characters in Chinese.
[ -0.029000161215662956, -0.013608496636152267, -0.020330063998699188, 0.04710151255130768, 0.02400798536837101, 0.018938124179840088, -0.013104962185025215, -0.021434325724840164, -0.020556794479489326, 0.0482499860227108, 0.009486793540418148, -0.005327375140041113, 0.01714995689690113, 0.03899566829204559, -0.03047839179635048, -0.02814040519297123, -0.011633023619651794, -0.02181616984307766, -0.04575613886117935, 0.0008697189041413367, 0.012281629256904125, 0.009251786395907402, 0.0018756439676508307, 0.013491198420524597, 0.013884494081139565, -0.0025746480096131563, 0.0051581053994596004, 0.04554999992251396, 0.04763514921069145, -0.06941871345043182, -0.01696573942899704, -0.04917383939027786, -0.03060443326830864, -0.024967137724161148, -0.015656189993023872, -0.02511446923017502, -0.004072988405823708, -0.008772647008299828, 0.009544813074171543, 0.06518536061048508, -0.019541576504707336, -0.02200484834611416, -0.0012176167219877243, -0.03275683894753456, 0.013862863183021545, 0.014608231373131275, -0.025769731029868126, 0.0007959631038829684, 0.04125867038965225, -0.04089169204235077, -0.03240786865353584, -0.05654870718717575, -0.017094243317842484, 0.008364003151655197, -0.021848537027835846, -0.028568733483552933, -0.055973149836063385, -0.025936288759112358, 0.09455616772174835, -0.03433147817850113, -0.05925222113728523, -0.0037151845172047615, -0.0656018927693367, 0.029797149822115898, 0.02880805917084217, -0.026641404256224632, 0.026124272495508194, -0.035036079585552216, 0.02239345572888851, -0.011679929681122303, 0.046109721064567566, -0.01091337762773037, -0.0022228588350117207, -0.09998785704374313, 0.006611794698983431, -0.014528064988553524, 0.03825301304459572, 0.02419350855052471, -0.04074626415967941, 0.0713108703494072, 0.017256030812859535, 0.001943567767739296, 0.017591699957847595, -0.011020772159099579, -0.011411483399569988, 0.033252421766519547, -0.02869141660630703, 0.013972408138215542, -0.00895720161497593, 0.056806910783052444, -0.041214652359485626, -0.03304964303970337, -0.034867215901613235, -0.01708771474659443, -0.004315614700317383, -0.0018472750671207905, 0.03555203229188919, 0.015454468317329884, 0.05680818855762482, 0.017060354351997375, 0.01523927878588438, 0.058654479682445526, 0.008140228688716888, 0.028392426669597626, -0.019158639013767242, -0.013392106629908085, -0.027104364708065987, -0.03327150642871857, -0.04829907789826393, 0.024655217304825783, 0.04356483370065689, -0.035218268632888794, -0.02617672272026539, 0.06659504026174545, -0.002465666038915515, -0.03657011315226555, 0.04289134219288826, -0.025382786989212036, -0.043414413928985596, -0.06813278794288635, 0.045277491211891174, 0.007290126755833626, 0.02593585103750229, -0.0092806750908494, -0.07269806414842606, 0.022765453904867172, -0.04336995258927345, -0.023823587223887444, -0.0165939312428236, 0.034634415060281754, 0.006678824312984943, 0.03825312480330467, -0.0004333567922003567, -0.032328780740499496, 0.0028453306294977665, 0.011680874973535538, -0.05330336093902588, 0.07522735744714737, 0.03523338958621025, 0.09475669264793396, -0.06946110725402832, -0.05282628536224365, 0.0030117591377347708, 0.03288484737277031, -0.03448278456926346, 0.011820828542113304, -0.008660129271447659, -0.04258288815617561, -0.021864308044314384, -0.03137523680925369, 0.07580902427434921, -0.03536069020628929, -0.0059318202547729015, 0.0383044108748436, -0.01646476797759533, 0.06195908784866333, -0.05663459375500679, -0.0061295293271541595, -0.0021033408120274544, 0.005952385254204273, -0.02791694551706314, 0.029516039416193962, -0.040174923837184906, -0.0048384889960289, -0.06123540922999382, -0.062164854258298874, 0.00312044401653111, 0.08271054923534393, -0.006586539093405008, -0.030309084802865982, -0.024689072743058205, 0.015053382143378258, 0.05313510447740555, 0.061451371759176254, -0.04594923555850983, 0.029719721525907516, 0.036137524992227554, 0.03179381042718887, -0.022384142503142357, 0.07939942926168442, 0.03983281925320625, -0.046205826103687286, -0.0012288556899875402, 0.02183547429740429, -0.003441565902903676, -0.019159289076924324, 0.026657547801733017, 0.03839876502752304, -0.020898884162306786, -0.02466791868209839, -0.003072149585932493, 0.05170999839901924, -0.015775011852383614, 0.00029314792482182384, -0.0011741283815354109, -0.0006982259219512343, -0.030049530789256096, 0.061063457280397415, -0.022878428921103477, -0.00017673101683612913, -0.018956691026687622, -0.023227717727422714, -0.02245098352432251, 0.03964415192604065, 0.0536966547369957, 0.04522840678691864, 0.00004067899863002822, 0.04563836380839348, -0.005995966959744692, 0.020934095606207848, -0.0815238356590271, -0.039959508925676346, -0.0034147019032388926, 0.025323014706373215, 0.02889803797006607, 0.042675118893384933, -0.005510211922228336, -0.04702291265130043, 0.036888957023620605, 0.06390205025672913, 0.0782439187169075, 0.015160362236201763, -0.021322891116142273, 0.00007265704334713519, 0.031046675518155098, 0.05139594525098801, -0.07744388282299042, -0.020327908918261528, 0.042033758014440536, 0.037385959178209305, -0.005480378400534391, 0.003985779359936714, -0.005598399788141251, 0.041876696050167084, -0.04872284457087517, -0.06535711884498596, 0.034386616200208664, 0.02400408685207367, 0.01460044365376234, 0.05821958929300308, -0.003938968293368816, 0.01284634880721569, 0.0060816179029643536, 0.025124967098236084, -0.004463857505470514, -0.034788668155670166, 0.008599286898970604, 0.03683962672948837, 0.0583503358066082, -0.046858835965394974, 0.015521230176091194, 0.01642674207687378, 0.012638848274946213, 0.021166449412703514, -0.018130235373973846, 0.022415509447455406, 0.04285126551985741, -0.006912125740200281, -0.0410512275993824, 0.04005390405654907, 0.0080051114782691, 0.030528167262673378, 0.0745728388428688, -0.01270119845867157, 0.055990543216466904, -0.0004157947259955108, 0.02398725412786007, 0.051280487328767776, 0.019474288448691368, 0.04694795981049538, 0.027758965268731117, 0.05824894458055496, -0.006595458369702101, 0.004909251816570759, 0.08428219705820084, -0.027088839560747147, -0.015299317426979542, -0.06309609860181808, 0.025870202109217644, -0.002380865393206477, -0.015226473100483418, 0.027662230655550957, -0.005947467405349016, 0.019445832818746567, -0.007714336737990379, 0.006365519482642412, 0.004752457607537508, 0.039555326104164124, -0.0003685485862661153, -0.00018425341113470495, 0.015069598332047462, -0.05792508274316788, -0.011368070729076862, -0.07615438848733902, -0.05182363837957382, -0.01575143076479435, -0.02993590570986271, 0.010983223095536232, -0.07707633823156357, -0.01714552380144596, -0.062255170196294785, -0.019963735714554787, 0.026989100500941277, 0.01958749070763588, 0.016002560034394264, -0.03768027573823929, 0.06196238845586777, -0.022685324773192406, -0.007004191167652607, -0.009933700785040855, -0.04799073562026024, -0.02240002155303955, -0.07038675248622894, 0.053186673671007156, 0.009146321564912796, 0.02388763800263405, 0.026097120717167854, 0.005781908985227346, -0.0020692585967481136, -0.018946673721075058, 0.03798303380608559, 0.05263835936784744, -0.028282904997467995, -0.050457973033189774, 0.02674073539674282, 0.0018266915576532483, -0.0011484745191410184, -0.026837315410375595, -0.03437991440296173, 0.08036185055971146, 0.08929923176765442, 0.012819844298064709, 0.0039779022336006165, 0.019832374528050423, -0.047944486141204834, -0.0481528677046299, -0.018768424168229103, -0.056737419217824936, -0.0029949513264000416, -0.013020898215472698, -0.03115842118859291, -0.0016029338585212827, -0.02526027150452137, 0.009526199661195278, -0.0010237926617264748, -0.0010337569983676076, 0.015529830008745193, 0.039839863777160645, 0.02116641215980053, 0.06595788896083832, -0.01774420402944088, -0.02360839955508709, 0.05211697518825531, -0.017632460221648216, 0.005999335087835789, -0.06328091025352478, -0.021819988265633583, 0.044591911137104034, 0.02243121527135372, -0.00586956599727273, -0.02900705486536026, 0.06364253908395767, 0.008658109232783318, -0.0058068870566785336, 0.015981288626790047, -0.011326637119054794, -0.046404462307691574, -0.0034001099411398172, 0.004722692538052797, -0.019825533032417297, -0.07415801286697388, -0.038700271397829056, -0.006198438350111246, 0.038486842066049576, -0.07610037177801132, -0.06802606582641602, -0.018664367496967316, 0.03189248964190483, 0.016726700589060783, -0.025985360145568848, -0.05233735218644142, 0.005491027142852545, -0.04497262462973595, -0.05829054117202759, -0.015861565247178078, -0.01355331763625145, 0.028072910383343697, 0.039145275950431824, 0.02839498221874237, -0.03510874882340431, 0.030547380447387695, 0.03709432855248451, 0.05080703645944595, 0.008818102069199085, -0.04063856601715088, 0.02165696769952774, -0.037975411862134933, 0.0405651330947876, 0.0031620445661246777, -0.04255148768424988, -0.03497575223445892, -0.09169228374958038, -0.013446460478007793, -0.019679542630910873, -0.009071062318980694, -0.009775604121387005, 0.03297511860728264, -0.039034657180309296, -0.0099196070805192, -0.020402759313583374, 0.008900348097085953, 0.03542445972561836, -0.05520672723650932, 0.07533390074968338, -0.013122515752911568, 0.02721872180700302, -0.04323580116033554, 0.027871279045939445, -0.03859536722302437, -0.03173983469605446, -0.01925039105117321, 0.05129993334412575, 0.028129564598202705, 0.043406590819358826, 0.07402597367763519, 0.012194028124213219, -0.04433991014957428, 0.06178354099392891, 0.03827394172549248, -0.009416868910193443, -0.05611564591526985, -0.025272145867347717, -0.0268136914819479, 0.010975449346005917, -0.01610766164958477, -0.026699716225266457, 0.002364209620282054, 0.019113104790449142, 0.013155895285308361, -0.02939831092953682, 0.018489904701709747, -0.020833736285567284, -0.041913580149412155, -0.056222960352897644, -0.019203711301088333, -0.004331332631409168, -0.043195124715566635, 0.04903799295425415, 0.02836732007563114, -0.013737420551478863, 0.0841517299413681, 0.04247468709945679, 0.0005017624353058636, -0.0291456151753664, 0.036576032638549805, 0.015094188041985035, -0.032736293971538544, -0.04416946694254875, -0.04580176621675491, 0.03627896308898926, 0.047508709132671356, 0.0018503930186852813, -0.045083243399858475, 0.008411402814090252, 0.07235309481620789, -0.03839510306715965, 0.05713481083512306, -0.030248813331127167, 0.03666266053915024, 0.059578102082014084, -0.006371732335537672, 0.005559072829782963, 0.014725078828632832, 0.002321817446500063, -0.026693888008594513, 0.038712892681360245, -0.026255007833242416, -0.04425346106290817, -0.030767351388931274, 0.025674572214484215, 0.021665992215275764, 0.026420297101140022, 0.04857219010591507, -0.02680031955242157, -0.04513195902109146, 0.02648148126900196, 0.016706423833966255, -0.016932226717472076, 0.0019251725170761347, 0.038383424282073975, 0.0537111796438694, -0.04358219355344772, -0.01413134764879942, -0.030890773981809616, 0.01872086524963379, 0.02221546322107315, -0.01675006002187729, -0.038242582231760025, -0.07564099133014679, 0.01608208566904068, -0.016355052590370178, -0.013743597082793713, -0.06835706532001495, 0.02296445704996586, -0.06034179404377937, -0.020754847675561905, 0.03509357571601868, 0.013323171064257622, 0.042134933173656464, 0.0448724590241909, 0.013942145742475986, -0.00033354153856635094, -0.03997490927577019, 0.019646115601062775, -0.01110943965613842, -0.046260904520750046, -0.014411195181310177, -0.023511238396167755, -0.01758008450269699, -0.029583070427179337, -0.0622241236269474, -0.05743347853422165, -0.01659017615020275, 0.03284936770796776, -0.020088504999876022, 0.007359279319643974, -0.0192478708922863, 0.03246234357357025, -0.025590326637029648, -0.0649435892701149, -0.02286047674715519, -0.03110903687775135, -0.04977938160300255, -0.07320832461118698, 0.01702556014060974, 0.017800353467464447, 0.017990687862038612, 0.016488246619701385, 0.010918405838310719, 0.02885475568473339, 0.01024764683097601, -0.00829408597201109, 0.028474198654294014, -0.009832480922341347, -0.0131674287840724, -0.048048004508018494, -0.003332417691126466, -0.00012307861470617354, 0.011890976689755917, -0.0398380383849144, 0.03993719071149826, 0.020554013550281525, -0.014658739790320396, -0.012507258914411068, 0.028368081897497177, 0.011627325788140297, -0.08159128576517105, -0.03879310190677643, -0.03828497231006622, -0.04620858281850815, 0.051241274923086166, -0.021516896784305573, -0.047087036073207855, 0.026209281757473946, 0.03307082876563072, 0.04603080824017525, 0.0007804522174410522, -0.008371414616703987, 0.02711486630141735, -0.00977935642004013, 0.027483483776450157, -0.03768163546919823, 0.02985258772969246, -0.04323174059391022, 0.03713450953364372, -0.007706551346927881, 0.006003096699714661, -0.05352722108364105, 0.014650975354015827, -0.014882304705679417, -0.02660916931927204, -0.025476664304733276, 0.02241731621325016, -0.03418618440628052, 0.033529143780469894, -0.043895673006772995, 0.02684664912521839, -0.038113195449113846, 0.041517335921525955, -0.021152807399630547, -0.009517153725028038, 0.00011766562965931371, 0.007672084495425224, -0.05595250055193901, -0.035626865923404694, -0.0005980408168397844, -0.041846372187137604, 0.05566578730940819, 0.03633145987987518, 0.014846918173134327, 0.016530320048332214, 0.007559358607977629, -0.007406424265354872, -0.0001337221183348447, -0.06219600513577461, -0.03277136757969856, -0.024990269914269447, 0.032949090003967285, 0.02063007466495037, 0.05656292289495468, 0.04828000068664551, -0.07077647745609283, -0.04850644990801811, 0.06462998688220978, 0.02635212056338787, -0.009355324320495129, -0.0019303590524941683, 0.04741876572370529, 0.033178798854351044, 0.049701277166604996, -0.033605314791202545, -0.01053959596902132, 0.004918250720947981, -0.01741948164999485, 0.02157297171652317, 0.005282913334667683, 0.020645905286073685, 0.016575805842876434, -0.022495202720165253, -0.030869361013174057, 0.06768327206373215, 0.030262446030974388, 0.0275888592004776, -0.0111708277836442, -0.05226719751954079, 0.023541364818811417, 0.009863263927400112, -0.04107425734400749, -0.009207203984260559, 0.015916863456368446, -0.05170179903507233, 0.07867740094661713, -0.02343938499689102, 0.027200933545827866, 0.026643777266144753, 0.008517034351825714, 0.00887803453952074, 0.036991771310567856, -0.0578441396355629, 0.026299258694052696, 0.0176372192800045, -0.03938731551170349, 0.005539197474718094, -0.032518673688173294, 0.06790673732757568, -0.05284455418586731, 0.05375886335968971, 0.05495992675423622, 0.000796233827713877, 0.02258366346359253, -0.03449860215187073, -0.012236878275871277, 0.025832844898104668, -0.031034983694553375, 0.0509219765663147, -0.00844589900225401, -0.08615943789482117, 0.0459342896938324, 0.01776476949453354, -0.06598695367574692, 0.058757297694683075, 0.05497760698199272, 0.0329139344394207, 0.03494008630514145, 0.04082087427377701, -0.06832710653543472, 0.01537200529128313, -0.0680120661854744, 0.0026863489765673876, -0.048750586807727814, -0.024118024855852127, 0.06209540739655495, -0.01943790726363659, -0.03269616886973381, 0.03203362971544266, 0.012177555821835995, -0.009097859263420105, 0.0425708070397377, -0.05276041105389595, -0.0631977990269661, -0.005610672291368246, 0.010857794433832169, 0.02777230739593506, -0.016528714448213577, -0.0404774509370327, -0.002362107625231147, -0.004798870999366045, -0.02696072869002819, -0.04491497948765755, 0.01192398089915514, 0.04530413821339607, -0.06251699477434158, -0.016877003014087677, 0.07000584900379181, 0.004775198642164469, -0.028126372024416924, 0.04285256564617157, -0.028826117515563965, 0.0041519938968122005, 0.030925923958420753, 0.018420157954096794, 0.03575378656387329, -0.02412243001163006, -0.022092266008257866, 0.019032541662454605, -0.0023919001687318087, 0.01746778003871441, -0.02016749419271946, 0.013262300752103329, 0.04801395907998085, 0.01795964501798153, 0.009062602184712887, -0.060100313276052475, -0.017891351133584976, 0.03266366571187973, -0.022200822830200195, -0.00037178833736106753, -0.0031319367699325085, -0.055145539343357086, -0.04344407469034195, -0.00975631270557642, -0.034013014286756516, 0.06558343768119812, -0.03102017566561699, 0.011142171919345856, 0.025927849113941193, -0.019146505743265152, -0.03264326602220535, -0.06492052227258682, -0.02665683440864086, -0.04708930104970932, 0.014598313719034195, 0.033161506056785583, -0.039083462208509445, 0.0306475181132555, -0.024990765377879143, -0.06412164866924286, 0.027860835194587708, 0.012738109566271305, -0.05048425495624542, 0.06676692515611649, 0.055286914110183716, -0.04120045527815819, -0.0010281583527103066, 0.017896480858325958, -0.05709708482027054, 0.02175067737698555, 0.030514255166053772, 0.014912321232259274, 0.03130877763032913, 0.04372163116931915, 0.015046724118292332, -0.013507944531738758, -0.057265475392341614, -0.013318573124706745, -0.022625071927905083, 0.01312766969203949, 0.08619117736816406 ]
Dev-DGT/food-dbert-multiling
[ "pytorch", "distilbert", "token-classification", "transformers", "autotrain_compatible" ]
token-classification
{ "architectures": [ "DistilBertForTokenClassification" ], "model_type": "distilbert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
17
null
# ChineseBERT-large This repository contains code, model, dataset for **ChineseBERT** at ACL2021. paper: **[ChineseBERT: Chinese Pretraining Enhanced by Glyph and Pinyin Information](https://arxiv.org/abs/2106.16038)** *Zijun Sun, Xiaoya Li, Xiaofei Sun, Yuxian Meng, Xiang Ao, Qing He, Fei Wu and Jiwei Li* code: [ChineseBERT github link](https://github.com/ShannonAI/ChineseBert) ## Model description We propose ChineseBERT, which incorporates both the glyph and pinyin information of Chinese characters into language model pretraining. First, for each Chinese character, we get three kind of embedding. - **Char Embedding:** the same as origin BERT token embedding. - **Glyph Embedding:** capture visual features based on different fonts of a Chinese character. - **Pinyin Embedding:** capture phonetic feature from the pinyin sequence ot a Chinese Character. Then, char embedding, glyph embedding and pinyin embedding are first concatenated, and mapped to a D-dimensional embedding through a fully connected layer to form the fusion embedding. Finally, the fusion embedding is added with the position embedding, which is fed as input to the BERT model. The following image shows an overview architecture of ChineseBERT model. ![MODEL](https://raw.githubusercontent.com/ShannonAI/ChineseBert/main/images/ChineseBERT.png) ChineseBERT leverages the glyph and pinyin information of Chinese characters to enhance the model's ability of capturing context semantics from surface character forms and disambiguating polyphonic characters in Chinese.
[ -0.02809705026447773, -0.013195626437664032, -0.019987598061561584, 0.04719116911292076, 0.023897746577858925, 0.016291657462716103, -0.014124350622296333, -0.024276698008179665, -0.018303990364074707, 0.04785867780447006, 0.00999098364263773, -0.00437500886619091, 0.017931735143065453, 0.04163521155714989, -0.028274523094296455, -0.026304755359888077, -0.011498980224132538, -0.02281305193901062, -0.04665507376194, 0.000783187395427376, 0.010801893658936024, 0.009073174558579922, -0.0002759633061941713, 0.015013502910733223, 0.01633189618587494, -0.0033830669708549976, 0.006314143538475037, 0.04589378088712692, 0.04689057916402817, -0.07174544781446457, -0.01674788072705269, -0.049753863364458084, -0.030634429305791855, -0.025453150272369385, -0.016234321519732475, -0.02686656080186367, -0.0043298015370965, -0.00860650185495615, 0.009541386738419533, 0.06091269478201866, -0.018751801922917366, -0.022284474223852158, -0.0003996950981672853, -0.034280698746442795, 0.014594022184610367, 0.014502179808914661, -0.028646523132920265, -0.0020849965512752533, 0.038238272070884705, -0.04022812470793724, -0.03209574148058891, -0.05652293190360069, -0.016336720436811447, 0.009038715623319149, -0.019963782280683517, -0.02701927348971367, -0.05566965043544769, -0.024800539016723633, 0.0930352434515953, -0.0351710170507431, -0.0597931370139122, -0.004843072034418583, -0.0666002482175827, 0.03033425472676754, 0.028443381190299988, -0.026724060997366905, 0.02724911831319332, -0.035499174147844315, 0.024375366047024727, -0.010347350500524044, 0.045823533087968826, -0.011823355220258236, -0.0013249472249299288, -0.10149430483579636, 0.007958258502185345, -0.013045544736087322, 0.03610781952738762, 0.02300497516989708, -0.0412004217505455, 0.0716777816414833, 0.017719391733407974, 0.0030454962980002165, 0.015282169915735722, -0.011101898737251759, -0.010624050162732601, 0.03480549529194832, -0.028207095339894295, 0.016624100506305695, -0.00870656967163086, 0.05728720501065254, -0.042109232395887375, -0.03398184850811958, -0.035315368324518204, -0.017670951783657074, -0.006745047867298126, -0.0003974305000156164, 0.0353507436811924, 0.013187640346586704, 0.054283659905195236, 0.017978589981794357, 0.016179529950022697, 0.05866597592830658, 0.007822158746421337, 0.03069331683218479, -0.0165566336363554, -0.013469981960952282, -0.028250757604837418, -0.03235635906457901, -0.048245854675769806, 0.02555708959698677, 0.04461342841386795, -0.03750239312648773, -0.025822028517723083, 0.06523015350103378, -0.0030701395589858294, -0.03535594791173935, 0.044846970587968826, -0.025966541841626167, -0.043144211173057556, -0.06678079068660736, 0.043246831744909286, 0.006726039107888937, 0.026750994846224785, -0.006335008889436722, -0.07478247582912445, 0.022420762106776237, -0.04365664720535278, -0.02326435223221779, -0.014210697263479233, 0.034120380878448486, 0.004239906091243029, 0.03676483780145645, -0.001251672743819654, -0.032766010612249374, 0.001367164310067892, 0.014438414014875889, -0.05226770415902138, 0.0738464742898941, 0.034992218017578125, 0.09442803263664246, -0.06609950959682465, -0.0534665547311306, 0.0014304801588878036, 0.03382033109664917, -0.033988792449235916, 0.01266668550670147, -0.00773969292640686, -0.042576469480991364, -0.022203193977475166, -0.03144550696015358, 0.07570566982030869, -0.03734338656067848, -0.005137490574270487, 0.039436813443899155, -0.016948597505688667, 0.06153057515621185, -0.05755719542503357, -0.007198074832558632, -0.0018367341253906488, 0.006499363109469414, -0.027766084298491478, 0.028018716722726822, -0.03805240988731384, -0.004315998405218124, -0.06011568754911423, -0.0626949593424797, 0.004368425812572241, 0.08359062671661377, -0.006258098874241114, -0.030212970450520515, -0.024566689506173134, 0.01754305325448513, 0.05493833124637604, 0.06464649736881256, -0.04746898636221886, 0.030802812427282333, 0.034934382885694504, 0.03176090866327286, -0.021217089146375656, 0.07745417952537537, 0.03810834512114525, -0.046873487532138824, -0.0021163783967494965, 0.023536650463938713, -0.0017883989494293928, -0.0209270641207695, 0.027008768171072006, 0.03897806629538536, -0.02082054130733013, -0.026133636012673378, -0.0022167193237692118, 0.05510033667087555, -0.011381593532860279, -0.0008433038019575179, -0.0014069888275116682, 0.0010116909397765994, -0.03019523061811924, 0.059465743601322174, -0.025009192526340485, -0.001618079491890967, -0.019121594727039337, -0.02340046316385269, -0.02131528966128826, 0.03861240670084953, 0.0520341694355011, 0.047138869762420654, -0.0008161840960383415, 0.04413026198744774, -0.007177841849625111, 0.01965608447790146, -0.08029807358980179, -0.03919738531112671, -0.0037662009708583355, 0.022581376135349274, 0.027840306982398033, 0.04013568535447121, -0.006154044531285763, -0.04660816490650177, 0.03868081793189049, 0.06522258371114731, 0.0787641778588295, 0.01714296080172062, -0.0199380274862051, -0.0011965257581323385, 0.029427161440253258, 0.05174577608704567, -0.07883376628160477, -0.0211419016122818, 0.04252435639500618, 0.037133876234292984, -0.005369412247091532, 0.004661479499191046, -0.007233102340251207, 0.03986210748553276, -0.04785249009728432, -0.06408572942018509, 0.03388575091958046, 0.02458363212645054, 0.013199867680668831, 0.0593099407851696, -0.00647695641964674, 0.011899632401764393, 0.0062906634993851185, 0.02441371977329254, -0.0035351042170077562, -0.033989205956459045, 0.008659891784191132, 0.03652377426624298, 0.05515330284833908, -0.04864198714494705, 0.014728035777807236, 0.01690121926367283, 0.012927671894431114, 0.020374720916152, -0.0170751940459013, 0.023112531751394272, 0.04381141811609268, -0.006239581853151321, -0.03931574523448944, 0.0403098501265049, 0.008188150823116302, 0.027895700186491013, 0.07691458612680435, -0.010830669663846493, 0.05464345961809158, 0.0023026003036648035, 0.02644001692533493, 0.050716303288936615, 0.01875936985015869, 0.04674498364329338, 0.027726424857974052, 0.059736981987953186, -0.004784724675118923, 0.0033809279557317495, 0.08217286318540573, -0.025554362684488297, -0.014282243326306343, -0.06228693202137947, 0.024184921756386757, -0.0020865409169346094, -0.017248915508389473, 0.027770278975367546, -0.004623723216354847, 0.020667623728513718, -0.007343551609665155, 0.005244351923465729, 0.006000479217618704, 0.041037194430828094, -0.0012721555540338159, 0.00023271082318387926, 0.014693507924675941, -0.05843126028776169, -0.012162313796579838, -0.07382481545209885, -0.053585346788167953, -0.015435832552611828, -0.029642796143889427, 0.01060989499092102, -0.07926169782876968, -0.018105152994394302, -0.06463705748319626, -0.018417906016111374, 0.027945801615715027, 0.02226974442601204, 0.01415252685546875, -0.03708425164222717, 0.06019267067313194, -0.02282744087278843, -0.00622218893840909, -0.01148814707994461, -0.046406980603933334, -0.023139506578445435, -0.07120178639888763, 0.05245162546634674, 0.00955243594944477, 0.023857787251472473, 0.024674657732248306, 0.004056885838508606, -0.0030764753464609385, -0.02003704570233822, 0.039561927318573, 0.05063498020172119, -0.027911681681871414, -0.050724342465400696, 0.024717947468161583, 0.002202575793489814, -0.001982116838917136, -0.028192028403282166, -0.035402361303567886, 0.08094826340675354, 0.08972961455583572, 0.014326007105410099, 0.002174221910536289, 0.01821019873023033, -0.0486595593392849, -0.046646978706121445, -0.01812594197690487, -0.05598669499158859, -0.0022535347379744053, -0.013996128924190998, -0.031962618231773376, 0.00020535207295324653, -0.025719016790390015, 0.010546938516199589, 0.001665172167122364, -0.00377657706849277, 0.015396895818412304, 0.039526648819446564, 0.020905451849102974, 0.06482089310884476, -0.017261531203985214, -0.02240842580795288, 0.05659003555774689, -0.01653154380619526, 0.006619268096983433, -0.06199711933732033, -0.021312490105628967, 0.043959133327007294, 0.023535585030913353, -0.005969933699816465, -0.026912640780210495, 0.062282245606184006, 0.010138768702745438, -0.007358326576650143, 0.015330917201936245, -0.013554679229855537, -0.04568370804190636, -0.005151305813342333, 0.006790474522858858, -0.021091317757964134, -0.0734606385231018, -0.03734681382775307, -0.008273153565824032, 0.03751495108008385, -0.07598455250263214, -0.0697927474975586, -0.020129092037677765, 0.03112543374300003, 0.01608193852007389, -0.02599051408469677, -0.05234537646174431, 0.004397799726575613, -0.044833727180957794, -0.057910531759262085, -0.01673184148967266, -0.013503588736057281, 0.02946542762219906, 0.041430991142988205, 0.029048966243863106, -0.032375313341617584, 0.03201008960604668, 0.036735739558935165, 0.05140496790409088, 0.008999494835734367, -0.04169461503624916, 0.021541008725762367, -0.03726853057742119, 0.03880229964852333, 0.00394011102616787, -0.04130302742123604, -0.03753255307674408, -0.09179569035768509, -0.010442161001265049, -0.018713897094130516, -0.009507782757282257, -0.011614839546382427, 0.033266350626945496, -0.03886069729924202, -0.008771943859755993, -0.02040764130651951, 0.00788008701056242, 0.03442525863647461, -0.058150194585323334, 0.0737537294626236, -0.009975381195545197, 0.024428363889455795, -0.04209130257368088, 0.025897987186908722, -0.04133610054850578, -0.03075530380010605, -0.01747044362127781, 0.051647499203681946, 0.030867978930473328, 0.04528779536485672, 0.07405439019203186, 0.013251419179141521, -0.043168652802705765, 0.06256289035081863, 0.03789456561207771, -0.007980684749782085, -0.05632342770695686, -0.02522260695695877, -0.02784678339958191, 0.01150481402873993, -0.018555913120508194, -0.025901516899466515, 0.0015205481322482228, 0.018166784197092056, 0.013954690657556057, -0.028426289558410645, 0.02008858136832714, -0.020268645137548447, -0.041621629148721695, -0.05565231665968895, -0.01804792322218418, -0.004604753572493792, -0.04431147128343582, 0.04900520667433739, 0.029314616695046425, -0.012204928323626518, 0.08437719941139221, 0.043262433260679245, 0.0011260313913226128, -0.028986411169171333, 0.03761689364910126, 0.015204974450170994, -0.03420928865671158, -0.04242394119501114, -0.04401369020342827, 0.03837011381983757, 0.046854548156261444, 0.0035345072392374277, -0.04697158932685852, 0.007659708149731159, 0.07450489699840546, -0.039725348353385925, 0.056241024285554886, -0.03210330009460449, 0.038007933646440506, 0.06134107708930969, -0.006784076802432537, 0.003761357394978404, 0.015489685349166393, 0.0038371023256331682, -0.026841294020414352, 0.03768695890903473, -0.026444824412465096, -0.04364170506596565, -0.029436592012643814, 0.02410721778869629, 0.02256387285888195, 0.02707584574818611, 0.049154072999954224, -0.026328211650252342, -0.04328269883990288, 0.025822589173913002, 0.02018812485039234, -0.016601037234067917, 0.0008492564666084945, 0.03494958207011223, 0.05318664759397507, -0.043123744428157806, -0.012646893039345741, -0.03095640055835247, 0.018226226791739464, 0.023680174723267555, -0.01648852974176407, -0.03687573969364166, -0.07879811525344849, 0.01620849035680294, -0.01884634979069233, -0.01503170095384121, -0.0665164366364479, 0.024624906480312347, -0.059626758098602295, -0.0192247461527586, 0.03240830823779106, 0.012086616829037666, 0.04376472532749176, 0.045089177787303925, 0.011705043725669384, -0.0027568931691348553, -0.03809685260057449, 0.019430099055171013, -0.012310805730521679, -0.04488464444875717, -0.014189177192747593, -0.02299257181584835, -0.019564207643270493, -0.029165875166654587, -0.06328455358743668, -0.05489882826805115, -0.014632190577685833, 0.031914327293634415, -0.02001640945672989, 0.005345194134861231, -0.020055215805768967, 0.032857462763786316, -0.0265222005546093, -0.06422740966081619, -0.02251429483294487, -0.031639594584703445, -0.04811085760593414, -0.07378112524747849, 0.01733880303800106, 0.019469158723950386, 0.0181251373142004, 0.017542559653520584, 0.011798755265772343, 0.02709435112774372, 0.009988812729716301, -0.009033342823386192, 0.02946343645453453, -0.009542015381157398, -0.01407714281231165, -0.04973447322845459, -0.00277760811150074, 0.001333011081442237, 0.01375672034919262, -0.04084399342536926, 0.03957444801926613, 0.01978907361626625, -0.013519050553441048, -0.01105213351547718, 0.02991379424929619, 0.010729744099080563, -0.08311989158391953, -0.038821231573820114, -0.036507878452539444, -0.04541163519024849, 0.05174880474805832, -0.023249560967087746, -0.04584326595067978, 0.026168005540966988, 0.03515240177512169, 0.04676388204097748, 0.000004256745341990609, -0.006770880427211523, 0.027172746136784554, -0.011295163072645664, 0.027625245973467827, -0.0380362868309021, 0.030744697898626328, -0.0410504974424839, 0.03792259097099304, -0.007407892029732466, 0.005043742712587118, -0.05470050126314163, 0.015759961679577827, -0.013684605248272419, -0.024558909237384796, -0.025163937360048294, 0.023412305861711502, -0.03286692500114441, 0.03108016774058342, -0.046185120940208435, 0.0301164910197258, -0.03773551061749458, 0.04241461679339409, -0.021794583648443222, -0.009831232018768787, -0.00022570269356947392, 0.007079774513840675, -0.055025096982717514, -0.03560083359479904, -0.0006141140474937856, -0.04137766733765602, 0.05583310127258301, 0.03888607770204544, 0.014356001280248165, 0.016156911849975586, 0.0059259687550365925, -0.00896842684596777, -0.0007501187501475215, -0.06413792818784714, -0.03378672897815704, -0.02577453851699829, 0.03192117065191269, 0.021398380398750305, 0.0590951181948185, 0.04932447895407677, -0.07092882692813873, -0.048669397830963135, 0.06380482763051987, 0.022851284593343735, -0.011116011999547482, -0.003327344311401248, 0.046233780682086945, 0.03244781866669655, 0.05077619105577469, -0.03376968204975128, -0.008963706903159618, 0.0034618661738932133, -0.013942725956439972, 0.02104567363858223, 0.007404737640172243, 0.020053517073392868, 0.01713617518544197, -0.023829098790884018, -0.03156066685914993, 0.06656331568956375, 0.030890582129359245, 0.026100100949406624, -0.011535600759088993, -0.051073625683784485, 0.022641733288764954, 0.00959713850170374, -0.04210589826107025, -0.009085208177566528, 0.017328862100839615, -0.04928482696413994, 0.0802784338593483, -0.021913567557930946, 0.027116695418953896, 0.027574602514505386, 0.009108534082770348, 0.008061443455517292, 0.03589165583252907, -0.0588059164583683, 0.026261892169713974, 0.017359932884573936, -0.03960692510008812, 0.006816416047513485, -0.033050402998924255, 0.06745508313179016, -0.053336165845394135, 0.05616553872823715, 0.05479348823428154, 0.002121503232046962, 0.02354937419295311, -0.03420856595039368, -0.010340508073568344, 0.02276516892015934, -0.03165730461478233, 0.05150127783417702, -0.007438552565872669, -0.0840722844004631, 0.046986449509859085, 0.018909811973571777, -0.06541329622268677, 0.0607699453830719, 0.05671054124832153, 0.033474214375019073, 0.03527750074863434, 0.039772260934114456, -0.06591515243053436, 0.015126388520002365, -0.07026247680187225, 0.003391159465536475, -0.04679087921977043, -0.025782441720366478, 0.06179296597838402, -0.017005955800414085, -0.03451613709330559, 0.03220472112298012, 0.010117367841303349, -0.008673424832522869, 0.04352258890867233, -0.053159356117248535, -0.062395330518484116, -0.006777182221412659, 0.01479452196508646, 0.026475010439753532, -0.016610287129878998, -0.039601318538188934, -0.0026513864286243916, -0.005831455811858177, -0.027055062353610992, -0.04370909929275513, 0.0118710957467556, 0.047342199832201004, -0.06151580438017845, -0.014189467765390873, 0.06941530853509903, 0.00601347116753459, -0.028144288808107376, 0.041453711688518524, -0.031901828944683075, 0.002774957800284028, 0.030592579394578934, 0.018403366208076477, 0.03469667211174965, -0.022257721051573753, -0.022412138059735298, 0.017992965877056122, -0.0028890403918921947, 0.016526520252227783, -0.019203543663024902, 0.011232460848987103, 0.04849196597933769, 0.02110516093671322, 0.00890060979872942, -0.060874223709106445, -0.018042119219899178, 0.03423503413796425, -0.020571216940879822, 0.00048158736899495125, -0.005068511236459017, -0.05409177765250206, -0.045514658093452454, -0.009148791432380676, -0.03508876636624336, 0.0670287013053894, -0.030586861073970795, 0.013612451031804085, 0.02312929555773735, -0.018916642293334007, -0.03288039565086365, -0.0668657198548317, -0.026488449424505234, -0.04601651430130005, 0.013960055075585842, 0.03240969404578209, -0.03888664394617081, 0.031078366562724113, -0.024872945621609688, -0.06359238177537918, 0.02902962639927864, 0.010769902728497982, -0.05101892724633217, 0.06610224395990372, 0.05221869796514511, -0.04048898443579674, -0.0007292400114238262, 0.019647181034088135, -0.05750507861375809, 0.022741496562957764, 0.029995007440447807, 0.01292041689157486, 0.030833842232823372, 0.044751692563295364, 0.016079261898994446, -0.011065606959164143, -0.05772737041115761, -0.014258470386266708, -0.020807834342122078, 0.012211686931550503, 0.08476568013429642 ]
Devrim/prism-default
[ "license:mit" ]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- metrics: - accuracy widget: - text: "In war resolution, in defeat defiance, in victory magnanimity" - text: "en la guerra resolución en la derrota desafío en la victoria magnanimidad" --- [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1dqeUwS_DZ-urrmYzB29nTCBUltwJxhbh?usp=sharing) # 22 Language Identifier - BERT This model is trained to identify the following 22 different languages. - Arabic - Chinese - Dutch - English - Estonian - French - Hindi - Indonesian - Japanese - Korean - Latin - Persian - Portugese - Pushto - Romanian - Russian - Spanish - Swedish - Tamil - Thai - Turkish - Urdu ## Loading the model ```python from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("SharanSMenon/22-languages-bert-base-cased") model = AutoModelForSequenceClassification.from_pretrained("SharanSMenon/22-languages-bert-base-cased") ``` ## Inference ```python def predict(sentence): tokenized = tokenizer(sentence, return_tensors="pt") outputs = model(**tokenized) return model.config.id2label[outputs.logits.argmax(dim=1).item()] ``` ### Examples ```python sentence1 = "in war resolution, in defeat defiance, in victory magnanimity" predict(sentence1) # English sentence2 = "en la guerra resolución en la derrota desafío en la victoria magnanimidad" predict(sentence2) # Spanish sentence3 = "هذا هو أعظم إله على الإطلاق" predict(sentence3) # Arabic ```
[ -0.008817401714622974, -0.0217074416577816, -0.030596060678362846, 0.07613561302423477, 0.06286949664354324, 0.03606920316815376, -0.0043586320243775845, -0.02498767152428627, -0.06254833936691284, 0.0670216828584671, 0.01032868679612875, -0.028780382126569748, -0.0020911674946546555, 0.0313798226416111, -0.020812345668673515, -0.015630550682544708, -0.009742685593664646, -0.017848290503025055, -0.046035025268793106, -0.03603607043623924, -0.022958990186452866, -0.004154037218540907, 0.022424647584557533, 0.02464187890291214, 0.0051649631932377815, 0.03646530956029892, -0.00900675542652607, 0.038113273680210114, 0.016186926513910294, -0.063910573720932, -0.016538677737116814, -0.025232447311282158, -0.030111977830529213, -0.015261250548064709, -0.032408565282821655, -0.003142886096611619, 0.0066851223818957806, 0.012362726964056492, 0.04146597534418106, 0.07796335965394974, -0.011329392902553082, 0.0048209298402071, 0.010671631433069706, -0.03450405225157738, 0.04308672249317169, 0.00491234939545393, -0.026487577706575394, -0.007837076671421528, 0.030085332691669464, -0.008128240704536438, -0.04927957430481911, -0.047400329262018204, -0.024071307852864265, 0.018265696242451668, 0.006393480580300093, -0.03725530952215195, -0.06064698472619057, 0.009993817657232285, 0.04612332582473755, -0.057180047035217285, -0.04664785787463188, 0.040872808545827866, -0.043740905821323395, 0.004111939575523138, 0.03834808990359306, -0.03788438439369202, 0.00967644713819027, -0.04857400804758072, 0.025496460497379303, -0.020709078758955002, 0.05446094274520874, -0.01178269274532795, 0.011918100528419018, -0.09212065488100052, -0.015960870310664177, -0.026436010375618935, 0.028437957167625427, 0.047527991235256195, -0.032306086272001266, 0.05148618668317795, 0.031217290088534355, 0.0076897297985851765, 0.020383737981319427, -0.031020859256386757, -0.022887559607625008, 0.04555338993668556, -0.038117438554763794, -0.008421185426414013, 0.022358521819114685, 0.055754031985998154, -0.04603483900427818, -0.0063771032728254795, 0.006744130980223417, -0.02369057759642601, -0.00897867139428854, 0.033485863357782364, 0.029897965490818024, -0.010954351164400578, 0.04988902062177658, 0.030245376750826836, 0.024761080741882324, 0.06199245527386665, -0.019401393830776215, 0.06787532567977905, -0.015002909116446972, -0.009341719560325146, -0.029695190489292145, -0.05663077533245087, -0.025818586349487305, 0.025984987616539, 0.019104128703475, -0.04904722422361374, -0.03773122280836105, 0.04446862265467644, 0.015214177779853344, -0.03869074583053589, 0.04456847161054611, -0.01574348844587803, -0.05409698188304901, -0.04710504412651062, 0.03485332056879997, 0.014562982134521008, 0.0044440519995987415, 0.02623014710843563, -0.052295368164777756, 0.03348175063729286, -0.054835591465234756, -0.03179202973842621, -0.009180989116430283, 0.032540399581193924, -0.011901533231139183, 0.02938283607363701, 0.021627124398946762, -0.05439293012022972, -0.0029398533515632153, -0.01530666183680296, -0.05144801363348961, 0.05111248418688774, 0.03316991776227951, 0.08045656979084015, -0.04425978288054466, -0.05651451274752617, 0.018588589504361153, 0.0076180677860975266, -0.01021391712129116, 0.011132432147860527, 0.00947648286819458, -0.02305215783417225, -0.016504492610692978, -0.005723233334720135, 0.04854096472263336, -0.05175209417939186, -0.007377603556960821, 0.05246879905462265, -0.009917096234858036, 0.02069108560681343, -0.03949492424726486, -0.0034219103399664164, -0.0002881411637645215, -0.014545539394021034, -0.026826994493603706, 0.02896946109831333, -0.00687418133020401, -0.02714482881128788, -0.0536571703851223, -0.04142910987138748, -0.012894805520772934, 0.08482402563095093, 0.011461357586085796, -0.00951580610126257, -0.0071243722923099995, 0.022601140663027763, 0.0422334223985672, 0.02023051120340824, -0.04168105870485306, 0.020893754437565804, 0.06105126813054085, 0.034714892506599426, -0.014692075550556183, 0.072954922914505, 0.02466270700097084, -0.037302810698747635, -0.020305156707763672, 0.004061971791088581, -0.0008413958130404353, -0.01841975934803486, 0.022322187200188637, 0.06032026186585426, -0.013408753089606762, -0.016392782330513, -0.021266568452119827, 0.05843967944383621, -0.012044914998114109, 0.0073946695774793625, -0.0076823607087135315, -0.012194154784083366, -0.04353562369942665, 0.04353412240743637, -0.02346981316804886, 0.013829703442752361, -0.02855657786130905, -0.011561289429664612, -0.0073382556438446045, 0.0583592914044857, 0.038340356200933456, 0.011898094788193703, -0.014633456245064735, 0.08489900082349777, -0.041967619210481644, 0.01141370739787817, -0.059925854206085205, -0.06499797105789185, -0.016605956479907036, 0.023432115092873573, 0.024486495181918144, 0.06132259964942932, -0.0015874520177021623, -0.022625001147389412, 0.02395312674343586, 0.06144246459007263, 0.06131232902407646, 0.03297995403409004, -0.011094007641077042, -0.005287455394864082, 0.02422243542969227, 0.06267604976892471, -0.04876390099525452, -0.05566956475377083, 0.039655040949583054, 0.0363195426762104, -0.026736000552773476, 0.013045426458120346, 0.00060244370251894, 0.03716859221458435, -0.04926570504903793, -0.0805651992559433, 0.036213941872119904, 0.01541153434664011, 0.008076413534581661, 0.034845080226659775, -0.015368944965302944, -0.01689837872982025, 0.02001473493874073, 0.0042990571819245815, 0.003405248746275902, -0.03861304745078087, -0.0021565055940300226, 0.0010788335930556059, 0.04596925899386406, -0.031801119446754456, 0.0322413444519043, -0.007769593503326178, 0.007423785515129566, 0.061307188123464584, -0.03497814014554024, 0.018335841596126556, 0.02053760550916195, 0.005277128890156746, -0.030893633142113686, 0.0009127708617597818, -0.009195543825626373, 0.028876179829239845, 0.06517346948385239, 0.013668311759829521, 0.04707854241132736, 0.003329118713736534, 0.04590652137994766, 0.09521475434303284, 0.046260859817266464, 0.030301408842206, 0.02857530489563942, 0.06130754202604294, 0.009439768269658089, -0.0000019462140699033625, 0.06683512777090073, -0.039198096841573715, 0.010351868346333504, -0.02740999311208725, 0.0403437465429306, 0.0029581186827272177, 0.019519241526722908, 0.01994454301893711, -0.0025199754163622856, -0.024700546637177467, 0.013882914558053017, -0.012307192198932171, -0.009087305516004562, 0.03612785413861275, -0.014019463211297989, -0.009359217248857021, -0.00770228635519743, -0.027390863746404648, 0.018597936257719994, -0.061515823006629944, -0.04844140261411667, 0.01309656910598278, -0.022086651995778084, -0.00447362195700407, -0.07343033701181412, -0.04925509914755821, -0.03571993485093117, -0.011825533583760262, 0.029923249036073685, 0.0273868627846241, 0.018453508615493774, -0.03514401987195015, 0.021769016981124878, -0.04308004677295685, -0.036958880722522736, -0.03768816217780113, -0.04082133248448372, -0.0379396453499794, -0.0679357722401619, 0.031116381287574768, 0.019068708643317223, 0.02808889001607895, 0.0018679790664464235, 0.009970848448574543, -0.008484010584652424, -0.02602592296898365, 0.031046269461512566, 0.04866984486579895, -0.026442525908350945, -0.05462362989783287, 0.0310299601405859, -0.032503169029951096, 0.01933508738875389, 0.01324600912630558, -0.04545263200998306, 0.07284284383058548, 0.09260093420743942, 0.025058655068278313, -0.003604418598115444, -0.01853327639400959, -0.05628674849867821, -0.06873170286417007, -0.012034749612212181, -0.0387984998524189, -0.021316731348633766, -0.021248402073979378, -0.035338014364242554, -0.01278538629412651, -0.027906550094485283, -0.006670784670859575, 0.005759310442954302, 0.022095628082752228, 0.04477668181061745, 0.057033564895391464, 0.038651242852211, 0.03786178678274155, -0.040683213621377945, 0.007559235207736492, 0.06238194927573204, -0.0037286016158759594, 0.0259369146078825, -0.08730664104223251, -0.023128677159547806, 0.03284602612257004, 0.03858613967895508, -0.024594048038125038, -0.012704786844551563, 0.0947355106472969, 0.014272660948336124, -0.013688875362277031, 0.0037150441203266382, -0.016171224415302277, -0.033257804811000824, -0.0036875379737466574, -0.001673783641308546, -0.022238006815314293, -0.06819073855876923, 0.004646341782063246, -0.010226551443338394, 0.053413234651088715, -0.055369749665260315, -0.04458910599350929, -0.021287988871335983, 0.03920334205031395, -0.0037105390802025795, -0.016397546976804733, -0.03279905766248703, 0.0068282755091786385, -0.05944594368338585, -0.044718194752931595, 0.015008383430540562, 0.004902622662484646, 0.01668916642665863, 0.056763652712106705, 0.025823311880230904, -0.036311909556388855, 0.032123688608407974, 0.02006029337644577, 0.05356455221772194, 0.02188018709421158, -0.041609711945056915, 0.01904202625155449, -0.025981247425079346, 0.02758205682039261, 0.007789138238877058, -0.03751053661108017, -0.0517362579703331, -0.09007694572210312, 0.005532350856810808, 0.012518009170889854, -0.020139088854193687, -0.017630349844694138, 0.026657164096832275, -0.024069594219326973, 0.0077887470833957195, 0.0005144850583747029, 0.019168736413121223, 0.037540506571531296, -0.0493817962706089, 0.06894692778587341, -0.013986844569444656, 0.0339893214404583, -0.06071309372782707, 0.016410641372203827, -0.02218897081911564, 0.0036644963547587395, -0.007626540958881378, 0.050827234983444214, -0.008856942877173424, 0.031053416430950165, 0.07024375349283218, 0.0373021624982357, -0.042337529361248016, 0.041589029133319855, 0.0327836275100708, -0.008635642938315868, -0.05886454880237579, -0.008555724285542965, -0.023975996300578117, -0.038760777562856674, 0.004696766845881939, -0.0559200681746006, 0.025968056172132492, 0.024064788594841957, -0.009812233969569206, -0.01556949969381094, 0.008209413848817348, -0.04294548183679581, -0.037552688270807266, -0.0672307014465332, -0.03076978586614132, 0.014585699886083603, -0.013155313208699226, 0.02845367044210434, 0.02431419864296913, -0.00623291777446866, 0.06236431747674942, 0.042290180921554565, 0.003231258364394307, -0.027594804763793945, 0.041246697306632996, 0.020057467743754387, -0.042888469994068146, -0.05924544110894203, -0.04407994821667671, 0.0346561037003994, 0.05614538863301277, -0.0029585931915789843, -0.07469020783901215, 0.01349838450551033, 0.05747134983539581, 0.0014013760956004262, 0.07415846735239029, -0.01800636202096939, 0.04631419479846954, 0.055969417095184326, -0.04453948140144348, 0.009080483578145504, -0.030278075486421585, 0.00304072885774076, -0.003466869005933404, 0.04331199824810028, -0.0421830378472805, -0.049056246876716614, -0.051755063235759735, 0.02591712214052677, 0.033713165670633316, 0.0457325242459774, 0.045258525758981705, -0.00483683729544282, -0.057029519230127335, 0.0023277977015823126, 0.028703957796096802, -0.06446382403373718, -0.0037368941120803356, 0.021272236481308937, 0.04793056100606918, -0.03981926292181015, -0.015510207042098045, -0.017248261719942093, 0.007872089743614197, 0.021872349083423615, 0.0077929068356752396, -0.0429975800216198, -0.05687074735760689, 0.027254007756710052, -0.021500952541828156, -0.019581064581871033, -0.08137653768062592, 0.0352240614593029, -0.044623661786317825, -0.011555735021829605, 0.03308490663766861, 0.028005611151456833, 0.024074630811810493, 0.022267969325184822, 0.028862399980425835, 0.014593739993870258, -0.028392978012561798, 0.0378129780292511, -0.023546013981103897, 0.006407553795725107, -0.02365991473197937, -0.04497852921485901, -0.0016989880241453648, -0.023407747969031334, -0.021955439820885658, -0.05605178698897362, -0.026607822626829147, 0.031062642112374306, -0.013899200595915318, -0.005785711109638214, -0.018153494223952293, 0.04630354046821594, -0.03135569393634796, -0.03802170976996422, -0.026943279430270195, -0.036082688719034195, -0.07533427327871323, -0.03766795992851257, 0.02416347712278366, 0.006776073947548866, 0.04073897749185562, 0.022111546248197556, 0.005627993028610945, 0.035090263932943344, -0.013171778991818428, -0.028123697265982628, 0.01765642687678337, -0.0017330500995740294, -0.056752998381853104, -0.02932119183242321, 0.0026812765281647444, 0.010339716449379921, 0.03314872086048126, -0.029397521167993546, 0.015175026841461658, 0.03557460010051727, -0.013769550248980522, -0.014205222018063068, 0.01767154410481453, 0.04244283214211464, -0.08758658170700073, -0.061586569994688034, -0.0006104718195274472, -0.057425450533628464, 0.027434010058641434, -0.022756870836019516, -0.045863017439842224, 0.029814420267939568, 0.02583881840109825, 0.024360306560993195, 0.01525257807224989, -0.031054243445396423, 0.04225395247340202, -0.0106939896941185, 0.02551199123263359, -0.06104161962866783, 0.0455961748957634, -0.03995717316865921, 0.008893498219549656, -0.017520323395729065, -0.017431030049920082, -0.04715754836797714, 0.03648025169968605, -0.016993355005979538, -0.01100947055965662, -0.006381664890795946, 0.01554801780730486, -0.028458502143621445, 0.049283113330602646, -0.02886059693992138, 0.007644305471330881, -0.04126964136958122, 0.051216378808021545, -0.053168199956417084, 0.022058730944991112, -0.02866758033633232, 0.005300094373524189, -0.006454833317548037, -0.0241854265332222, -0.004451170563697815, -0.04665713757276535, 0.04234030842781067, 0.025531936436891556, 0.03306187689304352, 0.047875333577394485, -0.021651780232787132, 0.009933404624462128, 0.021639684215188026, -0.06636936217546463, -0.01846860535442829, -0.03430994600057602, 0.028753038495779037, -0.008433308452367783, 0.03790125995874405, 0.04270651564002037, -0.053418420255184174, -0.06792555749416351, 0.046742137521505356, 0.013413471169769764, -0.019646145403385162, -0.013826152309775352, 0.03575266897678375, 0.02647400088608265, 0.057813551276922226, -0.008942844346165657, 0.0014762843493372202, -0.008165393956005573, -0.02117897942662239, 0.023569926619529724, 0.001196024939417839, -0.007332400884479284, 0.02044578082859516, -0.03282780200242996, -0.03608212247490883, 0.04873048514127731, 0.03173469379544258, 0.010277075693011284, -0.005932535510510206, -0.03693171218037605, -0.012987791560590267, 0.007218667771667242, -0.060506679117679596, -0.006888746749609709, 0.0007392612169496715, -0.030490197241306305, 0.09032925963401794, -0.03390676900744438, 0.011491190642118454, 0.05664630979299545, 0.017159635201096535, 0.00323702790774405, 0.04023488610982895, -0.0246102437376976, -0.0057658907026052475, 0.03194649517536163, -0.08277326822280884, 0.00921491626650095, -0.02676924131810665, 0.09429043531417847, -0.06190291419625282, 0.03416283056139946, 0.03381626680493355, 0.02687167376279831, 0.03553194925189018, -0.024234727025032043, -0.031857579946517944, 0.028492217883467674, -0.038213495165109634, 0.06495928764343262, 0.0008247779333032668, -0.05414294824004173, 0.07249008119106293, 0.033178456127643585, -0.08832713961601257, 0.04391568899154663, 0.059593502432107925, 0.018367722630500793, 0.025892551988363266, 0.04014209657907486, -0.058149803429841995, 0.013037861324846745, -0.022864241153001785, 0.016574624925851822, -0.08428751677274704, -0.00885067693889141, 0.009643586352467537, -0.04308334365487099, -0.011395388282835484, 0.027630748227238655, -0.022167427465319633, -0.00872841291129589, 0.0032252927776426077, -0.06441500782966614, -0.05919593945145607, -0.007365780882537365, 0.016458962112665176, -0.03408464416861534, 0.018795616924762726, -0.04242309555411339, 0.014346493408083916, 0.008065066300332546, -0.0024750004522502422, -0.03308273106813431, -0.007117129396647215, 0.030145755037665367, -0.04983719438314438, -0.03677346184849739, 0.059513919055461884, 0.021238235756754875, -0.012872719205915928, 0.03957116976380348, -0.010104226879775524, -0.02053055725991726, 0.019152650609612465, -0.009792979806661606, 0.02273663505911827, -0.053919922560453415, 0.0005676428554579616, 0.01008678413927555, 0.02445114776492119, 0.027474984526634216, -0.022604942321777344, 0.04108022153377533, 0.05035209655761719, 0.03677879273891449, 0.008459808304905891, -0.04238191992044449, -0.020653951913118362, 0.027948839589953423, -0.06581749022006989, 0.02527947910130024, 0.005955966655164957, -0.03591931238770485, -0.027003344148397446, -0.01367526687681675, 0.010919922031462193, 0.047568824142217636, -0.05586380138993263, -0.006438056472688913, 0.0029850429855287075, -0.01815570332109928, -0.029342152178287506, -0.08578656613826752, -0.04686907306313515, -0.03940243273973465, 0.04712233692407608, 0.019279668107628822, -0.059438884258270264, 0.020960504189133644, -0.047227486968040466, -0.07204638421535492, 0.028127627447247505, 0.03854072093963623, -0.028754357248544693, 0.052903104573488235, 0.04390517994761467, -0.046359505504369736, 0.028795931488275528, 0.02883598953485489, -0.031652942299842834, 0.03901594504714012, 0.01994675025343895, 0.02244231477379799, 0.027492675930261612, 0.059189341962337494, -0.01672549918293953, -0.010052873753011227, -0.08070484548807144, -0.029340574517846107, -0.030921118333935738, -0.011752859689295292, 0.03828243166208267 ]
Dhruva/Interstellar
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
2021-11-18T12:08:00Z
--- language: - ru - en pipeline_tag: text2text-generation tags: - PyTorch - Transformers - gpt2 - squad - lm-head - casual-lm thumbnail: "https://github.com/RussianNLP/RusEnQA" --- ## RusEnQA QA for Russian and English based on the [rugpt3xl](https://huggingface.co/sberbank-ai/rugpt3xl) model ### Fine-tuning format: ``` "<s>paragraph: "+eng_context+"\nlang: rus\nquestion: "+rus_question+' answer: '+ rus_answer+"</s>" ``` ### About ruGPT-3 XL model Model was trained with 512 sequence length using [Deepspeed](https://github.com/microsoft/DeepSpeed) and [Megatron](https://github.com/NVIDIA/Megatron-LM) code by [SberDevices](https://sberdevices.ru/) team, on 80B tokens dataset for 4 epochs. After that model was finetuned 1 epoch with sequence length 2048. *Note! Model has sparse attention blocks.* Total training time was around 10 days on 256 GPUs. Final perplexity on test set is 12.05. Model parameters: 1.3B.
[ -0.008354989811778069, -0.014406030997633934, -0.007458185777068138, 0.03179055452346802, 0.05422481521964073, 0.018959645181894302, -0.004740486852824688, -0.003984910435974598, -0.04077582061290741, 0.03488313779234886, 0.046141717582941055, -0.013710621744394302, -0.014469612389802933, 0.05324535816907883, -0.02203010767698288, -0.03804562985897064, -0.0225672647356987, -0.006011553108692169, -0.030925633385777473, -0.01695757359266281, -0.010128367692232132, 0.00009052853420143947, 0.0027506991755217314, 0.0178056787699461, 0.008650228381156921, 0.031634874641895294, -0.03059995174407959, 0.011704778298735619, 0.027246585115790367, -0.07693170756101608, 0.034063465893268585, -0.03525232896208763, -0.027488306164741516, -0.02198692411184311, -0.014031128957867622, -0.0318109430372715, 0.016222190111875534, -0.0040974863804876804, 0.02137211710214615, 0.049217626452445984, -0.016667094081640244, -0.004790278617292643, 0.029057983309030533, -0.04004949703812599, 0.019103387370705605, -0.009474110789597034, -0.03658853843808174, -0.02178269624710083, 0.025006704032421112, -0.011899109929800034, -0.03194957226514816, -0.06745535135269165, -0.026443514972925186, -0.008134974166750908, -0.017522819340229034, -0.012129143811762333, -0.05810045450925827, -0.017144985496997833, 0.06831816583871841, -0.045109786093235016, -0.04114987701177597, 0.006870542652904987, -0.043463826179504395, 0.027208562940359116, 0.039924029260873795, -0.02280014008283615, 0.0022902691271156073, -0.058641932904720306, 0.0460565909743309, -0.015824994072318077, 0.05901249125599861, -0.02488514967262745, 0.03546274080872536, -0.08818146586418152, -0.007932848297059536, -0.007291884161531925, 0.029384247958660126, 0.05597727373242378, -0.024988237768411636, 0.04456844925880432, 0.021106496453285217, -0.00591055303812027, 0.035420697182416916, -0.0292066540569067, -0.021933967247605324, 0.03704952821135521, -0.04325459524989128, -0.018041741102933884, 0.012934491969645023, 0.05286003649234772, -0.02068937011063099, -0.040528036653995514, -0.03786717727780342, -0.024213021621108055, -0.01801786571741104, 0.03405080363154411, 0.0410332977771759, -0.014668667688965797, 0.01470100972801447, 0.018142910674214363, 0.04101306572556496, 0.04206015542149544, -0.02565733715891838, 0.04168739169836044, -0.003195070195943117, -0.010153456591069698, -0.0037754992954432964, -0.05406472459435463, -0.057210251688957214, 0.03987659513950348, 0.030169954523444176, -0.04149987921118736, -0.0409754179418087, 0.022053945809602737, 0.008265342563390732, -0.03712844476103783, 0.06720659881830215, -0.03130531311035156, -0.05282626673579216, -0.05994122102856636, 0.030850587412714958, 0.003975936211645603, 0.02060726098716259, 0.010505598038434982, -0.0423223152756691, 0.017686380073428154, -0.0367000438272953, -0.029022010043263435, -0.00873605627566576, -0.0016911859856918454, -0.021915102377533913, 0.040978074073791504, 0.017408745363354683, -0.05251026898622513, 0.005740421824157238, 0.01622488722205162, -0.05990702658891678, 0.043536532670259476, -0.005828182213008404, 0.10856654495000839, -0.07249262928962708, -0.0773438811302185, 0.021507147699594498, 0.03275853022933006, -0.02225296013057232, -0.0054538315162062645, 0.00652330694720149, -0.045849572867155075, -0.018116096034646034, -0.011153096333146095, 0.043351516127586365, -0.044947993010282516, -0.007001624442636967, 0.04657424986362457, -0.008912511169910431, 0.012988978996872902, -0.04005134478211403, -0.01117025874555111, 0.008932420052587986, -0.015744421631097794, -0.03342890366911888, 0.05735623091459274, -0.008613373152911663, -0.008034524507820606, -0.05647611990571022, -0.038665857166051865, 0.01570240780711174, 0.08540353924036026, 0.02606109157204628, -0.021629951894283295, -0.01960880123078823, 0.02852609008550644, 0.035581521689891815, 0.04206084460020065, -0.03375755250453949, 0.03861368075013161, 0.04424119368195534, 0.015501116402447224, -0.009992535226047039, 0.039059314876794815, 0.02648741751909256, -0.045210324227809906, -0.02940671518445015, 0.017442526295781136, -0.0008856671629473567, -0.04540698975324631, 0.011569018475711346, 0.01728706620633602, -0.0037166057154536247, -0.03963814303278923, -0.028814956545829773, 0.0679403617978096, -0.02920612320303917, -0.004865006543695927, 0.03369836509227753, -0.020435335114598274, -0.015744714066386223, 0.05367276817560196, -0.029812298715114594, -0.002736111870035529, -0.04200226813554764, -0.03813588246703148, 0.022867415100336075, 0.011772905476391315, 0.03563262149691582, 0.05589716508984566, -0.04384956881403923, 0.08371605724096298, -0.024544700980186462, 0.009629188105463982, -0.0506487637758255, -0.04413362219929695, 0.011599568650126457, 0.04090667888522148, 0.05436425283551216, 0.03803583234548569, 0.007101624738425016, -0.06449159979820251, 0.041784875094890594, 0.07362332195043564, 0.0563340000808239, 0.01578199863433838, -0.036762237548828125, 0.009762018918991089, 0.013729898259043694, 0.050312530249357224, -0.0525224544107914, -0.032806821167469025, 0.03748747706413269, 0.03287975490093231, -0.010397522710263729, 0.018225502222776413, -0.016623787581920624, 0.027350664138793945, -0.024056091904640198, -0.05712534114718437, 0.029628418385982513, 0.009980186820030212, 0.02844354510307312, 0.021893994882702827, -0.015713825821876526, 0.006172249559313059, 0.02252224273979664, -0.02194257639348507, 0.0025775074027478695, -0.0389164499938488, 0.012835979461669922, 0.018689051270484924, 0.024702163413167, -0.04160706326365471, 0.015118678100407124, 0.012281447649002075, -0.001967824762687087, 0.041313014924526215, -0.013887844979763031, 0.012684631161391735, 0.05540160462260246, 0.03149867057800293, -0.01097218319773674, 0.005957348272204399, -0.005047949496656656, 0.03528112545609474, 0.0856541246175766, -0.00747115770354867, 0.0599907711148262, 0.013984075747430325, 0.04161560535430908, 0.1053164154291153, 0.023309310898184776, 0.00047279021237045527, 0.061172835528850555, 0.07477719336748123, 0.028578419238328934, -0.00011266109504504129, 0.04008498042821884, -0.05417986586689949, 0.013453050516545773, -0.026845306158065796, 0.0008146674954332411, -0.021865805611014366, -0.017925294116139412, 0.057404715567827225, 0.024496106430888176, 0.009382248856127262, 0.0011291027767583728, -0.017239535227417946, -0.013825614005327225, 0.024148454889655113, -0.005133404396474361, 0.0014059582026675344, -0.02809164859354496, -0.028310582041740417, 0.0028784845490008593, -0.06291920691728592, -0.05885625630617142, 0.0003485763445496559, -0.01601969078183174, 0.006036591716110706, -0.09427053481340408, -0.0503263957798481, -0.07604780793190002, -0.01606704108417034, 0.04870209842920303, 0.027164775878190994, 0.005286251660436392, -0.03343215584754944, 0.011081088334321976, -0.027294134721159935, -0.032360002398490906, -0.05547008663415909, -0.0382612980902195, -0.02381010167300701, -0.05811317265033722, 0.04733151197433472, 0.0252393689006567, 0.040011677891016006, 0.008088072761893272, -0.00029504235135391355, -0.031377360224723816, -0.006323214620351791, 0.028954196721315384, 0.04541334882378578, -0.024109575897455215, -0.051155734807252884, 0.017293935641646385, 0.006726523395627737, 0.028432410210371017, -0.027990126982331276, -0.030224014073610306, 0.08626105636358261, 0.07185022532939911, 0.03211303427815437, -0.001331582898274064, 0.0022123896051198244, -0.07301926612854004, -0.03135932236909866, -0.04434533044695854, -0.05424191802740097, -0.02090008184313774, -0.025387786328792572, -0.039527032524347305, -0.008879553526639938, -0.02720228210091591, 0.014895929954946041, -0.0009662739466875792, 0.022026056423783302, 0.028852427378296852, 0.053324297070503235, 0.0316726453602314, 0.004376887809485197, -0.05910929664969444, -0.025524336844682693, 0.07297828793525696, 0.010263430885970592, 0.010022633709013462, -0.06448350846767426, -0.026967937126755714, 0.055006369948387146, 0.037650492042303085, -0.0006093494594097137, -0.020517289638519287, 0.07703357189893723, 0.0254751518368721, 0.0032639026176184416, 0.01928565837442875, -0.036233268678188324, -0.016157081350684166, -0.0037887298967689276, 0.03287874162197113, -0.042603325098752975, -0.05364137142896652, -0.028384417295455933, -0.007648381404578686, 0.06062135845422745, -0.05031454190611839, -0.05211079493165016, -0.023789608851075172, 0.02411620318889618, 0.01766197569668293, 0.004850492347031832, -0.05349126085639, 0.004177876282483339, -0.03324737399816513, -0.021024398505687714, 0.023966727778315544, 0.010499461553990841, 0.025757689028978348, 0.05538095161318779, 0.04510335624217987, -0.009336884133517742, 0.058728042989969254, 0.01798258349299431, 0.0664648711681366, 0.020043378695845604, -0.04944900795817375, 0.014079111628234386, -0.026435276493430138, 0.03270523250102997, 0.024359462782740593, -0.02695326693356037, -0.04925055429339409, -0.09277547150850296, 0.014361190609633923, 0.009049385786056519, -0.02698412351310253, -0.00007924003148218617, 0.028657739982008934, 0.007042396813631058, -0.011539129540324211, -0.025973152369260788, 0.02683193050324917, 0.05062273517251015, -0.06795275211334229, 0.048587024211883545, 0.03184553235769272, 0.034330859780311584, -0.027117252349853516, 0.010728410445153713, -0.028104344382882118, -0.017162693664431572, 0.0019468824611976743, 0.0579027384519577, 0.04039289802312851, 0.06724118441343307, 0.07943552732467651, 0.006084676831960678, -0.02779756300151348, 0.04292800650000572, 0.04888507351279259, -0.012824139557778835, -0.03546811267733574, 0.018011808395385742, 0.0019239230314269662, -0.0337429977953434, -0.027707118541002274, -0.0215376615524292, 0.03180134296417236, 0.0539841428399086, 0.0158995408564806, 0.007477107923477888, -0.008193757385015488, -0.040885306894779205, -0.05971510708332062, -0.04738724231719971, -0.004196102265268564, 0.0039012390188872814, -0.01544812973588705, 0.023332715034484863, 0.02350994572043419, 0.009218171238899231, 0.041825685650110245, 0.05586470663547516, 0.001669714110903442, -0.05647275969386101, 0.04533135145902634, 0.03264593333005905, -0.05214325338602066, -0.07990343123674393, -0.028828201815485954, 0.027005691081285477, 0.039631299674510956, -0.0043876213021576405, -0.06155829504132271, 0.005380738526582718, 0.05221574380993843, -0.05160337686538696, 0.04395424574613571, -0.01091931201517582, 0.041903264820575714, 0.07124865055084229, -0.008044407702982426, 0.015118912793695927, -0.01353809330612421, 0.0362362414598465, 0.005217085126787424, 0.061930254101753235, -0.014195612631738186, -0.02436014637351036, -0.05735449120402336, 0.03731365501880646, 0.048994969576597214, 0.04215596988797188, 0.04374496266245842, -0.009685528464615345, -0.058456141501665115, -0.0015960015589371324, 0.05338244140148163, -0.06778489053249359, 0.014380224980413914, 0.020176872611045837, 0.03355700895190239, -0.05107338726520538, -0.03610384836792946, -0.021697448566555977, 0.0028793136589229107, 0.04751941189169884, -0.01681303232908249, -0.026732245460152626, -0.06413421034812927, 0.007802528794854879, -0.03934240713715553, -0.043592359870672226, -0.07948219776153564, 0.044785480946302414, -0.011823827400803566, -0.02590460143983364, 0.04031253233551979, 0.052758000791072845, 0.027528567239642143, 0.04094243794679642, 0.0068615819327533245, 0.01946869306266308, -0.044697344303131104, 0.028135834261775017, -0.037334710359573364, -0.01170122530311346, 0.017470208927989006, -0.03613854944705963, -0.005613270681351423, -0.02626144140958786, -0.03815903887152672, -0.050031471997499466, -0.030310682952404022, 0.008020477369427681, -0.006406663451343775, 0.01648799143731594, 0.004961958155035973, 0.03591008111834526, -0.021033767610788345, -0.007846718654036522, -0.016165029257535934, -0.024554338306188583, -0.051396675407886505, -0.05363030359148979, 0.013418479822576046, 0.016452379524707794, 0.03445438668131828, 0.011213377118110657, -0.011675724759697914, 0.017118755728006363, 0.014056536369025707, -0.024702683091163635, 0.03277036175131798, 0.0006830136408098042, -0.0027377025689929724, -0.0336613804101944, 0.023153547197580338, 0.00941140204668045, 0.02804141864180565, -0.020437978208065033, 0.03999686613678932, 0.013630861416459084, -0.004898961633443832, -0.009861533530056477, 0.007757493294775486, 0.02017258293926716, -0.09498371928930283, -0.0490875206887722, -0.023624207824468613, -0.02250557392835617, 0.04249022156000137, -0.012686221860349178, -0.04524112492799759, 0.0019123437814414501, 0.02976345829665661, 0.04003826528787613, 0.034796327352523804, -0.02793852798640728, 0.031341567635536194, -0.02266266942024231, 0.026304401457309723, -0.058541059494018555, 0.04966623708605766, -0.029860828071832657, 0.006554292980581522, -0.02563397027552128, 0.006923882756382227, -0.045003123581409454, 0.028821252286434174, -0.017737919464707375, 0.0016954665770754218, -0.016254179179668427, 0.016950760036706924, -0.028471320867538452, 0.036842625588178635, -0.026384977623820305, 0.041952893137931824, -0.046040307730436325, 0.04456793889403343, -0.053327202796936035, -0.0004500862560234964, -0.027737366035580635, 0.009679615497589111, -0.0367048978805542, -0.022310031577944756, -0.010531814768910408, -0.034756701439619064, 0.004523735959082842, 0.03952774032950401, 0.03971370682120323, 0.009396899491548538, -0.01898503117263317, -0.009823734872043133, 0.023961376398801804, -0.05630382150411606, -0.039851196110248566, -0.0386335588991642, -0.012722911313176155, -0.010770773515105247, 0.0476236566901207, 0.04233713075518608, -0.04435567930340767, -0.059394471347332, 0.04212044179439545, 0.0036745634861290455, 0.002147103426977992, 0.00010456050222273916, 0.01699712499976158, 0.03944827988743782, 0.043880339711904526, -0.03964151442050934, -0.023796236142516136, -0.0069410670548677444, -0.028678836300969124, 0.029659925028681755, -0.0074739838019013405, 0.026891574263572693, -0.008012347854673862, -0.05478273704648018, -0.02156618982553482, 0.06992460787296295, 0.04385455325245857, 0.014953210949897766, 0.01277498621493578, -0.05141841620206833, 0.044546421617269516, -0.0006797832320444286, -0.040349364280700684, -0.00031516345916315913, -0.000678899756167084, -0.0221333596855402, 0.08022844046354294, -0.01619422435760498, 0.020322123542428017, 0.05532197654247284, 0.025578942149877548, -0.027023280039429665, 0.04832044616341591, -0.015851004049181938, 0.013749913312494755, 0.039769820868968964, -0.05498200282454491, -0.006954445969313383, -0.039422791451215744, 0.08169916272163391, -0.059787727892398834, 0.030901649966835976, 0.036083560436964035, 0.014666183851659298, -0.0007333718822337687, -0.01767786778509617, -0.04308411851525307, 0.007734288927167654, -0.03364298492670059, 0.06079086661338806, -0.01260452251881361, -0.03368194401264191, 0.06379061192274094, 0.011134828440845013, -0.053350597620010376, 0.03928576782345772, 0.05733435973525047, 0.026155877858400345, 0.05177609249949455, 0.04036960378289223, -0.06373906880617142, 0.026387624442577362, -0.026878222823143005, 0.03091053105890751, -0.05437691882252693, -0.020439574494957924, 0.025449149310588837, -0.024291323497891426, -0.032178331166505814, 0.02168111316859722, -0.03051650896668434, 0.011534862220287323, 0.031649522483348846, -0.06374719738960266, -0.07456685602664948, 0.02083355188369751, 0.024554044008255005, -0.028206394985318184, 0.0027451852802187204, -0.04373298957943916, 0.022401146590709686, 0.01557393092662096, -0.002207268262282014, -0.014411007054150105, 0.009636864997446537, 0.015591487288475037, -0.06508675217628479, -0.041912056505680084, 0.034576043486595154, 0.004763273987919092, -0.037550169974565506, 0.03300463408231735, -0.01817915588617325, 0.022875932976603508, 0.030779164284467697, 0.001574933878146112, 0.036157190799713135, -0.04588830843567848, -0.00866145920008421, 0.02837332896888256, 0.017637627199292183, 0.03987395763397217, -0.02008366771042347, 0.027681441977620125, 0.031046757474541664, 0.032108206301927567, -0.009508330374956131, -0.059362348169088364, -0.012215121649205685, 0.02035897970199585, -0.033936165273189545, 0.002354283817112446, -0.01735505647957325, -0.07561758160591125, -0.04621371254324913, -0.015270353294909, -0.016670741140842438, 0.039176907390356064, -0.031143857166171074, 0.015293269418179989, 0.03139906004071236, -0.009832547977566719, -0.0320570282638073, -0.0911494791507721, -0.02739928662776947, -0.030637962743639946, 0.03936459869146347, 0.027035120874643326, -0.04817263036966324, 0.0054146163165569305, -0.058526210486888885, -0.0526072196662426, 0.05190160125494003, 0.01769738644361496, -0.04638230800628662, 0.06938660889863968, 0.0403490848839283, -0.04071219637989998, 0.015210520476102829, 0.03277353569865227, -0.05240426957607269, 0.04442447051405907, 0.02009890414774418, 0.011906895786523819, 0.03749430179595947, 0.02905849553644657, -0.01249197218567133, -0.03073408454656601, -0.047542862594127655, -0.023388037458062172, -0.03130260854959488, -0.02162526361644268, 0.07783675938844681 ]
DimaOrekhov/cubert-method-name
[ "pytorch", "encoder-decoder", "text2text-generation", "transformers", "autotrain_compatible" ]
text2text-generation
{ "architectures": [ "EncoderDecoderModel" ], "model_type": "encoder-decoder", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
10
null
--- tags: - conversational --- # SHAY0 Dialo GPT Model
[ -0.02930464968085289, 0.01698305830359459, 0.021622342988848686, 0.0024436749517917633, 0.019961871206760406, 0.012568098492920399, 0.00047261195140890777, 0.044033072888851166, -0.02295970916748047, 0.029303383082151413, 0.0348561629652977, -0.027510661631822586, 0.0126101179048419, 0.03561918064951897, -0.05502234399318695, -0.030854038894176483, -0.029981136322021484, -0.015654467046260834, -0.032761603593826294, -0.020153062418103218, 0.027696728706359863, -0.0008232433465309441, -0.0171951986849308, 0.014965102076530457, -0.006845332682132721, 0.04237014800310135, -0.002370856935158372, 0.006690335460007191, 0.03075132519006729, -0.047366295009851456, 0.005423697177320719, -0.036783017218112946, -0.016793038696050644, -0.03405153006315231, -0.02745693549513817, -0.03851478546857834, 0.016465825960040092, -0.019575929269194603, -0.0008436567732132971, 0.03278177231550217, -0.031407807022333145, 0.005710479337722063, 0.014826525934040546, -0.043100520968437195, 0.06486604362726212, -0.008560904301702976, -0.040146902203559875, -0.008836447261273861, 0.022399412468075752, -0.029734332114458084, -0.04571250453591347, -0.06849285960197449, -0.06306111812591553, -0.03400375321507454, 0.012366976588964462, -0.07675231993198395, -0.06653502583503723, 0.0004434343718457967, 0.09592046588659286, -0.026881244033575058, -0.005385150667279959, -0.001104455441236496, -0.06980816274881363, 0.008466160856187344, 0.023343432694673538, -0.06915361434221268, 0.01873968355357647, -0.03738584369421005, 0.01658165268599987, -0.02382412925362587, 0.03968724608421326, -0.05426633358001709, 0.018950780853629112, -0.09615166485309601, -0.006575339939445257, -0.004824649542570114, 0.03043247014284134, 0.05938904359936714, -0.04395059868693352, 0.061198897659778595, 0.03485285863280296, 0.012136180885136127, 0.05576705560088158, 0.01114839967340231, -0.033900897949934006, 0.041817404329776764, -0.04954568296670914, -0.008324116468429565, 0.010496675036847591, 0.020180553197860718, -0.023310387507081032, -0.0428353026509285, -0.01567167602479458, -0.017863161861896515, -0.0006136833690106869, 0.04740947484970093, 0.02411767654120922, -0.02860170789062977, 0.031156528741121292, 0.04663649946451187, 0.015372524969279766, 0.04486384987831116, -0.022843094542622566, 0.02529175579547882, -0.00563144451007247, 0.031965471804142, 0.027731111273169518, -0.011096949689090252, -0.03341791406273842, 0.015353228896856308, 0.00821617990732193, -0.04572300240397453, -0.032449278980493546, 0.04365870729088783, -0.00795245822519064, -0.002978181466460228, 0.04865054786205292, -0.035462748259305954, -0.02058100700378418, -0.058715738356113434, 0.0601874403655529, -0.014099616557359695, -0.012536774389445782, -0.0020200794097036123, -0.044390127062797546, 0.004861056804656982, -0.04369555786252022, -0.01782846637070179, -0.018100986257195473, 0.003516334807500243, 0.022327037528157234, 0.024803567677736282, -0.0266240406781435, -0.05271085351705551, 0.013526330702006817, 0.04108434543013573, -0.07615427672863007, 0.00398925319314003, 0.03655422106385231, 0.07818272709846497, -0.074407659471035, -0.03554702550172806, -0.008223200216889381, 0.01997547596693039, -0.03141995891928673, -0.021842943504452705, -0.00008475704089505598, -0.012758124619722366, -0.03583501651883125, -0.005771988537162542, 0.02986491657793522, -0.04791691526770592, -0.005164009518921375, 0.04525236040353775, 0.004482881631702185, 0.015661561861634254, -0.02783762849867344, 0.0022234602365642786, 0.0008363034576177597, -0.03279674053192139, -0.059591300785541534, 0.024996183812618256, -0.022768279537558556, -0.045121949166059494, -0.05166942626237869, -0.032042887061834335, 0.007503329310566187, 0.05465887486934662, 0.0047325436025857925, -0.01783950999379158, -0.013790138065814972, 0.03396448865532875, 0.06992010772228241, 0.0566071979701519, -0.01849663071334362, 0.012910024262964725, 0.047823548316955566, 0.011571617797017097, -0.03268371522426605, 0.09463892132043839, 0.028434738516807556, -0.035587381571531296, -0.052717097103595734, -0.01455580722540617, 0.034942228347063065, -0.029283432289958, 0.013813594356179237, 0.0374419167637825, -0.03595896065235138, -0.034397419542074203, 0.013210891745984554, 0.030023587867617607, -0.014827757142484188, 0.006634410936385393, -0.030115768313407898, -0.024881426244974136, -0.036660101264715195, 0.023744799196720123, -0.03564829006791115, -0.013632248155772686, -0.03296344727277756, -0.0024207618553191423, 0.021078813821077347, 0.015561076812446117, 0.006636369042098522, 0.04536152631044388, -0.022587791085243225, 0.06627760082483292, -0.024083320051431656, 0.013439073227345943, -0.03667403757572174, -0.022519264370203018, -0.03880605474114418, 0.04493603855371475, 0.02531425654888153, 0.0428488664329052, -0.04515489563345909, -0.0589987114071846, 0.034426283091306686, 0.059167858213186264, 0.0349290706217289, 0.02553543820977211, -0.02219442091882229, 0.004454826470464468, 0.04246698319911957, 0.032238055020570755, -0.04105494171380997, 0.003680831752717495, 0.017047768458724022, 0.026363996788859367, -0.0258479043841362, -0.018905047327280045, -0.03829587623476982, 0.016744401305913925, -0.04133114218711853, -0.04404190927743912, 0.04150385037064552, 0.03208722546696663, -0.01517320517450571, 0.03788004443049431, 0.0004586383583955467, -0.01269648876041174, 0.026372279971837997, 0.0016679069958627224, -0.004144742619246244, -0.09308416396379471, 0.011711259372532368, 0.03504719212651253, 0.10664558410644531, -0.05007457360625267, 0.014889187179505825, 0.022923672571778297, 0.012642638757824898, 0.018906816840171814, -0.031707290560007095, 0.03749552741646767, 0.04851428419351578, 0.04056793451309204, -0.03556284308433533, 0.03097330592572689, -0.005557988304644823, 0.018343141302466393, 0.054347142577171326, -0.005897683557122946, 0.07885744422674179, -0.02523118630051613, 0.029076460748910904, 0.06205665320158005, 0.0441882498562336, -0.0277372095733881, 0.026245571672916412, 0.06849326938390732, 0.004975109361112118, 0.030974268913269043, 0.03899194300174713, 0.005514939781278372, -0.012030643410980701, -0.03996150568127632, -0.0025754685048013926, -0.009448098950088024, -0.03501328453421593, 0.06968546658754349, -0.0032588778994977474, -0.0022228662855923176, -0.003289563348516822, -0.01797160692512989, -0.0020610003266483545, 0.05490699037909508, -0.0054926518350839615, -0.022693762555718422, 0.00915528368204832, -0.013549215160310268, 0.025684840977191925, -0.050006140023469925, -0.04945414513349533, -0.02132914587855339, -0.053563062101602554, -0.009408117271959782, -0.07826197147369385, -0.02838871069252491, -0.0530867762863636, -0.02589360810816288, 0.053947191685438156, 0.01519269309937954, 0.033954426646232605, 0.00024263493833132088, 0.0008747290703468025, -0.01078508235514164, -0.06139954924583435, -0.052622899413108826, -0.036761634051799774, -0.0056918468326330185, -0.04671914130449295, 0.036382898688316345, 0.03199414536356926, 0.044174548238515854, 0.011233863420784473, -0.02106493152678013, -0.027653146535158157, -0.025610659271478653, 0.051363322883844376, 0.014564746990799904, -0.04010600596666336, -0.037707507610321045, 0.007109405472874641, 0.011838892474770546, -0.009907805360853672, -0.022482309490442276, -0.06027534604072571, 0.07551493495702744, 0.0355331227183342, 0.005649100057780743, 0.03145195171236992, -0.004651895724236965, -0.037008341401815414, -0.017500055953860283, -0.054666124284267426, -0.03330447897315025, 0.002621288411319256, -0.019024254754185677, -0.035562705248594284, -0.0331524983048439, -0.04136352986097336, -0.001324779586866498, 0.007517128251492977, -0.0021104023326188326, 0.043769340962171555, 0.011569316498935223, 0.01299595832824707, 0.028457853943109512, -0.02704661339521408, -0.015575247816741467, 0.0523824542760849, -0.02201618254184723, -0.014234197326004505, -0.07446783035993576, -0.041858550161123276, 0.03667033836245537, -0.003709222888574004, -0.005912391468882561, -0.011728333309292793, 0.03732198104262352, 0.03111748769879341, 0.0010345489718019962, 0.03922433406114578, -0.07259488850831985, -0.011990204453468323, -0.03922075778245926, -0.0227759201079607, -0.03990435600280762, -0.020706117153167725, -0.008509243838489056, -0.0010861202608793974, 0.03429447114467621, -0.0831734836101532, -0.036163557320833206, -0.02003304474055767, 0.017291676253080368, 0.03513120487332344, -0.009404418058693409, -0.04734836146235466, -0.006936491001397371, -0.044217560440301895, -0.0231434665620327, 0.002715909853577614, -0.014033573679625988, 0.019506258890032768, 0.01195446401834488, 0.014563226141035557, -0.030478045344352722, 0.051878493279218674, 0.018934648483991623, 0.06704475730657578, 0.05770937353372574, -0.020230388268828392, 0.027637796476483345, -0.027911793440580368, 0.019251694902777672, -0.01513007190078497, -0.028425563126802444, -0.03512141853570938, -0.12652090191841125, -0.043830398470163345, 0.02543836459517479, -0.02379750646650791, 0.005064255092293024, 0.04476165771484375, -0.0440327487885952, -0.008647343143820763, -0.00028849398950114846, 0.055108197033405304, 0.0454905666410923, -0.028192641213536263, 0.05544763058423996, 0.0161721371114254, 0.02058304101228714, -0.046099964529275894, 0.005255606956779957, -0.05061523616313934, -0.0005339185008779168, -0.011090810410678387, 0.0530969463288784, 0.014138559810817242, 0.050016794353723526, 0.08353180438280106, 0.040696267038583755, -0.04060729220509529, 0.04001966863870621, 0.06229468062520027, -0.034365396946668625, -0.04047134146094322, -0.008986052125692368, -0.008575334213674068, -0.00787613820284605, -0.01247929222881794, -0.04166777431964874, 0.027612626552581787, 0.04489545524120331, -0.008029493503272533, 0.00872769020497799, 0.008425955660641193, -0.040056921541690826, -0.025439174845814705, -0.06527534127235413, -0.002988937310874462, 0.002585273701697588, -0.022896237671375275, 0.041657183319330215, 0.06009400263428688, 0.017327001318335533, 0.05285966396331787, 0.025169076398015022, -0.0216438677161932, -0.05684169381856918, 0.03032752498984337, 0.03666822612285614, -0.051468897610902786, -0.06338346749544144, -0.034064847975969315, 0.03722560778260231, 0.03986336290836334, -0.021918579936027527, -0.08005787432193756, 0.025399822741746902, 0.049446698278188705, -0.039875440299510956, 0.05468050763010979, -0.007667778991162777, 0.045724399387836456, 0.0382702462375164, 0.0023247417993843555, 0.03830798715353012, -0.06419814378023148, 0.02771192044019699, -0.020992761477828026, 0.02371169999241829, -0.04535713419318199, -0.04781604930758476, -0.0563751682639122, 0.04870325326919556, 0.015616492368280888, 0.014255418442189693, 0.024804258719086647, -0.030629651620984077, -0.04414629191160202, 0.005289762280881405, 0.037160031497478485, -0.02842669002711773, 0.0018488513305783272, 0.02996717393398285, 0.048257976770401, -0.05631149187684059, 0.009276867844164371, 0.017421534284949303, 0.02436482347548008, 0.026473702862858772, -0.015031712129712105, -0.027272766456007957, -0.012192705646157265, 0.01068623922765255, -0.03855385631322861, -0.04392309486865997, -0.10087365657091141, 0.033490292727947235, -0.024298733100295067, -0.03249366953969002, 0.06979633122682571, 0.06974849104881287, 0.06581199914216995, 0.07073456794023514, -0.00014857595670036972, 0.058804962784051895, -0.04215926304459572, 0.011803952977061272, -0.0405438169836998, -0.047112371772527695, 0.002063410123810172, -0.0839603990316391, -0.02897525206208229, -0.04653816670179367, -0.045515984296798706, -0.04101709648966789, 0.00016508578846696764, 0.018081391230225563, -0.009666448459029198, -0.005314610432833433, 0.010884393937885761, 0.025496775284409523, -0.017361551523208618, -0.02353542670607567, -0.00444555701687932, -0.006237393710762262, -0.0622534416615963, -0.05800214409828186, 0.009949053637683392, -0.030580630525946617, 0.010179392993450165, -0.007559223100543022, 0.014060241170227528, 0.03725247085094452, -0.006852258462458849, -0.016719480976462364, 0.013626065105199814, 0.025637110695242882, -0.03401052579283714, -0.029822543263435364, 0.011442861519753933, 0.026534076780080795, 0.017487745732069016, -0.021245712414383888, 0.022508539259433746, 0.018051933497190475, -0.05467669665813446, -0.013637433759868145, 0.024494508281350136, 0.01157822273671627, -0.08492675423622131, -0.011761044152081013, -0.04581107944250107, -0.034307535737752914, 0.00854604784399271, -0.03450441360473633, -0.013230395503342152, -0.007727493532001972, 0.046493083238601685, 0.03558753803372383, 0.012918428517878056, -0.022506268694996834, 0.010780416429042816, -0.017185531556606293, 0.010210523381829262, -0.06870158016681671, 0.029387133195996284, -0.03168107196688652, 0.021781474351882935, -0.003953798674046993, -0.0014379301574081182, -0.03554387763142586, 0.057046808302402496, -0.0004946764674969018, -0.0009065590566024184, -0.0029880714137107134, -0.02412642166018486, 0.0047668758779764175, 0.04769109934568405, 0.02320987917482853, -0.0019862877670675516, -0.032582152634859085, 0.0562727116048336, -0.05639825388789177, 0.009549763984978199, -0.010362109169363976, -0.02897268533706665, -0.02974473498761654, -0.00013386784121394157, 0.005757601466029882, -0.06365502625703812, 0.030909162014722824, 0.03360120579600334, 0.026567423716187477, 0.030794214457273483, -0.0005834228359162807, 0.015672003850340843, 0.02044082060456276, -0.05018008127808571, -0.038578491657972336, 0.014438198879361153, -0.009593519382178783, 0.018467087298631668, 0.057733453810214996, 0.022457899525761604, -0.05365616828203201, -0.02513788640499115, 0.028905387967824936, 0.025350110605359077, 0.012477627955377102, 0.0017839979846030474, 0.04329097270965576, 0.0653255358338356, 0.05942607671022415, -0.008149389177560806, 0.006837084423750639, 0.01739617809653282, -0.009673435240983963, -0.020436447113752365, 0.010153770446777344, -0.00469540199264884, -0.004735954571515322, -0.028790822252631187, -0.03301834687590599, 0.06919069588184357, -0.00919671542942524, -0.008486325852572918, -0.01958616077899933, -0.04615599289536476, 0.059324949979782104, -0.003500026650726795, -0.019142040982842445, -0.023668020963668823, 0.041745781898498535, -0.027597147971391678, 0.030339587479829788, -0.027995534241199493, 0.005618826486170292, 0.05525067448616028, 0.018155120313167572, 0.008206467144191265, 0.0014684132765978575, -0.01439633034169674, -0.007470312062650919, 0.011702056042850018, -0.045656755566596985, -0.000737465568818152, -0.025456909090280533, 0.06586503237485886, -0.04201159253716469, 0.06474519520998001, 0.042252372950315475, 0.03375697135925293, 0.02838633768260479, -0.060758233070373535, -0.039800871163606644, -0.026102358475327492, -0.03452535346150398, 0.07101241499185562, -0.01273493841290474, -0.05157022550702095, 0.053983453661203384, 0.03578636795282364, -0.0842818096280098, 0.03267195448279381, 0.04063417762517929, 0.047851696610450745, 0.03418929502367973, 0.05143500864505768, -0.045466672629117966, 0.011909324675798416, -0.03046790137887001, 0.009365585632622242, -0.044436316937208176, -0.006398081313818693, -0.029101712629199028, -0.04677069932222366, -0.009347726590931416, 0.03200751543045044, -0.02028585784137249, -0.0016595827182754874, 0.016339343041181564, -0.030453555285930634, -0.07564166188240051, 0.005431663244962692, 0.03961075842380524, -0.011495737358927727, -0.0048907785676419735, -0.03345532715320587, 0.012459581717848778, 0.03598228469491005, 0.002691246336326003, -0.04484579339623451, 0.020995356142520905, -0.01716318354010582, -0.08234811574220657, -0.04267512261867523, 0.06621908396482468, 0.023077504709362984, -0.00959566980600357, -0.0014894811902195215, 0.0236866045743227, 0.029405493289232254, 0.03472775220870972, -0.014244419522583485, 0.005656613502651453, -0.06027121841907501, -0.016177449375391006, 0.027757957577705383, -0.004207609687000513, -0.013087283819913864, -0.01449135597795248, 0.030026091262698174, 0.07349611818790436, 0.03648247942328453, 0.0000364211700798478, -0.06193871051073074, -0.03212524205446243, -0.010301412083208561, -0.04160851612687111, 0.037918779999017715, 0.01737595908343792, -0.06947914510965347, -0.026001954451203346, -0.03232693299651146, -0.004223809577524662, 0.034730903804302216, -0.028143443167209625, 0.013090761378407478, 0.03399346396327019, -0.0026485747657716274, -0.04193674400448799, -0.10125139355659485, -0.05339867249131203, -0.021009672433137894, 0.023055724799633026, 0.03320780768990517, -0.06320707499980927, 0.0330592542886734, -0.029550930485129356, -0.010000696405768394, 0.055714163929224014, -0.014280080795288086, -0.020853029564023018, 0.06404467672109604, 0.07685337960720062, -0.039585795253515244, 0.05072885751724243, 0.026965491473674774, -0.03628653660416603, 0.03400709107518196, 0.011256803758442402, 0.026653975248336792, 0.019245022907853127, 0.018386168405413628, -0.02164619415998459, -0.010945632122457027, -0.012057268992066383, -0.041105397045612335, 0.00308118830434978, -0.003696029307320714, 0.05748675763607025 ]
Dimedrolza/DialoGPT-small-cyberpunk
[ "pytorch", "gpt2", "text-generation", "transformers", "conversational" ]
conversational
{ "architectures": [ "GPT2LMHeadModel" ], "model_type": "gpt2", "task_specific_params": { "conversational": { "max_length": 1000 }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
9
null
--- tags: - conversational --- # Harry Potter DialGPT Model
[ -0.031019240617752075, 0.008741630241274834, 0.014019674621522427, 0.0333135724067688, 0.00042697475873865187, 0.018442923203110695, 0.0011913656489923596, 0.02060506120324135, -0.016924817115068436, 0.013855637982487679, 0.029368435963988304, -0.0315086804330349, 0.010514614172279835, 0.03230562061071396, -0.028124630451202393, -0.022252975031733513, -0.033008474856615067, -0.004707938060164452, -0.010297681204974651, -0.021810943260788918, 0.019742410629987717, 0.022806063294410706, -0.0247027650475502, 0.03941735625267029, -0.0002942091668955982, 0.019523896276950836, -0.015008833259344101, 0.00710667297244072, 0.029374267905950546, -0.05127293989062309, 0.006283036433160305, -0.05452674627304077, -0.04366361349821091, -0.026849396526813507, -0.029377605766057968, -0.03425966203212738, 0.010586194694042206, -0.002975916489958763, -0.002321437234058976, 0.03418608382344246, -0.025349408388137817, 0.005196698941290379, 0.0026615667156875134, -0.056885965168476105, 0.07203315198421478, -0.0006490264786407351, -0.03924031928181648, -0.011081195436418056, 0.015763375908136368, -0.039227720350027084, -0.03040245734155178, -0.06311279535293579, -0.06227578967809677, -0.023573769256472588, 0.016727076843380928, -0.04662618786096573, -0.07012593746185303, -0.009521412663161755, 0.09483788162469864, -0.004567375872284174, -0.006544761825352907, -0.00125639617908746, -0.06597734987735748, 0.0011669853702187538, 0.02340545505285263, -0.07998785376548767, 0.025459183380007744, -0.03616955503821373, 0.005826971959322691, -0.0425548329949379, 0.056721363216638565, -0.04570429027080536, 0.011705849319696426, -0.0848725438117981, -0.0069906944409012794, 0.00586986867710948, 0.06390060484409332, 0.05735978111624718, -0.0479239821434021, 0.047738704830408096, 0.03710639849305153, 0.020952122285962105, 0.03692839294672012, -0.021696865558624268, -0.03672485798597336, 0.042344558984041214, -0.052637260407209396, -0.010317609645426273, 0.00419533671811223, 0.043854739516973495, -0.026835942640900612, -0.045820124447345734, -0.03570907562971115, -0.01142151653766632, -0.006023608148097992, 0.05798448622226715, 0.024182645604014397, -0.031293220818042755, 0.011165265925228596, 0.052615683525800705, 0.023113025352358818, 0.051156263798475266, -0.02658230997622013, 0.02223997935652733, -0.010985161177814007, 0.025456421077251434, 0.023263053968548775, -0.019069716334342957, -0.03335236757993698, 0.02388814464211464, 0.010707122273743153, -0.04231003299355507, -0.028635816648602486, 0.04222152754664421, 0.016269413754343987, 0.018843524158000946, 0.03789784014225006, -0.03965241089463234, -0.036640945822000504, -0.06126438453793526, 0.047241635620594025, -0.007188096642494202, 0.0070355734787881374, -0.0034573597367852926, -0.05288652703166008, -0.0032196154352277517, -0.04390620440244675, -0.030974918976426125, -0.015156163834035397, -0.002867132890969515, 0.027093088254332542, 0.038486298173666, -0.027852438390254974, -0.0685567855834961, 0.016401352360844612, 0.049216464161872864, -0.06390394270420074, 0.004859337583184242, 0.04233075678348541, 0.09812048077583313, -0.07994800806045532, -0.02676042541861534, 0.013597160577774048, 0.01658281311392784, -0.029589012265205383, 0.0022921699564903975, -0.008295445702970028, -0.018865076825022697, -0.05610521882772446, -0.017384348437190056, 0.0015456255059689283, -0.056880440562963486, -0.010599053464829922, 0.04771067574620247, -0.015688957646489143, 0.008874494582414627, -0.031223827973008156, 0.010234576649963856, -0.020488496869802475, -0.030444983392953873, -0.044949643313884735, 0.030007140710949898, -0.02154187671840191, -0.02711586095392704, -0.049627892673015594, -0.03682880103588104, 0.010408111847937107, 0.07212243974208832, 0.023238936439156532, -0.016017179936170578, -0.02466827630996704, 0.045456431806087494, 0.0645541399717331, 0.042487241327762604, -0.02485118806362152, 0.017307914793491364, 0.036707546561956406, 0.011724869720637798, -0.028974680230021477, 0.06609402596950531, 0.005997587461024523, -0.03641940653324127, -0.04737477749586105, -0.027149470522999763, 0.0212960597127676, -0.015239836648106575, 0.01776104047894478, 0.03905339166522026, -0.036801211535930634, -0.047433849424123764, 0.02626067027449608, 0.05442880839109421, -0.026661626994609833, -0.001239115372300148, -0.014942836947739124, -0.021118834614753723, -0.027161579579114914, 0.03364644572138786, -0.04708229750394821, -0.0011548366164788604, -0.023658951744437218, -0.005480730906128883, 0.029411371797323227, -0.004653157200664282, -0.010395859368145466, 0.033985890448093414, 0.00024302583187818527, 0.07980232685804367, -0.03058934584259987, 0.02675190567970276, -0.029711490496993065, -0.0016923461807891726, -0.02780611626803875, 0.026401115581393242, 0.02109702117741108, 0.04706951603293419, -0.043885111808776855, -0.05981827154755592, 0.0323622040450573, 0.06088830530643463, 0.022681949660182, 0.027136703953146935, -0.020764652639627457, -0.01954873837530613, 0.03016643039882183, 0.0375998355448246, -0.03771773353219032, 0.0009437095141038299, 0.00031886890064924955, 0.02545854076743126, -0.005962661001831293, -0.0313696414232254, -0.03595997020602226, 0.0013872941490262747, -0.03516075015068054, -0.0748666524887085, 0.04868639260530472, 0.032734859734773636, -0.01422632671892643, 0.01759633794426918, -0.01410438772290945, 0.011471770703792572, 0.03730688616633415, 0.0142761105671525, 0.005489683244377375, -0.0720648467540741, 0.0009570257388986647, 0.01648384891450405, 0.08312211185693741, -0.05300948768854141, 0.00600088108330965, 0.014382850378751755, 0.028054524213075638, 0.036992549896240234, -0.011457379907369614, 0.03540225699543953, 0.0590239018201828, 0.048245035111904144, -0.02758181281387806, 0.04552466794848442, -0.002079813275486231, 0.04704129323363304, 0.05739924684166908, 0.004015704151242971, 0.054238930344581604, -0.008175060153007507, 0.024166451767086983, 0.03587711602449417, 0.014691156335175037, -0.030715717002749443, 0.034372951835393906, 0.07536978274583817, 0.0052476972341537476, 0.03042757883667946, 0.0379401333630085, 0.0003017240669578314, -0.0015579364262521267, -0.04154690355062485, -0.01052810624241829, 0.011661344207823277, -0.011064792051911354, 0.06394682824611664, 0.004452219698578119, -0.01665714755654335, -0.011760451830923557, -0.016136053949594498, -0.01088024117052555, 0.04418754205107689, -0.017679551616311073, -0.01383745577186346, -0.016036393120884895, -0.0004811776161659509, 0.008398332633078098, -0.05564356595277786, -0.07226313650608063, -0.013463917188346386, -0.045083075761795044, -0.0006282061222009361, -0.11014091223478317, -0.030775748193264008, -0.052987609058618546, -0.015694893896579742, 0.04102865979075432, 0.015496058389544487, 0.02744363062083721, -0.010465922765433788, 0.007023983635008335, -0.028683243319392204, -0.05886029824614525, -0.05354840308427811, -0.016442809253931046, -0.010959822684526443, -0.060291968286037445, 0.03547884523868561, 0.03610529005527496, 0.05673559010028839, 0.0036494359374046326, -0.028727084398269653, -0.05300004035234451, -0.012518110685050488, 0.04817361757159233, 0.027021076530218124, -0.045050423592329025, -0.02511889673769474, 0.004731631837785244, 0.013929720968008041, 0.009191432036459446, -0.033071260899305344, -0.05468166619539261, 0.07444307953119278, 0.039091117680072784, 0.012844309210777283, 0.011411803774535656, -0.004396666772663593, -0.0359080545604229, -0.024584416300058365, -0.0430179089307785, -0.04362946003675461, -0.008506344631314278, -0.038423798978328705, -0.0584477074444294, -0.0315292552113533, -0.060067273676395416, -0.0000013267416534290533, -0.007838891819119453, 0.0016597167123109102, 0.009013492614030838, 0.019186491146683693, 0.033182546496391296, 0.016719015315175056, -0.020546805113554, -0.021907364949584007, 0.024105045944452286, -0.008617950603365898, -0.021711593493819237, -0.07680869847536087, -0.04954744130373001, 0.008494328707456589, 0.01969895325601101, -0.006649269722402096, -0.007239288650453091, 0.03091546893119812, 0.02850811928510666, -0.00398590974509716, 0.02734970860183239, -0.05868983641266823, 0.012688763439655304, -0.047067876905202866, -0.046346958726644516, -0.028452193364501, -0.021573126316070557, -0.02825736813247204, -0.01067924965173006, 0.042022958397865295, -0.08175069838762283, -0.029916824772953987, -0.00938627403229475, 0.00901892688125372, 0.030918115749955177, 0.005452035926282406, -0.0630849152803421, 0.0013132542371749878, -0.03946719318628311, -0.026389461010694504, -0.018283536657691002, -0.017348414286971092, 0.0028848955407738686, 0.025908416137099266, 0.03828898444771767, -0.04083528369665146, 0.056258462369441986, 0.011040329933166504, 0.05521237105131149, 0.06208127364516258, -0.026930920779705048, 0.026591390371322632, -0.04431181028485298, 0.0411047525703907, 0.00171953858807683, -0.036366045475006104, -0.051709044724702835, -0.10008209198713303, -0.05004352703690529, 0.027280190959572792, -0.004025937523692846, 0.013132544234395027, 0.04164646193385124, -0.041752561926841736, -0.0364074744284153, 0.012639598920941353, 0.03742758184671402, 0.044888194650411606, -0.027808217331767082, 0.047596000134944916, 0.013526065275073051, 0.004405890591442585, -0.05328591912984848, 0.004671103786677122, -0.056480780243873596, -0.027525145560503006, -0.005718896631151438, 0.04792061820626259, 0.01115394290536642, 0.06821522116661072, 0.07136984169483185, 0.04669087380170822, -0.052316393703222275, 0.057738836854696274, 0.08177942782640457, -0.006253952160477638, -0.038673583418130875, -0.007060271222144365, -0.009721874259412289, 0.0032468088902533054, 0.0009799374965950847, -0.0163264200091362, 0.03269477188587189, 0.041040096431970596, 0.000009782612323760986, 0.002479416783899069, 0.028156518936157227, -0.0147163774818182, -0.013281078077852726, -0.07730451971292496, 0.0011484252754598856, -0.02097320929169655, -0.033472564071416855, 0.058088529855012894, 0.03627410903573036, 0.005259048193693161, 0.0575089193880558, 0.01950821466743946, -0.011671354062855244, -0.05056862533092499, 0.037438489496707916, 0.021072693169116974, -0.05220504477620125, -0.04970523715019226, -0.06130269914865494, 0.036143507808446884, 0.05145175755023956, -0.012917649000883102, -0.07673297077417374, 0.021250545978546143, 0.04859128221869469, -0.05523082986474037, 0.04693462699651718, 0.00819760374724865, 0.060944974422454834, 0.020465025678277016, 0.008569196797907352, 0.03427024558186531, -0.0653102695941925, 0.015300406143069267, -0.009420813992619514, 0.04300670325756073, -0.055889684706926346, -0.052896853536367416, -0.06626424938440323, 0.04221449792385101, 0.021467704325914383, 0.02090986631810665, 0.01031593419611454, -0.05396868661046028, -0.03123517706990242, -0.009540174156427383, 0.017125217244029045, -0.00831590499728918, 0.02554183080792427, 0.017165066674351692, 0.05514787137508392, -0.07022817432880402, 0.0053484318777918816, 0.023797856643795967, 0.020853085443377495, 0.01498750876635313, -0.023118881508708, -0.052671436220407486, -0.009015179239213467, 0.02639206126332283, -0.03057659976184368, 0.007874189876019955, -0.09546065330505371, 0.018498292192816734, -0.029354289174079895, -0.02438363805413246, 0.06484971940517426, 0.06190107390284538, 0.05473824590444565, 0.07541128993034363, -0.006744949612766504, 0.0440378375351429, -0.020102495327591896, 0.04395647346973419, -0.040973663330078125, -0.021529054269194603, -0.00644800066947937, -0.09062913060188293, -0.024343401193618774, -0.022702010348439217, -0.030657915398478508, -0.04233000800013542, 0.013349074870347977, -0.00754092400893569, -0.018829086795449257, 0.006176892202347517, 0.001269943662919104, 0.027842432260513306, -0.02509964630007744, -0.0451788455247879, -0.004697948228567839, -0.011037075892090797, -0.09560242295265198, -0.05096118524670601, 0.029733138158917427, -0.03480199724435806, 0.013529247604310513, -0.003636194160208106, 0.0054236603900790215, 0.06180914118885994, 0.008186100050807, -0.013494696468114853, 0.006463896948844194, 0.04183017835021019, -0.040883809328079224, -0.009009657427668571, 0.006921997759491205, 0.0019683404825627804, 0.0013245085719972849, -0.038771163672208786, 0.040280990302562714, 0.008136017248034477, -0.05670052766799927, -0.03432929888367653, 0.04218966141343117, 0.006834010593593121, -0.07308585941791534, -0.0024139697197824717, -0.026920612901449203, -0.03659352287650108, 0.004394480958580971, -0.04439479857683182, -0.02508043311536312, -0.009181307628750801, 0.029482435435056686, 0.020506666973233223, -0.01189895998686552, -0.020952889695763588, -0.0002878666273318231, -0.020999016240239143, 0.036468785256147385, -0.05596723407506943, 0.021504931151866913, -0.021898411214351654, 0.030198076739907265, -0.034128859639167786, 0.009798731654882431, -0.0350169874727726, 0.0467972531914711, -0.03130472078919411, -0.005133291706442833, -0.007805807050317526, -0.013806355185806751, 0.0030926698818802834, 0.037792038172483444, 0.013632316142320633, 0.0096216332167387, -0.03561921417713165, 0.07021137326955795, -0.06128730997443199, 0.027028270065784454, -0.014535353519022465, -0.02460968866944313, -0.019165603443980217, 0.011602714657783508, -0.004884760361164808, -0.04601516202092171, 0.02767382375895977, 0.024458520114421844, 0.004488146398216486, 0.05375848338007927, 0.0027923055458813906, -0.0000903158652363345, 0.043606650084257126, -0.04670517519116402, -0.0468129925429821, 0.011034284718334675, -0.00412127748131752, 0.009690207429230213, 0.06920123100280762, 0.018100490793585777, -0.05550384148955345, -0.03036663681268692, 0.03531818091869354, 0.03565795347094536, 0.01525326631963253, 0.013189734891057014, 0.0357191301882267, 0.057884447276592255, 0.06090795621275902, -0.010989032685756683, -0.009514753706753254, 0.029302101582288742, -0.014857890084385872, -0.011998260393738747, -0.001632203464396298, 0.01139972172677517, 0.020682791247963905, -0.024967925623059273, -0.0191301591694355, 0.07042501121759415, -0.001211968483403325, 0.004538329783827066, -0.0030342740938067436, -0.03410998359322548, 0.06254688650369644, 0.007397070527076721, -0.04893341287970543, -0.003750031581148505, 0.03313709422945976, -0.030022840946912766, 0.03033425845205784, -0.022391531616449356, 0.010229484178125858, 0.041252583265304565, 0.017837433144450188, 0.016022292897105217, 0.023727543652057648, -0.02416609227657318, -0.0015038513811305165, 0.020811306312680244, -0.04203922301530838, -0.03298730030655861, -0.04406771808862686, 0.04554632678627968, -0.052888475358486176, 0.05490252375602722, 0.02177645079791546, 0.03955488279461861, 0.004827713593840599, -0.040745288133621216, -0.027639897540211678, -0.019714074209332466, -0.04817282408475876, 0.06498710811138153, -0.02348228171467781, -0.041830308735370636, 0.06959320604801178, 0.03165135532617569, -0.07666569948196411, 0.034133993089199066, 0.0313490629196167, 0.042031191289424896, 0.019347941502928734, 0.06053953990340233, -0.046014051884412766, 0.013802365399897099, -0.030186422169208527, -0.002394273644313216, -0.02577229216694832, -0.024012001231312752, -0.00916963443160057, -0.03685707598924637, 0.005571777932345867, 0.0377148762345314, -0.023814892396330833, 0.01976117305457592, 0.007470063865184784, -0.037566691637039185, -0.03979236260056496, -0.006320903077721596, 0.02865264192223549, -0.004796311724931002, -0.004936800338327885, -0.004808550700545311, 0.01623590849339962, 0.026534005999565125, -0.021142365410923958, -0.06189381331205368, 0.01733417995274067, -0.015068108215928078, -0.05875517427921295, -0.05894280597567558, 0.05615181103348732, 0.023782355710864067, -0.02631276845932007, -0.005490599200129509, 0.03495938703417778, 0.013262656517326832, 0.0361100435256958, -0.005098400171846151, 0.020152296870946884, -0.08132081478834152, -0.00020900380332022905, 0.026949705556035042, 0.024276023730635643, -0.008329316042363644, -0.011336376890540123, 0.020134422928094864, 0.06994584202766418, 0.05572010949254036, -0.00038609642069786787, -0.045532796531915665, -0.024512361735105515, -0.01598556712269783, -0.036397241055965424, 0.05247664451599121, 0.013984735123813152, -0.06285878270864487, -0.03513569384813309, -0.013401185162365437, 0.0022130173165351152, 0.023681476712226868, -0.045944828540086746, 0.02702334150671959, 0.010227921418845654, -0.0015143124619498849, -0.0391015000641346, -0.09309423714876175, -0.0293108019977808, -0.02367165870964527, 0.026152370497584343, 0.04258803278207779, -0.07479453086853027, 0.013230799697339535, -0.023928051814436913, -0.018943361937999725, 0.043466612696647644, 0.005178223829716444, -0.016645681113004684, 0.07301980257034302, 0.0484614335000515, -0.04294594004750252, 0.055659689009189606, 0.01926233619451523, -0.05423149839043617, 0.05217639356851578, 0.010741162113845348, 0.03328841179609299, -0.0008030437747947872, 0.014596143737435341, -0.009414317086338997, 0.007074294146150351, -0.024256493896245956, -0.04847874864935875, 0.0028220575768500566, 0.003483403939753771, 0.035350050777196884 ]
DivyanshuSheth/T5-Seq2Seq-Final
[]
null
{ "architectures": null, "model_type": null, "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
0
null
--- tags: - conversational --- #isla DialoGPT Model
[ -0.03444496542215347, 0.0013151121092960238, 0.02268548123538494, 0.015925254672765732, 0.02155838906764984, 0.01527369860559702, -0.0021494890097528696, 0.038028307259082794, -0.009173701517283916, 0.012506368570029736, 0.04166340082883835, -0.043151017278432846, 0.012763544917106628, 0.029177093878388405, -0.03651001676917076, -0.025569738820195198, -0.017854562029242516, -0.010773932561278343, -0.030298728495836258, -0.026460302993655205, 0.028727296739816666, 0.001426862319931388, -0.03225237503647804, 0.031180990859866142, 0.004196752794086933, 0.03798599913716316, -0.004758297465741634, 0.009984022006392479, 0.04198409244418144, -0.03734593093395233, 0.005686165299266577, -0.053436484187841415, -0.01598590612411499, -0.016150938346982002, -0.03397659584879875, -0.035728394985198975, 0.031043224036693573, -0.01046753115952015, -0.00518660107627511, 0.02985086478292942, -0.024114137515425682, 0.001264112419448793, 0.001092397840693593, -0.03696677088737488, 0.07214248925447464, -0.007274018134921789, -0.04736650735139847, -0.011774844489991665, 0.019980190321803093, -0.03516333922743797, -0.048028334975242615, -0.06813377141952515, -0.06466417014598846, -0.01815166138112545, 0.014103422872722149, -0.05689408630132675, -0.06804107129573822, -0.01917370967566967, 0.09251637756824493, -0.026217985898256302, -0.007352337706834078, -0.000029689021175727248, -0.08524847775697708, 0.005972507409751415, 0.0210040882229805, -0.06253545731306076, 0.017170846462249756, -0.0559794083237648, 0.026004429906606674, -0.031380947679281235, 0.050887320190668106, -0.05871521681547165, 0.015327602624893188, -0.06575091183185577, -0.024691175669431686, -0.003109249286353588, 0.04558514803647995, 0.061814069747924805, -0.03687770664691925, 0.06995710730552673, 0.045084718614816666, 0.004081086255609989, 0.058944813907146454, 0.008059472776949406, -0.03839002922177315, 0.051048822700977325, -0.0402771458029747, -0.0012105494970455766, 0.009948770515620708, 0.013057186268270016, -0.011822759173810482, -0.05447521433234215, -0.02477206476032734, 0.0004182571719866246, 0.011806913651525974, 0.03336860239505768, 0.018636638298630714, -0.025705423206090927, 0.030098430812358856, 0.03626752272248268, 0.032501157373189926, 0.03306856006383896, -0.0379362627863884, 0.03799034655094147, -0.0033499987330287695, 0.008924035355448723, 0.031447701156139374, -0.024955792352557182, -0.04892608895897865, 0.02307026833295822, 0.015395638532936573, -0.05294989421963692, -0.0248229019343853, 0.03617391735315323, 0.0013079659547656775, -0.0012005825992673635, 0.05852596461772919, -0.03738696128129959, -0.02582390420138836, -0.0603061206638813, 0.05068075284361839, -0.01481364294886589, -0.02390104904770851, 0.00031040108297020197, -0.04821334406733513, -0.013455167412757874, -0.049089089035987854, -0.016119394451379776, -0.0037007539067417383, -0.006027740892022848, 0.015668008476495743, 0.02428532764315605, -0.024689584970474243, -0.06334429979324341, 0.0023154909722507, 0.04206836223602295, -0.0777345821261406, -0.009292171336710453, 0.037735216319561005, 0.08768587559461594, -0.06943793594837189, -0.03530476614832878, -0.028034042567014694, 0.010045873001217842, -0.034006986767053604, -0.013775189407169819, 0.006380446255207062, 0.004994655959308147, -0.03130609542131424, -0.02126440405845642, 0.022048592567443848, -0.04995904490351677, -0.017094295471906662, 0.042368434369564056, 0.016940928995609283, 0.020580457523465157, -0.025506580248475075, -0.002073432318866253, -0.01158182229846716, -0.02590099535882473, -0.05022416636347771, 0.04496309161186218, -0.016577189788222313, -0.03452691063284874, -0.04680906608700752, -0.04092256724834442, 0.01432777289301157, 0.055776290595531464, 0.01667182892560959, -0.020146071910858154, -0.016011640429496765, 0.04573103040456772, 0.06191396713256836, 0.029354209080338478, -0.010403416119515896, 0.023133113980293274, 0.05113248899579048, 0.017130523920059204, -0.020340271294116974, 0.07869905233383179, 0.00731731066480279, -0.03479098156094551, -0.048313822597265244, -0.02050824463367462, 0.03988054022192955, -0.011210689321160316, 0.021272389218211174, 0.039804719388484955, -0.033741071820259094, -0.05087997019290924, 0.013011817820370197, 0.04008510336279869, -0.01890714280307293, -0.0015078476862981915, -0.029045242816209793, -0.024866361171007156, -0.0282052680850029, 0.017129745334386826, -0.04272584989666939, -0.008041984401643276, -0.022396396845579147, -0.013758336193859577, 0.032491251826286316, -0.0006611303542740643, 0.007240565028041601, 0.052735455334186554, -0.020734000951051712, 0.07038835436105728, -0.04410584643483162, 0.00982812698930502, -0.03610144928097725, -0.019737450405955315, -0.03530726209282875, 0.04259861260652542, 0.00392527412623167, 0.038636401295661926, -0.04735120013356209, -0.036861442029476166, 0.027537008747458458, 0.06764267385005951, 0.03795214742422104, 0.02277975156903267, -0.004840713459998369, 0.0057876696810126305, 0.03398975729942322, 0.030377652496099472, -0.030960340052843094, 0.017295338213443756, 0.0066368067637085915, 0.02163967676460743, -0.032286904752254486, -0.03243817016482353, -0.04284002259373665, 0.0021321841049939394, -0.038529302924871445, -0.0538327693939209, 0.029352942481637, 0.03762683644890785, -0.014141903258860111, 0.024883029982447624, -0.005771694704890251, -0.001826158375479281, 0.03520137816667557, 0.0064627258107066154, 0.001009794301353395, -0.07794135063886642, 0.011932166293263435, 0.03261654078960419, 0.09104529768228531, -0.04752735793590546, 0.013771641999483109, 0.012466302141547203, 0.021505206823349, 0.03714889660477638, -0.012769727036356926, 0.03680829331278801, 0.04977240413427353, 0.043368276208639145, -0.04137461632490158, 0.033093616366386414, -0.0006569777615368366, 0.028191452845931053, 0.045076869428157806, -0.00025381805608049035, 0.05929271876811981, -0.01761268638074398, 0.029999878257513046, 0.06459569185972214, 0.020233754068613052, -0.023761512711644173, 0.03008098155260086, 0.081145741045475, -0.008532056584954262, 0.0237351693212986, 0.037194397300481796, 0.008545245043933392, -0.0010154502233490348, -0.04619846120476723, -0.01669219695031643, 0.005650882609188557, -0.0299402866512537, 0.07686787843704224, 0.0026505333371460438, -0.011127125471830368, 0.007917321287095547, -0.013392805121839046, 0.004837262909859419, 0.03597567602992058, 0.0013932152651250362, -0.025142930448055267, 0.002269284799695015, -0.010582746006548405, 0.027378041297197342, -0.051494862884283066, -0.04674607515335083, -0.029543079435825348, -0.054314807057380676, -0.012880859896540642, -0.07522516697645187, -0.03505944460630417, -0.05836136266589165, -0.025837760418653488, 0.049384962767362595, 0.016677062958478928, 0.02592863142490387, 0.0004062379302922636, 0.005786341615021229, -0.021413862705230713, -0.06838755309581757, -0.04358399659395218, -0.04255713149905205, -0.010126573033630848, -0.037276741117239, 0.023716511204838753, 0.03651898354291916, 0.033593419939279556, 0.002064930275082588, -0.016477029770612717, -0.043480053544044495, -0.025753747671842575, 0.03837971016764641, 0.024992018938064575, -0.04395069181919098, -0.03483566269278526, 0.01016061007976532, 0.004463982302695513, -0.011738517321646214, -0.03406751900911331, -0.04886823892593384, 0.07121564447879791, 0.04262111335992813, 0.0061548808589577675, 0.02815798670053482, 0.0017773170256987214, -0.024769581854343414, -0.012543591670691967, -0.06776116043329239, -0.02763701230287552, 0.00044318693107925355, -0.01209644228219986, -0.05978423357009888, -0.022356659173965454, -0.044541582465171814, 0.010281416587531567, 0.006918656174093485, 0.005755774676799774, 0.04078179597854614, 0.03256749361753464, 0.04108595848083496, 0.029562870040535927, -0.020205125212669373, -0.024297863245010376, 0.02547270618379116, -0.01901480369269848, -0.0057356152683496475, -0.06190220266580582, -0.04670187458395958, 0.033206988126039505, 0.0035709787625819445, -0.005170599557459354, -0.011930311098694801, 0.0341402105987072, 0.041060417890548706, 0.0011098352260887623, 0.02728934958577156, -0.07108871638774872, -0.0001494961470598355, -0.02483917586505413, -0.019312838092446327, -0.04640332981944084, -0.028207607567310333, -0.0035721526946872473, -0.014632032252848148, 0.050810616463422775, -0.09516025334596634, -0.03784366324543953, -0.030517566949129105, 0.023728447034955025, 0.04523231461644173, 0.005184059496968985, -0.06450311094522476, 0.0015868035843595862, -0.0470147579908371, -0.0186271034181118, 0.0006295283092185855, -0.014167936518788338, 0.006861374247819185, 0.029743608087301254, 0.01435662992298603, -0.02351824939250946, 0.04643053933978081, 0.01718582585453987, 0.07100939750671387, 0.059466294944286346, -0.02790646255016327, 0.02787330001592636, -0.017289550974965096, 0.02658889815211296, -0.010295549407601357, -0.03168502822518349, -0.038020964711904526, -0.11155886948108673, -0.05189472809433937, 0.036421336233615875, -0.032618653029203415, 0.016745541244745255, 0.03359898924827576, -0.05156208947300911, 0.00005322548167896457, -0.002831489546224475, 0.03553750365972519, 0.03738623484969139, -0.04061620682477951, 0.061322566121816635, 0.0032275214325636625, 0.01770438253879547, -0.04592856019735336, 0.00040906877256929874, -0.053859516978263855, -0.008488795720040798, -0.0033109711948782206, 0.0536542683839798, 0.014981751330196857, 0.06095191463828087, 0.07733140885829926, 0.04164278134703636, -0.0341004841029644, 0.052460215985774994, 0.06130506098270416, -0.038232333958148956, -0.0397760346531868, -0.011013439856469631, -0.02297552116215229, -0.03306970372796059, -0.00670310715213418, -0.03757234662771225, 0.03858684003353119, 0.03464020416140556, -0.014318780042231083, 0.0049696145579218864, 0.008201422169804573, -0.044524185359478, -0.0205999743193388, -0.062230344861745834, -0.005453158635646105, 0.00668443413451314, -0.03154895827174187, 0.04856680706143379, 0.054521504789590836, 0.024903612211346626, 0.05274580791592598, 0.02085171267390251, -0.02474265545606613, -0.06371980905532837, 0.02549111470580101, 0.022735079750418663, -0.03893543407320976, -0.06583055108785629, -0.043927717953920364, 0.03697187826037407, 0.04111163690686226, -0.02796204201877117, -0.09594845026731491, 0.02558944560587406, 0.03934720531105995, -0.03367433696985245, 0.064005546271801, -0.010194717906415462, 0.0452098473906517, 0.02751951664686203, 0.014035414904356003, 0.040895260870456696, -0.06820878386497498, 0.03170354291796684, -0.025682484731078148, 0.032976262271404266, -0.045061852782964706, -0.051090870052576065, -0.05202218145132065, 0.04668186977505684, 0.014562367461621761, 0.018801797181367874, 0.021228916943073273, -0.044116973876953125, -0.05600099638104439, -0.004305082838982344, 0.04297621548175812, -0.015688741579651833, 0.016123784705996513, 0.02700502797961235, 0.056891024112701416, -0.050393685698509216, 0.006884614937007427, 0.01363581046462059, 0.0013900077901780605, 0.016502374783158302, -0.03141389787197113, -0.056522976607084274, -0.0003289973537903279, 0.035816702991724014, -0.045811768621206284, -0.0265670046210289, -0.09556759148836136, 0.0352395623922348, -0.03527306392788887, -0.04117565229535103, 0.07963638007640839, 0.07119053602218628, 0.07311119139194489, 0.07879894226789474, -0.006379757542163134, 0.06640154868364334, -0.02666940912604332, 0.02268245816230774, -0.02612643502652645, -0.036236777901649475, -0.0006184345693327487, -0.07078390568494797, -0.027017928659915924, -0.04517188295722008, -0.03798426315188408, -0.029306624084711075, 0.0029913950711488724, 0.003984733484685421, 0.0054171462543308735, -0.0084671750664711, 0.01158776506781578, 0.00903699267655611, -0.026319457218050957, -0.029565967619419098, -0.015828682109713554, -0.006467605009675026, -0.0673813745379448, -0.06340933591127396, 0.018740879371762276, -0.02047971822321415, 0.01682407222688198, -0.006622145883738995, 0.02354520931839943, 0.04118650034070015, -0.006282248068600893, -0.030994756147265434, 0.017058823257684708, 0.03354717418551445, -0.032480236142873764, -0.020659178495407104, 0.0033617473673075438, 0.027981534600257874, 0.04741799458861351, -0.02576763927936554, 0.032320208847522736, 0.0038269779179245234, -0.04741789400577545, -0.015422413125634193, 0.03886714577674866, 0.006444648373872042, -0.07520579546689987, -0.0034296081867069006, -0.030693834647536278, -0.02509845606982708, 0.009008940309286118, -0.04597463831305504, -0.029503462836146355, -0.012633138336241245, 0.04443783313035965, 0.024801425635814667, 0.00018712774908635765, -0.029722636565566063, -0.00004854431244893931, -0.008646111004054546, 0.0011817555641755462, -0.0715656578540802, 0.019855070859193802, -0.026863638311624527, 0.007344092708081007, -0.0059923757798969746, 0.00006770089385099709, -0.048987410962581635, 0.05452075973153114, -0.01808658242225647, -0.0005561623256653547, 0.010204589925706387, -0.02003556489944458, 0.017613179981708527, 0.04635470733046532, 0.018826615065336227, -0.0012954134726896882, -0.03652204945683479, 0.07255493104457855, -0.059848006814718246, 0.0048754564486444, -0.011262170970439911, -0.028359131887555122, -0.021592777222394943, 0.0012891617370769382, -0.00810830295085907, -0.06181987002491951, 0.023620326071977615, 0.032601773738861084, 0.030767254531383514, 0.031190870329737663, -0.0038889767602086067, 0.009848971851170063, 0.01763475127518177, -0.05128980800509453, -0.038051024079322815, 0.010921602137386799, 0.005882422439754009, 0.024980707094073296, 0.05062306672334671, 0.016844265162944794, -0.06706859171390533, -0.0313241109251976, 0.02260538749396801, 0.023624669760465622, 0.008519552648067474, 0.003962147980928421, 0.03468936309218407, 0.0558825358748436, 0.06632524728775024, 0.004589256830513477, -0.008720806799829006, 0.025130178779363632, -0.01889696530997753, -0.028211452066898346, 0.0012241860385984182, 0.010386581532657146, -0.005369049031287432, -0.028828388080000877, -0.02605118416249752, 0.06456374377012253, -0.02126985788345337, 0.00960021372884512, -0.017889996990561485, -0.04242495819926262, 0.061132948845624924, 0.0036793360486626625, -0.03674864396452904, 0.006979163270443678, 0.0368770956993103, -0.03586217761039734, 0.0206824392080307, -0.022538144141435623, 0.003745484398677945, 0.05371662229299545, 0.03255472332239151, 0.0016981011722236872, 0.0024650043342262506, -0.01358120609074831, -0.005550303962081671, 0.019830618053674698, -0.03786942735314369, -0.01709454320371151, -0.034936077892780304, 0.07056631147861481, -0.04740603268146515, 0.05012533813714981, 0.026119474321603775, 0.04235342890024185, 0.018427439033985138, -0.04738527908921242, -0.03986635431647301, -0.02369251474738121, -0.02513236366212368, 0.07138713449239731, -0.018989549949765205, -0.03421397879719734, 0.058056917041540146, 0.04875849932432175, -0.08784168213605881, 0.039449356496334076, 0.04576092213392258, 0.037114810198545456, 0.02437722682952881, 0.030571000650525093, -0.05256775766611099, 0.0141396289691329, -0.013612830080091953, -0.002950635040178895, -0.04005790501832962, -0.007437590975314379, -0.02154877781867981, -0.041142817586660385, -0.01099393144249916, 0.022201577201485634, -0.029438894242048264, 0.0003076133434660733, 0.013920093886554241, -0.011326531879603863, -0.05905182287096977, -0.008291266858577728, 0.02767333947122097, -0.006992173381149769, -0.021748490631580353, -0.031493041664361954, 0.02199174463748932, 0.0316912978887558, -0.009354597888886929, -0.06884156912565231, 0.016238616779446602, -0.006643607746809721, -0.059973735362291336, -0.04497986659407616, 0.06021859124302864, 0.026734577491879463, -0.02185114100575447, 0.0017120237462222576, 0.030554600059986115, 0.024820270016789436, 0.026358798146247864, -0.01928641088306904, 0.006434574257582426, -0.06917905062437057, -0.0004053022712469101, 0.008717990480363369, 0.017443016171455383, 0.005624736193567514, -0.012884112074971199, 0.022548973560333252, 0.08390755206346512, 0.059075821191072464, 0.009948084130883217, -0.05812675878405571, -0.016946760937571526, -0.00032081780955195427, -0.04703765735030174, 0.04800547659397125, 0.00786337535828352, -0.05678652971982956, -0.021902987733483315, -0.028476787731051445, 0.009160776622593403, 0.02663254924118519, -0.030585143715143204, 0.023162629455327988, 0.02475643716752529, -0.004555154126137495, -0.04205196723341942, -0.08977775275707245, -0.03315051272511482, -0.021400077268481255, 0.019918221980333328, 0.03221883624792099, -0.05985230207443237, 0.03030773438513279, -0.026821399107575417, -0.010398365557193756, 0.0487833209335804, -0.006028103642165661, -0.02071116305887699, 0.0755346268415451, 0.07853206247091293, -0.05152085795998573, 0.08158950507640839, 0.03416183590888977, -0.02801891230046749, 0.04184108227491379, 0.011666590347886086, 0.022976813837885857, 0.006387632805854082, 0.016699129715561867, -0.011146178469061852, -0.022175025194883347, -0.011272731237113476, -0.03558209538459778, -0.004062502179294825, -0.0014662822941318154, 0.044405970722436905 ]
distilbert-base-uncased
[ "pytorch", "tf", "jax", "rust", "safetensors", "distilbert", "fill-mask", "en", "dataset:bookcorpus", "dataset:wikipedia", "arxiv:1910.01108", "transformers", "exbert", "license:apache-2.0", "autotrain_compatible", "has_space" ]
fill-mask
{ "architectures": [ "DistilBertForMaskedLM" ], "model_type": "distilbert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
10,887,471
null
--- license: apache-2.0 tags: - generated_from_trainer metrics: - accuracy model-index: - name: superglue-boolq results: [] --- <!-- 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. --> # superglue-boolq This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.2098 - Accuracy: 76.7584 - Average Metrics: 76.7584 ## 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: 32 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 1 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | Average Metrics | |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------------:| | No log | 0.34 | 100 | 0.2293 | 73.2722 | 73.2722 | | No log | 0.68 | 200 | 0.2098 | 76.7584 | 76.7584 | ### Framework versions - Transformers 4.18.0 - Pytorch 1.10.2+cu111 - Datasets 1.17.0 - Tokenizers 0.12.1
[ -0.03491340950131416, -0.008971275761723518, -0.00774516211822629, 0.03502562642097473, 0.04389740899205208, 0.009801509790122509, -0.015363238751888275, 0.0003433811361901462, -0.04634473845362663, 0.042458292096853256, 0.023347122594714165, -0.012053946033120155, 0.021042266860604286, 0.02867887169122696, -0.039251819252967834, -0.02400352992117405, -0.01752498373389244, 0.00474489014595747, -0.020100923255085945, 0.008875255472958088, -0.0010001827031373978, 0.007352237589657307, -0.013101090677082539, 0.004431183449923992, 0.0017102884594351053, 0.02167845517396927, -0.006001561414450407, -0.00846800860017538, 0.029917089268565178, -0.06783661991357803, 0.022248482331633568, -0.05585598573088646, -0.044517867267131805, -0.029063954949378967, -0.0073278965428471565, 0.0017539503751322627, -0.00650259293615818, 0.004773299675434828, 0.04171552509069443, 0.07414355129003525, 0.013202222064137459, 0.011051326990127563, -0.02434842474758625, -0.024258948862552643, 0.05626252666115761, 0.010396809317171574, -0.03585357218980789, -0.0008304091170430183, 0.02551194652915001, -0.040736887603998184, -0.06981819123029709, -0.08411769568920135, -0.02663278393447399, 0.03312003239989281, -0.03534363582730293, -0.019812051206827164, -0.07030731439590454, -0.0016884913202375174, 0.050388485193252563, -0.03181138262152672, -0.031262289732694626, 0.03249462693929672, -0.0843307375907898, 0.003603705670684576, 0.015554080717265606, -0.02798466943204403, 0.006668282672762871, -0.021100789308547974, 0.032130755484104156, -0.024138284847140312, 0.08055201172828674, -0.008329333737492561, -0.0017703563207760453, -0.07354329526424408, -0.02279319241642952, -0.021160118281841278, 0.011774749495089054, 0.05046540126204491, -0.04172343760728836, 0.03176885098218918, 0.05304533615708351, -0.009831195697188377, 0.03672093525528908, -0.006144637707620859, -0.0009164928342215717, 0.015532578341662884, -0.049341995269060135, -0.009481017477810383, 0.02099516987800598, 0.05931113660335541, -0.03546394407749176, -0.04760114476084709, -0.03674272447824478, -0.039407018572092056, -0.022645939141511917, 0.010057727806270123, 0.026011131703853607, 0.01151551865041256, 0.03611365705728531, -0.00036475705564953387, 0.04545171186327934, 0.03144115209579468, -0.013804697431623936, 0.0773712694644928, 0.003607089864090085, -0.01815227046608925, -0.009101096540689468, -0.014528998173773289, -0.03895820677280426, 0.027331093326210976, 0.01602630689740181, -0.04053257405757904, -0.028883500024676323, 0.027057034894824028, 0.029931601136922836, 0.0030983234755694866, 0.07913488894701004, -0.03189348056912422, -0.03361675143241882, -0.037556909024715424, 0.05681554973125458, 0.026465309783816338, 0.003905978286638856, -0.009502132423222065, -0.02988700568675995, 0.005316791590303183, -0.01709832437336445, -0.04141227900981903, 0.001195860910229385, 0.024698488414287567, 0.004890915937721729, 0.05143815279006958, 0.022362802177667618, -0.05333715304732323, -0.012489349581301212, 0.026418166235089302, -0.047992341220378876, 0.04731430485844612, 0.012772146612405777, 0.1185491681098938, -0.07779266685247421, -0.08541402965784073, 0.025409430265426636, 0.0026352903805673122, -0.03283245489001274, 0.019199591130018234, 0.0037093323189765215, -0.038655396550893784, -0.007623836398124695, -0.003181022359058261, 0.06052519381046295, -0.06015988066792488, 0.005427366588264704, 0.04488912969827652, -0.01243961974978447, 0.02390819415450096, -0.044824495911598206, -0.016079068183898926, 0.03141677379608154, -0.01879129372537136, -0.007043961435556412, 0.0423256978392601, -0.00969595368951559, -0.017678339034318924, -0.038446154445409775, -0.03605164214968681, 0.010118088684976101, 0.08223894983530045, -0.004905822221189737, -0.017968906089663506, -0.017441032454371452, 0.029232965782284737, 0.04269431531429291, 0.03679418936371803, -0.021434329450130463, 0.049247950315475464, 0.05521624907851219, 0.030779462307691574, -0.03424173593521118, 0.04085231572389603, 0.03920785337686539, -0.015105301514267921, -0.023180322721600533, 0.0047273882664740086, -0.007115010172128677, -0.046214375644922256, 0.009117510169744492, 0.0055979532189667225, 0.01742895320057869, -0.06139880791306496, -0.018147774040699005, 0.047435931861400604, -0.0029288565274327993, -0.010845343582332134, -0.00391353527083993, -0.00898181926459074, -0.022040311247110367, 0.01988614909350872, -0.017173081636428833, 0.020493751391768456, -0.04282933846116066, -0.03754499554634094, 0.021230721846222878, 0.01291259378194809, 0.023807555437088013, 0.03653847426176071, -0.018804626539349556, 0.0979776456952095, -0.018442027270793915, 0.018572723492980003, -0.037459466606378555, -0.04103569686412811, 0.013808970339596272, 0.052425045520067215, 0.053588055074214935, 0.047933753579854965, 0.013283200562000275, -0.04540646821260452, 0.03192463889718056, 0.0777919590473175, 0.03146218881011009, 0.011410907842218876, -0.04474475234746933, -0.0071049826219677925, 0.029749028384685516, 0.06264074891805649, -0.055351123213768005, -0.009598585776984692, 0.02590671181678772, 0.024900680407881737, -0.009351838380098343, 0.024297446012496948, -0.011392406187951565, 0.030085841193795204, -0.056573934853076935, -0.0569191612303257, 0.03303059935569763, 0.015567230060696602, -0.0008375437464565039, 0.029545772820711136, 0.00318999495357275, 0.02180396020412445, 0.019019674509763718, 0.014974717982113361, 0.01021672785282135, -0.04640410840511322, 0.0284311231225729, 0.02302403561770916, 0.03462960943579674, -0.03876957669854164, 0.03616613894701004, -0.025427205488085747, 0.004446516279131174, 0.05437289923429489, -0.045253265649080276, 0.021977623924613, 0.06725633889436722, 0.019023939967155457, -0.022214697673916817, 0.011213257908821106, 0.027493732050061226, 0.030672656372189522, 0.03147973492741585, 0.001170746749266982, 0.069100022315979, -0.012371192686259747, 0.030477168038487434, 0.0835258737206459, 0.011515124700963497, 0.03973938152194023, 0.04162744805216789, 0.07677863538265228, 0.016041016206145287, -0.011072265915572643, 0.04266761988401413, -0.06407282501459122, 0.021623143926262856, -0.05104273930191994, 0.012070312164723873, -0.034855447709560394, -0.004084838554263115, 0.0426655039191246, 0.026834556832909584, -0.019773010164499283, -0.0025009417440742254, -0.007243632804602385, -0.01615268923342228, 0.02681627869606018, -0.018944254145026207, -0.010515168309211731, -0.01360328122973442, 0.006742506287992001, -0.018337026238441467, -0.06773900985717773, -0.04281087592244148, -0.02611587941646576, -0.022188644856214523, -0.019407467916607857, -0.09085240960121155, -0.0012759853852912784, -0.06824399530887604, -0.03057319112122059, 0.05842446908354759, 0.0005546518950723112, -0.0021250443533062935, -0.05215713754296303, 0.007813433185219765, -0.04227590560913086, -0.02410254441201687, -0.05592697486281395, -0.06411756575107574, -0.05772193893790245, -0.07616593688726425, 0.04122508689761162, 0.042415451258420944, 0.05048243701457977, 0.008930811658501625, 0.006415674928575754, -0.01778208650648594, -0.02044292353093624, 0.045531708747148514, 0.04149572551250458, -0.028622744604945183, -0.036993831396102905, 0.0392964631319046, -0.018051758408546448, 0.008535194210708141, 0.002789626829326153, -0.027563465759158134, 0.09269607067108154, 0.07734347134828568, 0.017858950421214104, -0.01145973615348339, -0.020453741773962975, -0.07553237676620483, -0.04601624235510826, -0.02178129553794861, -0.03376397863030434, 0.0018989142263308167, -0.03450590744614601, -0.025248097255825996, -0.023121336475014687, -0.02964237704873085, -0.006856136955320835, 0.005795411299914122, 0.008121969178318977, 0.016164492815732956, 0.05100464075803757, 0.027292869985103607, 0.037343740463256836, -0.031039590016007423, -0.03731494024395943, 0.051170989871025085, 0.02146286889910698, 0.004689500667154789, -0.08464578539133072, -0.020087577402591705, 0.034869901835918427, -0.017491690814495087, 0.004078565631061792, 0.0016121447551995516, 0.08164897561073303, -0.000007207072940218495, -0.021315036341547966, 0.0023980599362403154, -0.01819506101310253, -0.013812070712447166, -0.004622390493750572, 0.01152369100600481, -0.015228348784148693, -0.03797087073326111, -0.013351640664041042, -0.026949962601065636, 0.04220668971538544, -0.0763721764087677, -0.055985867977142334, -0.026146752759814262, 0.039664942771196365, 0.04351167380809784, -0.005254680290818214, -0.03137436881661415, -0.023598063737154007, -0.07202167063951492, -0.010432714596390724, 0.04790666699409485, 0.024501731619238853, 0.0008632008684799075, 0.04224003478884697, 0.026784004643559456, -0.022877374663949013, 0.05642951652407646, 0.04653574526309967, 0.05267152562737465, 0.01707811839878559, -0.05043179914355278, -0.009197850711643696, -0.012026545591652393, 0.043694768100976944, -0.005058056674897671, -0.02082824893295765, -0.027163228020071983, -0.10950099676847458, -0.03694719076156616, 0.012242527678608894, -0.02300403267145157, -0.013256330974400043, 0.03521054610610008, -0.029758572578430176, -0.03394092246890068, -0.008180715143680573, 0.0013052907306700945, 0.0306730717420578, -0.05611523240804672, 0.051311954855918884, -0.01000889204442501, 0.015431541018188, -0.029672771692276, 0.019095923751592636, -0.029169632121920586, -0.008692722767591476, -0.00658539729192853, 0.04731322079896927, -0.012390831485390663, 0.06399257481098175, 0.07028193771839142, 0.022190745919942856, -0.0431729331612587, 0.05042991042137146, 0.06550333648920059, -0.02713620848953724, -0.03591472655534744, 0.003223889274522662, 0.02500074729323387, -0.008267685770988464, -0.00770542910322547, -0.012671752832829952, 0.033529311418533325, 0.0541064590215683, -0.0005450230673886836, 0.015827279537916183, 0.020232025533914566, 0.003802794497460127, -0.034313999116420746, -0.0650225281715393, -0.010051748715341091, 0.013536160811781883, -0.027582619339227676, 0.014688384719192982, 0.05263272672891617, 0.01369335688650608, 0.059650324285030365, 0.020303528755903244, -0.037683214992284775, -0.04181654006242752, 0.02155660279095173, 0.03554241731762886, -0.016879206523299217, -0.07919891923666, -0.043478768318891525, 0.026655297726392746, 0.022153029218316078, -0.0007274117670021951, -0.04595854505896568, 0.011397957801818848, 0.05111398920416832, -0.026310497894883156, 0.04933057352900505, 0.0022172885946929455, 0.032770778983831406, 0.0678602084517479, -0.010877897962927818, 0.04252161830663681, -0.03670376166701317, -0.009262236766517162, -0.0033827144652605057, 0.01807314343750477, -0.003619107883423567, -0.0302231777459383, -0.03320580720901489, 0.02005908265709877, 0.0673297718167305, 0.0507686473429203, 0.04048099368810654, -0.009226328693330288, -0.06100049242377281, 0.005491302348673344, 0.05512680113315582, -0.05041121691465378, 0.016638636589050293, 0.03615725040435791, 0.028828224167227745, -0.04983258247375488, -0.047767482697963715, -0.0395754799246788, -0.03291242942214012, 0.03542585298418999, 0.009060541167855263, -0.043642282485961914, -0.044794123619794846, 0.05221739038825035, -0.005072193685919046, -0.018373290076851845, -0.05778718367218971, 0.03782391920685768, 0.0032710020896047354, -0.013341647572815418, 0.058815740048885345, 0.031793262809515, 0.02203262411057949, 0.04013391211628914, 0.021044239401817322, 0.021296948194503784, -0.032311584800481796, 0.050217755138874054, -0.056289803236722946, -0.02278503216803074, 0.015005391091108322, -0.053013067692518234, -0.020112711936235428, -0.022555101662874222, -0.04651619493961334, -0.038522783666849136, -0.0213825274258852, 0.016617361456155777, 0.00041286973282694817, -0.023995274677872658, 0.002850532066076994, 0.05493709817528725, -0.024540971964597702, -0.03385511040687561, -0.05115080624818802, -0.03176698088645935, -0.06247245520353317, -0.056278787553310394, 0.029559113085269928, -0.004692048765718937, 0.05111488699913025, 0.026394324377179146, 0.027049945667386055, 0.027584465220570564, -0.0012178625911474228, -0.024874255061149597, 0.0057260519824922085, -0.0019128946587443352, -0.014189926907420158, -0.024099448695778847, 0.020793618634343147, 0.009678831323981285, 0.056025490164756775, -0.02872173674404621, 0.02374759316444397, 0.012187032029032707, -0.004434166010469198, -0.003391879377886653, 0.016140112653374672, 0.02538829855620861, -0.062226660549640656, -0.028680864721536636, 0.010010610334575176, -0.039571769535541534, 0.01344669796526432, -0.039031777530908585, -0.017467264086008072, 0.0025954556185752153, 0.0034338918048888445, 0.05843893066048622, -0.014557399787008762, -0.016382714733481407, 0.031207343563437462, -0.01520905364304781, 0.03522863984107971, -0.03481098636984825, 0.04547194391489029, -0.025897689163684845, -0.006325452122837305, -0.02548658475279808, 0.01738155074417591, -0.01653619110584259, 0.047506626695394516, -0.008813567459583282, -0.03669065237045288, -0.008791930042207241, 0.04710063710808754, -0.023572389036417007, 0.03274519741535187, -0.006722599267959595, 0.012181379832327366, -0.05857212468981743, 0.039281804114580154, -0.03321226313710213, 0.026041656732559204, -0.040039584040641785, 0.01756346970796585, -0.019184917211532593, -0.010103446431457996, -0.018211014568805695, -0.03844065964221954, 0.02399323880672455, 0.04396325349807739, 0.03786357119679451, 0.016953807324171066, -0.006792211439460516, 0.0059766280464828014, 0.02267538383603096, -0.03950616717338562, -0.02200087532401085, -0.002319066086784005, -0.02586708962917328, -0.03189118206501007, 0.04527070000767708, 0.02919605001807213, -0.06029953062534332, -0.07348310947418213, 0.059714894741773605, 0.010994095355272293, 0.011340987868607044, 0.006485448684543371, 0.046578604727983475, 0.01767563447356224, 0.03450322151184082, -0.02846863493323326, 0.004722298588603735, -0.00914212316274643, -0.03490661457180977, 0.043802227824926376, -0.006583345588296652, 0.03690176084637642, 0.007246291730552912, -0.026539156213402748, -0.01640848070383072, 0.06441899389028549, 0.03141607344150543, 0.026801899075508118, -0.02230248972773552, -0.045547015964984894, 0.03509591519832611, 0.016757864505052567, -0.041084811091423035, 0.011987751349806786, 0.004949021153151989, -0.02472599223256111, 0.04963232949376106, 0.0003454461111687124, -0.01298537477850914, 0.049015484750270844, 0.04655943438410759, -0.0034264344722032547, 0.06276947259902954, -0.02318543940782547, 0.009124558418989182, 0.049546096473932266, -0.056819044053554535, -0.018044395372271538, -0.02936597354710102, 0.07286568731069565, -0.04054658114910126, 0.02374551072716713, 0.04180803522467613, 0.0034927017986774445, 0.018945062533020973, -0.017822232097387314, -0.05661872401833534, 0.01419384777545929, -0.050187695771455765, 0.08119883388280869, 0.0013729189522564411, -0.05282946676015854, 0.06822235882282257, 0.0323190875351429, -0.06611428409814835, 0.042775824666023254, 0.019935691729187965, 0.04284348711371422, 0.026854809373617172, 0.03441603481769562, -0.05224921926856041, 0.006351115182042122, -0.03004780411720276, 0.03808758780360222, -0.041299544274806976, -0.0240897536277771, 0.03999445214867592, -0.030780017375946045, -0.03060898557305336, 0.04587877541780472, -0.00026987880119122565, -0.009336885996162891, 0.05595652386546135, -0.05888862535357475, -0.03831338509917259, 0.018560290336608887, 0.02967422641813755, -0.023290175944566727, 0.02374960482120514, -0.04651283845305443, 0.02769712544977665, 0.026797175407409668, -0.0018131969263777137, -0.02383068948984146, 0.0069800084456801414, 0.015882164239883423, -0.07946158945560455, -0.04365069046616554, 0.011110438033938408, -0.007729299832135439, -0.031432997435331345, 0.027156418189406395, 0.030156120657920837, 0.04215594008564949, 0.02573362924158573, -0.02631044201552868, 0.018795890733599663, -0.04960920661687851, -0.027284475043416023, 0.025635182857513428, 0.01602174900472164, 0.02850314974784851, -0.005416500382125378, 0.037211306393146515, 0.025848792865872383, 0.020055511966347694, -0.010157481767237186, -0.024871306493878365, -0.04633675888180733, 0.027796823531389236, -0.03559690713882446, 0.011369502171874046, -0.004478389862924814, -0.04728100448846817, -0.03849756717681885, -0.015047222375869751, -0.02765752002596855, 0.038743145763874054, -0.042598456144332886, -0.0036764913238584995, 0.04440820962190628, -0.00371462176553905, -0.05875737592577934, -0.11769511550664902, -0.03601585328578949, -0.06708570569753647, 0.011565158143639565, 0.04159345477819443, -0.04232686012983322, 0.022199157625436783, -0.04758310690522194, -0.05734861642122269, 0.04445149376988411, 0.016813114285469055, -0.025557231158018112, 0.01987120695412159, 0.03669871389865875, -0.06661329418420792, 0.026202909648418427, 0.024461161345243454, -0.05435282364487648, 0.0018521464662626386, 0.020602839067578316, 0.013957643881440163, 0.03485878184437752, 0.016995687037706375, -0.024572452530264854, -0.01399299781769514, -0.04741152003407478, -0.04655010253190994, -0.06951980292797089, 0.007845847867429256, 0.06800797581672668 ]
AdapterHub/bert-base-uncased-pf-squad_v2
[ "bert", "en", "dataset:squad_v2", "arxiv:2104.08247", "adapter-transformers", "question-answering", "adapterhub:qa/squad2" ]
question-answering
{ "architectures": null, "model_type": "bert", "task_specific_params": { "conversational": { "max_length": null }, "summarization": { "early_stopping": null, "length_penalty": null, "max_length": null, "min_length": null, "no_repeat_ngram_size": null, "num_beams": null, "prefix": null }, "text-generation": { "do_sample": null, "max_length": null }, "translation_en_to_de": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_fr": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null }, "translation_en_to_ro": { "early_stopping": null, "max_length": null, "num_beams": null, "prefix": null } } }
10
null
--- language: - en - de - es license: mit tags: - sentence_embedding ---
[ -0.007927545346319675, -0.03455832228064537, -0.0008155943942256272, 0.01726439781486988, 0.04486928880214691, 0.026517555117607117, -0.012177515774965286, 0.010976661927998066, -0.04779558256268501, 0.05505296587944031, 0.00036689051194116473, -0.01734236255288124, 0.020057566463947296, 0.03571638464927673, -0.050042688846588135, 0.005410440731793642, -0.006933929864317179, -0.003165480215102434, -0.041034035384655, -0.005568086635321379, 0.02977893128991127, 0.007696225773543119, -0.01079991739243269, 0.03675287589430809, 0.004308539442718029, 0.015593977645039558, -0.010690908879041672, 0.03254656121134758, 0.024587227031588554, -0.03025897778570652, -0.005656667985022068, -0.03403909504413605, -0.05026913434267044, -0.029128974303603172, -0.0264434777200222, -0.0060269213281571865, 0.020588597282767296, 0.004042492248117924, 0.02036220394074917, 0.047586679458618164, -0.015212805941700935, 0.03711044415831566, -0.022272864356637, -0.04011399671435356, 0.026540551334619522, 0.01793072000145912, -0.04583024978637695, -0.0656142458319664, 0.018027663230895996, -0.03773150220513344, -0.07804528623819351, -0.0885932594537735, -0.012970155104994774, 0.0052415356040000916, 0.0046510533429682255, -0.027546575292944908, -0.07408952713012695, 0.014382058754563332, 0.05553052946925163, -0.05963657796382904, -0.03947709500789642, 0.03564363718032837, -0.10797587037086487, 0.0002965074381791055, 0.035263944417238235, -0.04678518325090408, 0.008381101302802563, -0.028087154030799866, 0.024571485817432404, -0.03489331901073456, 0.056876327842473984, -0.03515034168958664, 0.022150803357362747, -0.06712128967046738, -0.06246234476566315, -0.033018723130226135, 0.03702676668763161, 0.03364381939172745, -0.05290468409657478, 0.058825720101594925, 0.02042648382484913, -0.0056364876218140125, 0.04436897858977318, -0.021059945225715637, -0.04082316532731056, 0.05345079302787781, -0.047880563884973526, -0.010714157484471798, 0.005130220204591751, 0.04732637479901314, -0.03306068852543831, -0.011079047806560993, 0.01864611729979515, -0.026571892201900482, -0.00817319005727768, 0.031872548162937164, 0.05855981260538101, -0.04396606981754303, 0.02361689694225788, 0.045958083122968674, 0.013682943768799305, 0.08154326677322388, -0.028833426535129547, 0.04805837571620941, 0.0025046367663890123, -0.013214724138379097, -0.0163941141217947, -0.032213881611824036, -0.0493663065135479, 0.029284268617630005, 0.006170907523483038, -0.03838207200169563, -0.03729400783777237, 0.0587669238448143, 0.020335089415311813, -0.03079703450202942, 0.06283198297023773, -0.02522893436253071, -0.02346881851553917, -0.051565758883953094, 0.07309681922197342, 0.007076108828186989, -0.018955200910568237, 0.02046508528292179, -0.05380712077021599, 0.006910491734743118, -0.05190890654921532, -0.038518354296684265, 0.0031570775900036097, -0.0064461007714271545, -0.016803085803985596, 0.04008575901389122, 0.012134567834436893, -0.0631340742111206, 0.006977492477744818, 0.0007109104190021753, -0.050286665558815, 0.017980925738811493, 0.045319899916648865, 0.10042505711317062, -0.03781181201338768, -0.03882906213402748, -0.009051594883203506, 0.022921139374375343, -0.013264250941574574, -0.003365621203556657, -0.0012043765746057034, -0.03572367876768112, -0.017795739695429802, -0.013164849020540714, 0.05318700894713402, -0.06119109317660332, -0.02489236369729042, 0.04938094690442085, -0.01304552610963583, 0.04147025942802429, -0.02870720624923706, -0.008637713268399239, 0.002867549192160368, 0.00639760447666049, -0.04346659407019615, 0.033793311566114426, 0.005346955265849829, -0.004367953632026911, -0.042192429304122925, -0.054958585649728775, -0.011733591556549072, 0.07952918857336044, -0.017449410632252693, -0.04152151569724083, -0.06469112634658813, 0.007880481891334057, 0.05240974947810173, 0.00865958072245121, -0.01986812613904476, 0.01585756242275238, 0.05541926622390747, 0.04928618669509888, -0.0012603456852957606, 0.053829267621040344, 0.001925098360516131, -0.039116647094488144, -0.03293617069721222, 0.0253309216350317, 0.03466061130166054, -0.03141302242875099, 0.006677348166704178, 0.06684722006320953, 0.004559495486319065, -0.04521157220005989, -0.018608158454298973, 0.041109949350357056, -0.02401675283908844, 0.0069409506395459175, 0.0194341242313385, -0.013972526416182518, -0.0365302674472332, 0.02628970518708229, -0.019892463460564613, 0.01623968593776226, -0.025959160178899765, 0.001762589905411005, 0.024570010602474213, 0.06314274668693542, 0.026575207710266113, 0.02617167867720127, -0.01462531741708517, 0.08932321518659592, -0.03618711978197098, 0.007832685485482216, -0.026747411116957664, -0.06128982827067375, -0.025602644309401512, 0.043427567929029465, 0.04015188664197922, 0.04316577687859535, -0.008042228408157825, -0.056816715747117996, 0.022865979000926018, 0.08901141583919525, 0.027339911088347435, 0.038833387196063995, -0.033829446882009506, -0.026447083801031113, 0.04914916679263115, 0.03139491751790047, -0.03247884288430214, -0.03475705161690712, 0.04073426499962807, 0.04758916422724724, -0.027430549263954163, -0.0035260296426713467, 0.007035615388303995, 0.010027442127466202, -0.03090384416282177, -0.06361605226993561, 0.02353060059249401, 0.001997490180656314, -0.02264569140970707, 0.03184598684310913, -0.0077409930527210236, 0.015493271872401237, 0.030174635350704193, 0.009547751396894455, 0.01470494270324707, -0.05315328389406204, -0.0011950487969443202, -0.007232107222080231, 0.06804180145263672, -0.029304658994078636, 0.03406662121415138, 0.0018564627971500158, 0.010872719809412956, 0.03276899456977844, -0.04875607043504715, 0.028879113495349884, 0.05457047000527382, 0.005009420216083527, -0.03653174266219139, 0.02207685075700283, 0.023614434525370598, 0.021175730973482132, 0.05956902354955673, 0.0013565128901973367, 0.07380396872758865, 0.00007795394776621833, 0.06026577204465866, 0.057274457067251205, 0.04173416271805763, 0.03793145343661308, 0.04371258243918419, 0.055755093693733215, -0.023711638525128365, -0.01026835571974516, 0.06437012553215027, -0.04209424927830696, 0.014726385474205017, -0.042057011276483536, 0.027804754674434662, -0.0018600615439936519, -0.005161274690181017, 0.026600560173392296, -0.01868315413594246, -0.038935959339141846, 0.026501839980483055, -0.01583375222980976, 0.0029182033613324165, 0.05722470581531525, 0.008710548281669617, 0.019244663417339325, -0.0028335910756140947, -0.035942357033491135, 0.03855383023619652, -0.05200890079140663, -0.04166503623127937, 0.00734682148322463, -0.017724206671118736, -0.012440449558198452, -0.04768296703696251, -0.043562255799770355, -0.05077902972698212, -0.017890803515911102, 0.04801250994205475, 0.03122544102370739, 0.03800586611032486, -0.006830059923231602, 0.013842406682670116, -0.023433784022927284, -0.045938845723867416, -0.05525142699480057, -0.03861748427152634, -0.0283063817769289, -0.05409780517220497, 0.02203967235982418, 0.021069906651973724, 0.032544251531362534, 0.02107173576951027, 0.0050058853812515736, -0.03287617489695549, -0.022594677284359932, 0.05617649480700493, 0.03214685618877411, -0.007510074879974127, -0.035802025347948074, 0.006857335101813078, -0.002311364049091935, 0.015440421178936958, -0.03554494306445122, -0.030322890728712082, 0.05738504230976105, 0.04813892021775246, 0.025356533005833626, 0.015599989332258701, 0.020206192508339882, -0.030770493671298027, -0.05441109836101532, -0.009087230078876019, -0.03329113498330116, -0.030196933075785637, -0.009229945950210094, -0.04543916881084442, -0.03760088235139847, -0.054074976593256, -0.010192527435719967, 0.0011920721735805273, 0.015077123418450356, 0.03182996064424515, 0.04103189706802368, 0.04757954925298691, 0.003579565789550543, -0.03140213340520859, 0.0005401926464401186, 0.08836665749549866, 0.00541568361222744, -0.010058771818876266, -0.06411243230104446, -0.04936087504029274, 0.05370904505252838, 0.013427321799099445, 0.001378946821205318, -0.024782421067357063, 0.061482984572649, 0.021468939259648323, 0.015147455036640167, 0.02093346230685711, -0.02207976020872593, -0.02770664170384407, 0.0188408475369215, -0.006672834977507591, -0.04727577418088913, -0.05265797674655914, -0.008123072795569897, 0.00424283929169178, 0.05187884345650673, -0.07164670526981354, -0.028332529589533806, -0.019122842699289322, 0.008974321186542511, 0.042853906750679016, 0.00514807878062129, -0.02656633034348488, 0.014606593176722527, -0.02636895701289177, -0.019061138853430748, 0.005217208527028561, -0.007202887907624245, 0.007793063297867775, 0.06348346173763275, 0.03022104687988758, -0.05629021301865578, 0.04773368313908577, 0.019463004544377327, 0.05027860030531883, 0.051875174045562744, -0.016245855018496513, 0.06537006795406342, -0.021655922755599022, 0.0033134138211607933, 0.007658153772354126, -0.015468702651560307, -0.05876365676522255, -0.07441845536231995, -0.008761662058532238, 0.024195101112127304, -0.020588327199220657, 0.0039826855063438416, 0.053482018411159515, -0.020833108574151993, 0.01420215517282486, 0.006691658403724432, 0.0014429556904360652, 0.030374353751540184, -0.0387403704226017, 0.058337900787591934, -0.03501596301794052, 0.022197693586349487, -0.03944455087184906, -0.007586142513900995, -0.025983909144997597, -0.013988816179335117, -0.0026070810854434967, 0.07942205667495728, 0.009143129922449589, 0.03084615059196949, 0.0798059031367302, 0.028249617666006088, -0.03176539018750191, 0.053000468760728836, 0.02503419667482376, -0.0036428847815841436, -0.059143342077732086, -0.0009887523483484983, -0.018170133233070374, -0.03232472762465477, 0.0076625412330031395, -0.04402850940823555, 0.022737927734851837, 0.03035689704120159, 0.011687957681715488, -0.011129270307719707, 0.0017144655575975776, -0.015135033056139946, -0.042547211050987244, -0.05074598267674446, -0.018476085737347603, 0.0007931763539090753, -0.017009569332003593, 0.039064228534698486, 0.05553562566637993, 0.010247710160911083, 0.05785110965371132, 0.0272865928709507, -0.03451652079820633, -0.035189591348171234, 0.027675095945596695, 0.026377808302640915, -0.06209198758006096, -0.06347119063138962, -0.03075586073100567, 0.03162462264299393, 0.052778396755456924, 0.011141208000481129, -0.09189064800739288, 0.00007427797390846536, 0.062084928154945374, -0.02752014994621277, 0.045126814395189285, -0.011589864268898964, 0.05388633906841278, 0.06049644947052002, -0.02242889069020748, 0.022343993186950684, -0.026300275698304176, 0.031369321048259735, -0.019087383523583412, 0.028190255165100098, -0.02196379005908966, -0.04142674803733826, -0.0451042503118515, 0.013585233129560947, -0.0011122891446575522, 0.045800842344760895, 0.041100334376096725, -0.053882841020822525, -0.0648484006524086, -0.0066234041005373, 0.04170764982700348, -0.06015525758266449, 0.002422345569357276, 0.040906231850385666, 0.0632844865322113, -0.0373968631029129, -0.03463851287961006, -0.015053536742925644, 0.013150211423635483, 0.05432479828596115, -0.020333781838417053, -0.03169357031583786, -0.05001714825630188, 0.034957654774188995, -0.00072053651092574, -0.02906891703605652, -0.09493771195411682, -0.0036602066829800606, -0.00966425146907568, -0.02708037756383419, 0.05594688281416893, 0.041556477546691895, 0.042082954198122025, 0.05031337961554527, -0.007154884282499552, 0.031737711280584335, -0.027457771822810173, 0.042158469557762146, -0.03004959598183632, -0.012152569368481636, -0.002737863687798381, -0.03173347935080528, -0.041838303208351135, -0.04504554718732834, -0.05758821964263916, -0.04045921564102173, -0.0011318310862407088, 0.03961977735161781, -0.006877092644572258, 0.022698400542140007, -0.00818652007728815, 0.018615176901221275, -0.005269695073366165, -0.011246410198509693, 0.00947383139282465, -0.0376649871468544, -0.08844304829835892, -0.02922418899834156, 0.020316017791628838, 0.0011105703888460994, 0.018588773906230927, 0.013469735160470009, 0.009049477055668831, 0.02802335098385811, -0.002644410589709878, -0.025746677070856094, 0.0216992124915123, -0.002460695104673505, -0.05306459963321686, -0.018195537850260735, -0.004199685994535685, 0.019922660663723946, 0.042099323123693466, -0.04263143241405487, 0.03456152230501175, -0.0016863992204889655, -0.03767268732190132, -0.01923932507634163, 0.009437951259315014, -0.003457925980910659, -0.07288599759340286, -0.04365134611725807, -0.03898703679442406, -0.03763648495078087, 0.0331716388463974, -0.02003893256187439, -0.03455664590001106, 0.016146857291460037, 0.03228254243731499, 0.011704234406352043, 0.02468714863061905, -0.04965376481413841, 0.0306679867208004, -0.01782495528459549, 0.00883767381310463, -0.068478062748909, 0.026770712807774544, -0.016630126163363457, 0.005691905971616507, -0.016623452305793762, 0.002482021227478981, -0.058200061321258545, 0.0422835573554039, -0.023532208055257797, -0.017658166587352753, -0.00574768939986825, 0.00035238542477600276, -0.030789243057370186, 0.039873503148555756, -0.011665062047541142, -0.007065052632242441, -0.016114093363285065, 0.04677847772836685, -0.06579727679491043, 0.001874574227258563, -0.008035688661038876, 0.00570640480145812, -0.041442807763814926, -0.021458938717842102, -0.003151749260723591, -0.05789042264223099, 0.010607494041323662, 0.04305117577314377, 0.005437081679701805, -0.01179342158138752, -0.020215382799506187, -0.008055861108005047, 0.02366020530462265, -0.05792335048317909, -0.016466965898871422, -0.017567217350006104, 0.00952080450952053, 0.017722003161907196, 0.05700971931219101, 0.04161889851093292, -0.05506236478686333, -0.05909515917301178, 0.047543808817863464, 0.011919972486793995, -0.011739040724933147, -0.00005749146293965168, 0.030998073518276215, 0.0530313178896904, 0.03117685206234455, -0.02500472217798233, -0.005675862077623606, -0.009574269875884056, 0.000876821402925998, 0.005630658008158207, -0.004447083920240402, -0.00832899659872055, 0.004472632426768541, -0.026191355660557747, -0.0200619176030159, 0.09781237691640854, 0.029608028009533882, 0.027089759707450867, -0.015380694530904293, -0.046922069042921066, 0.020539218559861183, 0.035650476813316345, -0.035199131816625595, 0.017453640699386597, 0.044616252183914185, -0.03350204974412918, 0.05135093629360199, -0.017537778243422508, 0.022054409608244896, 0.06473952531814575, 0.015987101942300797, -0.020074300467967987, 0.017881115898489952, -0.009781489148736, -0.028119860216975212, 0.04249894246459007, -0.07067479938268661, -0.01432369276881218, -0.03838755935430527, 0.06205510348081589, -0.054992981255054474, 0.039961494505405426, 0.046885162591934204, 0.03319190815091133, 0.040412791073322296, -0.03323961794376373, -0.020840909332036972, -0.006182203069329262, -0.041406530886888504, 0.06346608698368073, -0.009987344034016132, -0.05544508621096611, 0.08187276124954224, 0.011771478690207005, -0.08345133811235428, 0.02471233904361725, 0.0026807209942489862, 0.021741461008787155, 0.024406492710113525, 0.01682446151971817, -0.05765863135457039, 0.04822472482919693, -0.02986408770084381, 0.02612711675465107, -0.06363000720739365, -0.013777615502476692, -0.012868884019553661, -0.039727583527565, -0.01281044166535139, 0.02135879173874855, -0.042634185403585434, -0.0003635880711954087, 0.003513982752338052, -0.0483098067343235, -0.06170996278524399, 0.0170619934797287, 0.0196839552372694, -0.01675039529800415, -0.004933370742946863, -0.0326518677175045, 0.0026568504981696606, 0.033746201545000076, -0.010562974028289318, -0.02158491127192974, -0.00496148644015193, 0.023851489648222923, -0.07815153896808624, -0.03240843862295151, 0.014932256191968918, 0.018446655943989754, -0.02872113510966301, 0.012172270566225052, -0.013793982565402985, 0.013582620769739151, 0.026311073452234268, 0.002619704697281122, 0.016829920932650566, -0.05541914328932762, 0.00820875633507967, 0.004054991528391838, 0.02337334305047989, 0.01275046356022358, -0.03165546804666519, 0.03093698062002659, 0.023154746741056442, 0.04463300108909607, -0.002577756065875292, -0.04243549332022667, -0.01684529334306717, 0.04361143335700035, -0.04323679581284523, 0.03363806754350662, -0.005096463952213526, -0.06550195813179016, -0.03924056142568588, -0.012860781513154507, 0.006653777789324522, 0.026689160615205765, -0.05015324801206589, 0.016268756240606308, 0.02213396690785885, -0.013974585570394993, -0.03865291178226471, -0.09217067062854767, -0.04624723643064499, -0.028556548058986664, 0.02707192301750183, 0.03360414132475853, -0.032752104103565216, 0.008344343863427639, -0.02672652155160904, -0.045130785554647446, 0.02930452674627304, 0.0026814285665750504, -0.04975396767258644, 0.061081986874341965, 0.0665765106678009, -0.05199505388736725, -0.0035639172419905663, 0.05317265912890434, -0.03853727877140045, 0.055735547095537186, 0.008677635341882706, 0.037766918540000916, 0.022886961698532104, 0.027559133246541023, 0.002870196709409356, -0.024340512230992317, -0.056715141981840134, -0.045626163482666016, -0.02434280887246132, 0.02167668379843235, 0.07582303881645203 ]