sha
null
last_modified
null
library_name
stringclasses
154 values
text
stringlengths
1
900k
metadata
stringlengths
2
348k
pipeline_tag
stringclasses
45 values
id
stringlengths
5
122
tags
sequencelengths
1
1.84k
created_at
stringlengths
25
25
arxiv
sequencelengths
0
201
languages
sequencelengths
0
1.83k
tags_str
stringlengths
17
9.34k
text_str
stringlengths
0
389k
text_lists
sequencelengths
0
722
processed_texts
sequencelengths
1
723
tokens_length
sequencelengths
1
723
input_texts
sequencelengths
1
61
embeddings
sequencelengths
768
768
null
null
transformers
# RobertaNER This model fine-tuned for the Named Entity Recognition (NER) task on a mixed NER dataset collected from [ARMAN](https://github.com/HaniehP/PersianNER), [PEYMA](http://nsurl.org/2019-2/tasks/task-7-named-entity-recognition-ner-for-farsi/), and [WikiANN](https://elisa-ie.github.io/wikiann/) that covered ten types of entities: - Date (DAT) - Event (EVE) - Facility (FAC) - Location (LOC) - Money (MON) - Organization (ORG) - Percent (PCT) - Person (PER) - Product (PRO) - Time (TIM) ## Dataset Information | | Records | B-DAT | B-EVE | B-FAC | B-LOC | B-MON | B-ORG | B-PCT | B-PER | B-PRO | B-TIM | I-DAT | I-EVE | I-FAC | I-LOC | I-MON | I-ORG | I-PCT | I-PER | I-PRO | I-TIM | |:------|----------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:|--------:| | Train | 29133 | 1423 | 1487 | 1400 | 13919 | 417 | 15926 | 355 | 12347 | 1855 | 150 | 1947 | 5018 | 2421 | 4118 | 1059 | 19579 | 573 | 7699 | 1914 | 332 | | Valid | 5142 | 267 | 253 | 250 | 2362 | 100 | 2651 | 64 | 2173 | 317 | 19 | 373 | 799 | 387 | 717 | 270 | 3260 | 101 | 1382 | 303 | 35 | | Test | 6049 | 407 | 256 | 248 | 2886 | 98 | 3216 | 94 | 2646 | 318 | 43 | 568 | 888 | 408 | 858 | 263 | 3967 | 141 | 1707 | 296 | 78 | ## Evaluation The following tables summarize the scores obtained by model overall and per each class. **Overall** | Model | accuracy | precision | recall | f1 | |:----------:|:--------:|:---------:|:--------:|:--------:| | Roberta | 0.994849 | 0.949816 | 0.960235 | 0.954997 | **Per entities** | | number | precision | recall | f1 | |:---: |:------: |:---------: |:--------: |:--------: | | DAT | 407 | 0.844869 | 0.869779 | 0.857143 | | EVE | 256 | 0.948148 | 1.000000 | 0.973384 | | FAC | 248 | 0.957529 | 1.000000 | 0.978304 | | LOC | 2884 | 0.965422 | 0.968100 | 0.966759 | | MON | 98 | 0.937500 | 0.918367 | 0.927835 | | ORG | 3216 | 0.943662 | 0.958333 | 0.950941 | | PCT | 94 | 1.000000 | 0.968085 | 0.983784 | | PER | 2646 | 0.957030 | 0.959562 | 0.958294 | | PRO | 318 | 0.963636 | 1.000000 | 0.981481 | | TIM | 43 | 0.739130 | 0.790698 | 0.764045 | ## How To Use You use this model with Transformers pipeline for NER. ### Installing requirements ```bash pip install transformers ``` ### How to predict using pipeline ```python from transformers import AutoTokenizer from transformers import AutoModelForTokenClassification # for pytorch from transformers import TFAutoModelForTokenClassification # for tensorflow from transformers import pipeline model_name_or_path = "HooshvareLab/roberta-fa-zwnj-base-ner" tokenizer = AutoTokenizer.from_pretrained(model_name_or_path) model = AutoModelForTokenClassification.from_pretrained(model_name_or_path) # Pytorch # model = TFAutoModelForTokenClassification.from_pretrained(model_name_or_path) # Tensorflow nlp = pipeline("ner", model=model, tokenizer=tokenizer) example = "در سال ۲۰۱۳ درگذشت و آندرتیکر و کین برای او مراسم یادبود گرفتند." ner_results = nlp(example) print(ner_results) ``` ## Questions? Post a Github issue on the [ParsNER Issues](https://github.com/hooshvare/parsner/issues) repo.
{"language": "fa"}
token-classification
HooshvareLab/roberta-fa-zwnj-base-ner
[ "transformers", "pytorch", "tf", "jax", "roberta", "token-classification", "fa", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "fa" ]
TAGS #transformers #pytorch #tf #jax #roberta #token-classification #fa #autotrain_compatible #endpoints_compatible #region-us
RobertaNER ========== This model fine-tuned for the Named Entity Recognition (NER) task on a mixed NER dataset collected from ARMAN, PEYMA, and WikiANN that covered ten types of entities: * Date (DAT) * Event (EVE) * Facility (FAC) * Location (LOC) * Money (MON) * Organization (ORG) * Percent (PCT) * Person (PER) * Product (PRO) * Time (TIM) Dataset Information ------------------- Evaluation ---------- The following tables summarize the scores obtained by model overall and per each class. Overall Per entities How To Use ---------- You use this model with Transformers pipeline for NER. ### Installing requirements ### How to predict using pipeline Questions? ---------- Post a Github issue on the ParsNER Issues repo.
[ "### Installing requirements", "### How to predict using pipeline\n\n\nQuestions?\n----------\n\n\nPost a Github issue on the ParsNER Issues repo." ]
[ "TAGS\n#transformers #pytorch #tf #jax #roberta #token-classification #fa #autotrain_compatible #endpoints_compatible #region-us \n", "### Installing requirements", "### How to predict using pipeline\n\n\nQuestions?\n----------\n\n\nPost a Github issue on the ParsNER Issues repo." ]
[ 46, 5, 28 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #roberta #token-classification #fa #autotrain_compatible #endpoints_compatible #region-us \n### Installing requirements### How to predict using pipeline\n\n\nQuestions?\n----------\n\n\nPost a Github issue on the ParsNER Issues repo." ]
[ -0.08314726501703262, 0.1157490536570549, -0.0024343165569007397, 0.027470091357827187, 0.15077988803386688, -0.055441174656152725, 0.009649896994233131, 0.05865620821714401, -0.004030258860439062, 0.07457054406404495, 0.23936396837234497, 0.12602156400680542, 0.02124354988336563, 0.13725924491882324, -0.04724296182394028, -0.21031403541564941, 0.016680575907230377, -0.0034894300624728203, -0.020785991102457047, 0.1668972373008728, 0.09944336861371994, -0.031096793711185455, 0.10044504702091217, 0.006666901521384716, -0.1671839952468872, 0.027169538661837578, -0.010615278966724873, -0.0627947598695755, -0.015123607590794563, 0.03775547072291374, 0.15264929831027985, 0.044412028044462204, 0.017027566209435463, -0.02704634517431259, 0.025537269189953804, 0.06455747038125992, -0.03356870263814926, 0.07981016486883163, 0.05259951204061508, -0.04604608565568924, -0.01439009327441454, -0.036919668316841125, 0.04661170393228531, 0.028825579211115837, -0.11586904525756836, -0.09706321358680725, -0.04486660286784172, 0.0588417686522007, 0.13184666633605957, 0.10126706957817078, -0.014235773123800755, 0.22184930741786957, -0.13085944950580597, 0.11047261208295822, 0.1918710470199585, -0.2811194062232971, -0.06069944053888321, 0.029089638963341713, 0.05584809184074402, 0.0997849553823471, 0.040924251079559326, -0.010161184705793858, 0.07724049687385559, 0.03963029757142067, 0.042064402252435684, -0.046577077358961105, 0.013261121697723866, 0.02835107408463955, -0.22755281627178192, -0.07103249430656433, 0.20768319070339203, 0.0135818375274539, 0.015749558806419373, -0.019775129854679108, -0.11099427193403244, -0.08198975026607513, 0.009613492526113987, -0.06172497570514679, -0.06945565342903137, -0.04478198289871216, -0.025501661002635956, -0.052453890442848206, -0.06855089217424393, -0.13105490803718567, -0.13371889293193817, 0.3146938979625702, 0.07308201491832733, 0.10985362529754639, -0.1049187034368515, 0.13928741216659546, -0.03321068361401558, -0.16522809863090515, 0.04235371947288513, -0.11852925270795822, -0.08747580647468567, 0.01613384671509266, 0.02036813646554947, 0.07129538059234619, 0.03437526151537895, 0.20566865801811218, 0.05409344285726547, -0.02140517346560955, 0.09228525310754776, 0.06480894982814789, 0.020916832610964775, 0.1064961701631546, -0.16491244733333588, -0.04991105571389198, 0.03291124850511551, 0.01914382167160511, -0.035575270652770996, -0.03743569552898407, -0.07400871068239212, 0.00820297934114933, 0.012058424763381481, 0.13109613955020905, 0.10332998633384705, 0.013075956143438816, -0.005623199511319399, -0.023578666150569916, 0.14202284812927246, -0.08717141300439835, -0.012200528755784035, -0.09873179346323013, -0.06853648275136948, 0.029903946444392204, 0.01856164261698723, 0.04841245338320732, -0.08631554245948792, 0.11184821277856827, -0.07983697950839996, -0.08309679478406906, -0.06844490021467209, -0.10036995261907578, -0.03587658703327179, -0.11769858747720718, 0.03487762436270714, -0.15276546776294708, -0.1371389627456665, -0.005072765052318573, 0.043520841747522354, -0.03058587945997715, -0.08380499482154846, 0.1458529531955719, -0.09023533016443253, -0.014760620892047882, -0.05295327305793762, 0.07029148936271667, -0.05446139723062515, 0.039711058139801025, 0.0674833282828331, -0.00370753463357687, 0.028820961713790894, 0.005023942328989506, -0.07129400968551636, 0.012969598174095154, -0.18187734484672546, -0.004457580391317606, -0.11953572183847427, 0.1314530074596405, -0.13542288541793823, -0.14175209403038025, -0.018025636672973633, 0.0173020139336586, 0.0035067861899733543, 0.11007373780012131, -0.008014373481273651, -0.06143788620829582, 0.14543089270591736, -0.1279568374156952, -0.16542400419712067, 0.13078206777572632, 0.0802203118801117, -0.08443602919578552, 0.07044380903244019, 0.05201427638530731, 0.15630166232585907, -0.25284242630004883, 0.11231815814971924, 0.14984701573848724, -0.12077555805444717, 0.004398886580020189, 0.08219752460718155, 0.019048510119318962, -0.09389249235391617, 0.03433729708194733, -0.10605493187904358, 0.05014200881123543, -0.0652054026722908, -0.03031185269355774, -0.06821055710315704, -0.035861849784851074, -0.15816102921962738, -0.0024307863786816597, 0.016676899045705795, 0.009983901865780354, -0.10487823933362961, -0.09148532897233963, 0.04570696875452995, 0.07384612411260605, -0.01847788505256176, -0.08259458839893341, 0.058007314801216125, -0.0406360849738121, -0.007113311439752579, -0.13887523114681244, -0.07365257292985916, 0.0013801574241369963, 0.03585198521614075, -0.020901266485452652, 0.0836431160569191, 0.05182966962456703, -0.00047610592446289957, 0.041989658027887344, -0.03307776153087616, 0.1060551181435585, 0.005446014925837517, -0.07313042879104614, -0.14594848453998566, 0.030108369886875153, -0.03313938155770302, -0.03058239258825779, 0.015277566388249397, 0.027119051665067673, 0.025469830259680748, 0.14186111092567444, 0.013107924722135067, 0.02860787697136402, 0.01884581334888935, 0.004415638279169798, -0.007814868353307247, -0.061258282512426376, 0.007733324076980352, -0.05275309830904007, -0.06788262724876404, 0.13182486593723297, -0.11684724688529968, 0.2827913165092468, 0.1607523262500763, 0.00972668081521988, -0.057979416102170944, -0.01805453561246395, -0.11784804612398148, -0.04894249141216278, 0.055962033569812775, -0.05870706960558891, 0.04952350631356239, 0.006125899497419596, 0.09244890511035919, -0.05816219002008438, -0.06461428105831146, 0.03919234126806259, -0.033172622323036194, 0.009691647253930569, 0.10647180676460266, 0.06443199515342712, -0.14080810546875, 0.12258997559547424, 0.09909582138061523, -0.1349107176065445, -0.000057852121244650334, -0.016484908759593964, -0.11721070110797882, -0.01460346207022667, 0.05269608274102211, 0.00812066625803709, 0.1048794686794281, -0.04902612790465355, -0.03229152411222458, 0.07248307019472122, 0.031738780438899994, 0.05277424305677414, -0.13967642188072205, -0.07491675019264221, -0.01135061401873827, -0.008064272813498974, 0.004093965515494347, 0.03324409946799278, -0.0015411830972880125, 0.09096402674913406, 0.0023262843023985624, -0.08059092611074448, 0.005491225980222225, -0.04104916751384735, -0.0861237645149231, 0.19632898271083832, -0.04658551141619682, -0.24616876244544983, -0.08532200753688812, -0.06832781434059143, 0.008477128110826015, -0.00626144465059042, 0.050314221531152725, -0.12994466722011566, -0.10653116554021835, 0.0013854993740096688, 0.040232639759778976, -0.11467739194631577, 0.015464072115719318, -0.15738792717456818, 0.034708455204963684, 0.01465985644608736, -0.0828220322728157, -0.015337096527218819, 0.0003443229361437261, -0.016169676557183266, 0.07912825047969818, -0.01051692571491003, 0.11658786982297897, 0.12275233119726181, 0.05053313821554184, 0.04310004785656929, -0.008709359914064407, 0.26532137393951416, -0.09214318543672562, 0.03331665322184563, 0.2507035434246063, -0.023762984201312065, 0.10093402862548828, 0.18432049453258514, 0.03940481320023537, -0.0506143793463707, 0.05415162071585655, -0.022306857630610466, -0.08486774563789368, -0.22221365571022034, -0.05195089802145958, -0.09000574797391891, 0.032786350697278976, 0.15920297801494598, 0.04189836233854294, -0.0018009027699008584, 0.09843175113201141, -0.11388055235147476, -0.031929247081279755, -0.035528428852558136, 0.12857967615127563, -0.03888290002942085, -0.05130503326654434, 0.13075590133666992, -0.007711945567280054, -0.09169964492321014, 0.08524680137634277, 0.09933336824178696, 0.1694188266992569, 0.0035107694566249847, 0.11322321742773056, 0.10834963619709015, 0.19368542730808258, 0.11132517457008362, -0.025373516604304314, 0.06598980724811554, -0.07099796086549759, 0.050978969782590866, -0.03892536833882332, 0.051927823573350906, 0.08896785229444504, 0.010152818635106087, -0.05842503160238266, 0.012471538968384266, 0.0060201711021363735, -0.015234749764204025, 0.17205964028835297, 0.04930586367845535, -0.280948668718338, 0.034664418548345566, 0.020123641937971115, -0.0306111890822649, -0.06068612262606621, 0.07410135865211487, -0.06464013457298279, -0.0948401391506195, 0.011763378977775574, -0.049230463802814484, 0.16284091770648956, 0.049177397042512894, -0.018117323517799377, 0.07527767866849899, 0.12119657546281815, 0.0058889263309538364, 0.11012036353349686, -0.27643832564353943, 0.2200266271829605, 0.03494783863425255, 0.003918731119483709, -0.01829671487212181, 0.02162565104663372, -0.04778594151139259, 0.11271091550588608, 0.13854585587978363, -0.016102779656648636, 0.025054777041077614, -0.06176191568374634, -0.11831507086753845, 0.046552687883377075, 0.0613604336977005, -0.07339560985565186, 0.004933407995849848, 0.015122359618544579, 0.012561689130961895, 0.010931172408163548, -0.1402684897184372, -0.13436703383922577, -0.10839482396841049, 0.031071072444319725, -0.050109222531318665, -0.010410601273179054, -0.06911157816648483, -0.04252147302031517, -0.07028321176767349, 0.25856447219848633, -0.1391908973455429, -0.11982747167348862, -0.10865522921085358, 0.021108614280819893, 0.1452808380126953, -0.05658236891031265, 0.031105071306228638, -0.11010986566543579, 0.02298845164477825, 0.03262938931584358, -0.06351742148399353, 0.11080057173967361, -0.16324426233768463, -0.08697471022605896, -0.06554674357175827, 0.1912316381931305, 0.031748779118061066, 0.01419535931199789, -0.05883386731147766, -0.007471312768757343, -0.2096358984708786, -0.16009433567523956, -0.031170176342129707, -0.0170169435441494, 0.1690216064453125, 0.09847430139780045, 0.0397191047668457, 0.07169955968856812, -0.057285238057374954, 0.04546041786670685, 0.0870266705751419, 0.2155611217021942, -0.04694588482379913, 0.010380074381828308, 0.13787028193473816, 0.09990522265434265, -0.20819203555583954, -0.05626958608627319, 0.09024599194526672, -0.030275385826826096, -0.018553070724010468, -0.04533814638853073, 0.14742523431777954, 0.06360466033220291, -0.022093703970313072, 0.06108074635267258, -0.24053838849067688, -0.08324182778596878, 0.16091518104076385, 0.0664154663681984, 0.09580398350954056, -0.15879224240779877, -0.05557127296924591, 0.009820621460676193, -0.20671163499355316, 0.09376779943704605, -0.13556480407714844, -0.005210389383137226, -0.05447622761130333, 0.09577271342277527, -0.035462673753499985, -0.10760746896266937, 0.17375580966472626, -0.03756047785282135, -0.012040256522595882, -0.04088612645864487, 0.10118464380502701, -0.024374740198254585, -0.03569683060050011, 0.12374386936426163, -0.046981051564216614, 0.11633352190256119, -0.13510479032993317, -0.002446902683004737, -0.06403981894254684, 0.09510179609060287, -0.032252777367830276, -0.06200619041919708, -0.07137533277273178, -0.04526998847723007, -0.05343450978398323, -0.06665019690990448, 0.10874182730913162, 0.028209006413817406, 0.11348649114370346, 0.11340004950761795, -0.027620242908596992, -0.0756487175822258, -0.19637559354305267, 0.027526607736945152, -0.018696429207921028, 0.14508767426013947, -0.15007659792900085, -0.004858935717493296, 0.13814674317836761, 0.06363997608423233, 0.046480223536491394, 0.005166235845535994, -0.06626269966363907, -0.1169055625796318, 0.05049051716923714, -0.18578602373600006, 0.007082332856953144, -0.060944102704524994, 0.0738421157002449, -0.060931723564863205, 0.013413330540060997, 0.06415382772684097, -0.01764046587049961, 0.0008026172290556133, 0.04755751043558121, 0.005945536773651838, -0.0787297785282135, 0.1643625646829605, 0.16220466792583466, 0.09006861597299576, -0.14321286976337433, -0.0003868203202728182, 0.010591584257781506, -0.0702318325638771, -0.053422003984451294, 0.06002666801214218, -0.16581924259662628, -0.07079251855611801, -0.04813867434859276, -0.04406767338514328, -0.01714206673204899, -0.07049337029457092, -0.013379241339862347, -0.05926163122057915, 0.049175914376974106, 0.016086436808109283, 0.07961346209049225, 0.02652103081345558, 0.05121837183833122, 0.004447281826287508, -0.011207660660147667, 0.05973225086927414, 0.03554869815707207, 0.04754083976149559, -0.22467608749866486, 0.002259111264720559, 0.0420265756547451, 0.14139075577259064, -0.0938996747136116, 0.011128650978207588, -0.15636029839515686, 0.07393409311771393, -0.072624072432518, 0.010956896468997002, -0.0831749364733696, -0.010181080549955368, 0.015198835171759129, -0.1406077891588211, -0.08549940586090088, 0.023965831845998764, -0.07005263864994049, -0.008332770317792892, 0.030681107193231583, 0.012550064362585545, -0.07416663318872452, 0.008833841420710087, 0.05914588272571564, -0.02425834722816944, 0.03248652443289757, 0.08854859322309494, -0.032678913325071335, -0.004188701044768095, 0.010969574563205242, 0.013437898829579353, 0.06362362205982208, 0.041364338248968124, 0.07000403106212616, -0.028407983481884003, 0.04030856490135193, 0.0044661895371973515, -0.014113156124949455, 0.03898794949054718, 0.08786621689796448, -0.1700049340724945, -0.001974457176402211, 0.021444842219352722, -0.07739338278770447, -0.0902564749121666, -0.035209715366363525, 0.0989825651049614, 0.07956255972385406, 0.1453382968902588, 0.03378317877650261, 0.055191267281770706, -0.12032028287649155, -0.0001896444009616971, -0.002034800359979272, -0.02482384257018566, 0.07056494802236557, 0.045820459723472595, 0.016430020332336426, -0.03386782854795456, 0.27377042174339294, 0.022325025871396065, 0.11838187277317047, 0.08181588351726532, 0.06454392522573471, 0.14701393246650696, 0.010378356091678143, 0.011076361872255802, 0.029086340218782425, 0.054266080260276794, -0.11993568390607834, 0.019036445766687393, -0.01246595662087202, -0.19556061923503876, 0.016226302832365036, 0.053779520094394684, 0.02188263274729252, -0.015993837267160416, -0.016196897253394127, -0.05947217717766762, -0.13006827235221863, -0.17369528114795685, -0.013674244284629822, 0.0036866653244942427, 0.03767700493335724, -0.017028864473104477, 0.22910188138484955, 0.03303149715065956, -0.046731095761060715, 0.07121612876653671, -0.08753478527069092, -0.14482545852661133, -0.09998323768377304, -0.013833152130246162, -0.10345000773668289, 0.021412931382656097, -0.057007528841495514, -0.03704984113574028, 0.026030119508504868, 0.0836954265832901, -0.025972889736294746, 0.13466858863830566, 0.13411551713943481, -0.11914502084255219, -0.017393067479133606, 0.043836772441864014, 0.0889211967587471, 0.12505804002285004, 0.06539466977119446, 0.02893790975213051, -0.04409986734390259, 0.016214091330766678, 0.009461045265197754, -0.05122613161802292, 0.06550044566392899, -0.06288494169712067, -0.09030301123857498, -0.07182679325342178, 0.08871855586767197, -0.012974018231034279, 0.24809086322784424, -0.006494742352515459, 0.020495807752013206, -0.018265873193740845, 0.21081461012363434, -0.07955475151538849, -0.037643466144800186, -0.1301438808441162, 0.3499332070350647, -0.03290624916553497, 0.015627365559339523, -0.05728970468044281, -0.08448745310306549, -0.09837445616722107, 0.2750902473926544, 0.19764256477355957, -0.03205505758523941, 0.020155558362603188, 0.020372547209262848, -0.00930830929428339, 0.0021201001945883036, 0.07123357802629471, 0.09183276444673538, 0.28747615218162537, -0.07863809168338776, -0.01847771555185318, -0.08848430216312408, -0.03341526538133621, -0.12128672748804092, -0.05749163404107094, 0.08438684046268463, -0.06237902119755745, -0.0731426551938057, 0.13581831753253937, -0.1424146294593811, -0.08578494936227798, -0.04190091788768768, -0.03237752616405487, -0.11909107863903046, -0.019403865560889244, 0.14465934038162231, -0.01532378327101469, 0.04850040748715401, -0.05396115034818649, -0.008097575046122074, -0.03424859046936035, -0.024197297170758247, -0.08556913584470749, -0.10719098150730133, 0.11122438311576843, 0.05353391543030739, -0.013409752398729324, -0.03543439134955406, 0.2316397875547409, 0.08445849269628525, -0.036368753761053085, -0.10189777612686157, 0.03527619317173958, 0.025127215310931206, -0.1385604292154312, 0.004627632442861795, 0.11763685196638107, 0.028747323900461197, -0.11020351946353912, 0.0368487723171711, -0.0775662362575531, -0.08750781416893005, -0.1627170890569687, 0.08775591105222702, -0.1881382167339325, 0.07972755283117294, -0.037216149270534515, 0.08492570370435715, 0.0990600734949112, -0.06385629624128342, 0.025133764371275902, -0.09667880833148956, 0.05184201896190643, 0.04629021883010864, -0.021458106115460396, 0.031146449968218803, -0.14890699088573456, -0.03859992325305939, 0.10861633718013763, -0.02889947220683098, -0.05991946905851364, 0.00967775285243988, -0.047107476741075516, -0.04870201274752617, -0.01974840648472309, 0.06054527685046196, 0.01518141757696867, 0.10057353973388672, -0.002918398706242442, -0.11534338444471359, 0.010921618901193142, 0.023036906495690346, -0.20827749371528625, -0.0818469449877739 ]
null
null
transformers
# Roberta This model can tackle the zero-width non-joiner character for Persian writing. Also, the model was trained on new multi-types corpora with a new set of vocabulary. ## Questions? Post a Github issue on the [ParsRoBERTa Issues](https://github.com/hooshvare/parsbert/issues) repo.
{"language": "fa", "license": "apache-2.0"}
fill-mask
HooshvareLab/roberta-fa-zwnj-base
[ "transformers", "pytorch", "tf", "jax", "roberta", "fill-mask", "fa", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "fa" ]
TAGS #transformers #pytorch #tf #jax #roberta #fill-mask #fa #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# Roberta This model can tackle the zero-width non-joiner character for Persian writing. Also, the model was trained on new multi-types corpora with a new set of vocabulary. ## Questions? Post a Github issue on the ParsRoBERTa Issues repo.
[ "# Roberta\nThis model can tackle the zero-width non-joiner character for Persian writing. Also, the model was trained on new multi-types corpora with a new set of vocabulary.", "## Questions?\nPost a Github issue on the ParsRoBERTa Issues repo." ]
[ "TAGS\n#transformers #pytorch #tf #jax #roberta #fill-mask #fa #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# Roberta\nThis model can tackle the zero-width non-joiner character for Persian writing. Also, the model was trained on new multi-types corpora with a new set of vocabulary.", "## Questions?\nPost a Github issue on the ParsRoBERTa Issues repo." ]
[ 53, 44, 21 ]
[ "passage: TAGS\n#transformers #pytorch #tf #jax #roberta #fill-mask #fa #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# Roberta\nThis model can tackle the zero-width non-joiner character for Persian writing. Also, the model was trained on new multi-types corpora with a new set of vocabulary.## Questions?\nPost a Github issue on the ParsRoBERTa Issues repo." ]
[ 0.013316607102751732, 0.016602257266640663, -0.004560746252536774, 0.05762382596731186, 0.11933447420597076, 0.009296347387135029, 0.16469180583953857, 0.1337018758058548, 0.0056284754537045956, 0.000307341426378116, 0.19010688364505768, 0.011213063262403011, 0.04161045700311661, 0.08819986879825592, 0.05163419991731644, -0.29944539070129395, 0.03927408903837204, -0.03503430634737015, -0.01597783714532852, 0.10031022131443024, 0.15304860472679138, 0.028918324038386345, 0.04852067306637764, 0.01804042048752308, -0.1373795121908188, 0.03667570650577545, -0.05566154047846794, -0.11916959285736084, 0.0784757137298584, 0.05940894037485123, 0.07700962573289871, 0.07041047513484955, 0.010784598998725414, -0.07303524017333984, 0.05230426415801048, -0.0036070768255740404, -0.09988366812467575, -0.009097162634134293, 0.05003155767917633, -0.15491937100887299, 0.21359646320343018, -0.001564100501127541, -0.02882172353565693, -0.012915209867060184, -0.090864397585392, -0.1364801973104477, 0.03678911551833153, 0.06324199587106705, 0.042488522827625275, 0.0837533175945282, -0.025387436151504517, 0.09234839677810669, -0.11033904552459717, 0.10392068326473236, 0.120319664478302, -0.298309326171875, -0.09150725603103638, -0.028369618579745293, -0.0014105105074122548, 0.09889508783817291, -0.03599013388156891, 0.058911290019750595, -0.035611480474472046, -0.01688302308320999, -0.0026134736835956573, -0.07924672961235046, -0.05034276843070984, -0.005803764332085848, -0.05659312754869461, -0.006676151417195797, 0.17852531373500824, -0.02077811397612095, 0.007594924420118332, 0.02151799015700817, -0.05055118352174759, 0.07369234412908554, -0.05645431578159332, -0.015930769965052605, -0.07016430795192719, 0.04993719607591629, 0.05891978368163109, -0.11028573662042618, -0.13117490708827972, -0.03220004960894585, -0.16094456613063812, 0.1802186220884323, 0.09162125736474991, 0.07607994228601456, -0.13345681130886078, -0.03628372773528099, -0.21432635188102722, -0.12394265085458755, -0.018311552703380585, -0.0684213638305664, -0.00942491739988327, 0.0577034056186676, -0.07229214161634445, -0.05290798470377922, 0.14590461552143097, 0.09891669452190399, 0.1621897667646408, 0.08321421593427658, 0.0904877707362175, 0.04434850811958313, 0.06285805255174637, 0.01007581315934658, -0.019058028236031532, -0.0375555045902729, 0.018204988911747932, 0.00976871419698, -0.020631808787584305, -0.06733106076717377, -0.12860305607318878, -0.0276199858635664, 0.0037888898514211178, 0.04241262376308441, 0.050598908215761185, 0.12334266304969788, 0.11916684359312057, 0.049184735864400864, 0.009296444244682789, -0.10139047354459763, -0.04975738376379013, -0.017804356291890144, 0.01347691472619772, 0.08549107611179352, -0.02261003479361534, -0.00673912838101387, -0.08547929674386978, -0.0015481163281947374, -0.04203994944691658, -0.02867989055812359, -0.0002136136026820168, -0.043841905891895294, 0.015480374917387962, -0.1357719898223877, 0.0051946137100458145, -0.19128134846687317, -0.03493750840425491, 0.026596814393997192, 0.07553181797266006, -0.09073425084352493, 0.016308754682540894, 0.0021370574831962585, -0.04739587381482124, 0.03785870596766472, -0.039217639714479446, -0.012483407743275166, -0.02554694376885891, 0.0711088553071022, 0.04289011284708977, 0.1173616424202919, -0.1566169410943985, 0.047115132212638855, -0.07800599187612534, -0.04345802217721939, -0.11185666173696518, 0.0017550457268953323, -0.016706127673387527, 0.022537028416991234, -0.09119050949811935, -0.0077945697121322155, -0.07565689831972122, 0.03605705127120018, -0.0020569178741425276, 0.09497008472681046, -0.06706344336271286, -0.06891322880983353, 0.21958813071250916, -0.05413557216525078, -0.1476486772298813, 0.1828523725271225, 0.01901199296116829, 0.058603134006261826, 0.05595913901925087, 0.19170188903808594, 0.11702654510736465, -0.02330879308283329, 0.07942265272140503, 0.0928678885102272, -0.05162039399147034, 0.02739664353430271, 0.058585330843925476, -0.03318952023983002, -0.037739623337984085, 0.06310088187456131, -0.06291086226701736, 0.047364287078380585, -0.008553738705813885, -0.04705122485756874, -0.03641017526388168, -0.03998749330639839, -0.04334259778261185, -0.0061844452284276485, 0.1268467903137207, -0.08034326136112213, -0.1045965924859047, -0.19749478995800018, 0.03307526186108589, -0.003951538819819689, 0.034568801522254944, -0.18620602786540985, 0.1422618180513382, 0.05086182802915573, 0.10000783950090408, -0.15469412505626678, 0.02534625120460987, -0.08260191977024078, 0.0518549382686615, 0.08303026109933853, 0.06814147531986237, 0.011019093915820122, -0.03503250703215599, -0.06767799705266953, 0.12325244396924973, 0.13288244605064392, 0.03483148291707039, -0.015217289328575134, -0.13153281807899475, 0.0959712341427803, -0.047643739730119705, 0.029583988711237907, 0.08325061947107315, -0.010072379373013973, -0.03172764182090759, 0.053643688559532166, -0.0680336058139801, 0.0861024558544159, -0.087239108979702, 0.02122303657233715, -0.017170095816254616, 0.02394675835967064, 0.07390886545181274, -0.042728934437036514, -0.06518705189228058, 0.047511741518974304, -0.1683027744293213, 0.10597358644008636, 0.15213724970817566, -0.05824725329875946, -0.049794502556324005, 0.04751631245017052, 0.01414101105183363, -0.003674847772344947, 0.1163577139377594, 0.007260378450155258, 0.046714216470718384, -0.05281466618180275, 0.12966622412204742, -0.07985014468431473, 0.13123922049999237, 0.01208291295915842, -0.11023961007595062, -0.032082121819257736, 0.06175529956817627, 0.15812408924102783, -0.2886897325515747, 0.10872294753789902, 0.2300201803445816, -0.1174226701259613, 0.1819676011800766, 0.04439026117324829, -0.03691874444484711, -0.011628987267613411, 0.030119286850094795, 0.012573878280818462, 0.02055041491985321, -0.11915627121925354, -0.08413204550743103, 0.04179926589131355, 0.006247530225664377, 0.027347587049007416, -0.04731891676783562, -0.033189695328474045, -0.014180462807416916, -0.014812199398875237, -0.11249259114265442, 0.12998157739639282, -0.030692793428897858, 0.10418124496936798, -0.009169131517410278, -0.11343871057033539, 0.018780363723635674, -0.0036953440867364407, -0.06839839369058609, 0.15578964352607727, -0.05384812876582146, -0.1980653554201126, -0.027116606011986732, -0.12069398909807205, -0.0315328873693943, 0.03023393824696541, 0.11074656993150711, -0.11697306483983994, -0.00040305545553565025, -0.06336935609579086, 0.04802923649549484, -0.08225898444652557, -0.0013918860349804163, -0.09162731468677521, 0.012248440645635128, -0.06644531339406967, -0.02707206830382347, -0.0582306943833828, 0.010629442520439625, -0.05011004954576492, 0.09049707651138306, -0.19811652600765228, 0.04091234505176544, 0.041858214884996414, -0.04169148579239845, 0.04739924520254135, -0.032601248472929, 0.17534635961055756, -0.11610761284828186, 0.054437585175037384, 0.2362673133611679, -0.024123236536979675, 0.07084044814109802, 0.19484928250312805, -0.00706153828650713, -0.01647007092833519, -0.0002479436225257814, -0.00966370664536953, -0.12121503055095673, -0.0767701044678688, 0.009901312179863453, -0.1484476923942566, 0.07220366597175598, 0.02919994480907917, 0.020114963874220848, 0.06574474275112152, 0.08659949898719788, -0.050401583313941956, -0.07984598726034164, -0.013471308164298534, 0.08451905846595764, 0.15575087070465088, 0.028699802234768867, 0.15642140805721283, -0.08407577127218246, -0.07886383682489395, 0.0405782125890255, 0.07286795228719711, 0.15709051489830017, 0.10602864623069763, 0.16159425675868988, 0.08350695669651031, 0.2101127952337265, 0.11261410266160965, -0.017817651852965355, 0.024047041311860085, -0.05831500515341759, -0.024483907967805862, -0.021079694852232933, -0.009189189411699772, 0.04756712540984154, 0.06134119629859924, -0.1810537725687027, -0.01898084580898285, 0.0010783119359984994, 0.0708998590707779, 0.10204363614320755, 0.002125389641150832, -0.11777382344007492, 0.05287555605173111, 0.030017271637916565, -0.05222759023308754, -0.0864303857088089, 0.018733911216259003, -0.1345578283071518, -0.16150592267513275, 0.0344649963080883, -0.013089152052998543, 0.12858951091766357, 0.14270679652690887, 0.06689299643039703, -0.07870753854513168, -0.048736728727817535, 0.015167775563895702, 0.16029544174671173, -0.23211811482906342, 0.2450353354215622, 0.04177958890795708, 0.008559348061680794, -0.0957721695303917, -0.007297465577721596, 0.07488711178302765, 0.10968715697526932, 0.10768153518438339, -0.06610627472400665, -0.10881908237934113, 0.021442359313368797, -0.028684841468930244, 0.09136776626110077, 0.18602000176906586, -0.05318158119916916, 0.03189368173480034, -0.0773693323135376, 0.03459659963846207, 0.0013238955289125443, 0.1848597526550293, -0.03731413558125496, -0.22789280116558075, 0.08618643879890442, 0.0005124611197970808, -0.07781299948692322, 0.000009790123840502929, -0.013756279833614826, -0.10219117999076843, 0.08617746829986572, 0.035566236823797226, -0.1173592060804367, -0.092752605676651, 0.02061237022280693, 0.02550382725894451, -0.1129961907863617, -0.0022386214695870876, -0.13912253081798553, -0.052926164120435715, -0.003116970881819725, -0.13882343471050262, 0.04126541689038277, -0.07225247472524643, 0.0009158269385807216, -0.020686199888586998, 0.1019664779305458, 0.0019917793106287718, 0.003842417150735855, 0.052282437682151794, 0.01683938130736351, -0.14458318054676056, -0.06483025848865509, -0.03446527197957039, -0.1969171017408371, 0.040160469710826874, -0.04286690056324005, 0.019141675904393196, -0.09116410464048386, -0.07922019064426422, -0.06277485936880112, 0.1567508727312088, 0.15842638909816742, -0.0418204590678215, 0.09867307543754578, 0.20207151770591736, 0.015849176794290543, -0.25323593616485596, -0.22886312007904053, 0.02213561348617077, 0.03771042078733444, 0.00004754548717755824, -0.12643840909004211, 0.028385939076542854, -0.022302061319351196, -0.027673231437802315, -0.048599500209093094, -0.16983039677143097, -0.06597530096769333, 0.23719210922718048, -0.02680451236665249, 0.3123515546321869, -0.2129625678062439, 0.005115668289363384, -0.08349807560443878, -0.090883269906044, 0.06060699373483658, -0.0969264805316925, 0.12233341485261917, -0.040853939950466156, 0.04802694544196129, -0.00749344052746892, 0.03168240934610367, 0.167726531624794, -0.08420028537511826, -0.05170992761850357, -0.14085158705711365, -0.009922709316015244, 0.08244102448225021, 0.030043937265872955, 0.026857396587729454, -0.1970716118812561, 0.013062618672847748, -0.026455108076334, -0.08622147887945175, -0.10241390764713287, -0.03241836652159691, 0.005273584276437759, -0.03843787685036659, -0.061297912150621414, -0.010105829685926437, -0.00681720906868577, -0.047729771584272385, 0.15923036634922028, -0.11339578032493591, 0.1352827548980713, 0.11446519941091537, 0.097441665828228, -0.039211392402648926, 0.009266238659620285, -0.00817997008562088, -0.0822182223200798, 0.07853300869464874, -0.20587113499641418, -0.0023678098805248737, 0.032339759171009064, -0.037305913865566254, 0.01913156732916832, 0.028191784396767616, -0.02207600325345993, -0.012512549757957458, 0.13907042145729065, -0.10270123183727264, -0.15682286024093628, 0.03533059358596802, 0.05521769821643829, -0.03207346424460411, -0.021746592596173286, 0.0921587198972702, -0.05411757156252861, -0.014730759896337986, 0.036366816610097885, -0.04358045011758804, -0.02230845019221306, 0.003940195310860872, 0.1198180764913559, 0.00963818933814764, -0.04965724050998688, 0.026646273210644722, 0.06830993294715881, -0.06009465083479881, 0.04328225925564766, 0.07860621064901352, -0.14131897687911987, -0.12131118029356003, -0.029670296236872673, -0.0006193227600306273, -0.11743954569101334, -0.06073980778455734, -0.03159087523818016, -0.09918681532144547, -0.03424300253391266, 0.11839167028665543, 0.059220895171165466, -0.040378861129283905, -0.04313509166240692, 0.024688629433512688, -0.0004289319913368672, 0.026017988100647926, -0.04333146661520004, -0.045897386968135834, 0.012387242168188095, 0.016529222950339317, -0.013777702115476131, 0.15832039713859558, -0.07994531095027924, 0.0004187211743555963, -0.07665272802114487, 0.032424446195364, -0.16587114334106445, -0.0533706434071064, -0.11170018464326859, -0.06576263904571533, 0.07091838866472244, -0.08271651715040207, -0.03902258351445198, -0.05686890706419945, -0.06349768489599228, -0.012049803510308266, -0.022415878251194954, 0.0593516044318676, -0.05096985772252083, 0.04853354021906853, 0.0738447979092598, 0.025991305708885193, 0.0663319081068039, 0.12044466286897659, -0.06508901715278625, 0.14035461843013763, -0.0397009439766407, -0.03912068530917168, -0.07079995423555374, 0.028917012736201286, 0.014605926349759102, 0.015554197132587433, 0.00868984404951334, 0.03888971358537674, 0.03753585368394852, 0.05710907280445099, 0.06742347776889801, -0.07677429169416428, 0.010067380033433437, -0.03779289871454239, -0.06657446920871735, -0.020045273005962372, 0.007631488144397736, 0.0645541101694107, 0.047727372497320175, 0.08095597475767136, 0.003760308027267456, 0.05477086827158928, -0.0234439168125391, 0.04318825900554657, -0.027125373482704163, -0.10988125950098038, 0.018287543207406998, -0.12033679336309433, 0.020953381434082985, -0.021243060007691383, 0.10764249414205551, 0.010693310759961605, 0.015506627038121223, 0.057531338185071945, 0.03656451404094696, 0.13528740406036377, -0.0056959823705255985, 0.16527771949768066, 0.07946248352527618, -0.022773902863264084, -0.06730598211288452, -0.050402093678712845, -0.09658173471689224, -0.018284939229488373, 0.06727787852287292, 0.11466372758150101, 0.07833919674158096, 0.07056976854801178, 0.011695753782987595, -0.006117523647844791, 0.07131015509366989, -0.12128868699073792, 0.045259740203619, 0.009217005223035812, -0.014588120393455029, -0.03685272857546806, 0.3528066575527191, 0.03001311980187893, 0.02568945102393627, -0.12921863794326782, -0.09422259032726288, -0.13284297287464142, -0.1770915538072586, -0.05987168475985527, -0.03804914280772209, 0.0031448297668248415, -0.04040547087788582, 0.022247131913900375, 0.14381267130374908, 0.05121647194027901, -0.09835101664066315, 0.12661109864711761, -0.01263326033949852, -0.1730305254459381, 0.0684213861823082, -0.04376380890607834, 0.10277864336967468, 0.10456187278032303, -0.005205709487199783, -0.04380236193537712, -0.0128315519541502, -0.002417083363980055, 0.055433232337236404, 0.0020376713946461678, 0.027534244582057, -0.2010185569524765, -0.08407171815633774, -0.06583421677350998, 0.08002901822328568, 0.06886577606201172, 0.2315320521593094, -0.02215440943837166, -0.019763007760047913, -0.006298624444752932, 0.21268577873706818, 0.03310827538371086, -0.07511366903781891, -0.09489941596984863, 0.1349232941865921, 0.011262725107371807, 0.01344328559935093, -0.04215480387210846, -0.012634525075554848, -0.07304513454437256, 0.2620612680912018, 0.29762333631515503, -0.13028328120708466, 0.02854083478450775, 0.004727925639599562, 0.025963783264160156, 0.1060570627450943, 0.08232904970645905, 0.044958360493183136, 0.19459719955921173, -0.0969776064157486, 0.041653066873550415, -0.105411596596241, 0.035821400582790375, -0.19105061888694763, 0.10197107493877411, 0.10445594042539597, -0.056249089539051056, -0.0338042713701725, 0.12339147180318832, -0.07768866419792175, -0.028670508414506912, -0.02703539840877056, -0.041968196630477905, -0.14686180651187897, 0.03189084306359291, 0.07491623610258102, 0.07389523088932037, 0.06840693950653076, -0.06776968389749527, 0.08071964979171753, -0.020738575607538223, 0.030563514679670334, -0.07335008680820465, -0.05434529483318329, 0.14913739264011383, -0.010352477431297302, -0.03814251348376274, -0.007740198168903589, 0.1064043715596199, 0.07905306667089462, 0.01695294864475727, 0.029374917969107628, 0.14878736436367035, 0.07069028913974762, 0.050386156886816025, 0.07841160148382187, 0.04143910855054855, 0.021373894065618515, -0.15010982751846313, 0.1250171959400177, 0.007440242916345596, 0.0288171898573637, -0.018237663432955742, 0.01773351989686489, -0.021934764459729195, 0.19589482247829437, -0.14942364394664764, 0.06253329664468765, 0.16423694789409637, -0.06803672015666962, -0.06461304426193237, 0.0035775736905634403, 0.004814708139747381, 0.06200622767210007, -0.14518924057483673, -0.1263299435377121, -0.07683705538511276, -0.046700116246938705, -0.06320008635520935, -0.022013358771800995, -0.13507279753684998, -0.03154026344418526, -0.09538211673498154, 0.04253347963094711, -0.0736127719283104, 0.050492674112319946, 0.06773792952299118, -0.0012116105062887073, -0.03224566578865051, -0.15191490948200226, 0.013683675788342953, -0.0016213551862165332, -0.15025664865970612, -0.1221892237663269 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # roberta-base-bne-finetuned-amazon_reviews_multi This model is a fine-tuned version of [BSC-TeMU/roberta-base-bne](https://huggingface.co/BSC-TeMU/roberta-base-bne) on the amazon_reviews_multi dataset. It achieves the following results on the evaluation set: - Loss: 0.2275 - Accuracy: 0.9335 ## 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: 2 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.1909 | 1.0 | 1250 | 0.1717 | 0.9333 | | 0.0932 | 2.0 | 2500 | 0.2275 | 0.9335 | ### Framework versions - Transformers 4.9.2 - Pytorch 1.9.0+cu102 - Datasets 1.11.0 - Tokenizers 0.10.3
{"license": "cc-by-4.0", "tags": ["generated_from_trainer"], "datasets": ["amazon_reviews_multi"], "metrics": ["accuracy"], "model_index": [{"name": "roberta-base-bne-finetuned-amazon_reviews_multi", "results": [{"task": {"name": "Text Classification", "type": "text-classification"}, "dataset": {"name": "amazon_reviews_multi", "type": "amazon_reviews_multi", "args": "es"}, "metric": {"name": "Accuracy", "type": "accuracy", "value": 0.9335}}]}]}
text-classification
Hormigo/roberta-base-bne-finetuned-amazon_reviews_multi
[ "transformers", "pytorch", "tensorboard", "roberta", "text-classification", "generated_from_trainer", "dataset:amazon_reviews_multi", "license:cc-by-4.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us
roberta-base-bne-finetuned-amazon\_reviews\_multi ================================================= This model is a fine-tuned version of BSC-TeMU/roberta-base-bne on the amazon\_reviews\_multi dataset. It achieves the following results on the evaluation set: * Loss: 0.2275 * Accuracy: 0.9335 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: 2 ### Training results ### Framework versions * Transformers 4.9.2 * Pytorch 1.9.0+cu102 * Datasets 1.11.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.11.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.9.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.11.0\n* Tokenizers 0.10.3" ]
[ 68, 98, 4, 34 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2### Training results### Framework versions\n\n\n* Transformers 4.9.2\n* Pytorch 1.9.0+cu102\n* Datasets 1.11.0\n* Tokenizers 0.10.3" ]
[ -0.08839257806539536, 0.07182613760232925, -0.0022761800792068243, 0.12354572117328644, 0.17461615800857544, 0.04664640501141548, 0.15001033246517181, 0.11295176297426224, -0.0911908969283104, 0.0025587626732885838, 0.11353598535060883, 0.16285838186740875, 0.006882305257022381, 0.11342660337686539, -0.06002412363886833, -0.25545111298561096, -0.014264321886003017, 0.04585016891360283, -0.039443038403987885, 0.1466878354549408, 0.10804580897092819, -0.13512179255485535, 0.09479020535945892, 0.007522543426603079, -0.20025527477264404, -0.01042194664478302, 0.02655612863600254, -0.07337727397680283, 0.13639448583126068, 0.02944687008857727, 0.14236131310462952, 0.006021624431014061, 0.07734573632478714, -0.18026873469352722, 0.01936332881450653, 0.035657964646816254, 0.0023094925563782454, 0.09061554074287415, 0.029501857236027718, -0.01368747092783451, 0.13542525470256805, -0.05290474370121956, 0.07828816026449203, 0.016513442620635033, -0.11823423951864243, -0.22217094898223877, -0.08374817669391632, 0.0406045988202095, 0.05452033877372742, 0.09872910380363464, -0.00793234258890152, 0.14786015450954437, -0.0948602557182312, 0.08731918781995773, 0.23284532129764557, -0.2814580202102661, -0.07357364147901535, 0.030543820932507515, 0.029593121260404587, 0.0697181224822998, -0.1090618371963501, -0.03412232920527458, 0.05279349535703659, 0.053441669791936874, 0.12054288387298584, -0.03979590907692909, -0.10675445199012756, 0.01184848602861166, -0.1420086920261383, -0.023756710812449455, 0.19877062737941742, 0.038004450500011444, -0.05136372894048691, -0.04322843626141548, -0.030508873984217644, -0.14553587138652802, -0.04248211160302162, 0.007587749976664782, 0.05101541429758072, -0.06127399206161499, -0.09615740925073624, -0.0017856706399470568, -0.1161680668592453, -0.053532473742961884, -0.07220099121332169, 0.1471410095691681, 0.03888067975640297, 0.020487187430262566, -0.028637534007430077, 0.10526184737682343, 0.014859934337437153, -0.10657451301813126, 0.00580232311040163, 0.0061612678691744804, -0.007864749990403652, -0.053524356335401535, -0.061228446662425995, -0.06704641878604889, -0.00025649231974966824, 0.13949601352214813, -0.027952156960964203, 0.026734979823231697, 0.0457291379570961, 0.05669664964079857, -0.08014443516731262, 0.18844415247440338, -0.02683238685131073, -0.0008277795859612525, -0.0005634169792756438, 0.050887711346149445, 0.025579452514648438, -0.007942761294543743, -0.13162744045257568, 0.005324666853994131, 0.073269784450531, 0.00650135288015008, -0.08001315593719482, 0.05704151466488838, -0.07255343347787857, -0.04596323147416115, 0.005740107968449593, -0.07239905744791031, 0.030041484162211418, -0.007618363481014967, -0.06846801191568375, -0.01767161674797535, 0.020997317507863045, 0.021944206207990646, -0.0005041505792178214, 0.15451928973197937, -0.09127654135227203, 0.03210490942001343, -0.08839957416057587, -0.0920952633023262, 0.027586650103330612, -0.08152618259191513, 0.0453820563852787, -0.11449830234050751, -0.17031645774841309, -0.020580489188432693, 0.047850728034973145, -0.02405575104057789, -0.06681818515062332, -0.03224606066942215, -0.06519637256860733, 0.009773949161171913, -0.014180172234773636, 0.14778795838356018, -0.0733616054058075, 0.1075349748134613, 0.03468732163310051, 0.055587075650691986, -0.047575678676366806, 0.044180043041706085, -0.09771221876144409, -0.01357980351895094, -0.16308985650539398, 0.027985498309135437, -0.04207569733262062, 0.05709175765514374, -0.07737591117620468, -0.11733967065811157, 0.011403121054172516, 0.008415933698415756, 0.04211335629224777, 0.08035637438297272, -0.16377998888492584, -0.07452040165662766, 0.13872405886650085, -0.06883330643177032, -0.12313717603683472, 0.12318543344736099, -0.08148615807294846, 0.05949699878692627, 0.07269910722970963, 0.13917435705661774, 0.06339269131422043, -0.07071439176797867, 0.015227603726089, -0.014740873128175735, 0.03601967915892601, -0.06450419872999191, 0.08131738007068634, 0.01597159542143345, -0.007361931726336479, 0.028339942917227745, -0.03421640396118164, 0.036996498703956604, -0.09104132652282715, -0.08855290710926056, -0.038604896515607834, -0.09525637328624725, 0.0626053586602211, 0.06858958303928375, 0.06863866001367569, -0.11337462067604065, -0.07577962428331375, 0.07028576731681824, 0.08421401679515839, -0.04607420042157173, 0.01798451691865921, -0.0526360459625721, 0.07684078812599182, -0.03348326310515404, -0.02640211209654808, -0.1744549423456192, -0.030968984588980675, 0.01694272831082344, 0.0011588186025619507, 0.03612899035215378, 0.01781797781586647, 0.052732884883880615, 0.043191660195589066, -0.07270418852567673, 0.0006945625063963234, -0.06212671101093292, -0.008940636180341244, -0.11370959877967834, -0.20057447254657745, -0.024644212797284126, -0.01625540293753147, 0.1266949474811554, -0.20963609218597412, 0.029023468494415283, -0.02585691399872303, 0.0774892047047615, 0.0343538373708725, -0.014041599817574024, -0.025446679443120956, 0.08262673765420914, -0.03468760848045349, -0.031235182657837868, 0.06924164295196533, 0.010317608714103699, -0.1047065407037735, -0.011195463128387928, -0.07097036391496658, 0.1770821213722229, 0.13403040170669556, -0.10145552456378937, -0.08873505145311356, 0.014581531286239624, -0.05411935970187187, -0.032035451382398605, -0.08960950374603271, 0.037446752190589905, 0.1894320398569107, -0.001424293965101242, 0.13721124827861786, -0.08972306549549103, -0.04917454347014427, 0.031534139066934586, -0.03661871701478958, 0.03303784132003784, 0.13220469653606415, 0.13630959391593933, -0.08093874901533127, 0.13200105726718903, 0.16006146371364594, -0.08885109424591064, 0.14427129924297333, -0.03932354226708412, -0.06517161428928375, -0.02269071713089943, -0.042682647705078125, -0.009029370732605457, 0.11519301682710648, -0.13206270337104797, 0.001005477854050696, 0.03296366333961487, 0.00512603297829628, 0.007214987184852362, -0.2274932861328125, -0.04451654851436615, 0.03282438963651657, -0.03509432449936867, -0.014310409314930439, 0.006987050175666809, 0.017413591966032982, 0.10854659974575043, 0.004266231320798397, -0.07451818138360977, 0.04589231312274933, 0.009620221331715584, -0.08304597437381744, 0.21800756454467773, -0.066200390458107, -0.15829965472221375, -0.13557088375091553, -0.05871900916099548, -0.04279159754514694, -0.0002127130574081093, 0.06271582841873169, -0.06532257795333862, -0.03357158228754997, -0.06688009947538376, 0.007139639463275671, -0.008427230641245842, 0.02402581088244915, -0.02371954545378685, 0.02462136000394821, 0.03626750782132149, -0.10175847262144089, -0.007257427554577589, -0.05948714539408684, -0.040552519261837006, 0.051101911813020706, 0.04928628355264664, 0.10782825946807861, 0.14850974082946777, -0.024369776248931885, -0.009392624720931053, -0.03258702531456947, 0.21273957192897797, -0.08677524328231812, -0.04900782182812691, 0.13383613526821136, -0.015798771753907204, 0.03315502405166626, 0.1263553649187088, 0.08046948909759521, -0.08807558566331863, 0.015357403084635735, 0.024826738983392715, -0.04052266851067543, -0.26232755184173584, -0.03683179244399071, -0.05511616915464401, -0.006190566346049309, 0.08051075786352158, 0.0241311676800251, 0.0021694828756153584, 0.07167551666498184, 0.041781045496463776, 0.07485855370759964, -0.025474080815911293, 0.07378926873207092, 0.12447375059127808, 0.050249792635440826, 0.13252675533294678, -0.04847250506281853, -0.06300310045480728, 0.058082424104213715, -0.01813790574669838, 0.2487623393535614, 0.008872135542333126, 0.13527928292751312, 0.0706343799829483, 0.12943999469280243, 0.02245587483048439, 0.054892994463443756, 0.023893367499113083, -0.029607245698571205, -0.021378204226493835, -0.02561376243829727, -0.027750996872782707, 0.027419930323958397, -0.04982123151421547, 0.05130545422434807, -0.1298668086528778, -0.01679336652159691, 0.06025875732302666, 0.24364908039569855, 0.022235773503780365, -0.3151286840438843, -0.10580452531576157, 0.0057318564504384995, -0.05056650564074516, -0.004947665147483349, 0.02972867712378502, 0.07781769335269928, -0.12178151309490204, 0.03902905806899071, -0.07700997591018677, 0.09011957794427872, -0.09081339836120605, 0.034281615167856216, 0.07659478485584259, 0.07316941022872925, -0.0010426024673506618, 0.0765877440571785, -0.2938985228538513, 0.27677902579307556, -0.007408447097986937, 0.058628715574741364, -0.06580454856157303, -0.028945239260792732, 0.024182716384530067, 0.046879563480615616, 0.06133832409977913, -0.0057052732445299625, -0.0499798022210598, -0.16795939207077026, -0.038874950259923935, 0.021111713722348213, 0.07946537435054779, -0.01819467358291149, 0.08480922877788544, -0.02731863595545292, 0.0018539367010816932, 0.05661048740148544, -0.024414394050836563, -0.05033651366829872, -0.09342178702354431, -0.002592475851997733, 0.0223239716142416, -0.05526675656437874, -0.06214034929871559, -0.1331361085176468, -0.07076530903577805, 0.12564750015735626, -0.02408377267420292, -0.045267313718795776, -0.09649199992418289, 0.07177935540676117, 0.08396106958389282, -0.07546629011631012, 0.05155607685446739, 0.009259464219212532, 0.09000836312770844, 0.02413967438042164, -0.0423247404396534, 0.09236237406730652, -0.05351995304226875, -0.19594109058380127, -0.0695134773850441, 0.11535649001598358, 0.02461651712656021, 0.06681296974420547, -0.022689655423164368, 0.009857146069407463, -0.054549869149923325, -0.09100735187530518, 0.018734870478510857, -0.003288889303803444, 0.08391799032688141, 0.049050234258174896, -0.0489177368581295, 0.007831727154552937, -0.07117951661348343, -0.056706368923187256, 0.18778429925441742, 0.21376314759254456, -0.09329421073198318, 0.029958775267004967, 0.017582785338163376, -0.06938750296831131, -0.15946249663829803, 0.02635842002928257, 0.07167382538318634, 0.007606787607073784, 0.049025796353816986, -0.14513596892356873, 0.12589283287525177, 0.10551708936691284, -0.011555839329957962, 0.13003690540790558, -0.3180287778377533, -0.1359887421131134, 0.09173933416604996, 0.14565950632095337, 0.1344132423400879, -0.12721838057041168, -0.01620713621377945, -0.03337448835372925, -0.1434927135705948, 0.13366039097309113, -0.08584384620189667, 0.1364767998456955, -0.03698783740401268, 0.11113201826810837, 0.0016653684433549643, -0.05280761793255806, 0.11385529488325119, 0.02592894807457924, 0.09923850744962692, -0.05077749863266945, -0.04492483660578728, 0.026064841076731682, -0.02745537832379341, 0.0111097302287817, -0.06845955550670624, 0.019015010446310043, -0.08680183440446854, -0.03610456734895706, -0.07206900417804718, 0.03886820375919342, -0.04073593392968178, -0.05078645050525665, -0.04444069415330887, 0.030555037781596184, 0.018375780433416367, -0.02039724960923195, 0.1484956592321396, 0.01820829138159752, 0.1338973343372345, 0.06009873002767563, 0.09212946891784668, -0.05526048317551613, -0.1024155467748642, -0.03391028940677643, -0.027620552107691765, 0.047257598489522934, -0.15652939677238464, 0.020483549684286118, 0.13507112860679626, 0.021976826712489128, 0.14905355870723724, 0.07828952372074127, -0.029032956808805466, 0.016853313893079758, 0.06926754862070084, -0.15163806080818176, -0.0738796666264534, -0.008418911136686802, -0.07805860042572021, -0.1190294697880745, 0.03821137174963951, 0.11247079074382782, -0.07463440299034119, -0.026338841766119003, -0.006729671731591225, 0.004345289431512356, -0.049187589436769485, 0.18215006589889526, 0.06892719864845276, 0.04812243953347206, -0.10142429918050766, 0.0933762788772583, 0.061462368816137314, -0.06827600300312042, -0.0026664866600185633, 0.06169760227203369, -0.09405539184808731, -0.05358447879552841, 0.049001287668943405, 0.16789215803146362, -0.08617469668388367, -0.04443615302443504, -0.143683061003685, -0.12559135258197784, 0.08159831911325455, 0.15513025224208832, 0.11905217170715332, 0.014457736164331436, -0.04335629194974899, -0.009346491657197475, -0.10294150561094284, 0.09983213990926743, 0.060858018696308136, 0.07419072091579437, -0.14768460392951965, 0.10154380649328232, 0.027277423068881035, 0.04360850900411606, -0.019121339544653893, 0.04284290596842766, -0.10512181371450424, 0.013606070540845394, -0.11018235236406326, -0.0012156040174886584, -0.022729715332388878, 0.018245328217744827, -0.0013282198924571276, -0.057650238275527954, -0.0670996755361557, 0.01077970676124096, -0.11572179198265076, -0.01603565365076065, 0.04192126542329788, 0.07535851746797562, -0.09438582509756088, -0.037175629287958145, 0.03404359519481659, -0.052279144525527954, 0.07377017289400101, 0.050573885440826416, 0.017306119203567505, 0.06209361553192139, -0.12140700221061707, 0.02970919944345951, 0.05461839586496353, 0.017269639298319817, 0.05045250430703163, -0.1242198497056961, 0.006522221490740776, 0.0000018370383259025402, 0.07131925970315933, 0.02513773925602436, 0.06461779028177261, -0.1604229062795639, -0.009764639660716057, -0.003662751754745841, -0.0821664109826088, -0.055215656757354736, 0.012744735926389694, 0.0714007094502449, 0.027881667017936707, 0.21745003759860992, -0.07637201249599457, 0.042003780603408813, -0.19237551093101501, 0.006812606006860733, -0.02344665303826332, -0.1202234998345375, -0.14560888707637787, -0.07072530686855316, 0.05221022292971611, -0.06840072572231293, 0.1745544672012329, 0.03515541926026344, 0.06575862318277359, 0.02939472906291485, -0.003071068087592721, -0.005330778658390045, 0.017776764929294586, 0.175225630402565, 0.02009904757142067, -0.04377831146121025, 0.05904346704483032, 0.03875716030597687, 0.10548652708530426, 0.08948742598295212, 0.19184395670890808, 0.16831094026565552, 0.017398543655872345, 0.0857391357421875, 0.0444527305662632, -0.030409757047891617, -0.12576141953468323, 0.038116104900836945, -0.014349998906254768, 0.10774760693311691, -0.021594448015093803, 0.20390798151493073, 0.0668371319770813, -0.16153213381767273, 0.039882175624370575, -0.05661224201321602, -0.08454542607069016, -0.10485400259494781, -0.043036311864852905, -0.0969577506184578, -0.14792025089263916, 0.012747039087116718, -0.12602730095386505, -0.0025759951677173376, 0.09347107261419296, 0.007022733800113201, -0.03623494133353233, 0.11370430141687393, 0.013057163916528225, 0.013921258971095085, 0.09285126626491547, 0.015326525084674358, -0.03665336221456528, -0.09829901903867722, -0.057606589049100876, -0.03608478233218193, -0.0286263395100832, 0.018853338435292244, -0.05779462680220604, -0.06483300775289536, 0.02068742923438549, -0.018269112333655357, -0.10196197777986526, 0.021494904533028603, 0.018392525613307953, 0.07963047176599503, 0.03440818935632706, 0.008001413196325302, 0.021576616913080215, -0.00031698698876425624, 0.2469176948070526, -0.06073731184005737, -0.060195937752723694, -0.11570291966199875, 0.22735150158405304, 0.040384162217378616, -0.031827230006456375, 0.039677415043115616, -0.06892390549182892, 0.007893211208283901, 0.2468440979719162, 0.21485458314418793, -0.07445509731769562, -0.013485186733305454, 0.024290332570672035, -0.009282685816287994, -0.007391860242933035, 0.11239375919103622, 0.1088830828666687, 0.031433798372745514, -0.07557128369808197, -0.041091497987508774, -0.05275516211986542, 0.004576195031404495, -0.015439008362591267, 0.06644943356513977, 0.04649226740002632, -0.005012878682464361, -0.04912477731704712, 0.07442872226238251, -0.0883321613073349, -0.12225606292486191, 0.06367437541484833, -0.2119854986667633, -0.17375734448432922, -0.014436600729823112, 0.08413331210613251, 0.00803092960268259, 0.06735686957836151, -0.025530150160193443, -0.021362731233239174, 0.0744236633181572, -0.012836866080760956, -0.114098459482193, -0.08732326328754425, 0.09466124325990677, -0.08653917908668518, 0.1943945586681366, -0.05068974196910858, 0.07110700756311417, 0.12006217241287231, 0.06953105330467224, -0.07235819101333618, 0.06555058807134628, 0.04349931702017784, -0.047000233083963394, 0.04627872630953789, 0.10372570902109146, -0.03064076416194439, 0.07082284241914749, 0.05118507519364357, -0.12489072233438492, 0.017214177176356316, -0.0750071182847023, -0.04503636062145233, -0.06335513293743134, -0.013619808480143547, -0.07373028993606567, 0.12813083827495575, 0.23437751829624176, -0.04066196456551552, -0.017478231340646744, -0.05611218884587288, 0.027619527652859688, 0.07173090428113937, 0.03138094022870064, -0.05022638663649559, -0.2193852812051773, 0.00860568042844534, 0.0810139924287796, -0.013936986215412617, -0.2563696801662445, -0.07344834506511688, 0.00805171113461256, -0.07237789034843445, -0.07316054403781891, 0.08043372631072998, 0.07341767102479935, 0.045031316578388214, -0.06273717433214188, -0.05018014833331108, -0.0692606270313263, 0.14781716465950012, -0.15979093313217163, -0.09752274304628372 ]
null
null
transformers
# SpongeBob DialoGPT Model
{"tags": ["conversational"]}
text-generation
Htenn/DialoGPT-small-spongebob
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# SpongeBob DialoGPT Model
[ "# SpongeBob DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# SpongeBob DialoGPT Model" ]
[ 51, 10 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# SpongeBob DialoGPT Model" ]
[ 0.04686988517642021, 0.01831582933664322, -0.006684387568384409, -0.023361803963780403, 0.14531932771205902, -0.013098545372486115, 0.18535013496875763, 0.10620876401662827, -0.030331101268529892, -0.042498208582401276, 0.08937034010887146, 0.09790515899658203, -0.014450144954025745, 0.11827928572893143, -0.04757881537079811, -0.3587375283241272, 0.06408917158842087, 0.012861362658441067, -0.018598588183522224, 0.14205411076545715, 0.09289892017841339, -0.027558591216802597, 0.08265668898820877, 0.006802508607506752, -0.12033528834581375, 0.0067169079557061195, 0.0017116968519985676, -0.14243562519550323, 0.09221896529197693, 0.04456312954425812, 0.0812295600771904, 0.034930456429719925, -0.056649334728717804, -0.14625878632068634, 0.039093684405088425, 0.008180650882422924, -0.025763316079974174, 0.051514893770217896, 0.0019531247671693563, -0.07181382924318314, 0.2178095132112503, 0.11250326782464981, 0.035995230078697205, 0.041828934103250504, -0.1468363106250763, -0.016251681372523308, 0.0339907705783844, 0.05018032714724541, 0.09911790490150452, 0.09410835057497025, -0.0547698512673378, 0.07641182839870453, -0.12856486439704895, 0.11667317897081375, 0.1299220621585846, -0.3420248031616211, -0.04103289917111397, 0.10043267905712128, 0.07615493983030319, 0.060927100479602814, -0.013123441487550735, 0.10777200758457184, -0.02726730704307556, 0.011340757831931114, -0.002847728319466114, -0.08382408320903778, -0.0802609771490097, -0.009565574117004871, -0.09134458750486374, 0.011599632911384106, 0.25257936120033264, -0.022980118170380592, 0.04442165419459343, -0.1055527925491333, -0.0683298408985138, -0.004593315999954939, -0.06398124992847443, -0.0068123601377010345, -0.061636343598365784, 0.06879974901676178, -0.0493970587849617, -0.11263342946767807, -0.1010485589504242, -0.05062997341156006, -0.14790497720241547, 0.18139347434043884, 0.020957225933670998, 0.056452833116054535, -0.24492467939853668, 0.08862509578466415, -0.009075849317014217, -0.10234473645687103, 0.00610381318256259, -0.08624888956546783, 0.044847290962934494, 0.027772897854447365, -0.04747875779867172, -0.016635648906230927, 0.06930194050073624, 0.13487713038921356, 0.09919807314872742, 0.05611615255475044, -0.03803130239248276, 0.0775492936372757, 0.04779394343495369, 0.05901680141687393, -0.06249655783176422, -0.041965655982494354, 0.053289640694856644, -0.09884460270404816, 0.008289159275591373, -0.05974781513214111, -0.175046905875206, 0.019489463418722153, 0.06251803040504456, 0.03470971807837486, 0.028564583510160446, 0.11653069406747818, 0.010606297291815281, -0.030415434390306473, 0.010647817514836788, -0.018999159336090088, -0.0023603099398314953, 0.014890875667333603, -0.05267173424363136, 0.0831778347492218, 0.06282783299684525, 0.04281297326087952, -0.08849489688873291, 0.10785532742738724, -0.05468406900763512, -0.007660663686692715, -0.024600166827440262, -0.05932997912168503, -0.013896129094064236, -0.04396573454141617, 0.019952915608882904, -0.1461702138185501, -0.1655508130788803, 0.021412892267107964, -0.02929038181900978, -0.08957251906394958, -0.07719147205352783, -0.09159249067306519, -0.0511913038790226, 0.006167903542518616, -0.059107083827257156, 0.01821332424879074, -0.03865905478596687, 0.08702341467142105, 0.0004052188596688211, 0.11756281554698944, -0.15041755139827728, 0.07146923989057541, -0.08302543312311172, -0.01261977106332779, -0.17656196653842926, 0.14734433591365814, -0.0050957100465893745, 0.0151086850091815, -0.059521354734897614, -0.057876598089933395, -0.15223021805286407, 0.06357862800359726, -0.00892910361289978, 0.20062567293643951, -0.0575273372232914, -0.12416139990091324, 0.31534621119499207, -0.02703303098678589, -0.08993224054574966, 0.10694270581007004, -0.008550185710191727, 0.09804485738277435, 0.09827148914337158, 0.16154535114765167, -0.07119960337877274, 0.01815352961421013, 0.10288223624229431, 0.08182580024003983, -0.04971862584352493, 0.03755979984998703, 0.01814274862408638, 0.005490216426551342, -0.011350897140800953, 0.04021858051419258, 0.08345618098974228, 0.11459994316101074, -0.05888926237821579, 0.010466063395142555, 0.015599751845002174, -0.01334469299763441, 0.05617275834083557, -0.050610922276973724, 0.15467068552970886, -0.008677083067595959, -0.08234325051307678, 0.05990012362599373, -0.006406568456441164, -0.022647839039564133, 0.03135249391198158, -0.09815885126590729, 0.10078337788581848, 0.03369623422622681, 0.06652303040027618, -0.1667918562889099, -0.04905695095658302, -0.05366089940071106, 0.2207377701997757, 0.09746754169464111, 0.05892741307616234, 0.08091410249471664, -0.04649857059121132, -0.016444765031337738, 0.05852566286921501, 0.14260010421276093, -0.0035855502355843782, -0.05530443415045738, -0.08316885679960251, 0.09207405894994736, -0.03361339867115021, 0.2029099464416504, -0.0027878836262971163, 0.03247135877609253, 0.011926419101655483, 0.1342293620109558, -0.012328439392149448, -0.004497826099395752, 0.036065723747015, -0.012825735844671726, -0.03833679482340813, 0.0017591265495866537, 0.07961133122444153, -0.020782409235835075, -0.12246599793434143, 0.20018929243087769, -0.162806436419487, 0.14677508175373077, 0.17532803118228912, -0.1937699168920517, -0.017624419182538986, -0.06899446994066238, -0.0014561681309714913, 0.007639643270522356, 0.03943164646625519, -0.01734003610908985, 0.2562061846256256, 0.025701092556118965, 0.19734551012516022, -0.04407130554318428, -0.01602765917778015, -0.006490752566605806, -0.09111211448907852, 0.0422317311167717, 0.07977245002985, 0.0885319709777832, -0.1383514106273651, 0.1428319662809372, 0.04410446435213089, 0.01749883033335209, 0.16758064925670624, 0.03785189241170883, 0.013347745873034, 0.06660832464694977, 0.005943625699728727, -0.04919089749455452, -0.08045414090156555, -0.2590551972389221, -0.024096431210637093, 0.07270047813653946, 0.018966101109981537, 0.1083482876420021, -0.09247846156358719, -0.023549759760499, 0.0024013398215174675, 0.004717576317489147, 0.01369502767920494, 0.11503274738788605, 0.03562179580330849, 0.12316729873418808, -0.005079229827970266, -0.09848757833242416, 0.01706513948738575, 0.003363866824656725, -0.06495338678359985, 0.19228793680667877, -0.114456906914711, -0.31890013813972473, -0.12678034603595734, -0.19574277102947235, -0.04208725318312645, 0.025844721123576164, 0.09411304444074631, -0.08214306086301804, -0.0075347041711211205, 0.0032717164140194654, 0.061842191964387894, -0.07207870483398438, 0.0017375469906255603, -0.019547419622540474, -0.00007372739491984248, -0.11973872780799866, -0.07271742820739746, -0.0540580078959465, -0.06821645051240921, -0.06278024613857269, 0.12771247327327728, -0.14327587187290192, -0.0025484140496701, 0.2589719891548157, 0.028087854385375977, 0.05328011512756348, -0.03892681747674942, 0.23502719402313232, -0.0943833515048027, 0.017993943765759468, 0.16592642664909363, -0.05417584627866745, 0.047918230295181274, 0.0948500707745552, 0.009576497599482536, -0.10090379416942596, 0.037273555994033813, -0.020468462258577347, -0.08656520396471024, -0.18870025873184204, -0.126470685005188, -0.11156199127435684, 0.0639728382229805, -0.004340617451816797, 0.04582124203443527, 0.18273456394672394, 0.049782123416662216, -0.0032390037085860968, 0.018213795498013496, 0.10371624678373337, 0.08495943248271942, 0.2444908618927002, -0.09286700189113617, 0.17164403200149536, 0.008483394980430603, -0.16904568672180176, 0.05695566534996033, 0.011282260529696941, 0.05482015013694763, 0.052865393459796906, 0.06624169647693634, 0.00953418668359518, -0.04556664824485779, 0.12533652782440186, 0.06589183211326599, -0.004275215789675713, -0.026552733033895493, -0.04771901294589043, -0.047971297055482864, -0.055177994072437286, 0.040028803050518036, 0.05814570561051369, -0.1662546843290329, 0.009763490408658981, 0.01253880187869072, 0.043650563806295395, 0.09735380858182907, 0.05188557133078575, -0.15729331970214844, 0.009392277337610722, 0.07835408300161362, -0.0241997167468071, -0.13888390362262726, 0.0485285259783268, 0.053179141134023666, -0.14355047047138214, 0.029553553089499474, 0.00030691016581840813, 0.12013410776853561, -0.04877592995762825, 0.06050394847989082, -0.08930297940969467, -0.05511054769158363, -0.008653790690004826, 0.09139644354581833, -0.26288193464279175, 0.1507837027311325, -0.020240195095539093, -0.07829372584819794, -0.10204637050628662, 0.007695801556110382, -0.007547386921942234, 0.10101412236690521, 0.09763733297586441, 0.0033413225319236517, 0.030684707686305046, -0.029411572962999344, -0.1142825335264206, 0.012071818113327026, 0.11628744006156921, -0.04531887546181679, -0.02595731057226658, -0.02930821292102337, -0.01367401983588934, -0.007541310973465443, -0.05932004377245903, 0.029139703139662743, -0.15055283904075623, 0.0615449994802475, 0.08961667120456696, 0.07114532589912415, -0.004493426531553268, -0.01952776312828064, 0.027033062651753426, 0.2473478466272354, -0.040893930941820145, -0.0993131697177887, -0.07678724080324173, 0.010436898097395897, 0.051547907292842865, -0.048464104533195496, 0.025598106905817986, -0.07634493708610535, -0.004006654489785433, -0.04612261429429054, -0.1715625524520874, 0.14305706322193146, -0.06839944422245026, -0.057934682816267014, -0.05899595469236374, 0.18178771436214447, -0.032606057822704315, 0.037796568125486374, 0.009361102245748043, -0.008211429230868816, -0.06922770291566849, -0.08278422802686691, -0.04985048994421959, 0.040059786289930344, -0.04367801547050476, 0.07060330361127853, -0.030968371778726578, -0.0019236926455050707, -0.06537486612796783, 0.03016742318868637, 0.3236445486545563, 0.13913610577583313, -0.03032490611076355, 0.1626468002796173, 0.09901487827301025, -0.02001798152923584, -0.24321717023849487, -0.12895402312278748, -0.06065673753619194, -0.028989506885409355, -0.08516093343496323, -0.21510790288448334, 0.0962975025177002, -0.022146034985780716, -0.03622803837060928, 0.09992056339979172, -0.2931797504425049, -0.12493811547756195, 0.21905900537967682, -0.0419226735830307, 0.37690627574920654, -0.13823086023330688, -0.07107678800821304, -0.05025414004921913, -0.12957903742790222, 0.11125331372022629, 0.03879285231232643, 0.12743155658245087, -0.01112917810678482, 0.1629696637392044, 0.04801521822810173, 0.006510602775961161, 0.06535613536834717, -0.009832963347434998, -0.08638914674520493, -0.07689391076564789, -0.04586893692612648, -0.02185804769396782, 0.026997731998562813, 0.020436745136976242, -0.06966373324394226, 0.003986164927482605, -0.17264360189437866, -0.03361963480710983, -0.10048694163560867, 0.031849462538957596, 0.041020717471838, -0.06022285297513008, 0.011936396360397339, -0.050521399825811386, -0.02745571732521057, 0.02261405624449253, 0.1254240721464157, -0.12874644994735718, 0.13882118463516235, 0.1488923579454422, 0.11724300682544708, -0.07767836004495621, -0.017329098656773567, -0.0407627671957016, -0.04225286841392517, 0.05140797421336174, -0.10996615141630173, -0.0017650704830884933, 0.06641923636198044, -0.016777241602540016, 0.10134206712245941, 0.10017645359039307, -0.03714386746287346, -0.0024647151585668325, 0.1158737912774086, -0.24090594053268433, -0.010898789390921593, -0.060293275862932205, 0.08581807464361191, 0.06571395695209503, 0.023230161517858505, 0.1851951628923416, -0.03818650543689728, -0.04948478937149048, 0.015595337375998497, 0.02504553087055683, -0.06284670531749725, 0.08586245030164719, 0.0023510868195444345, 0.04166091978549957, -0.15378360450267792, 0.035528894513845444, 0.028475167229771614, 0.016394348815083504, 0.05890127271413803, 0.1574230194091797, -0.09843142330646515, -0.08563381433486938, -0.05375481769442558, 0.09602169692516327, -0.02690633200109005, -0.0041209920309484005, -0.028163745999336243, -0.1551976203918457, 0.052157025784254074, 0.1097710058093071, 0.0361962728202343, 0.049044013023376465, -0.11730414628982544, -0.01589742675423622, -0.029934993013739586, -0.0018295811023563147, 0.019912270829081535, -0.016880620270967484, -0.01667073182761669, 0.018898718059062958, -0.028721237555146217, 0.09375631809234619, -0.11297771334648132, -0.11728207021951675, -0.17460107803344727, 0.03881080821156502, -0.10354572534561157, -0.08627701550722122, -0.07949745655059814, -0.06392136961221695, 0.004444784950464964, -0.015754234045743942, -0.03359302878379822, -0.05311235785484314, -0.1028013676404953, 0.01959017664194107, -0.055009640753269196, -0.009081055410206318, -0.1146053746342659, 0.021619269624352455, 0.05685541406273842, -0.04933765158057213, 0.15224723517894745, 0.16629724204540253, -0.07920558750629425, 0.07176713645458221, -0.10774767398834229, -0.07365183532238007, 0.15230178833007812, -0.004349838942289352, 0.05164547637104988, 0.06768016517162323, 0.025234507396817207, 0.00917490292340517, 0.09250791370868683, 0.05016567185521126, 0.056158967316150665, -0.10006973147392273, 0.004132597707211971, -0.0631319060921669, -0.08893248438835144, -0.03774415701627731, -0.03099597431719303, 0.049395617097616196, 0.057193852961063385, 0.06700767576694489, -0.060931410640478134, 0.08231472969055176, -0.06062288582324982, 0.03943789005279541, 0.007907036691904068, -0.16943059861660004, 0.04811101779341698, -0.10781586170196533, 0.03661554306745529, 0.0033311969600617886, 0.18814651668071747, 0.06904518604278564, -0.033454928547143936, 0.02599935419857502, 0.09989599138498306, 0.03174910321831703, 0.036856211721897125, 0.14179469645023346, 0.13645873963832855, -0.06223761662840843, -0.08637165278196335, 0.07660094648599625, 0.051326774060726166, 0.044200751930475235, 0.13494445383548737, -0.013406533747911453, -0.06663522869348526, 0.0853402316570282, 0.031452808529138565, 0.05027241259813309, -0.08646216988563538, -0.07216400653123856, -0.031188154593110085, 0.08357756584882736, -0.06141435727477074, 0.10299013555049896, 0.06998256593942642, -0.022382356226444244, 0.009124290198087692, -0.009093145839869976, -0.04291532188653946, -0.21202215552330017, -0.10251849889755249, -0.05067336559295654, -0.14029034972190857, 0.012966915033757687, -0.1312674731016159, 0.011137515306472778, -0.0027642385102808475, 0.07793264836072922, -0.03918672725558281, 0.08116696774959564, -0.03350501134991646, -0.08806581795215607, 0.09575047343969345, -0.025069458410143852, 0.057473715394735336, -0.06161908432841301, -0.010498503223061562, -0.06425614655017853, 0.08632224053144455, 0.041688643395900726, 0.04740901663899422, -0.07979118078947067, 0.02060789428651333, -0.12661942839622498, -0.11302653700113297, -0.06050548329949379, 0.050534237176179886, -0.007381832227110863, 0.12731996178627014, 0.007248920388519764, -0.0536191500723362, 0.015021458268165588, 0.27315273880958557, -0.0805007666349411, -0.09171527624130249, -0.07250744849443436, 0.24025145173072815, -0.03328382223844528, 0.09126570075750351, -0.05937584862112999, 0.003537561511620879, -0.14208607375621796, 0.3360309600830078, 0.2751983404159546, -0.12081743031740189, 0.01049118209630251, 0.024502640590071678, 0.03727184608578682, 0.10130701214075089, 0.11287495493888855, 0.11086484789848328, 0.28760308027267456, -0.06162668392062187, 0.023615166544914246, 0.025225115939974785, -0.09245322644710541, -0.0706678107380867, 0.0011795364553108811, 0.103932686150074, -0.07385926693677902, -0.03479811176657677, 0.11053728312253952, -0.33311644196510315, 0.06852360814809799, -0.1208711639046669, -0.19292263686656952, -0.07837831228971481, -0.02797708660364151, 0.06697455048561096, 0.05421430990099907, 0.11268684267997742, -0.015896426513791084, -0.08002520352602005, 0.04994582012295723, 0.019138451665639877, -0.1909794807434082, 0.015859777107834816, 0.07019288837909698, -0.10959546267986298, -0.07550212740898132, -0.020872555673122406, 0.0455351322889328, 0.061712346971035004, 0.04701797664165497, 0.023413367569446564, 0.016536163166165352, -0.030341554433107376, -0.039534445852041245, -0.00021905498579144478, 0.11951560527086258, -0.0028108267579227686, -0.11068342626094818, 0.07657317817211151, -0.1773250848054886, 0.03307246044278145, -0.0771820992231369, 0.00045913434587419033, -0.028938306495547295, 0.02962234616279602, -0.05433483421802521, 0.04577457904815674, 0.10203941911458969, -0.02455533668398857, -0.005359081085771322, -0.021799376234412193, -0.023709144443273544, -0.008442264050245285, -0.05905415490269661, -0.10380708426237106, -0.15258444845676422, -0.1438646763563156, 0.04798796400427818, 0.00026595272356644273, -0.2758606970310211, 0.041074931621551514, -0.15555927157402039, 0.0682208463549614, -0.11339332908391953, 0.10431782901287079, 0.11494354903697968, 0.0324263796210289, -0.00699563417583704, -0.07278363406658173, 0.04875483736395836, 0.08031640946865082, -0.15270110964775085, -0.057737015187740326 ]
null
null
transformers
# SpongeBob DialoGPT Model
{"tags": ["conversational"]}
text-generation
Htenn/DialoGPT-small-spongebobv2
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# SpongeBob DialoGPT Model
[ "# SpongeBob DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# SpongeBob DialoGPT Model" ]
[ 51, 10 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# SpongeBob DialoGPT Model" ]
[ 0.04686988517642021, 0.01831582933664322, -0.006684387568384409, -0.023361803963780403, 0.14531932771205902, -0.013098545372486115, 0.18535013496875763, 0.10620876401662827, -0.030331101268529892, -0.042498208582401276, 0.08937034010887146, 0.09790515899658203, -0.014450144954025745, 0.11827928572893143, -0.04757881537079811, -0.3587375283241272, 0.06408917158842087, 0.012861362658441067, -0.018598588183522224, 0.14205411076545715, 0.09289892017841339, -0.027558591216802597, 0.08265668898820877, 0.006802508607506752, -0.12033528834581375, 0.0067169079557061195, 0.0017116968519985676, -0.14243562519550323, 0.09221896529197693, 0.04456312954425812, 0.0812295600771904, 0.034930456429719925, -0.056649334728717804, -0.14625878632068634, 0.039093684405088425, 0.008180650882422924, -0.025763316079974174, 0.051514893770217896, 0.0019531247671693563, -0.07181382924318314, 0.2178095132112503, 0.11250326782464981, 0.035995230078697205, 0.041828934103250504, -0.1468363106250763, -0.016251681372523308, 0.0339907705783844, 0.05018032714724541, 0.09911790490150452, 0.09410835057497025, -0.0547698512673378, 0.07641182839870453, -0.12856486439704895, 0.11667317897081375, 0.1299220621585846, -0.3420248031616211, -0.04103289917111397, 0.10043267905712128, 0.07615493983030319, 0.060927100479602814, -0.013123441487550735, 0.10777200758457184, -0.02726730704307556, 0.011340757831931114, -0.002847728319466114, -0.08382408320903778, -0.0802609771490097, -0.009565574117004871, -0.09134458750486374, 0.011599632911384106, 0.25257936120033264, -0.022980118170380592, 0.04442165419459343, -0.1055527925491333, -0.0683298408985138, -0.004593315999954939, -0.06398124992847443, -0.0068123601377010345, -0.061636343598365784, 0.06879974901676178, -0.0493970587849617, -0.11263342946767807, -0.1010485589504242, -0.05062997341156006, -0.14790497720241547, 0.18139347434043884, 0.020957225933670998, 0.056452833116054535, -0.24492467939853668, 0.08862509578466415, -0.009075849317014217, -0.10234473645687103, 0.00610381318256259, -0.08624888956546783, 0.044847290962934494, 0.027772897854447365, -0.04747875779867172, -0.016635648906230927, 0.06930194050073624, 0.13487713038921356, 0.09919807314872742, 0.05611615255475044, -0.03803130239248276, 0.0775492936372757, 0.04779394343495369, 0.05901680141687393, -0.06249655783176422, -0.041965655982494354, 0.053289640694856644, -0.09884460270404816, 0.008289159275591373, -0.05974781513214111, -0.175046905875206, 0.019489463418722153, 0.06251803040504456, 0.03470971807837486, 0.028564583510160446, 0.11653069406747818, 0.010606297291815281, -0.030415434390306473, 0.010647817514836788, -0.018999159336090088, -0.0023603099398314953, 0.014890875667333603, -0.05267173424363136, 0.0831778347492218, 0.06282783299684525, 0.04281297326087952, -0.08849489688873291, 0.10785532742738724, -0.05468406900763512, -0.007660663686692715, -0.024600166827440262, -0.05932997912168503, -0.013896129094064236, -0.04396573454141617, 0.019952915608882904, -0.1461702138185501, -0.1655508130788803, 0.021412892267107964, -0.02929038181900978, -0.08957251906394958, -0.07719147205352783, -0.09159249067306519, -0.0511913038790226, 0.006167903542518616, -0.059107083827257156, 0.01821332424879074, -0.03865905478596687, 0.08702341467142105, 0.0004052188596688211, 0.11756281554698944, -0.15041755139827728, 0.07146923989057541, -0.08302543312311172, -0.01261977106332779, -0.17656196653842926, 0.14734433591365814, -0.0050957100465893745, 0.0151086850091815, -0.059521354734897614, -0.057876598089933395, -0.15223021805286407, 0.06357862800359726, -0.00892910361289978, 0.20062567293643951, -0.0575273372232914, -0.12416139990091324, 0.31534621119499207, -0.02703303098678589, -0.08993224054574966, 0.10694270581007004, -0.008550185710191727, 0.09804485738277435, 0.09827148914337158, 0.16154535114765167, -0.07119960337877274, 0.01815352961421013, 0.10288223624229431, 0.08182580024003983, -0.04971862584352493, 0.03755979984998703, 0.01814274862408638, 0.005490216426551342, -0.011350897140800953, 0.04021858051419258, 0.08345618098974228, 0.11459994316101074, -0.05888926237821579, 0.010466063395142555, 0.015599751845002174, -0.01334469299763441, 0.05617275834083557, -0.050610922276973724, 0.15467068552970886, -0.008677083067595959, -0.08234325051307678, 0.05990012362599373, -0.006406568456441164, -0.022647839039564133, 0.03135249391198158, -0.09815885126590729, 0.10078337788581848, 0.03369623422622681, 0.06652303040027618, -0.1667918562889099, -0.04905695095658302, -0.05366089940071106, 0.2207377701997757, 0.09746754169464111, 0.05892741307616234, 0.08091410249471664, -0.04649857059121132, -0.016444765031337738, 0.05852566286921501, 0.14260010421276093, -0.0035855502355843782, -0.05530443415045738, -0.08316885679960251, 0.09207405894994736, -0.03361339867115021, 0.2029099464416504, -0.0027878836262971163, 0.03247135877609253, 0.011926419101655483, 0.1342293620109558, -0.012328439392149448, -0.004497826099395752, 0.036065723747015, -0.012825735844671726, -0.03833679482340813, 0.0017591265495866537, 0.07961133122444153, -0.020782409235835075, -0.12246599793434143, 0.20018929243087769, -0.162806436419487, 0.14677508175373077, 0.17532803118228912, -0.1937699168920517, -0.017624419182538986, -0.06899446994066238, -0.0014561681309714913, 0.007639643270522356, 0.03943164646625519, -0.01734003610908985, 0.2562061846256256, 0.025701092556118965, 0.19734551012516022, -0.04407130554318428, -0.01602765917778015, -0.006490752566605806, -0.09111211448907852, 0.0422317311167717, 0.07977245002985, 0.0885319709777832, -0.1383514106273651, 0.1428319662809372, 0.04410446435213089, 0.01749883033335209, 0.16758064925670624, 0.03785189241170883, 0.013347745873034, 0.06660832464694977, 0.005943625699728727, -0.04919089749455452, -0.08045414090156555, -0.2590551972389221, -0.024096431210637093, 0.07270047813653946, 0.018966101109981537, 0.1083482876420021, -0.09247846156358719, -0.023549759760499, 0.0024013398215174675, 0.004717576317489147, 0.01369502767920494, 0.11503274738788605, 0.03562179580330849, 0.12316729873418808, -0.005079229827970266, -0.09848757833242416, 0.01706513948738575, 0.003363866824656725, -0.06495338678359985, 0.19228793680667877, -0.114456906914711, -0.31890013813972473, -0.12678034603595734, -0.19574277102947235, -0.04208725318312645, 0.025844721123576164, 0.09411304444074631, -0.08214306086301804, -0.0075347041711211205, 0.0032717164140194654, 0.061842191964387894, -0.07207870483398438, 0.0017375469906255603, -0.019547419622540474, -0.00007372739491984248, -0.11973872780799866, -0.07271742820739746, -0.0540580078959465, -0.06821645051240921, -0.06278024613857269, 0.12771247327327728, -0.14327587187290192, -0.0025484140496701, 0.2589719891548157, 0.028087854385375977, 0.05328011512756348, -0.03892681747674942, 0.23502719402313232, -0.0943833515048027, 0.017993943765759468, 0.16592642664909363, -0.05417584627866745, 0.047918230295181274, 0.0948500707745552, 0.009576497599482536, -0.10090379416942596, 0.037273555994033813, -0.020468462258577347, -0.08656520396471024, -0.18870025873184204, -0.126470685005188, -0.11156199127435684, 0.0639728382229805, -0.004340617451816797, 0.04582124203443527, 0.18273456394672394, 0.049782123416662216, -0.0032390037085860968, 0.018213795498013496, 0.10371624678373337, 0.08495943248271942, 0.2444908618927002, -0.09286700189113617, 0.17164403200149536, 0.008483394980430603, -0.16904568672180176, 0.05695566534996033, 0.011282260529696941, 0.05482015013694763, 0.052865393459796906, 0.06624169647693634, 0.00953418668359518, -0.04556664824485779, 0.12533652782440186, 0.06589183211326599, -0.004275215789675713, -0.026552733033895493, -0.04771901294589043, -0.047971297055482864, -0.055177994072437286, 0.040028803050518036, 0.05814570561051369, -0.1662546843290329, 0.009763490408658981, 0.01253880187869072, 0.043650563806295395, 0.09735380858182907, 0.05188557133078575, -0.15729331970214844, 0.009392277337610722, 0.07835408300161362, -0.0241997167468071, -0.13888390362262726, 0.0485285259783268, 0.053179141134023666, -0.14355047047138214, 0.029553553089499474, 0.00030691016581840813, 0.12013410776853561, -0.04877592995762825, 0.06050394847989082, -0.08930297940969467, -0.05511054769158363, -0.008653790690004826, 0.09139644354581833, -0.26288193464279175, 0.1507837027311325, -0.020240195095539093, -0.07829372584819794, -0.10204637050628662, 0.007695801556110382, -0.007547386921942234, 0.10101412236690521, 0.09763733297586441, 0.0033413225319236517, 0.030684707686305046, -0.029411572962999344, -0.1142825335264206, 0.012071818113327026, 0.11628744006156921, -0.04531887546181679, -0.02595731057226658, -0.02930821292102337, -0.01367401983588934, -0.007541310973465443, -0.05932004377245903, 0.029139703139662743, -0.15055283904075623, 0.0615449994802475, 0.08961667120456696, 0.07114532589912415, -0.004493426531553268, -0.01952776312828064, 0.027033062651753426, 0.2473478466272354, -0.040893930941820145, -0.0993131697177887, -0.07678724080324173, 0.010436898097395897, 0.051547907292842865, -0.048464104533195496, 0.025598106905817986, -0.07634493708610535, -0.004006654489785433, -0.04612261429429054, -0.1715625524520874, 0.14305706322193146, -0.06839944422245026, -0.057934682816267014, -0.05899595469236374, 0.18178771436214447, -0.032606057822704315, 0.037796568125486374, 0.009361102245748043, -0.008211429230868816, -0.06922770291566849, -0.08278422802686691, -0.04985048994421959, 0.040059786289930344, -0.04367801547050476, 0.07060330361127853, -0.030968371778726578, -0.0019236926455050707, -0.06537486612796783, 0.03016742318868637, 0.3236445486545563, 0.13913610577583313, -0.03032490611076355, 0.1626468002796173, 0.09901487827301025, -0.02001798152923584, -0.24321717023849487, -0.12895402312278748, -0.06065673753619194, -0.028989506885409355, -0.08516093343496323, -0.21510790288448334, 0.0962975025177002, -0.022146034985780716, -0.03622803837060928, 0.09992056339979172, -0.2931797504425049, -0.12493811547756195, 0.21905900537967682, -0.0419226735830307, 0.37690627574920654, -0.13823086023330688, -0.07107678800821304, -0.05025414004921913, -0.12957903742790222, 0.11125331372022629, 0.03879285231232643, 0.12743155658245087, -0.01112917810678482, 0.1629696637392044, 0.04801521822810173, 0.006510602775961161, 0.06535613536834717, -0.009832963347434998, -0.08638914674520493, -0.07689391076564789, -0.04586893692612648, -0.02185804769396782, 0.026997731998562813, 0.020436745136976242, -0.06966373324394226, 0.003986164927482605, -0.17264360189437866, -0.03361963480710983, -0.10048694163560867, 0.031849462538957596, 0.041020717471838, -0.06022285297513008, 0.011936396360397339, -0.050521399825811386, -0.02745571732521057, 0.02261405624449253, 0.1254240721464157, -0.12874644994735718, 0.13882118463516235, 0.1488923579454422, 0.11724300682544708, -0.07767836004495621, -0.017329098656773567, -0.0407627671957016, -0.04225286841392517, 0.05140797421336174, -0.10996615141630173, -0.0017650704830884933, 0.06641923636198044, -0.016777241602540016, 0.10134206712245941, 0.10017645359039307, -0.03714386746287346, -0.0024647151585668325, 0.1158737912774086, -0.24090594053268433, -0.010898789390921593, -0.060293275862932205, 0.08581807464361191, 0.06571395695209503, 0.023230161517858505, 0.1851951628923416, -0.03818650543689728, -0.04948478937149048, 0.015595337375998497, 0.02504553087055683, -0.06284670531749725, 0.08586245030164719, 0.0023510868195444345, 0.04166091978549957, -0.15378360450267792, 0.035528894513845444, 0.028475167229771614, 0.016394348815083504, 0.05890127271413803, 0.1574230194091797, -0.09843142330646515, -0.08563381433486938, -0.05375481769442558, 0.09602169692516327, -0.02690633200109005, -0.0041209920309484005, -0.028163745999336243, -0.1551976203918457, 0.052157025784254074, 0.1097710058093071, 0.0361962728202343, 0.049044013023376465, -0.11730414628982544, -0.01589742675423622, -0.029934993013739586, -0.0018295811023563147, 0.019912270829081535, -0.016880620270967484, -0.01667073182761669, 0.018898718059062958, -0.028721237555146217, 0.09375631809234619, -0.11297771334648132, -0.11728207021951675, -0.17460107803344727, 0.03881080821156502, -0.10354572534561157, -0.08627701550722122, -0.07949745655059814, -0.06392136961221695, 0.004444784950464964, -0.015754234045743942, -0.03359302878379822, -0.05311235785484314, -0.1028013676404953, 0.01959017664194107, -0.055009640753269196, -0.009081055410206318, -0.1146053746342659, 0.021619269624352455, 0.05685541406273842, -0.04933765158057213, 0.15224723517894745, 0.16629724204540253, -0.07920558750629425, 0.07176713645458221, -0.10774767398834229, -0.07365183532238007, 0.15230178833007812, -0.004349838942289352, 0.05164547637104988, 0.06768016517162323, 0.025234507396817207, 0.00917490292340517, 0.09250791370868683, 0.05016567185521126, 0.056158967316150665, -0.10006973147392273, 0.004132597707211971, -0.0631319060921669, -0.08893248438835144, -0.03774415701627731, -0.03099597431719303, 0.049395617097616196, 0.057193852961063385, 0.06700767576694489, -0.060931410640478134, 0.08231472969055176, -0.06062288582324982, 0.03943789005279541, 0.007907036691904068, -0.16943059861660004, 0.04811101779341698, -0.10781586170196533, 0.03661554306745529, 0.0033311969600617886, 0.18814651668071747, 0.06904518604278564, -0.033454928547143936, 0.02599935419857502, 0.09989599138498306, 0.03174910321831703, 0.036856211721897125, 0.14179469645023346, 0.13645873963832855, -0.06223761662840843, -0.08637165278196335, 0.07660094648599625, 0.051326774060726166, 0.044200751930475235, 0.13494445383548737, -0.013406533747911453, -0.06663522869348526, 0.0853402316570282, 0.031452808529138565, 0.05027241259813309, -0.08646216988563538, -0.07216400653123856, -0.031188154593110085, 0.08357756584882736, -0.06141435727477074, 0.10299013555049896, 0.06998256593942642, -0.022382356226444244, 0.009124290198087692, -0.009093145839869976, -0.04291532188653946, -0.21202215552330017, -0.10251849889755249, -0.05067336559295654, -0.14029034972190857, 0.012966915033757687, -0.1312674731016159, 0.011137515306472778, -0.0027642385102808475, 0.07793264836072922, -0.03918672725558281, 0.08116696774959564, -0.03350501134991646, -0.08806581795215607, 0.09575047343969345, -0.025069458410143852, 0.057473715394735336, -0.06161908432841301, -0.010498503223061562, -0.06425614655017853, 0.08632224053144455, 0.041688643395900726, 0.04740901663899422, -0.07979118078947067, 0.02060789428651333, -0.12661942839622498, -0.11302653700113297, -0.06050548329949379, 0.050534237176179886, -0.007381832227110863, 0.12731996178627014, 0.007248920388519764, -0.0536191500723362, 0.015021458268165588, 0.27315273880958557, -0.0805007666349411, -0.09171527624130249, -0.07250744849443436, 0.24025145173072815, -0.03328382223844528, 0.09126570075750351, -0.05937584862112999, 0.003537561511620879, -0.14208607375621796, 0.3360309600830078, 0.2751983404159546, -0.12081743031740189, 0.01049118209630251, 0.024502640590071678, 0.03727184608578682, 0.10130701214075089, 0.11287495493888855, 0.11086484789848328, 0.28760308027267456, -0.06162668392062187, 0.023615166544914246, 0.025225115939974785, -0.09245322644710541, -0.0706678107380867, 0.0011795364553108811, 0.103932686150074, -0.07385926693677902, -0.03479811176657677, 0.11053728312253952, -0.33311644196510315, 0.06852360814809799, -0.1208711639046669, -0.19292263686656952, -0.07837831228971481, -0.02797708660364151, 0.06697455048561096, 0.05421430990099907, 0.11268684267997742, -0.015896426513791084, -0.08002520352602005, 0.04994582012295723, 0.019138451665639877, -0.1909794807434082, 0.015859777107834816, 0.07019288837909698, -0.10959546267986298, -0.07550212740898132, -0.020872555673122406, 0.0455351322889328, 0.061712346971035004, 0.04701797664165497, 0.023413367569446564, 0.016536163166165352, -0.030341554433107376, -0.039534445852041245, -0.00021905498579144478, 0.11951560527086258, -0.0028108267579227686, -0.11068342626094818, 0.07657317817211151, -0.1773250848054886, 0.03307246044278145, -0.0771820992231369, 0.00045913434587419033, -0.028938306495547295, 0.02962234616279602, -0.05433483421802521, 0.04577457904815674, 0.10203941911458969, -0.02455533668398857, -0.005359081085771322, -0.021799376234412193, -0.023709144443273544, -0.008442264050245285, -0.05905415490269661, -0.10380708426237106, -0.15258444845676422, -0.1438646763563156, 0.04798796400427818, 0.00026595272356644273, -0.2758606970310211, 0.041074931621551514, -0.15555927157402039, 0.0682208463549614, -0.11339332908391953, 0.10431782901287079, 0.11494354903697968, 0.0324263796210289, -0.00699563417583704, -0.07278363406658173, 0.04875483736395836, 0.08031640946865082, -0.15270110964775085, -0.057737015187740326 ]
null
null
transformers
#Rick Sanchez DiaoloGPT Model
{"tags": ["conversational"]}
text-generation
HueJanus/DialoGPT-small-ricksanchez
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#Rick Sanchez DiaoloGPT Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
spacy
| Feature | Description | | --- | --- | | **Name** | `en_roberta_base_leetspeak_ner` | | **Version** | `0.0.0` | | **spaCy** | `>=3.2.1,<3.3.0` | | **Default Pipeline** | `transformer`, `ner` | | **Components** | `transformer`, `ner` | | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) | | **Sources** | [roberta-base](https://huggingface.co/roberta-base) pre-trained model on English language using a masked language modeling (MLM) objective by Yinhan Liu et al. <br> [LeetSpeak-NER](https://huggingface.co/spaces/Huertas97/LeetSpeak-NER) app where this model is in production for countering information disorders| | **License** | Apache 2.0 | | **Author** | [Álvaro Huertas García](https://www.linkedin.com/in/alvaro-huertas-garcia/) at [AI+DA](http://aida.etsisi.upm.es/) | ### Label Scheme <details> <summary>View label scheme (4 labels for 1 components)</summary> | Component | Labels | | --- | --- | | **`ner`** | `INV_CAMO`, `LEETSPEAK`, `MIX`, `PUNCT_CAMO` | </details> ### Accuracy | Type | Score | | --- | --- | | `ENTS_F` | 82.80 | | `ENTS_P` | 79.66 | | `ENTS_R` | 86.20 | | `TRANSFORMER_LOSS` | 177808.42 | | `NER_LOSS` | 608427.31 |
{"language": ["en"], "license": "apache-2.0", "tags": ["spacy", "token-classification"], "widget": [{"text": "But one other thing that we have to re;think is the way that we dy\u00a3 our #c!l.o|th?\u00a3+s.", "example_title": "Word camouflage detection"}]}
token-classification
Huertas97/en_roberta_base_leetspeak_ner
[ "spacy", "token-classification", "en", "license:apache-2.0", "model-index", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #spacy #token-classification #en #license-apache-2.0 #model-index #region-us
### Label Scheme View label scheme (4 labels for 1 components) ### Accuracy
[ "### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)", "### Accuracy" ]
[ "TAGS\n#spacy #token-classification #en #license-apache-2.0 #model-index #region-us \n", "### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)", "### Accuracy" ]
[ 29, 16, 5 ]
[ "passage: TAGS\n#spacy #token-classification #en #license-apache-2.0 #model-index #region-us \n### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)### Accuracy" ]
[ -0.05568309128284454, 0.17319437861442566, -0.0034472632687538862, 0.041638392955064774, 0.06083042547106743, 0.03757912665605545, 0.26408088207244873, 0.08819597214460373, 0.1715358942747116, 0.010658691637217999, 0.06291800737380981, 0.07930941879749298, 0.05281561613082886, 0.2113848477602005, -0.06922280043363571, -0.21227715909481049, 0.11571303755044937, -0.035667866468429565, 0.02719002589583397, 0.1196933165192604, 0.08958529680967331, -0.10638204962015152, 0.05836468189954758, -0.03823268041014671, -0.16291067004203796, 0.011090396903455257, 0.01565633900463581, -0.10898629575967789, 0.06445775181055069, -0.048063866794109344, 0.14021985232830048, 0.029567304998636246, 0.06506964564323425, -0.23643621802330017, -0.00689398217946291, -0.017446773126721382, -0.06359647214412689, 0.07276640087366104, 0.0432317890226841, 0.010874015279114246, -0.06780748814344406, -0.03301756829023361, 0.046514809131622314, 0.062385790050029755, -0.09552178531885147, -0.19872042536735535, -0.08874273300170898, 0.14862880110740662, 0.11650875955820084, -0.031407251954078674, 0.004167351871728897, 0.07355313003063202, -0.11090166866779327, 0.04803861305117607, 0.12505578994750977, -0.3667391538619995, 0.013009348884224892, 0.2003091275691986, -0.05507701635360718, 0.09366273134946823, -0.03251546621322632, 0.11449315398931503, 0.1240299865603447, -0.005616235081106424, -0.007043669931590557, -0.008319691754877567, 0.028130782768130302, 0.036207590252161026, -0.10314825922250748, -0.10028225183486938, 0.529045820236206, 0.10531264543533325, -0.03950588032603264, -0.09138276427984238, -0.05248118191957474, -0.09441480040550232, -0.08359909802675247, -0.0068263462744653225, 0.091545969247818, 0.06909023225307465, 0.14813299477100372, 0.09374290704727173, -0.10383439809083939, -0.05803303048014641, -0.14235453307628632, 0.15706878900527954, 0.01972208544611931, 0.1102377250790596, -0.15374428033828735, 0.01971803791821003, -0.05821579694747925, -0.08438193053007126, 0.010614846833050251, -0.07105221599340439, -0.03780514746904373, 0.006535706575959921, 0.011717941612005234, 0.13901308178901672, 0.13452455401420593, 0.16002808511257172, 0.01621844619512558, 0.022320404648780823, -0.035992857068777084, 0.07697403430938721, 0.0966961681842804, 0.15293999016284943, -0.02538456581532955, -0.02988656796514988, 0.010093066841363907, -0.07008993625640869, 0.10145776718854904, -0.04171271249651909, -0.13623672723770142, 0.03271130844950676, 0.07149920612573624, 0.13431809842586517, -0.03329254686832428, -0.03524437174201012, -0.11296255141496658, -0.03513650596141815, 0.11601522564888, -0.12719233334064484, 0.014188055880367756, -0.01858646050095558, -0.00032232562080025673, 0.06294051557779312, -0.08453138172626495, 0.012169779278337955, 0.029689665883779526, -0.028584709390997887, -0.09929313510656357, -0.01017254963517189, -0.0037260460667312145, -0.051645439118146896, 0.06739387661218643, -0.07705234736204147, 0.032492462545633316, -0.04174644500017166, -0.1656539887189865, 0.001687326468527317, 0.007960406132042408, -0.04781246930360794, -0.05006204545497894, 0.004097146447747946, -0.08377842605113983, -0.00016393850091844797, -0.008108305744826794, -0.030598070472478867, -0.10598620772361755, -0.01614372245967388, -0.05087224766612053, 0.06034483388066292, -0.10116912424564362, 0.0423070527613163, -0.08539768308401108, 0.063307024538517, -0.12778621912002563, 0.008656363934278488, -0.11356803774833679, 0.10656586289405823, -0.09340471774339676, -0.0606352798640728, 0.0815097913146019, -0.023478258401155472, -0.11889774352312088, 0.12781140208244324, -0.2180383950471878, -0.0361376516520977, 0.19025006890296936, -0.1949104219675064, -0.15876898169517517, 0.04960482567548752, 0.015157102607190609, 0.04232106730341911, 0.07104213535785675, 0.15141905844211578, 0.0018072929233312607, -0.08759519457817078, -0.0038190120831131935, 0.11278165876865387, -0.030667969956994057, -0.08401356637477875, 0.12746265530586243, -0.024153580889105797, -0.006322572473436594, 0.06653932482004166, -0.00929656159132719, -0.0969678983092308, -0.02344750612974167, -0.09612845629453659, -0.061872851103544235, 0.021372966468334198, 0.006256110966205597, 0.008263008669018745, 0.014147681184113026, -0.05257679894566536, 0.012241536751389503, -0.023095877841114998, 0.08260860294103622, 0.03888446092605591, -0.034419864416122437, -0.0453321635723114, 0.11068006604909897, -0.10662408918142319, -0.03962346911430359, -0.14234118163585663, -0.11401081085205078, 0.05587141588330269, -0.03317006677389145, 0.027680208906531334, 0.13320894539356232, -0.015718046575784683, -0.023129355162382126, 0.009846564382314682, -0.008280119858682156, -0.012838874943554401, 0.08915364742279053, -0.025379588827490807, -0.20880234241485596, -0.04540286958217621, -0.06858426332473755, 0.09258001297712326, 0.0034027588553726673, 0.021820178255438805, 0.1400030106306076, 0.06216743215918541, 0.007636160124093294, 0.0644080862402916, 0.032144710421562195, 0.0017980680568143725, -0.04660820960998535, -0.057453155517578125, 0.07490922510623932, -0.05099280923604965, -0.06038593873381615, -0.025874951854348183, -0.06627584248781204, 0.0892920196056366, 0.16142427921295166, -0.06781621277332306, 0.007620232179760933, -0.03810005262494087, -0.008872992359101772, -0.004615423269569874, -0.09282664209604263, 0.02197081781923771, -0.09363929182291031, -0.024316420778632164, 0.0279015451669693, -0.1027725338935852, -0.02385137975215912, 0.02611652947962284, -0.05156558007001877, -0.12099072337150574, 0.07085483521223068, 0.04542943090200424, -0.19789649546146393, 0.17576321959495544, 0.3278774321079254, 0.12263425439596176, 0.03543417900800705, -0.10486176609992981, -0.038909245282411575, -0.04896622151136398, -0.012675960548222065, -0.08616273105144501, 0.17077437043190002, -0.1456817239522934, -0.012735072523355484, 0.09073362499475479, 0.08186429738998413, -0.0025044719222933054, -0.20388172566890717, -0.005897680763155222, -0.026606187224388123, -0.07897938787937164, -0.11295261979103088, -0.04615071043372154, -0.01819797232747078, 0.11398779600858688, 0.030900608748197556, -0.2014271467924118, 0.10797734558582306, -0.04739074781537056, -0.07576551288366318, 0.14018137753009796, -0.1263853758573532, -0.22014662623405457, -0.14604778587818146, -0.0455876886844635, -0.10617490112781525, 0.023532511666417122, 0.023411985486745834, -0.09011437743902206, -0.0643598735332489, -0.0074875191785395145, -0.09818276017904282, -0.12710663676261902, -0.02748098224401474, -0.014629877172410488, 0.085634745657444, -0.08671191334724426, -0.08267662674188614, -0.08833938837051392, -0.03234385699033737, 0.05448877438902855, 0.07570918649435043, -0.12964849174022675, 0.0686555877327919, 0.2710825800895691, 0.0008322253706865013, 0.07158906757831573, -0.0030886593740433455, 0.11419659107923508, -0.04533766955137253, 0.0445413663983345, 0.15084658563137054, 0.05975274369120598, 0.03917201980948448, 0.263765424489975, 0.07576605677604675, -0.130628764629364, -0.032760120928287506, -0.044252462685108185, -0.09373656660318375, -0.2075529396533966, -0.10340702533721924, -0.04621672257781029, 0.011211348697543144, 0.02838791348040104, 0.06560743600130081, 0.05633024871349335, 0.0475345253944397, -0.008670048788189888, -0.0015163753414526582, 0.06277899444103241, 0.048150576651096344, 0.14343906939029694, -0.04587097093462944, 0.08906774967908859, -0.08198107779026031, -0.023591941222548485, 0.10056611150503159, 0.12812235951423645, 0.20093299448490143, 0.19703428447246552, 0.09192495793104172, 0.11998648196458817, 0.07357025891542435, 0.09681492298841476, 0.07441576570272446, 0.1529417634010315, -0.006873383652418852, -0.04244310408830643, -0.061107128858566284, 0.002431755419820547, 0.07844070345163345, -0.058202795684337616, -0.04216859117150307, -0.044974345713853836, -0.07871822267770767, 0.0932154729962349, 0.11325402557849884, 0.2190188467502594, -0.18825788795948029, 0.019121356308460236, 0.12387236207723618, 0.0621257908642292, -0.04286906123161316, 0.11370028555393219, -0.02499714493751526, -0.09046545624732971, 0.08648664504289627, -0.0016477094031870365, 0.12157372385263443, -0.05858392268419266, -0.014043105766177177, -0.035297226160764694, -0.07263289391994476, 0.02565913088619709, 0.11879262328147888, -0.11155345290899277, 0.2921760082244873, 0.017280787229537964, -0.030485261231660843, -0.07236018031835556, 0.028074223548173904, 0.03405148908495903, 0.2444295883178711, 0.20461301505565643, 0.05092258378863335, -0.2208406925201416, -0.12421676516532898, -0.06690298765897751, -0.0028414202388375998, 0.09546779096126556, -0.03545120358467102, 0.0014408854767680168, -0.005637817084789276, 0.007018972188234329, -0.008642404340207577, 0.06344317644834518, -0.08661041408777237, -0.04546087235212326, 0.02309717796742916, 0.12309946864843369, -0.08390185236930847, -0.06950566917657852, -0.05458300933241844, -0.14892688393592834, 0.12588898837566376, -0.026754489168524742, -0.11407764256000519, -0.09016899019479752, -0.04623931273818016, 0.08939370512962341, -0.007936442270874977, -0.005501709878444672, -0.0703510046005249, 0.12919744849205017, 0.020738504827022552, -0.1118527352809906, 0.10047892481088638, -0.07296790182590485, -0.054935675114393234, -0.06050541624426842, 0.1410405933856964, -0.06956323981285095, -0.014717770740389824, 0.06638922542333603, 0.07282867282629013, -0.029742611572146416, -0.1309577077627182, 0.08223729580640793, 0.02791748382151127, 0.028532221913337708, 0.2173951119184494, -0.0963507890701294, -0.13308881223201752, -0.020916201174259186, 0.022480932995676994, 0.10905771702528, 0.2518596351146698, -0.10621824115514755, 0.11731380969285965, 0.10622270405292511, -0.04699325934052467, -0.1950540691614151, -0.10240741074085236, -0.16857822239398956, -0.03607073053717613, -0.00897569302469492, -0.06488221138715744, 0.17332866787910461, 0.051239680498838425, -0.09905198961496353, 0.06889399141073227, -0.2388618439435959, -0.06412453949451447, 0.20929095149040222, 0.019967857748270035, 0.1507951021194458, -0.09535291790962219, -0.12108582258224487, -0.09845635294914246, -0.18934260308742523, 0.13774602115154266, -0.06364496052265167, 0.0706554725766182, -0.028140870854258537, -0.028081217780709267, -0.019311875104904175, -0.007127823773771524, 0.2461598664522171, 0.11593609303236008, 0.09682507812976837, 0.017252326011657715, -0.10829301923513412, 0.21177303791046143, -0.024673668667674065, 0.05594398453831673, 0.06963315606117249, 0.028828803449869156, -0.09361615031957626, -0.0009296376374550164, 0.00205040629953146, 0.016742637380957603, -0.06865978986024857, -0.05251021310687065, -0.08878374844789505, -0.006801852025091648, -0.04470842704176903, -0.05436194688081741, 0.27102750539779663, 0.0027586191426962614, 0.03766806796193123, 0.2043163776397705, -0.043412238359451294, -0.13326746225357056, -0.06186719611287117, -0.10320121049880981, -0.07727367430925369, 0.04625304415822029, -0.22197461128234863, 0.060215819627046585, 0.0917905941605568, 0.023056866601109505, 0.13240841031074524, 0.10081910341978073, -0.03842587769031525, -0.06890049576759338, 0.09735807031393051, -0.07869797945022583, -0.1738327294588089, 0.025222400203347206, -0.13406631350517273, 0.002112437505275011, 0.07867998629808426, 0.07757038623094559, 0.024845385923981667, -0.027714906260371208, 0.0182490237057209, 0.07343553751707077, -0.07263140380382538, 0.08949379622936249, 0.022988691926002502, 0.056204903870821, -0.16458196938037872, 0.19723041355609894, 0.08334529399871826, 0.021652910858392715, -0.07133220881223679, -0.06480327993631363, -0.1497230976819992, -0.0662069022655487, 0.03153688460588455, 0.12098564207553864, -0.08789440244436264, -0.16049034893512726, -0.10710971802473068, -0.1895940899848938, 0.030165115371346474, 0.02224930189549923, 0.1580536812543869, 0.10410135984420776, 0.01146930642426014, -0.10847695916891098, 0.07465551793575287, 0.06879926472902298, -0.0597887821495533, 0.007837248034775257, -0.21914948523044586, -0.027804385870695114, -0.014075235463678837, 0.1073898896574974, -0.08070634305477142, -0.06233835965394974, -0.08477385342121124, 0.016580509021878242, -0.12181635946035385, 0.0826212540268898, -0.05673130601644516, 0.010465086437761784, 0.01898156851530075, -0.029883285984396935, -0.05745188519358635, 0.007372032850980759, -0.1082904189825058, 0.011081724427640438, 0.0022900919429957867, 0.1757735162973404, -0.1242683157324791, -0.03315465897321701, 0.08930017054080963, -0.04175958409905434, 0.07921531051397324, 0.04633495956659317, 0.011083060875535011, 0.06676505506038666, -0.16137705743312836, -0.009798151440918446, 0.08999335020780563, 0.04272361472249031, 0.06255479902029037, -0.15020594000816345, -0.023924008011817932, 0.06791499257087708, -0.08066780865192413, 0.07249617576599121, -0.07856836169958115, -0.12254782766103745, -0.1697506159543991, -0.1048540472984314, -0.14158862829208374, -0.013024947606027126, -0.0018101740861311555, 0.22469866275787354, 0.028326302766799927, 0.0824877917766571, 0.0453781820833683, 0.009496183134615421, -0.07012584060430527, -0.002871631644666195, -0.07465160638093948, -0.09441441297531128, -0.07823321223258972, -0.005033552646636963, -0.0383860282599926, -0.03787835314869881, 0.32848381996154785, 0.04194994270801544, -0.018015000969171524, 0.05343450605869293, 0.20040792226791382, -0.009164213202893734, 0.05157668516039848, 0.272660493850708, 0.06794340908527374, -0.018119050189852715, 0.04247617721557617, -0.002869936404749751, 0.019909773021936417, 0.0022340118885040283, 0.1185840517282486, 0.11233261227607727, -0.05204525962471962, 0.07406975328922272, 0.04637199640274048, -0.011708995327353477, -0.044149577617645264, 0.08526677638292313, 0.06562625616788864, 0.06676462292671204, 0.06165388971567154, -0.05250321328639984, 0.1173509955406189, -0.1602056324481964, 0.0917172059416771, -0.0220995731651783, -0.07815977931022644, -0.17452606558799744, -0.10399574041366577, -0.07939425855875015, -0.08401922136545181, -0.007586175575852394, -0.10472002625465393, -0.02586548775434494, 0.20015914738178253, 0.022179702296853065, -0.025335093960165977, -0.021059058606624603, -0.22723057866096497, 0.007807077839970589, 0.07631192356348038, -0.0020448907744139433, -0.03755916282534599, -0.054024290293455124, -0.014761236496269703, 0.011981253512203693, -0.04473824426531792, -0.050667181611061096, -0.013644510880112648, 0.06586232036352158, -0.011024154722690582, -0.16313813626766205, -0.05199703574180603, -0.04302239418029785, -0.04119426757097244, -0.015203268267214298, -0.03275037556886673, 0.041972815990448, -0.004961465485394001, 0.06344438344240189, 0.251675546169281, -0.06831157207489014, -0.03768465295433998, -0.0975373387336731, 0.1986517459154129, -0.07130040228366852, 0.0659448504447937, 0.06996346265077591, -0.06007029861211777, -0.04625527188181877, 0.11400546878576279, 0.1756964474916458, 0.0004921145155094564, -0.026264064013957977, 0.0059506939724087715, -0.011595765128731728, 0.026217568665742874, 0.011943011544644833, -0.01992155611515045, 0.08278360217809677, -0.0610102154314518, 0.10529311001300812, -0.09206348657608032, -0.03688989207148552, -0.1035715788602829, -0.018912920728325844, 0.1029529720544815, -0.08581021428108215, -0.10653579235076904, 0.18763019144535065, -0.026667585596442223, 0.01723477803170681, 0.20936724543571472, -0.06940121203660965, -0.11020847409963608, -0.0011219095904380083, 0.0737074613571167, 0.011937607079744339, 0.037983085960149765, -0.1173209622502327, 0.020092131569981575, 0.09516894072294235, 0.003047309350222349, -0.17358863353729248, -0.09604663401842117, 0.06313557177782059, -0.060967858880758286, 0.14166344702243805, 0.0098327761515975, 0.15494634211063385, 0.10448984801769257, -0.019797520712018013, -0.10150867700576782, 0.08694788813591003, 0.009940783493220806, 0.06478384137153625, 0.0005139654967933893, 0.002156071597710252, -0.013516108505427837, -0.0928531214594841, 0.09775174409151077, -0.039405014365911484, -0.016330547630786896, 0.047863271087408066, -0.09327917546033859, -0.06484369188547134, 0.03360503539443016, -0.12833181023597717, 0.08230665326118469, 0.04474741220474243, -0.0561775304377079, -0.01858934387564659, -0.002691924571990967, 0.08096010982990265, 0.06323324143886566, -0.12645256519317627, 0.028511501848697662, 0.035835184156894684, 0.016693511977791786, 0.07058247923851013, 0.00686591537669301, -0.14709553122520447, -0.03849850967526436, -0.0630391538143158, 0.00841205008327961, -0.08353523164987564, 0.09127140790224075, 0.14154259860515594, 0.03138459473848343, -0.0514582097530365, -0.17646943032741547, 0.03805123642086983, 0.0636163055896759, -0.04580240324139595, -0.07946706563234329 ]
null
null
spacy
| Feature | Description | | --- | --- | | **Name** | `es_roberta_base_bne_leetspeak_ner` | | **Version** | `0.0.0` | | **spaCy** | `>=3.2.1,<3.3.0` | | **Default Pipeline** | `transformer`, `ner` | | **Components** | `transformer`, `ner` | | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) | | **Sources** | [PlanTL-GOB-ES/roberta-base-bne](https://huggingface.co/PlanTL-GOB-ES/roberta-base-bne) model a transformer-based masked language model for the Spanish language pre-trained with a total of 570GB of clean and deduplicated text compiled from the web crawlings performed by the National Library of Spain (Biblioteca Nacional de España) <br> [LeetSpeak-NER](https://huggingface.co/spaces/Huertas97/LeetSpeak-NER) app where this model is in production for countering information disorders| | **License** | Apache 2.0 | | **Author** | [Álvaro Huertas García](https://www.linkedin.com/in/alvaro-huertas-garcia/) at [AI+DA](http://aida.etsisi.upm.es/) | ### Label Scheme <details> <summary>View label scheme (4 labels for 1 components)</summary> | Component | Labels | | --- | --- | | **`ner`** | `INV_CAMO`, `LEETSPEAK`, `MIX`, `PUNCT_CAMO` | </details> ### Accuracy | Type | Score | | --- | --- | | `ENTS_F` | 91.82 | | `ENTS_P` | 89.79 | | `ENTS_R` | 93.94 | | `TRANSFORMER_LOSS` | 166484.92 | | `NER_LOSS` | 318457.35 |
{"language": ["es"], "license": "apache-2.0", "tags": ["spacy", "token-classification"], "widget": [{"text": "La C0v!d es un 3ng@\u00f1o de los G0b!3rno$", "example_title": "Word camouflage detection"}]}
token-classification
Huertas97/es_roberta_base_bne_leetspeak_ner
[ "spacy", "token-classification", "es", "license:apache-2.0", "model-index", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "es" ]
TAGS #spacy #token-classification #es #license-apache-2.0 #model-index #region-us
### Label Scheme View label scheme (4 labels for 1 components) ### Accuracy
[ "### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)", "### Accuracy" ]
[ "TAGS\n#spacy #token-classification #es #license-apache-2.0 #model-index #region-us \n", "### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)", "### Accuracy" ]
[ 29, 16, 5 ]
[ "passage: TAGS\n#spacy #token-classification #es #license-apache-2.0 #model-index #region-us \n### Label Scheme\n\n\n\nView label scheme (4 labels for 1 components)### Accuracy" ]
[ -0.05436871945858002, 0.16220295429229736, -0.003784076776355505, 0.043531835079193115, 0.061964280903339386, 0.04371211305260658, 0.2640169858932495, 0.09127694368362427, 0.1790560632944107, 0.006836076267063618, 0.06730550527572632, 0.08496613800525665, 0.04982852190732956, 0.22175101935863495, -0.0681060403585434, -0.21301409602165222, 0.12032399326562881, -0.03481718897819519, 0.03391524404287338, 0.11355218291282654, 0.09467724710702896, -0.1033516451716423, 0.059108857065439224, -0.0404898077249527, -0.14982205629348755, 0.020420286804437637, 0.014769327826797962, -0.10937110334634781, 0.06326444447040558, -0.04422688111662865, 0.13608388602733612, 0.02997896634042263, 0.06578177958726883, -0.2394847869873047, -0.008425196632742882, -0.019186105579137802, -0.06790846586227417, 0.06903335452079773, 0.034777771681547165, 0.00527119729667902, -0.07166208326816559, -0.03344890847802162, 0.04843652620911598, 0.05674247071146965, -0.09233526885509491, -0.20599205791950226, -0.08376321196556091, 0.14979399740695953, 0.11758601665496826, -0.026518333703279495, 0.002773772459477186, 0.07190173119306564, -0.11208855360746384, 0.04559926688671112, 0.1358889788389206, -0.36472010612487793, 0.017954537644982338, 0.1936325579881668, -0.05168340355157852, 0.09680358320474625, -0.03129510208964348, 0.11144845187664032, 0.1274959146976471, -0.005433684214949608, -0.0016957276966422796, -0.00790846161544323, 0.03321647644042969, 0.037769097834825516, -0.09625693410634995, -0.0983855351805687, 0.5233330726623535, 0.10273732990026474, -0.03917104750871658, -0.08939806371927261, -0.05493143945932388, -0.09289941191673279, -0.07576470822095871, -0.012556120753288269, 0.09806212037801743, 0.06879623979330063, 0.15623486042022705, 0.0917888954281807, -0.10445088893175125, -0.054413776844739914, -0.14498919248580933, 0.15350744128227234, 0.02324194461107254, 0.10829475522041321, -0.1456252485513687, 0.01919555477797985, -0.05542536452412605, -0.08743321150541306, -0.0006366130546666682, -0.06487898528575897, -0.03604655712842941, 0.010208039544522762, 0.015345350839197636, 0.13868513703346252, 0.1326994001865387, 0.1640714555978775, 0.0054602185264229774, 0.021469730883836746, -0.017327317968010902, 0.07834633439779282, 0.09910353273153305, 0.14882652461528778, -0.01316817943006754, -0.03585589677095413, 0.009231647476553917, -0.07180655002593994, 0.1016249805688858, -0.04500662907958031, -0.145497664809227, 0.033163659274578094, 0.06704305112361908, 0.1286516934633255, -0.035825781524181366, -0.040958553552627563, -0.11503702402114868, -0.028809811919927597, 0.12370703369379044, -0.12590497732162476, 0.01827329955995083, -0.021550625562667847, -0.003394738771021366, 0.07033300399780273, -0.08179989457130432, 0.009916482493281364, 0.03215230628848076, -0.01888786442577839, -0.10211831331253052, -0.015713639557361603, -0.009818222373723984, -0.048487309366464615, 0.0679599717259407, -0.07877544313669205, 0.03536948561668396, -0.044676221907138824, -0.17920924723148346, -0.0015901281731203198, 0.005861322861164808, -0.047368261963129044, -0.04999545216560364, 0.00003176758764311671, -0.07991327345371246, 0.008945017121732235, -0.014573818072676659, -0.040034301578998566, -0.10751024633646011, -0.02024507150053978, -0.047980163246393204, 0.05893944948911667, -0.10161136835813522, 0.040868133306503296, -0.08746432512998581, 0.06021859869360924, -0.12867698073387146, 0.009052949026226997, -0.11763100326061249, 0.10101566463708878, -0.08701419085264206, -0.05945618823170662, 0.08382567018270493, -0.01657596416771412, -0.1209263727068901, 0.1250627040863037, -0.21654760837554932, -0.03755822405219078, 0.18788987398147583, -0.19633233547210693, -0.15585944056510925, 0.048376768827438354, 0.014936285093426704, 0.0337168350815773, 0.0703231543302536, 0.15506595373153687, -0.01693097874522209, -0.08069143444299698, -0.008713952265679836, 0.11367017030715942, -0.016919976100325584, -0.08526884019374847, 0.1297251433134079, -0.023787755519151688, 0.005253626499325037, 0.06405724585056305, -0.01757724955677986, -0.098347969353199, -0.026098713278770447, -0.08982901275157928, -0.05905240401625633, 0.02172933891415596, 0.00633294228464365, 0.0013644008431583643, 0.017775116488337517, -0.05886935815215111, -0.00003356289744260721, -0.010013346560299397, 0.08497479557991028, 0.03957528993487358, -0.033408548682928085, -0.04833785817027092, 0.10758515447378159, -0.09440752118825912, -0.041974395513534546, -0.13409799337387085, -0.11857133358716965, 0.05623437464237213, -0.03819205239415169, 0.028375796973705292, 0.1268039345741272, -0.017700647935271263, -0.023331912234425545, 0.010113564319908619, -0.012502496130764484, -0.01943710632622242, 0.09024816006422043, -0.025273580104112625, -0.2136882096529007, -0.04488638788461685, -0.06997927278280258, 0.08023564517498016, -0.003062653820961714, 0.02353559620678425, 0.13478636741638184, 0.06673789769411087, 0.0062879351899027824, 0.06464188545942307, 0.017582926899194717, 0.0011440909001976252, -0.05431605130434036, -0.05638840049505234, 0.06911633163690567, -0.05213041231036186, -0.0610753633081913, -0.024295130744576454, -0.06586739420890808, 0.0978248342871666, 0.15999735891819, -0.06282737106084824, 0.002859033178538084, -0.03042726218700409, -0.004776050336658955, -0.001593254623003304, -0.08897574245929718, 0.013577459380030632, -0.08581645786762238, -0.026838181540369987, 0.029178543016314507, -0.10256537795066833, -0.030031267553567886, 0.02340259589254856, -0.05335705354809761, -0.1190476045012474, 0.0665765255689621, 0.0530526340007782, -0.19324438273906708, 0.18299101293087006, 0.32739800214767456, 0.11921519786119461, 0.03934933617711067, -0.09988664090633392, -0.03869444131851196, -0.047891851514577866, -0.017931798473000526, -0.08788666874170303, 0.173410102725029, -0.14599311351776123, -0.015297045931220055, 0.08763819932937622, 0.08717650175094604, -0.0003173978184349835, -0.20178964734077454, -0.006070861127227545, -0.021029189229011536, -0.0781300738453865, -0.11296021193265915, -0.045450955629348755, -0.025913596153259277, 0.11190695315599442, 0.02725706622004509, -0.19835250079631805, 0.10483048111200333, -0.043201252818107605, -0.07536631077528, 0.14834780991077423, -0.12998993694782257, -0.21248199045658112, -0.14527972042560577, -0.040013350546360016, -0.09858249127864838, 0.030351972207427025, 0.034469231963157654, -0.08730891346931458, -0.06844790279865265, -0.008120648562908173, -0.09039286524057388, -0.12131005525588989, -0.030348459258675575, -0.008698458783328533, 0.0773623138666153, -0.09040332585573196, -0.08869999647140503, -0.09256808459758759, -0.02723901905119419, 0.049399636685848236, 0.07052672654390335, -0.1307946741580963, 0.06384282559156418, 0.2659549415111542, -0.0014967580791562796, 0.06558306515216827, -0.007977134548127651, 0.11827199161052704, -0.04480421170592308, 0.04387696832418442, 0.14959824085235596, 0.059931881725788116, 0.03991597518324852, 0.2525063753128052, 0.07272281497716904, -0.13097380101680756, -0.033016592264175415, -0.04480757936835289, -0.09373006969690323, -0.22009289264678955, -0.09771658480167389, -0.04301634430885315, 0.005928001366555691, 0.01909647323191166, 0.07099072635173798, 0.06173070892691612, 0.04884259030222893, -0.011367429047822952, 0.0007925551035441458, 0.05920419469475746, 0.0465097613632679, 0.138597309589386, -0.0438249334692955, 0.088907890021801, -0.08243462443351746, -0.02024892531335354, 0.10464058816432953, 0.13091354072093964, 0.19953976571559906, 0.19837820529937744, 0.09408336877822876, 0.1214115098118782, 0.06325900554656982, 0.08945079147815704, 0.07445771247148514, 0.1450882852077484, -0.008012810721993446, -0.04886886849999428, -0.05673854798078537, 0.009608120657503605, 0.08661561459302902, -0.06583799421787262, -0.03714421018958092, -0.048917245119810104, -0.0768541768193245, 0.09583388268947601, 0.1126241385936737, 0.2090853601694107, -0.19477775692939758, 0.017509344965219498, 0.1296934336423874, 0.05773035064339638, -0.041077230125665665, 0.1120002493262291, -0.022044286131858826, -0.0873597040772438, 0.09411079436540604, 0.012025799602270126, 0.11939271539449692, -0.053621806204319, -0.015216079540550709, -0.029676662757992744, -0.071442611515522, 0.028218543156981468, 0.11872204393148422, -0.11822658032178879, 0.2888311743736267, 0.012744600884616375, -0.026362502947449684, -0.06917304545640945, 0.03155721724033356, 0.030125806108117104, 0.24789951741695404, 0.20673927664756775, 0.05400387570261955, -0.23148460686206818, -0.11781780421733856, -0.06017262861132622, -0.00453219935297966, 0.09272311627864838, -0.03960535675287247, 0.004387370310723782, -0.004154059570282698, 0.010900497436523438, -0.002835714491084218, 0.07376161217689514, -0.0895133763551712, -0.05096063390374184, 0.019252723082900047, 0.12407570332288742, -0.08355522155761719, -0.07207676768302917, -0.05463649332523346, -0.1486005187034607, 0.12840096652507782, -0.04043707624077797, -0.11554908007383347, -0.0889977365732193, -0.0528104268014431, 0.08293618261814117, -0.010084180161356926, -0.004714701324701309, -0.061507005244493484, 0.13269299268722534, 0.019348666071891785, -0.1086859181523323, 0.10805285722017288, -0.07763117551803589, -0.05947624891996384, -0.06307598203420639, 0.13188131153583527, -0.06611056625843048, -0.011423837393522263, 0.06825436651706696, 0.06957563012838364, -0.027895735576748848, -0.13108423352241516, 0.08241669088602066, 0.03947203606367111, 0.02313423529267311, 0.2126101851463318, -0.0965394675731659, -0.13701502978801727, -0.017553023993968964, 0.016977105289697647, 0.1057409942150116, 0.2538173794746399, -0.10660699754953384, 0.11408408731222153, 0.10939683765172958, -0.05716567113995552, -0.19337882101535797, -0.10490909963846207, -0.16130489110946655, -0.03532420098781586, -0.006042534485459328, -0.06824769824743271, 0.17155863344669342, 0.061648499220609665, -0.09897178411483765, 0.070082888007164, -0.23610496520996094, -0.06718127429485321, 0.20099711418151855, 0.01441230159252882, 0.15315592288970947, -0.09943167120218277, -0.12067411839962006, -0.10090462863445282, -0.1858338564634323, 0.1408955454826355, -0.05432494729757309, 0.06885340809822083, -0.023822471499443054, -0.027414070442318916, -0.0244973823428154, 0.00011054075002903119, 0.24859558045864105, 0.1189633160829544, 0.09707959741353989, 0.01866225339472294, -0.10517264902591705, 0.2069123238325119, -0.02526128478348255, 0.057085536420345306, 0.06468494981527328, 0.024232059717178345, -0.09894154220819473, -0.00539758987724781, 0.007361354772001505, 0.021084843203425407, -0.06747118383646011, -0.05183400586247444, -0.08889804035425186, -0.011422855779528618, -0.04072997719049454, -0.05673690140247345, 0.2839905619621277, 0.005137144587934017, 0.04241934418678284, 0.20109546184539795, -0.04538624361157417, -0.13983726501464844, -0.06485448032617569, -0.10031695663928986, -0.07880313694477081, 0.04556659609079361, -0.22577592730522156, 0.05812927335500717, 0.09126625955104828, 0.016105689108371735, 0.1331104189157486, 0.10256354510784149, -0.04384424537420273, -0.06179463490843773, 0.10054024308919907, -0.073980413377285, -0.16942431032657623, 0.029506996273994446, -0.1251184344291687, 0.014209319837391376, 0.07973586022853851, 0.07726144045591354, 0.02314394898712635, -0.029424548149108887, 0.01586933620274067, 0.0745815634727478, -0.07233863323926926, 0.09287206828594208, 0.018214743584394455, 0.056147944182157516, -0.16151121258735657, 0.19660638272762299, 0.07855986803770065, 0.014975466765463352, -0.06718854606151581, -0.058829549700021744, -0.1424071043729782, -0.06345899403095245, 0.028985999524593353, 0.1229289323091507, -0.10043847560882568, -0.1638331264257431, -0.1115056499838829, -0.1930786371231079, 0.03222409263253212, 0.021766768768429756, 0.15951192378997803, 0.10108377039432526, 0.017454521730542183, -0.09636373072862625, 0.08097674697637558, 0.06556118279695511, -0.056269820779561996, 0.016995759680867195, -0.2224380224943161, -0.035771362483501434, -0.0081004174426198, 0.1012035384774208, -0.0799020379781723, -0.05337870866060257, -0.08471290022134781, 0.016074534505605698, -0.11516162008047104, 0.08806518465280533, -0.05471128970384598, 0.0042558941058814526, 0.025807024911046028, -0.03806987404823303, -0.058935876935720444, 0.011265171691775322, -0.10888387262821198, 0.010858813300728798, 0.00724750105291605, 0.18009121716022491, -0.12524785101413727, -0.034148894250392914, 0.08493991196155548, -0.043916765600442886, 0.07898461818695068, 0.047208502888679504, 0.01125245075672865, 0.06920088827610016, -0.17166434228420258, -0.004899495746940374, 0.09285342693328857, 0.046668946743011475, 0.06307435780763626, -0.14353784918785095, -0.02124548889696598, 0.06976854801177979, -0.08327353000640869, 0.06656639277935028, -0.08694606274366379, -0.12334813922643661, -0.16563190519809723, -0.10482297837734222, -0.143851637840271, -0.00743133807554841, -0.005894622765481472, 0.22748754918575287, 0.021756770089268684, 0.08963129669427872, 0.04267720505595207, 0.007745484821498394, -0.0688072070479393, 0.000727301521692425, -0.07047206908464432, -0.0912090539932251, -0.08658096194267273, -0.00473700650036335, -0.03952717036008835, -0.04142392426729202, 0.3354164659976959, 0.03940992057323456, -0.011239607818424702, 0.056629348546266556, 0.1889890879392624, -0.001355742453597486, 0.053071990609169006, 0.26380404829978943, 0.06119983643293381, -0.014578195288777351, 0.029113907366991043, -0.0052920179441571236, 0.02555958740413189, -0.009462995454668999, 0.11822430789470673, 0.10652472823858261, -0.0458388514816761, 0.08434320241212845, 0.04683622345328331, -0.010539492592215538, -0.058934878557920456, 0.06920896470546722, 0.07222180813550949, 0.05956537276506424, 0.06541214138269424, -0.048517268151044846, 0.12472647428512573, -0.16318829357624054, 0.09069819748401642, -0.023707423359155655, -0.07366054505109787, -0.17996259033679962, -0.10188916325569153, -0.07969929277896881, -0.0922093316912651, -0.007555685006082058, -0.10819700360298157, -0.023836573585867882, 0.20141717791557312, 0.022817080840468407, -0.021185006946325302, -0.025199703872203827, -0.22552452981472015, 0.011526363901793957, 0.06935238093137741, -0.0007966920384205878, -0.03520655259490013, -0.0613078810274601, -0.01986086368560791, 0.011610030196607113, -0.04320571571588516, -0.05295213311910629, -0.01314534805715084, 0.06212989613413811, -0.01164264976978302, -0.15844281017780304, -0.04712463170289993, -0.04079202562570572, -0.03975839912891388, -0.021630024537444115, -0.03344372287392616, 0.03826906904578209, -0.00832611508667469, 0.06560984998941422, 0.24733474850654602, -0.07083594053983688, -0.035753022879362106, -0.09156430512666702, 0.19335953891277313, -0.05742781609296799, 0.07670687884092331, 0.06980303674936295, -0.06124292314052582, -0.055560410022735596, 0.1017770767211914, 0.17567451298236847, 0.003615930676460266, -0.026679065078496933, 0.004744586534798145, -0.009311774745583534, 0.02288096584379673, 0.012522531673312187, -0.017258353531360626, 0.10026594996452332, -0.05821536108851433, 0.10646320134401321, -0.09384927153587341, -0.02636640891432762, -0.10244978964328766, -0.014674453064799309, 0.10125897824764252, -0.08102812618017197, -0.1054454892873764, 0.17986679077148438, -0.025894291698932648, 0.008982581086456776, 0.2104494571685791, -0.0741574838757515, -0.10668434947729111, 0.001286660204641521, 0.08524174243211746, 0.011557677760720253, 0.04318365827202797, -0.11138433963060379, 0.010500513948500156, 0.09488572180271149, 0.005137259140610695, -0.17624378204345703, -0.09262263029813766, 0.058325208723545074, -0.06713195145130157, 0.15571638941764832, 0.008211063221096992, 0.15708495676517487, 0.1024169847369194, -0.017339829355478287, -0.10009530186653137, 0.09145653247833252, 0.010976775549352169, 0.06873664259910583, 0.004541419912129641, -0.006285472773015499, -0.017541853711009026, -0.08487273007631302, 0.09939488768577576, -0.04768618941307068, -0.015023182146251202, 0.05760597437620163, -0.10210823267698288, -0.06310421228408813, 0.03148697316646576, -0.12925921380519867, 0.07399111986160278, 0.03529611974954605, -0.05486558377742767, -0.024107782170176506, 0.0016053169965744019, 0.08378011733293533, 0.07060550153255463, -0.12044762074947357, 0.03214441239833832, 0.030049365013837814, 0.02025379240512848, 0.07591968774795532, 0.015266354195773602, -0.14126454293727875, -0.0366409495472908, -0.07104610651731491, 0.012018991634249687, -0.09027505666017532, 0.08710108697414398, 0.1436656415462494, 0.032136060297489166, -0.05619950592517853, -0.18196772038936615, 0.03340526670217514, 0.0663486048579216, -0.04280314967036247, -0.08273930102586746 ]
null
null
transformers
# CamemBERT pretrained on french trade directories from the XIXth century This mdoel is part of the material of the paper > Abadie, N., Carlinet, E., Chazalon, J., Duménieu, B. (2022). A > Benchmark of Named Entity Recognition Approaches in Historical > Documents Application to 19𝑡ℎ Century French Directories. In: Uchida, > S., Barney, E., Eglin, V. (eds) Document Analysis Systems. DAS 2022. > Lecture Notes in Computer Science, vol 13237. Springer, Cham. > https://doi.org/10.1007/978-3-031-06555-2_30 The source code to train this model is available on the [GitHub repository](https://github.com/soduco/paper-ner-bench-das22) of the paper as a Jupyter notebook in `src/ner/10-camembert_pretraining.ipynb`. ## Model description This model pre-train the model [Jean-Baptiste/camembert-ner](https://huggingface.co/Jean-Baptiste/camembert-ner) on a set of ~845k entries from Paris trade directories from the XIXth century extracted with OCR. Trade directory entries are short and strongly structured texts that giving the name, activity and location of a person or business, e.g: ``` Peynaud, R. de la Vieille Bouclerie, 18. Richard, Joullain et comp., (commission- —Phéâtre Français. naire, (entrepôt), au port de la Rapée- ``` ## Intended uses & limitations This model is intended for reproducibility of the NER evaluation published in the DAS2022 paper. Several derived models trained for NER on trade directories are available on HuggingFace, each trained on a different dataset : - [das22-10-camembert_pretrained_finetuned_ref](): trained for NER on ~6000 directory entries manually corrected. - [das22-10-camembert_pretrained_finetuned_pero](): trained for NER on ~6000 directory entries extracted with PERO-OCR. - [das22-10-camembert_pretrained_finetuned_tess](): trained for NER on ~6000 directory entries extracted with Tesseract. ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:------:|:---------------:| | 1.9603 | 1.0 | 100346 | 1.8005 | | 1.7032 | 2.0 | 200692 | 1.6460 | | 1.5879 | 3.0 | 301038 | 1.5570 | ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.1+cu102 - Datasets 1.17.0 - Tokenizers 0.10.3
{"tags": ["generated_from_trainer"], "model-index": [{"name": "CamemBERT pretrained on french trade directories from the XIXth century", "results": []}]}
fill-mask
HueyNemud/das22-10-camembert_pretrained
[ "transformers", "pytorch", "camembert", "fill-mask", "generated_from_trainer", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #camembert #fill-mask #generated_from_trainer #autotrain_compatible #endpoints_compatible #region-us
CamemBERT pretrained on french trade directories from the XIXth century ======================================================================= This mdoel is part of the material of the paper > > Abadie, N., Carlinet, E., Chazalon, J., Duménieu, B. (2022). A > Benchmark of Named Entity Recognition Approaches in Historical > Documents Application to 19𝑡ℎ Century French Directories. In: Uchida, > S., Barney, E., Eglin, V. (eds) Document Analysis Systems. DAS 2022. > Lecture Notes in Computer Science, vol 13237. Springer, Cham. > URL > > > The source code to train this model is available on the GitHub repository of the paper as a Jupyter notebook in 'src/ner/10-camembert\_pretraining.ipynb'. Model description ----------------- This model pre-train the model Jean-Baptiste/camembert-ner on a set of ~845k entries from Paris trade directories from the XIXth century extracted with OCR. Trade directory entries are short and strongly structured texts that giving the name, activity and location of a person or business, e.g: Intended uses & limitations --------------------------- This model is intended for reproducibility of the NER evaluation published in the DAS2022 paper. Several derived models trained for NER on trade directories are available on HuggingFace, each trained on a different dataset : * das22-10-camembert\_pretrained\_finetuned\_ref: trained for NER on ~6000 directory entries manually corrected. * das22-10-camembert\_pretrained\_finetuned\_pero: trained for NER on ~6000 directory entries extracted with PERO-OCR. * das22-10-camembert\_pretrained\_finetuned\_tess: trained for NER on ~6000 directory entries extracted with Tesseract. ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 5e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 3.0 ### Training results ### Framework versions * Transformers 4.16.0.dev0 * Pytorch 1.10.1+cu102 * Datasets 1.17.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.0.dev0\n* Pytorch 1.10.1+cu102\n* Datasets 1.17.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #camembert #fill-mask #generated_from_trainer #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.0.dev0\n* Pytorch 1.10.1+cu102\n* Datasets 1.17.0\n* Tokenizers 0.10.3" ]
[ 45, 98, 4, 38 ]
[ "passage: TAGS\n#transformers #pytorch #camembert #fill-mask #generated_from_trainer #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3.0### Training results### Framework versions\n\n\n* Transformers 4.16.0.dev0\n* Pytorch 1.10.1+cu102\n* Datasets 1.17.0\n* Tokenizers 0.10.3" ]
[ -0.09896817058324814, 0.010975436307489872, -0.002216184511780739, 0.11319668591022491, 0.20645472407341003, 0.04067856818437576, 0.11228807270526886, 0.08891595155000687, -0.12411889433860779, 0.02546224184334278, 0.12731970846652985, 0.16430002450942993, -0.005618017166852951, 0.14664654433727264, -0.05268454551696777, -0.2486542910337448, -0.013169270940124989, 0.03372665494680405, -0.10152239352464676, 0.1261271983385086, 0.08708202838897705, -0.15265604853630066, 0.08034936338663101, -0.005555483978241682, -0.26326411962509155, 0.020001547411084175, 0.03121293894946575, -0.06972812861204147, 0.14087840914726257, 0.0004958311328664422, 0.17566797137260437, -0.018701966851949692, 0.10056233406066895, -0.1451558619737625, 0.012887098826467991, 0.060518719255924225, 0.01215724553912878, 0.06812379509210587, 0.0360260009765625, -0.00698856869712472, 0.09221021831035614, -0.12148801237344742, 0.07213709503412247, 0.0077859279699623585, -0.14301630854606628, -0.22176840901374817, -0.07046498358249664, -0.01974675804376602, 0.04954001307487488, 0.10631374269723892, -0.005159308668226004, 0.17058464884757996, -0.11553534120321274, 0.10231487452983856, 0.24410274624824524, -0.24798457324504852, -0.08274994790554047, 0.026022717356681824, -0.006974983960390091, 0.054636336863040924, -0.0979536920785904, -0.015783293172717094, 0.05828579515218735, 0.06022151559591293, 0.13303586840629578, -0.030759986490011215, -0.11285815387964249, 0.008168205618858337, -0.14612238109111786, -0.006649589166045189, 0.06478119641542435, 0.019235333427786827, -0.028228554874658585, 0.004365570843219757, -0.0751991868019104, -0.1464567631483078, -0.05136384814977646, -0.025390749797225, 0.04980955645442009, -0.06548989564180374, -0.10273399949073792, 0.017049001529812813, -0.08488819003105164, -0.06498145312070847, -0.07496432214975357, 0.22339452803134918, 0.04349232837557793, 0.02693057619035244, -0.04488176852464676, 0.08672142773866653, -0.0422552227973938, -0.14217093586921692, 0.03638364374637604, 0.032933007925748825, -0.01854659989476204, -0.05481869727373123, -0.0970865860581398, -0.07714219391345978, 0.012076032347977161, 0.1200685054063797, -0.06625615805387497, 0.050380345433950424, 0.05138581246137619, 0.03146570548415184, -0.1012517660856247, 0.18925997614860535, -0.025012493133544922, -0.021057099103927612, 0.01587498001754284, 0.03880380094051361, 0.00707558449357748, -0.009909129701554775, -0.09116823226213455, -0.0020435384940356016, 0.1021350622177124, 0.0007141944952309132, -0.0767349898815155, 0.05412515252828598, -0.04728199914097786, -0.00536136981099844, -0.02041071094572544, -0.10964766889810562, 0.04156670719385147, -0.023294847458600998, -0.0796944797039032, 0.0063767083920538425, 0.030112985521554947, 0.012453247793018818, -0.006177640985697508, 0.16146288812160492, -0.0922197550535202, 0.048821646720170975, -0.12833979725837708, -0.11959006637334824, -0.00719002541154623, -0.06486133486032486, 0.021945524960756302, -0.10706257075071335, -0.14536838233470917, -0.009072313085198402, 0.06059823930263519, -0.01839868724346161, -0.026233555749058723, -0.03976375237107277, -0.08498088270425797, 0.003835491370409727, -0.00956813432276249, 0.15904629230499268, -0.055844489485025406, 0.11274616420269012, 0.0821794643998146, 0.0965258926153183, -0.07665490359067917, 0.049052201211452484, -0.0867478996515274, -0.006312698591500521, -0.24661867320537567, 0.034568533301353455, -0.03817955031991005, 0.06039715185761452, -0.057246413081884384, -0.1310211569070816, 0.011365576647222042, -0.0017450754530727863, 0.10776872932910919, 0.09423531591892242, -0.15290714800357819, -0.08488139510154724, 0.1559392660856247, -0.0684899091720581, -0.0902007520198822, 0.11504791676998138, -0.06484216451644897, 0.015131055377423763, 0.0715193897485733, 0.12057475000619888, 0.027279341593384743, -0.11535238474607468, 0.026032689958810806, -0.04434679076075554, 0.04833165928721428, -0.05380437895655632, 0.04315313696861267, 0.020593585446476936, -0.010435105301439762, 0.032408829778432846, -0.0299941785633564, 0.06777395308017731, -0.12834744155406952, -0.09009616076946259, -0.04694443941116333, -0.1067408099770546, 0.06206966191530228, 0.06848135590553284, 0.09185924381017685, -0.1172989010810852, -0.06592576950788498, 0.08330469578504562, 0.0617406964302063, -0.037433821707963943, 0.027079397812485695, -0.05885186418890953, 0.05914413183927536, -0.05452105402946472, -0.028526119887828827, -0.20256535708904266, -0.04996875673532486, 0.001133027602918446, 0.025714095681905746, 0.03384001925587654, -0.021904323250055313, 0.08640588819980621, 0.08276687562465668, -0.06325153261423111, -0.006114467512816191, -0.06943421810865402, -0.008824948221445084, -0.13702595233917236, -0.1916321963071823, -0.03157603740692139, -0.014043005183339119, 0.10328546166419983, -0.16593514382839203, 0.018917758017778397, -0.0816301479935646, 0.09138145297765732, 0.008571495302021503, -0.012262851931154728, -0.07346702367067337, 0.11711128801107407, -0.0020832191221415997, -0.04833963140845299, 0.055546343326568604, -0.02100100927054882, -0.06766912341117859, -0.09562650322914124, -0.09334461390972137, 0.19243527948856354, 0.14361301064491272, -0.1735078990459442, -0.1059802696108818, 0.04647264629602432, -0.062150225043296814, -0.01573898270726204, -0.05987631529569626, 0.049014315009117126, 0.17785434424877167, -0.012095674872398376, 0.13177961111068726, -0.05497921258211136, -0.02057742327451706, 0.019906794652342796, -0.03552313521504402, 0.04834679141640663, 0.08109234273433685, 0.1511535346508026, -0.02415556088089943, 0.1198333278298378, 0.16217200458049774, -0.12870241701602936, 0.11662065982818604, -0.023419689387083054, -0.07062641531229019, -0.017243269830942154, -0.04588290676474571, -0.0010518631897866726, 0.10202311724424362, -0.10124242305755615, -0.012198489159345627, 0.0054765488021075726, 0.01402522623538971, 0.022987358272075653, -0.23325935006141663, -0.045288849622011185, 0.025570757687091827, -0.00844972301274538, -0.031062940135598183, -0.004784261342138052, 0.026650002226233482, 0.10987909883260727, 0.010589336976408958, -0.07470271736383438, 0.024962425231933594, 0.006159014999866486, -0.05747014656662941, 0.21056117117404938, -0.09308169037103653, -0.11253967881202698, -0.09307952970266342, -0.07586901634931564, -0.049148768186569214, 0.01804444193840027, 0.048733294010162354, -0.12857235968112946, -0.03419551998376846, -0.017235415056347847, 0.041533879935741425, 0.0243200846016407, 0.06812527030706406, 0.02844812721014023, -0.017786795273423195, 0.07110914587974548, -0.10375970602035522, -0.022365281358361244, -0.06942673027515411, -0.07416146993637085, 0.0749284103512764, 0.06705582141876221, 0.12556298077106476, 0.14694146811962128, -0.04347800835967064, 0.008778025396168232, -0.018940474838018417, 0.2836657762527466, -0.07743027806282043, -0.05364614352583885, 0.12192021310329437, -0.0035846580285578966, 0.05078710615634918, 0.09027561545372009, 0.076048843562603, -0.12002082914113998, 0.02572522684931755, 0.03195994719862938, -0.039658211171627045, -0.17913216352462769, -0.04547000676393509, -0.056207653135061264, -0.08821351081132889, 0.07668498903512955, 0.0032584425061941147, 0.01880643703043461, 0.05792319402098656, 0.057652413845062256, 0.10097172856330872, -0.06932216137647629, 0.046209171414375305, 0.09147017449140549, 0.06021615490317345, 0.13096117973327637, -0.027521224692463875, -0.09657832235097885, 0.01777188666164875, -0.0659918263554573, 0.22871249914169312, 0.004006522707641125, 0.038013581186532974, 0.056380026042461395, 0.18330411612987518, -0.0034618850331753492, 0.10048561543226242, 0.022432664409279823, -0.06222790107131004, -0.0019098909106105566, -0.04535756632685661, -0.047896165400743484, 0.006588753312826157, -0.041101910173892975, 0.06767948716878891, -0.12990178167819977, -0.0022867019288241863, 0.058771874755620956, 0.2488921880722046, 0.024040041491389275, -0.3385235667228699, -0.07476584613323212, -0.014614339917898178, -0.016705168411135674, -0.009803930297493935, -0.006656556390225887, 0.07485079765319824, -0.09459103643894196, 0.041769396513700485, -0.05804874375462532, 0.08853062987327576, 0.015695061534643173, 0.05678309500217438, 0.04726126417517662, 0.14479109644889832, 0.00029851074214093387, 0.03910624235868454, -0.3260248601436615, 0.2851361036300659, 0.006328715477138758, 0.10426020622253418, -0.07246027141809464, -0.004174174275249243, 0.042671531438827515, 0.041107214987277985, 0.020556289702653885, -0.015637898817658424, -0.023409070447087288, -0.2208772599697113, -0.025035390630364418, 0.05184153839945793, 0.13790424168109894, 0.006006373558193445, 0.10145235061645508, -0.008861890994012356, -0.005700892768800259, 0.08645718544721603, 0.0018801346886903048, -0.09954699128866196, -0.052625685930252075, -0.024679087102413177, 0.02716689370572567, -0.05492245405912399, -0.05492959916591644, -0.12587523460388184, -0.11696885526180267, 0.12969061732292175, 0.04958861693739891, -0.01658344455063343, -0.12678313255310059, 0.1142096072435379, 0.0890895277261734, -0.0831810012459755, 0.06358276307582855, 0.018759988248348236, 0.05223488435149193, 0.0272498968988657, -0.06615623086690903, 0.11126238852739334, -0.06729208678007126, -0.14837056398391724, -0.05795874446630478, 0.06826692074537277, 0.043738748878240585, 0.06994950026273727, -0.025159815326333046, 0.036258015781641006, -0.020748309791088104, -0.08488653600215912, 0.03647979721426964, -0.02695576474070549, 0.06200374290347099, 0.07480474561452866, -0.04754006117582321, -0.008873588405549526, -0.051406778395175934, -0.003128458745777607, 0.16015109419822693, 0.2573210299015045, -0.08134207129478455, -0.025357358157634735, 0.025667300447821617, -0.04109738767147064, -0.18837864696979523, 0.09222008287906647, 0.08666981011629105, 0.016499008983373642, 0.039965540170669556, -0.16149193048477173, 0.150766521692276, 0.092644102871418, 0.003159278305247426, 0.12136566638946533, -0.2952372133731842, -0.13472571969032288, 0.10361253470182419, 0.17447958886623383, 0.18167628347873688, -0.1312723010778427, 0.005196793936192989, -0.04516524076461792, -0.13109399378299713, 0.08075985312461853, -0.06393037736415863, 0.12039417773485184, -0.02694837562739849, 0.10464940965175629, 0.003447258612141013, -0.06389304250478745, 0.10942519456148148, 0.014599930495023727, 0.11524723470211029, -0.05603151395916939, -0.028102485463023186, 0.030086005106568336, -0.019572995603084564, -0.007619722746312618, -0.018038589507341385, 0.018701141700148582, -0.03196828067302704, -0.006593970116227865, -0.10068097710609436, 0.050619903951883316, -0.02448132634162903, -0.06046531721949577, -0.020684657618403435, 0.018274029716849327, 0.041391290724277496, -0.0217176154255867, 0.09854388236999512, 0.028093736618757248, 0.1751926839351654, 0.040178485214710236, 0.027651667594909668, -0.09020163863897324, -0.044463351368904114, 0.01535589899867773, -0.013885986059904099, 0.07174412161111832, -0.118626169860363, 0.01721111685037613, 0.1390136033296585, 0.026392769068479538, 0.12288383394479752, 0.1024247258901596, -0.01788952946662903, 0.015740226954221725, 0.08298419415950775, -0.17020080983638763, -0.03382397070527077, 0.01391781959682703, -0.08943504840135574, -0.0865464061498642, 0.046955935657024384, 0.08143474161624908, -0.07768338918685913, -0.009293903596699238, -0.030584625899791718, -0.010770062915980816, -0.08783213049173355, 0.22449228167533875, 0.07539083808660507, 0.04191283509135246, -0.10912752151489258, 0.05673520639538765, 0.04226389899849892, -0.07829061895608902, 0.0007439526380039752, 0.07562512159347534, -0.06973165273666382, -0.01320459134876728, 0.14000947773456573, 0.1958349496126175, -0.06358305364847183, -0.020634127780795097, -0.1575959175825119, -0.10603504627943039, 0.06754127889871597, 0.1890059858560562, 0.11506107449531555, -0.02080255001783371, -0.03693529590964317, 0.04448312893509865, -0.137880340218544, 0.048308152705430984, 0.05274518206715584, 0.08128008246421814, -0.10876382887363434, 0.20232392847537994, 0.006349154748022556, 0.05711650475859642, -0.035163190215826035, 0.0374922975897789, -0.1159849539399147, 0.027237117290496826, -0.10278331488370895, -0.06435081362724304, 0.006380309816449881, -0.014187692664563656, 0.002721542026847601, -0.0730138048529625, -0.06874179095029831, 0.018567323684692383, -0.1305435448884964, -0.03752899542450905, 0.04613276198506355, 0.012058659456670284, -0.12161263823509216, -0.0481242872774601, 0.03176369145512581, -0.05981554836034775, 0.03727403283119202, 0.07598920166492462, 0.011654446832835674, 0.08432024717330933, -0.1641174703836441, -0.05182715877890587, 0.07864271849393845, -0.004875048063695431, 0.09972572326660156, -0.05843796953558922, -0.005786574445664883, -0.008698730729520321, 0.1150466576218605, 0.021374603733420372, 0.09597882628440857, -0.1335638016462326, 0.0072233104147017, -0.031892143189907074, -0.10184086114168167, -0.051001690328121185, -0.000051637343858601525, 0.08401624858379364, 0.010552218183875084, 0.1772894263267517, -0.09575992822647095, 0.05968698859214783, -0.20000511407852173, -0.013686000369489193, -0.028717849403619766, -0.10133195668458939, -0.11107314378023148, -0.04874725639820099, 0.09126748144626617, -0.04661824181675911, 0.11574950069189072, 0.02658543363213539, 0.09790721535682678, 0.029192572459578514, -0.015242801047861576, -0.01851542294025421, 0.02307112328708172, 0.18617022037506104, 0.05440361797809601, -0.04177761822938919, 0.08342574536800385, 0.08844958990812302, 0.12212679535150528, 0.09843812137842178, 0.23555783927440643, 0.15150311589241028, 0.004586458206176758, 0.10445726662874222, 0.02441486530005932, -0.0477532260119915, -0.13494570553302765, -0.016743242740631104, -0.05107525363564491, 0.08273537456989288, -0.021835902705788612, 0.16261209547519684, 0.0421968512237072, -0.1576690822839737, 0.05234239995479584, -0.06335202604532242, -0.0888303890824318, -0.11037010699510574, 0.040848810225725174, -0.08357499539852142, -0.14565026760101318, 0.02140858769416809, -0.10055122524499893, 0.0172235369682312, 0.12297423928976059, 0.007130075711756945, -0.012299233116209507, 0.21761587262153625, 0.020845381543040276, 0.045644208788871765, 0.05121124908328056, -0.0015586817171424627, -0.01930108480155468, -0.07080477476119995, -0.07549984008073807, -0.03867790102958679, -0.006331412587314844, 0.04337961971759796, -0.06505433470010757, -0.12303408235311508, 0.046701524406671524, -0.012391484342515469, -0.11282539367675781, 0.026652665808796883, 0.02186303399503231, 0.05903507024049759, 0.030361486598849297, -0.0001149204617831856, 0.029254905879497528, -0.030480852350592613, 0.20024541020393372, -0.08517447859048843, -0.10695556551218033, -0.10142941027879715, 0.27552592754364014, 0.060211390256881714, 0.002128020627424121, 0.012376266531646252, -0.06765055656433105, -0.0272993091493845, 0.23204810917377472, 0.18957646191120148, -0.11970262974500656, 0.0029157884418964386, 0.0010049783159047365, -0.013918974436819553, -0.04482320696115494, 0.138700932264328, 0.1393309086561203, 0.038788411766290665, -0.09780704975128174, -0.038247641175985336, -0.0705891028046608, -0.014911260455846786, -0.051596902310848236, 0.00018332396575715393, 0.05196387320756912, 0.011233602650463581, -0.044510673731565475, 0.06190027669072151, -0.05866521596908569, -0.11311326175928116, 0.08746781945228577, -0.21983641386032104, -0.16326874494552612, -0.008424547500908375, 0.09321492910385132, 0.008241619914770126, 0.08839106559753418, -0.03472718596458435, -0.009105847217142582, 0.06498835235834122, -0.022995270788669586, -0.05095096305012703, -0.12710413336753845, 0.10405995696783066, -0.11318572610616684, 0.18307580053806305, -0.03479979559779167, 0.09378251433372498, 0.1169990673661232, 0.07643202692270279, -0.043830737471580505, 0.06952181458473206, 0.039627112448215485, -0.10157620161771774, 0.0070192404091358185, 0.1268652081489563, -0.04964748024940491, 0.020810630172491074, 0.03500540927052498, -0.1410558521747589, 0.026045527309179306, -0.0673179179430008, -0.03554605692625046, -0.03555674850940704, -0.05214571952819824, -0.06962969154119492, 0.10546869039535522, 0.23891879618167877, -0.009668039157986641, 0.031510043889284134, -0.08337508141994476, 0.024068446829915047, 0.06216860190033913, 0.03686944767832756, -0.12447169423103333, -0.2590554356575012, 0.02236291766166687, 0.07458850741386414, -0.04573715105652809, -0.2071235030889511, -0.09449432790279388, 0.0011710728285834193, -0.07755713909864426, -0.08853016048669815, 0.08376375585794449, 0.05803115293383598, 0.04977927356958389, -0.043683234602212906, -0.142163947224617, -0.07582773268222809, 0.16657482087612152, -0.16359063982963562, -0.1014370545744896 ]
null
null
sentence-transformers
# KLUE RoBERTa base model for Sentence Embeddings This is the `sentence-klue-roberta-base` model. The sentence-transformers repository allows to train and use Transformer models for generating sentence and text embeddings. The model is described in the paper [Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks](https://arxiv.org/abs/1908.10084) ## Usage (Sentence-Transformers) Using this model becomes more convenient when you have [sentence-transformers](https://github.com/UKPLab/sentence-transformers) installed: ``` pip install -U sentence-transformers ``` Then you can use the model like this: ```python import torch from sentence_transformers import SentenceTransformer, util model = SentenceTransformer("Huffon/sentence-klue-roberta-base") docs = [ "1992년 7월 8일 손흥민은 강원도 춘천시 후평동에서 아버지 손웅정과 어머니 길은자의 차남으로 태어나 그곳에서 자랐다.", "형은 손흥윤이다.", "춘천 부안초등학교를 졸업했고, 춘천 후평중학교에 입학한 후 2학년때 원주 육민관중학교 축구부에 들어가기 위해 전학하여 졸업하였으며, 2008년 당시 FC 서울의 U-18팀이었던 동북고등학교 축구부에서 선수 활동 중 대한축구협회 우수선수 해외유학 프로젝트에 선발되어 2008년 8월 독일 분데스리가의 함부르크 유소년팀에 입단하였다.", "함부르크 유스팀 주전 공격수로 2008년 6월 네덜란드에서 열린 4개국 경기에서 4게임에 출전, 3골을 터뜨렸다.", "1년간의 유학 후 2009년 8월 한국으로 돌아온 후 10월에 개막한 FIFA U-17 월드컵에 출전하여 3골을 터트리며 한국을 8강으로 이끌었다.", "그해 11월 함부르크의 정식 유소년팀 선수 계약을 체결하였으며 독일 U-19 리그 4경기 2골을 넣고 2군 리그에 출전을 시작했다.", "독일 U-19 리그에서 손흥민은 11경기 6골, 2부 리그에서는 6경기 1골을 넣으며 재능을 인정받아 2010년 6월 17세의 나이로 함부르크의 1군 팀 훈련에 참가, 프리시즌 활약으로 함부르크와 정식 계약을 한 후 10월 18세에 함부르크 1군 소속으로 독일 분데스리가에 데뷔하였다.", ] document_embeddings = model.encode(docs) query = "손흥민은 어린 나이에 유럽에 진출하였다." query_embedding = model.encode(query) top_k = min(5, len(docs)) cos_scores = util.pytorch_cos_sim(query_embedding, document_embeddings)[0] top_results = torch.topk(cos_scores, k=top_k) print(f"입력 문장: {query}") print(f"<입력 문장과 유사한 {top_k} 개의 문장>") for i, (score, idx) in enumerate(zip(top_results[0], top_results[1])): print(f"{i+1}: {docs[idx]} {'(유사도: {:.4f})'.format(score)}") ```
{"language": "ko", "tags": ["roberta", "sentence-transformers"], "datasets": ["klue"]}
null
Huffon/sentence-klue-roberta-base
[ "sentence-transformers", "pytorch", "roberta", "ko", "dataset:klue", "arxiv:1908.10084", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[ "1908.10084" ]
[ "ko" ]
TAGS #sentence-transformers #pytorch #roberta #ko #dataset-klue #arxiv-1908.10084 #has_space #region-us
# KLUE RoBERTa base model for Sentence Embeddings This is the 'sentence-klue-roberta-base' model. The sentence-transformers repository allows to train and use Transformer models for generating sentence and text embeddings. The model is described in the paper Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks ## Usage (Sentence-Transformers) Using this model becomes more convenient when you have sentence-transformers installed: Then you can use the model like this:
[ "# KLUE RoBERTa base model for Sentence Embeddings\n\nThis is the 'sentence-klue-roberta-base' model. The sentence-transformers repository allows to train and use Transformer models for generating sentence and text embeddings.\n\nThe model is described in the paper Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks", "## Usage (Sentence-Transformers)\n\nUsing this model becomes more convenient when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:" ]
[ "TAGS\n#sentence-transformers #pytorch #roberta #ko #dataset-klue #arxiv-1908.10084 #has_space #region-us \n", "# KLUE RoBERTa base model for Sentence Embeddings\n\nThis is the 'sentence-klue-roberta-base' model. The sentence-transformers repository allows to train and use Transformer models for generating sentence and text embeddings.\n\nThe model is described in the paper Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks", "## Usage (Sentence-Transformers)\n\nUsing this model becomes more convenient when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:" ]
[ 39, 88, 39 ]
[ "passage: TAGS\n#sentence-transformers #pytorch #roberta #ko #dataset-klue #arxiv-1908.10084 #has_space #region-us \n# KLUE RoBERTa base model for Sentence Embeddings\n\nThis is the 'sentence-klue-roberta-base' model. The sentence-transformers repository allows to train and use Transformer models for generating sentence and text embeddings.\n\nThe model is described in the paper Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks## Usage (Sentence-Transformers)\n\nUsing this model becomes more convenient when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:" ]
[ 0.0835380032658577, -0.037601057440042496, -0.004489980172365904, -0.04753978177905083, 0.06401754915714264, -0.009569678455591202, 0.13099096715450287, 0.0701083317399025, -0.0488557368516922, -0.04297046363353729, 0.10857958346605301, 0.10166940093040466, -0.027230791747570038, -0.03987205773591995, 0.05883629992604256, -0.43028950691223145, 0.09243132174015045, 0.01925746537744999, -0.06572236120700836, 0.1008298248052597, 0.1320512592792511, -0.0652090385556221, 0.029862577095627785, 0.0700588971376419, -0.08414604514837265, 0.0669446513056755, -0.054945822805166245, -0.04022688418626785, 0.10472753643989563, 0.03747836872935295, 0.096434585750103, 0.08960189670324326, 0.01703784428536892, -0.12485834211111069, 0.024228297173976898, -0.013014196418225765, -0.003462521592155099, 0.04657530039548874, -0.1821966916322708, -0.024593422189354897, 0.12250284850597382, -0.11357053369283676, 0.024607205763459206, -0.053501833230257034, -0.08379392325878143, -0.036760084331035614, 0.07856760174036026, -0.024485621601343155, 0.04393654689192772, 0.07933877408504486, -0.07894483208656311, 0.03779813274741173, -0.13872136175632477, 0.06624937057495117, 0.21162621676921844, -0.24735860526561737, -0.009119230322539806, 0.07352516055107117, 0.08772505074739456, 0.054282039403915405, -0.039844341576099396, 0.046964120119810104, -0.0047936271876096725, -0.044523462653160095, 0.10945216566324234, -0.07422767579555511, -0.055731046944856644, 0.07084973156452179, -0.185050830245018, 0.031405817717313766, 0.215791717171669, -0.03834373503923416, -0.04963057115674019, -0.05555914342403412, -0.026015058159828186, 0.13605958223342896, -0.040152739733457565, -0.045480214059352875, 0.021215006709098816, 0.00642956979572773, -0.07744668424129486, -0.120838463306427, -0.08686977624893188, -0.08140967041254044, -0.11641065031290054, 0.2621963620185852, 0.0600006990134716, -0.025279808789491653, -0.053026534616947174, 0.0679285004734993, -0.12455420196056366, -0.09848888218402863, 0.04349818825721741, -0.08180464059114456, 0.009257907047867775, 0.10100360214710236, -0.08073581755161285, -0.16991780698299408, 0.008823400363326073, 0.03074857033789158, 0.1193075105547905, -0.010339452885091305, 0.04541986063122749, 0.07972105592489243, 0.05460869520902634, 0.16159512102603912, -0.14986714720726013, -0.02029567025601864, -0.0450664721429348, 0.006487132515758276, 0.013264003209769726, -0.03449815884232521, -0.14935185015201569, -0.06061267480254173, -0.02290523424744606, 0.0029848001431673765, -0.032468531280756, 0.14918316900730133, 0.05656561255455017, -0.054535698145627975, -0.03138652443885803, -0.04555460065603256, -0.07305353879928589, -0.008797326125204563, -0.05678615719079971, 0.08925873041152954, 0.0238015279173851, 0.0694139301776886, -0.015183125622570515, 0.04123577103018761, -0.10169660300016403, -0.06473398208618164, -0.04493975266814232, -0.20257814228534698, -0.06230548396706581, -0.08605410903692245, 0.06161760538816452, -0.15699809789657593, -0.09402129054069519, 0.02135014347732067, 0.011399444192647934, -0.0007809791713953018, -0.07135970145463943, -0.13794705271720886, 0.008363067172467709, 0.004303472116589546, -0.07241605222225189, -0.008973969146609306, 0.017027271911501884, 0.03354984521865845, -0.06490141898393631, 0.09602710604667664, -0.12081723660230637, 0.07299241423606873, -0.1299089640378952, -0.01170544046908617, -0.131588414311409, 0.06247963383793831, -0.06865648180246353, 0.016156919300556183, -0.04923444613814354, -0.01518337894231081, -0.005717698484659195, 0.0987706184387207, 0.0001711428922135383, 0.11784011125564575, -0.11581625789403915, -0.11136829853057861, 0.10784478485584259, -0.075900137424469, -0.06243130937218666, 0.028911571949720383, -0.049048397690057755, 0.1941159963607788, 0.14750392735004425, 0.19938179850578308, 0.13318710029125214, -0.076504185795784, 0.03898370638489723, 0.09900503605604172, -0.0692056268453598, 0.08530987799167633, 0.09624921530485153, 0.07713441550731659, -0.08041518181562424, 0.04847060889005661, -0.1746566891670227, 0.08088871836662292, -0.025974273681640625, -0.006012203171849251, 0.03736981004476547, -0.07401643693447113, 0.17025631666183472, -0.024191005155444145, 0.05628005787730217, 0.022421961650252342, -0.0863761380314827, 0.33621615171432495, 0.11619644612073898, -0.12783026695251465, 0.050819046795368195, -0.06020132079720497, -0.03921137750148773, 0.06237523630261421, 0.01683485507965088, -0.15736538171768188, -0.022567346692085266, -0.03971504047513008, -0.010768252424895763, 0.11353355646133423, 0.10160913318395615, 0.020163072273135185, -0.003065465483814478, -0.020749548450112343, 0.0561397522687912, 0.019304515793919563, 0.06632470339536667, -0.02197427861392498, -0.062215883284807205, 0.03062458708882332, -0.043849654495716095, 0.006710187532007694, 0.06816471368074417, 0.02039293386042118, 0.02846178039908409, 0.01837257854640484, -0.021137040108442307, 0.08255124092102051, -0.015549601055681705, 0.04030345752835274, 0.016287587583065033, 0.06146400794386864, 0.11586032062768936, -0.006912404205650091, -0.12225586920976639, 0.2356853187084198, -0.1490136682987213, -0.17622338235378265, 0.10208020359277725, -0.037782974541187286, 0.030497830361127853, -0.06626835465431213, -0.04819517955183983, 0.03229035437107086, 0.00786140002310276, -0.183115616440773, 0.3015085756778717, 0.001971719553694129, 0.0863746702671051, -0.06847642362117767, -0.020072024315595627, -0.018838733434677124, -0.052866216748952866, -0.03322878107428551, 0.08526651561260223, -0.04248323291540146, -0.07917241752147675, 0.05828237906098366, 0.14909727871418, -0.08720481395721436, 0.20792044699192047, -0.033537913113832474, -0.02863030694425106, -0.03681175410747528, -0.07162615656852722, -0.06789206713438034, 0.026609590277075768, -0.2103702872991562, -0.0882786214351654, 0.033702801913022995, -0.04187077656388283, 0.07905002683401108, -0.0456232950091362, -0.018585694953799248, 0.04832911863923073, -0.006300236098468304, 0.02245568297803402, 0.10925394296646118, -0.018755754455924034, 0.03474823758006096, 0.04640830308198929, -0.08040393888950348, -0.029966197907924652, 0.004410970490425825, -0.043807439506053925, 0.17587235569953918, -0.1138160228729248, -0.19822606444358826, -0.08550456911325455, -0.08795280009508133, -0.00803443044424057, -0.03129495307803154, 0.07036039233207703, -0.10574804991483688, -0.007450628560036421, -0.06521565467119217, 0.17089997231960297, -0.010100819170475006, -0.01486059557646513, -0.05825720727443695, -0.0016194697236642241, -0.07869622111320496, -0.12188336998224258, -0.047005604952573776, -0.06823553144931793, -0.0558236762881279, -0.008507350459694862, -0.12320827692747116, 0.05866292119026184, 0.1361922025680542, 0.013958105817437172, 0.007705367635935545, -0.04721357673406601, 0.16246028244495392, -0.015355856157839298, 0.04521366208791733, 0.09068494290113449, -0.054762326180934906, 0.06440738588571548, 0.13147315382957458, 0.0014669470256194472, 0.04523199051618576, 0.08525381237268448, 0.05185319483280182, -0.061238814145326614, -0.08702980726957321, -0.11831139773130417, -0.04812387377023697, 0.021016458049416542, 0.06366388499736786, -0.020728792995214462, -0.03083610348403454, 0.10897723585367203, 0.05353904142975807, -0.010205754078924656, 0.06640615314245224, 0.06965751200914383, 0.2052767127752304, -0.08231273293495178, 0.13601064682006836, -0.007137408945709467, -0.22429104149341583, -0.006146110128611326, -0.07462471723556519, 0.1805620938539505, 0.025259342044591904, 0.05781111121177673, 0.14704065024852753, -0.03758157044649124, 0.08992473781108856, 0.10081969201564789, -0.10715419799089432, -0.0023407021071761847, -0.08936011046171188, -0.10852140933275223, 0.05900546908378601, 0.0651787742972374, 0.04101760312914848, -0.052507806569337845, -0.014251187443733215, -0.05597785860300064, 0.09282858669757843, 0.03362516313791275, 0.10580026358366013, -0.08924534171819687, 0.017437756061553955, 0.06590314954519272, -0.010959205217659473, -0.029508333653211594, 0.0714496299624443, 0.021194271743297577, -0.1019035279750824, 0.01341959647834301, -0.01465527806431055, 0.08997401595115662, -0.0022019033785909414, 0.06788469105958939, -0.12478296458721161, 0.06572563201189041, 0.008084919303655624, 0.09783495217561722, -0.2286614030599594, 0.23047512769699097, -0.010315293446183205, -0.06460875272750854, -0.04330931231379509, -0.060386016964912415, 0.058581456542015076, 0.055521585047245026, 0.11090148985385895, 0.007629840634763241, 0.052758656442165375, -0.010565848089754581, -0.08841616660356522, 0.07219479978084564, 0.07825253903865814, -0.11269916594028473, 0.07357785850763321, -0.042397793382406235, 0.013339287601411343, 0.03240720182657242, 0.17788787186145782, -0.058325935155153275, -0.12661811709403992, -0.018827198073267937, 0.02507329173386097, 0.09650897234678268, 0.012239647097885609, -0.08279639482498169, -0.026166008785367012, 0.038754578679800034, 0.07295950502157211, -0.0845404639840126, -0.05481250211596489, 0.0009731105528771877, 0.0840253084897995, -0.12159767001867294, -0.021593596786260605, -0.02292189747095108, 0.0925280749797821, -0.10515028983354568, -0.10765091329813004, 0.01206823531538248, 0.0065684556029737, 0.042637232691049576, 0.0276793260127306, 0.024419426918029785, 0.09112310409545898, 0.05019252747297287, 0.023622827604413033, 0.03410232439637184, -0.04933323711156845, -0.10934970527887344, -0.09811780601739883, 0.015169876627624035, 0.0008119876147247851, 0.018044762313365936, -0.18112394213676453, 0.034564584493637085, -0.12144140154123306, 0.06541722267866135, 0.30098414421081543, 0.10715241730213165, -0.0738304927945137, 0.10107401758432388, 0.24274727702140808, -0.052541788667440414, -0.31936755776405334, -0.1519586145877838, 0.026357639580965042, 0.0487569123506546, 0.05298834294080734, -0.1683225929737091, 0.03094170056283474, 0.01438564620912075, -0.013055837713181973, -0.2744893729686737, -0.1746436059474945, -0.13343031704425812, 0.28247496485710144, 0.08166442811489105, 0.28706029057502747, -0.06637468189001083, -0.0001600628747837618, -0.01491137407720089, -0.06777310371398926, 0.20264439284801483, -0.1771681159734726, 0.13817691802978516, 0.047374177724123, 0.025699593126773834, 0.04736073315143585, 0.006136220879852772, 0.07665862888097763, 0.04949074611067772, -0.003626462072134018, -0.054149653762578964, -0.27459800243377686, 0.14956215023994446, -0.0381065309047699, 0.1059848740696907, -0.08557791262865067, 0.073008231818676, -0.11294560879468918, -0.022020583972334862, -0.09031739830970764, -0.008219465613365173, -0.011316001415252686, -0.12410908192396164, -0.10792554914951324, 0.09943892061710358, 0.05306864529848099, -0.0011348574189469218, 0.17100539803504944, -0.11197929829359055, -0.05076361447572708, 0.11830230802297592, 0.021330030634999275, 0.06730712205171585, -0.052023760974407196, 0.06347476691007614, -0.034564923495054245, 0.0825631245970726, -0.15628212690353394, 0.007765962276607752, 0.07630069553852081, 0.0026731272228062153, 0.12454827129840851, 0.038699012249708176, -0.1004936620593071, 0.014459372498095036, 0.05583161488175392, -0.10699684917926788, -0.004685407038778067, -0.09739905595779419, -0.0334295891225338, -0.02295633964240551, -0.06154247373342514, 0.17090453207492828, -0.10116074979305267, -0.014374516904354095, 0.028717759996652603, -0.02650885470211506, -0.05396844074130058, 0.00452033756300807, 0.12705108523368835, 0.04941323399543762, -0.034193724393844604, 0.032214485108852386, -0.002839561551809311, 0.025258472189307213, 0.03749724105000496, -0.01308492198586464, -0.11210132390260696, -0.043903689831495285, -0.12004529684782028, 0.07201487571001053, -0.11843788623809814, -0.003070297883823514, -0.060891155153512955, -0.12586812674999237, -0.016373082995414734, 0.10609541833400726, 0.07480469346046448, 0.021623363718390465, -0.1239352747797966, 0.039541617035865784, 0.005009576678276062, 0.10500799864530563, 0.012375971302390099, -0.04615887254476547, 0.00037399650318548083, 0.057004671543836594, 0.018063263967633247, 0.11205346137285233, -0.08309544622898102, -0.08525408059358597, -0.10708604753017426, 0.0100862393155694, -0.06822875887155533, -0.06616669148206711, -0.0826369971036911, -0.06290329992771149, -0.008636923506855965, -0.03982562571763992, -0.03335997462272644, -0.019407115876674652, -0.050104331225156784, 0.03859560564160347, -0.017675969749689102, 0.009604830294847488, -0.030496494844555855, -0.021436456590890884, 0.10862629115581512, -0.047344982624053955, 0.017284909263253212, 0.023366795852780342, -0.03612124174833298, 0.13443127274513245, -0.03926846385002136, -0.04295677691698074, 0.01150339376181364, 0.046197518706321716, 0.022832540795207024, -0.07092296332120895, -0.03439326211810112, -0.05007502809166908, 0.09140248596668243, -0.010774822905659676, 0.01142345555126667, -0.02627762220799923, 0.10979022085666656, 0.062465984374284744, -0.05586123466491699, -0.04524561017751694, -0.008441382087767124, 0.01016203872859478, 0.09578806161880493, 0.08130834996700287, -0.017393281683325768, 0.03932256996631622, 0.011187915690243244, 0.031133567914366722, -0.018255170434713364, -0.1260741651058197, 0.07501305639743805, -0.16737332940101624, -0.06615409255027771, -0.032690998166799545, 0.1875305324792862, 0.01840336062014103, -0.07621506601572037, 0.04023696109652519, 0.026841891929507256, 0.08583670109510422, 0.025105668231844902, 0.22437919676303864, 0.09254474192857742, 0.0015142675256356597, -0.14893019199371338, 0.07596264779567719, -0.02043790929019451, 0.03930342197418213, 0.03466996178030968, 0.032079894095659256, 0.09825706481933594, 0.09627682715654373, 0.15576834976673126, 0.14364656805992126, -0.005709114484488964, -0.056844208389520645, 0.04635443910956383, -0.011298222467303276, -0.06525223702192307, 0.16374163329601288, 0.1982651799917221, -0.07443784922361374, 0.12820623815059662, 0.10173149406909943, -0.10695582628250122, -0.15317155420780182, -0.09857271611690521, -0.04810818284749985, -0.1256633847951889, -0.01596941612660885, -0.1328209936618805, -0.0436662994325161, 0.05684511363506317, 0.024442056193947792, 0.0670916736125946, 0.13653936982154846, 0.008531616069376469, -0.13626804947853088, 0.14612366259098053, -0.06747657805681229, 0.019467907026410103, -0.021633315831422806, 0.05472574755549431, 0.0372227244079113, 0.04605225473642349, -0.0047850580886006355, 0.04856226220726967, 0.005980605259537697, -0.050854332745075226, -0.05977662280201912, -0.06997885555028915, -0.07385540008544922, 0.02304147556424141, 0.03110341541469097, 0.018936393782496452, 0.016296368092298508, -0.0744515210390091, -0.03018137253820896, 0.20113591849803925, -0.018084660172462463, -0.16298605501651764, -0.11309628933668137, 0.1369757503271103, 0.09463541954755783, 0.11785486340522766, -0.006575564853847027, -0.04679649695754051, -0.12116595357656479, 0.2827420234680176, 0.22762887179851532, -0.061801910400390625, 0.03733828663825989, 0.0399882011115551, 0.03561043739318848, 0.08573663979768753, 0.0862417221069336, 0.029794536530971527, 0.22146257758140564, -0.06730637699365616, 0.025064097717404366, -0.07238002866506577, -0.06321478635072708, -0.00548833841457963, 0.0466511994600296, 0.14346294105052948, -0.08464690297842026, -0.08844918012619019, 0.0857863575220108, -0.12004158645868301, -0.0286317877471447, -0.17787612974643707, -0.13525895774364471, -0.0786585733294487, -0.060481250286102295, 0.03019072487950325, 0.07502604275941849, 0.1459725946187973, -0.008070589043200016, -0.0054737781174480915, 0.005102092400193214, 0.0496198907494545, -0.1030702218413353, -0.0318191833794117, 0.12760783731937408, 0.07250923663377762, 0.016307102516293526, -0.03866549953818321, 0.055227652192115784, 0.10432112962007523, -0.02113957144320011, 0.002220004564151168, 0.11876428872346878, -0.006358985789120197, -0.07602540403604507, 0.006701793521642685, -0.015838846564292908, -0.02976728230714798, -0.017474018037319183, 0.051417768001556396, -0.16923151910305023, 0.1261041909456253, 0.023336824029684067, -0.08508151024580002, -0.062291406095027924, 0.04507552087306976, -0.10811363905668259, 0.06800740212202072, 0.14155904948711395, -0.011757994070649147, -0.04108532890677452, -0.01624430902302265, -0.05179132893681526, -0.042717717587947845, 0.018949002027511597, -0.010665812529623508, -0.03835177421569824, -0.082809217274189, 0.0808151513338089, -0.03539707139134407, -0.3075163662433624, -0.038733337074518204, -0.01698271557688713, 0.03335413336753845, 0.03454316034913063, 0.05942283198237419, 0.10354170203208923, 0.006837611086666584, -0.006629730574786663, -0.14592456817626953, -0.005691038444638252, 0.05676806718111038, -0.18984735012054443, -0.12449042499065399 ]
null
null
sentence-transformers
# Humair/all-mpnet-base-v2-finetuned-v2 This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search. <!--- Describe your model here --> ## Usage (Sentence-Transformers) Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed: ``` pip install -U sentence-transformers ``` Then you can use the model like this: ```python from sentence_transformers import SentenceTransformer sentences = ["This is an example sentence", "Each sentence is converted"] model = SentenceTransformer('Humair/all-mpnet-base-v2-finetuned-v2') embeddings = model.encode(sentences) print(embeddings) ``` ## Usage (HuggingFace Transformers) Without [sentence-transformers](https://www.SBERT.net), you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings. ```python from transformers import AutoTokenizer, AutoModel import torch #Mean Pooling - Take attention mask into account for correct averaging def mean_pooling(model_output, attention_mask): token_embeddings = model_output[0] #First element of model_output contains all token embeddings input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9) # Sentences we want sentence embeddings for sentences = ['This is an example sentence', 'Each sentence is converted'] # Load model from HuggingFace Hub tokenizer = AutoTokenizer.from_pretrained('Humair/all-mpnet-base-v2-finetuned-v2') model = AutoModel.from_pretrained('Humair/all-mpnet-base-v2-finetuned-v2') # Tokenize sentences encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt') # Compute token embeddings with torch.no_grad(): model_output = model(**encoded_input) # Perform pooling. In this case, mean pooling. sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask']) print("Sentence embeddings:") print(sentence_embeddings) ``` ## Evaluation Results <!--- Describe how your model was evaluated --> For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name=Humair/all-mpnet-base-v2-finetuned-v2) ## Training The model was trained with the parameters: **DataLoader**: `torch.utils.data.dataloader.DataLoader` of length 1 with parameters: ``` {'batch_size': 128, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'} ``` **Loss**: `sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss` with parameters: ``` {'scale': 20.0, 'similarity_fct': 'cos_sim'} ``` Parameters of the fit()-Method: ``` { "epochs": 2, "evaluation_steps": 0, "evaluator": "NoneType", "max_grad_norm": 1, "optimizer_class": "<class 'transformers.optimization.AdamW'>", "optimizer_params": { "lr": 2e-05 }, "scheduler": "WarmupLinear", "steps_per_epoch": null, "warmup_steps": 10000, "weight_decay": 0.01 } ``` ## Full Model Architecture ``` SentenceTransformer( (0): Transformer({'max_seq_length': 32, 'do_lower_case': False}) with Transformer model: MPNetModel (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False}) ) ``` ## Citing & Authors <!--- Describe where people can find more information -->
{"tags": ["sentence-transformers", "feature-extraction", "sentence-similarity", "transformers"], "pipeline_tag": "sentence-similarity"}
sentence-similarity
Humair/all-mpnet-base-v2-finetuned-v2
[ "sentence-transformers", "pytorch", "mpnet", "feature-extraction", "sentence-similarity", "transformers", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #sentence-transformers #pytorch #mpnet #feature-extraction #sentence-similarity #transformers #endpoints_compatible #region-us
# Humair/all-mpnet-base-v2-finetuned-v2 This is a sentence-transformers model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search. ## Usage (Sentence-Transformers) Using this model becomes easy when you have sentence-transformers installed: Then you can use the model like this: ## Usage (HuggingFace Transformers) Without sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings. ## Evaluation Results For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: URL ## Training The model was trained with the parameters: DataLoader: 'URL.dataloader.DataLoader' of length 1 with parameters: Loss: 'sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss' with parameters: Parameters of the fit()-Method: ## Full Model Architecture ## Citing & Authors
[ "# Humair/all-mpnet-base-v2-finetuned-v2\n\nThis is a sentence-transformers model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.", "## Usage (Sentence-Transformers)\n\nUsing this model becomes easy when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:", "## Usage (HuggingFace Transformers)\nWithout sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.", "## Evaluation Results\n\n\n\nFor an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: URL", "## Training\nThe model was trained with the parameters:\n\nDataLoader:\n\n'URL.dataloader.DataLoader' of length 1 with parameters:\n\n\nLoss:\n\n'sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss' with parameters:\n \n\nParameters of the fit()-Method:", "## Full Model Architecture", "## Citing & Authors" ]
[ "TAGS\n#sentence-transformers #pytorch #mpnet #feature-extraction #sentence-similarity #transformers #endpoints_compatible #region-us \n", "# Humair/all-mpnet-base-v2-finetuned-v2\n\nThis is a sentence-transformers model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.", "## Usage (Sentence-Transformers)\n\nUsing this model becomes easy when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:", "## Usage (HuggingFace Transformers)\nWithout sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.", "## Evaluation Results\n\n\n\nFor an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: URL", "## Training\nThe model was trained with the parameters:\n\nDataLoader:\n\n'URL.dataloader.DataLoader' of length 1 with parameters:\n\n\nLoss:\n\n'sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss' with parameters:\n \n\nParameters of the fit()-Method:", "## Full Model Architecture", "## Citing & Authors" ]
[ 43, 62, 38, 64, 29, 85, 5, 6 ]
[ "passage: TAGS\n#sentence-transformers #pytorch #mpnet #feature-extraction #sentence-similarity #transformers #endpoints_compatible #region-us \n# Humair/all-mpnet-base-v2-finetuned-v2\n\nThis is a sentence-transformers model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.## Usage (Sentence-Transformers)\n\nUsing this model becomes easy when you have sentence-transformers installed:\n\n\n\nThen you can use the model like this:## Usage (HuggingFace Transformers)\nWithout sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.## Evaluation Results\n\n\n\nFor an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: URL## Training\nThe model was trained with the parameters:\n\nDataLoader:\n\n'URL.dataloader.DataLoader' of length 1 with parameters:\n\n\nLoss:\n\n'sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss' with parameters:\n \n\nParameters of the fit()-Method:## Full Model Architecture## Citing & Authors" ]
[ -0.026652289554476738, 0.13101667165756226, -0.0068895574659109116, 0.04159511625766754, 0.11174267530441284, 0.020861923694610596, 0.13884101808071136, 0.08423162996768951, -0.03744105249643326, 0.07772534340620041, 0.028758345171809196, 0.10305429250001907, -0.004131748341023922, 0.028069401159882545, 0.04174110293388367, -0.29882562160491943, 0.027324341237545013, -0.045997802168130875, 0.03155956417322159, 0.08018096536397934, 0.11586751788854599, -0.07130827754735947, 0.06175732612609863, 0.03918283432722092, -0.0438990481197834, 0.005843309685587883, -0.04090052843093872, -0.027351703494787216, 0.08748824894428253, 0.05162997543811798, 0.029750065878033638, 0.00833323784172535, 0.018697980791330338, -0.2295890897512436, 0.015021787025034428, 0.07715468108654022, -0.010860233567655087, 0.06814713776111603, 0.04106231778860092, -0.042922087013721466, 0.22923724353313446, -0.0611422024667263, 0.06628252565860748, 0.06595122814178467, -0.09818375110626221, -0.08570921421051025, -0.03505532816052437, -0.01633935049176216, 0.12219341099262238, 0.09682454913854599, -0.06416979432106018, 0.15356607735157013, -0.07338366657495499, 0.08828246593475342, 0.09819181263446808, -0.2809012234210968, -0.029892444610595703, 0.05210233852267265, 0.05408483371138573, 0.03490733727812767, -0.10735304653644562, 0.003890112740918994, -0.01850314810872078, 0.04134634882211685, 0.08563945442438126, -0.034029025584459305, 0.06725620478391647, -0.00365085038356483, -0.13790050148963928, 0.012829499319195747, 0.1758636087179184, 0.04577598720788956, -0.011350306682288647, -0.18339039385318756, -0.06831139326095581, 0.027825303375720978, -0.0504731759428978, -0.029449287801980972, 0.017374031245708466, 0.0391603484749794, -0.011656743474304676, -0.08565077185630798, -0.10510002076625824, -0.011358927004039288, -0.06505700945854187, 0.0017437111819162965, 0.0007495202007703483, -0.03552478551864624, -0.00467606820166111, 0.07685071974992752, -0.09036169201135635, -0.10185816884040833, -0.021927036345005035, -0.034205786883831024, -0.13160911202430725, -0.04366534203290939, -0.05746059492230415, -0.11382018029689789, 0.050917044281959534, 0.14464601874351501, 0.0763210877776146, 0.020457010716199875, -0.01178736425936222, 0.056766048073768616, 0.046473026275634766, 0.1407720148563385, -0.0549166277050972, -0.09172970056533813, -0.04045403003692627, 0.02757706306874752, -0.00006643930828431621, -0.018622638657689095, -0.03412587568163872, 0.004179003182798624, 0.03705419972538948, 0.05386354774236679, 0.05918005481362343, 0.06860645115375519, -0.04453578591346741, -0.051705941557884216, 0.06880693137645721, -0.11911589652299881, 0.01747136376798153, 0.03020361065864563, -0.05709490925073624, 0.038766223937273026, 0.07284806668758392, -0.0087272385135293, -0.09039752930402756, 0.026408011093735695, -0.1058875098824501, -0.009474093094468117, -0.05782841145992279, -0.12496523559093475, 0.0073248823173344135, 0.022945627570152283, -0.04272222891449928, -0.09686793386936188, -0.12577524781227112, -0.06755322217941284, 0.045735277235507965, -0.04400186240673065, -0.015066007152199745, -0.107762411236763, -0.001077718217857182, -0.0027929809875786304, 0.00018363077833782881, -0.027652060613036156, -0.02055591531097889, 0.007103571202605963, -0.039861030876636505, 0.062345489859580994, 0.055001597851514816, 0.044470902532339096, -0.10349414497613907, 0.026762571185827255, -0.12699200212955475, 0.15636640787124634, -0.04223501682281494, 0.06532599031925201, -0.1494724154472351, 0.001927451230585575, -0.008967194706201553, 0.04619699716567993, 0.0038094744086265564, 0.13248610496520996, -0.18559880554676056, -0.0672239437699318, 0.1056758388876915, -0.06374930590391159, -0.10018770396709442, 0.11631564050912857, -0.03135843947529793, 0.12941065430641174, 0.11132226139307022, 0.11006748676300049, 0.1276407688856125, -0.05134900286793709, 0.00838278979063034, 0.03335180506110191, -0.051558565348386765, 0.09842398762702942, 0.05261153355240822, -0.05817447975277901, 0.10442320257425308, 0.0009587877430021763, -0.04505243897438049, 0.009127205237746239, -0.009815842844545841, -0.07163157314062119, 0.02347065880894661, -0.040688127279281616, 0.05621953681111336, -0.0392041951417923, 0.015053207986056805, 0.025809764862060547, -0.10020944476127625, 0.09825095534324646, 0.09647216647863388, -0.06717163324356079, 0.021358154714107513, -0.08746198564767838, -0.004096559248864651, -0.015896916389465332, 0.022256121039390564, -0.20863159000873566, -0.11404643207788467, 0.009506097063422203, -0.04065650701522827, 0.10339202731847763, 0.06622368842363358, 0.0493272989988327, 0.04400688409805298, -0.016590207815170288, -0.005544756073504686, 0.038739606738090515, -0.0034760802518576384, -0.08111566305160522, -0.12512749433517456, -0.010706132277846336, -0.03412720188498497, 0.0706700012087822, -0.14632749557495117, 0.023084256798028946, 0.01730651967227459, 0.05755868926644325, 0.045704036951065063, -0.033805545419454575, -0.0038391633424907923, -0.03512221947312355, -0.01588914915919304, -0.020250150933861732, 0.04948626086115837, 0.017840072512626648, -0.13938847184181213, 0.07220841944217682, -0.19821149110794067, -0.11631909012794495, 0.07503005117177963, -0.027165209874510765, -0.049049343913793564, -0.04547971487045288, -0.02781900018453598, -0.0204022079706192, -0.044587139040231705, -0.04649481549859047, 0.1339363008737564, 0.10483106225728989, 0.11074227094650269, -0.03707261383533478, -0.026015186682343483, -0.040851056575775146, -0.04541230946779251, -0.03336694464087486, 0.10007697343826294, -0.01269434206187725, -0.13374727964401245, 0.03466895967721939, 0.06979572772979736, -0.09350524842739105, 0.11806324869394302, -0.0038849893026053905, -0.0787193775177002, -0.061838116496801376, 0.043015725910663605, 0.03130047023296356, -0.013494795188307762, -0.12271951138973236, 0.008239803835749626, 0.05852929502725601, 0.031510129570961, 0.03771859407424927, -0.06242522969841957, 0.051825862377882004, 0.04154336452484131, 0.00023844523821026087, 0.080329529941082, 0.026602409780025482, -0.01331563014537096, 0.05826911702752113, 0.009759635664522648, 0.008754105307161808, -0.0407196506857872, -0.05064372718334198, -0.12203745543956757, 0.17063120007514954, -0.11286098510026932, -0.20318710803985596, -0.14784376323223114, -0.021175073459744453, -0.09208988398313522, 0.011886565946042538, 0.0714917853474617, -0.059484124183654785, -0.06689926236867905, -0.08461077511310577, 0.08456001430749893, 0.061236876994371414, -0.04190009832382202, -0.0017636484699323773, 0.050617512315511703, 0.03510081022977829, -0.1184488907456398, -0.00478186784312129, -0.007757119834423065, -0.05484675243496895, 0.001720581785775721, -0.0063482848927378654, 0.048867419362068176, 0.13634786009788513, 0.05739174038171768, 0.0032429650891572237, 0.012944766320288181, 0.23388159275054932, -0.07640158385038376, 0.04933474212884903, 0.17892491817474365, -0.0001245069579454139, 0.06638776510953903, 0.08988058567047119, 0.033835504204034805, -0.0561099648475647, 0.061004333198070526, 0.08199182897806168, -0.023935796692967415, -0.15376554429531097, -0.11499876528978348, -0.07248041033744812, 0.0038484544493258, 0.13017377257347107, 0.0422251895070076, 0.00080542778596282, 0.050545841455459595, -0.019324226304888725, -0.01808224245905876, 0.09393471479415894, 0.1157001480460167, 0.13746051490306854, -0.030148448422551155, 0.11052072793245316, -0.04878471791744232, -0.07307396084070206, 0.05620364099740982, 0.007830142043530941, 0.14268098771572113, 0.009268926456570625, 0.17718605697155, 0.08692183345556259, -0.012591693550348282, -0.0187224093824625, 0.0756518691778183, -0.02278216741979122, 0.0004996734205633402, -0.01801556907594204, -0.09884555637836456, -0.010956430807709694, 0.08748110383749008, 0.08212598413228989, -0.04620641842484474, -0.02255384624004364, 0.07353045046329498, 0.11688540130853653, 0.1579432338476181, 0.09099583327770233, -0.24466651678085327, -0.03752034902572632, 0.01777852512896061, -0.08232615143060684, -0.05488210543990135, -0.0035705293994396925, 0.031936343759298325, -0.12502482533454895, 0.045955583453178406, -0.02038084901869297, 0.09951721876859665, -0.0976085439324379, 0.034934405237436295, -0.041227735579013824, 0.05863454192876816, -0.00693829171359539, 0.08371362835168839, -0.21403449773788452, 0.08674830943346024, 0.024798467755317688, 0.04794127494096756, -0.053235605359077454, 0.02583477459847927, 0.06473974883556366, 0.03141602873802185, 0.14980660378932953, -0.02289949357509613, 0.02242906391620636, 0.008095761761069298, -0.0597870796918869, -0.00984179601073265, 0.04413553327322006, -0.10044447332620621, 0.08337318897247314, -0.040674567222595215, -0.018689479678869247, -0.010506988503038883, 0.04157555103302002, -0.04727828875184059, -0.16460354626178741, 0.013930432498455048, 0.025101780891418457, 0.00029286410426720977, -0.012990993447601795, -0.011641423217952251, 0.0030604111962020397, 0.21531955897808075, -0.06175239756703377, -0.068266361951828, -0.11887896060943604, -0.002723808167502284, 0.10337867587804794, -0.08807436376810074, 0.001521629048511386, -0.010277439840137959, 0.15860477089881897, -0.048525843769311905, -0.06185534968972206, 0.059586964547634125, -0.05869027227163315, -0.06154125556349754, -0.029392816126346588, 0.09322574734687805, 0.062266577035188675, 0.04225773364305496, 0.026189235970377922, 0.04509670287370682, -0.05095677450299263, -0.10223105549812317, -0.08180835843086243, 0.10388582944869995, -0.022902170196175575, 0.07014495134353638, -0.10804759711027145, -0.04151872545480728, -0.09666045755147934, 0.04096240550279617, 0.20543265342712402, 0.22653192281723022, -0.06618192791938782, 0.06414879113435745, 0.16363152861595154, -0.07517337054014206, -0.2167646586894989, -0.07632628828287125, 0.043141208589076996, 0.02304742857813835, 0.1027810201048851, -0.12379895150661469, 0.09135083109140396, 0.06562837213277817, -0.012965602800250053, -0.050805576145648956, -0.2668488621711731, -0.13533730804920197, 0.13035452365875244, 0.025932850316166878, -0.03434991091489792, -0.08807194977998734, -0.041903577744960785, -0.08132273703813553, -0.038272254168987274, 0.07245313376188278, -0.05588093772530556, 0.10052792727947235, 0.0434299036860466, 0.04415946081280708, 0.054934389889240265, -0.008787197060883045, 0.1306147426366806, 0.08957693725824356, 0.02691013738512993, -0.03441975638270378, 0.010185019113123417, 0.08317212760448456, -0.08821017295122147, 0.16735132038593292, -0.07226039469242096, 0.026870697736740112, -0.10595434159040451, -0.04216761514544487, -0.050126682966947556, 0.020648861303925514, -0.0433281734585762, -0.05878579616546631, -0.009637431241571903, 0.05159838870167732, 0.10595544427633286, -0.0012593260034918785, 0.025971395894885063, -0.08064489811658859, 0.017216602340340614, 0.21057307720184326, 0.11013400554656982, 0.0428432933986187, -0.192267507314682, 0.01521380990743637, 0.012434016913175583, 0.0625758171081543, -0.13162483274936676, 0.08267281204462051, 0.0670769140124321, -0.012403376400470734, 0.14272812008857727, 0.01623409613966942, -0.09783262759447098, -0.01970577985048294, 0.05841806158423424, -0.06610538065433502, -0.16516105830669403, -0.03150429204106331, -0.024828646332025528, -0.13778501749038696, -0.018463842570781708, 0.15166011452674866, -0.012012941762804985, 0.019458811730146408, 0.049492962658405304, 0.04515126347541809, -0.04948246851563454, 0.12632060050964355, -0.01077252347022295, 0.06372097879648209, -0.06743258982896805, 0.08617987483739853, 0.09087356179952621, -0.06237057223916054, 0.008787646889686584, 0.12341386824846268, -0.08547086268663406, -0.10501563549041748, -0.06993377208709717, 0.0735325813293457, -0.09026692807674408, 0.021511392667889595, -0.049198027700185776, -0.053629279136657715, 0.023847052827477455, -0.015817610546946526, 0.05876856669783592, 0.06377317756414413, -0.0991772785782814, -0.021105200052261353, -0.09696334600448608, 0.08633784204721451, 0.08073750138282776, 0.014884823001921177, -0.053380921483039856, 0.07021987438201904, -0.016295354813337326, 0.018013471737504005, -0.027416780591011047, -0.054235052317380905, -0.057722002267837524, 0.010936146602034569, -0.06344720721244812, -0.02169700898230076, -0.12311483919620514, 0.0013704121811315417, 0.03115290403366089, 0.04822196066379547, -0.022402727976441383, -0.005142527166754007, -0.057010333985090256, -0.07686682790517807, -0.04255504161119461, 0.09587685018777847, -0.13570858538150787, 0.008917593397200108, 0.02341492660343647, -0.09628713876008987, 0.08691556751728058, -0.020235642790794373, -0.03041265718638897, 0.03143961727619171, 0.004868453834205866, -0.028551051393151283, 0.03158969059586525, 0.03230292722582817, 0.04994475096464157, -0.10124902427196503, 0.011557857505977154, -0.03673351928591728, 0.025380020961165428, 0.006692935712635517, 0.040233757346868515, -0.11558202654123306, 0.021453857421875, -0.04590515419840813, -0.017462696880102158, -0.09735481441020966, 0.016417305916547775, -0.011862654238939285, 0.050028394907712936, 0.18134966492652893, -0.041534844785928726, 0.06752102077007294, -0.13370011746883392, 0.009916132315993309, 0.02384733222424984, -0.02753768116235733, 0.09543280303478241, -0.10302143543958664, 0.05090123414993286, -0.06174197793006897, 0.08749043941497803, -0.016312845051288605, 0.03620016202330589, 0.06342147290706635, 0.04847603663802147, -0.02274833247065544, 0.008362923748791218, 0.0629248395562172, 0.04259910434484482, -0.0006867619231343269, -0.04150034859776497, 0.024374254047870636, 0.007809992413967848, -0.008007288910448551, 0.0551249198615551, 0.08605549484491348, 0.01329866237938404, 0.08551757037639618, 0.0748586505651474, 0.004533195402473211, -0.11053235083818436, 0.06481124460697174, -0.04164256155490875, 0.07473620027303696, -0.03951777517795563, 0.022220410406589508, 0.1835736483335495, -0.14051660895347595, 0.10320063680410385, 0.02808418869972229, -0.06421021372079849, -0.09198924899101257, -0.18225066363811493, -0.06936141103506088, -0.062457624822854996, -0.008559443056583405, -0.11575739085674286, -0.019323067739605904, 0.0026940389070659876, 0.022608324885368347, -0.015374717302620411, 0.12596946954727173, -0.09803177416324615, -0.11391647160053253, 0.07056653499603271, -0.02908237837255001, 0.039418287575244904, 0.03257588669657707, 0.05193903297185898, 0.02438201755285263, 0.06303051114082336, 0.05743579939007759, 0.04359405115246773, 0.03253297880291939, 0.04323282837867737, -0.09248068928718567, -0.08050698786973953, -0.011141151189804077, -0.0041254363022744656, -0.03824923187494278, 0.09834130108356476, 0.0416531041264534, -0.09345365315675735, -0.020383723080158234, 0.21068765223026276, -0.0895780399441719, -0.11831009387969971, -0.19129154086112976, 0.19966672360897064, 0.04316503927111626, 0.038483813405036926, -0.039537157863378525, -0.08826716989278793, -0.030059998854994774, 0.1438286155462265, 0.20581984519958496, -0.08135106414556503, 0.012286163866519928, 0.043246421962976456, 0.00809264276176691, -0.007610880769789219, 0.025523141026496887, 0.05471498519182205, 0.1934557408094406, -0.03894065320491791, 0.11370497196912766, -0.023351019248366356, -0.05221951752901077, -0.06400179862976074, 0.0805722251534462, 0.04900474473834038, 0.03558613732457161, -0.02101908065378666, 0.12030074745416641, -0.06049535423517227, -0.07744523882865906, -0.05126652494072914, -0.048380956053733826, -0.12353233247995377, -0.026741942390799522, 0.01601054146885872, 0.02536185272037983, 0.09000825881958008, 0.016229810193181038, -0.03623846545815468, 0.10692405700683594, -0.026324547827243805, -0.05008643865585327, -0.04358254373073578, 0.0355759896337986, 0.0024620755575597286, 0.13271954655647278, -0.004435479175299406, -0.01376322004944086, 0.12005720287561417, -0.005969099700450897, -0.0577402263879776, 0.09823675453662872, 0.03163088858127594, -0.06214291229844093, 0.12085328251123428, 0.07583825290203094, -0.006440026219934225, 0.0975370928645134, 0.07475680857896805, -0.16286447644233704, 0.03874853998422623, -0.04492516070604324, -0.009300041943788528, -0.06686613708734512, 0.048320263624191284, -0.07000606507062912, 0.11572843044996262, 0.17573806643486023, -0.027358166873455048, -0.003908697050064802, -0.012610746547579765, 0.012127048335969448, 0.016113288700580597, 0.05289967358112335, -0.04437984898686409, -0.1149657815694809, 0.008435350842773914, -0.020882155746221542, 0.016331616789102554, -0.2761894762516022, -0.11156519502401352, 0.0236289631575346, -0.02070189267396927, -0.02884092926979065, 0.12391063570976257, 0.07821805775165558, 0.005814220290631056, -0.03725738450884819, -0.21508267521858215, 0.018552584573626518, 0.10066836327314377, -0.13380807638168335, -0.10430765151977539 ]
null
null
null
Model saved for Paraphrased Detection in English-Vietnamese cross-lingual based on XLM-R in MT-DNN MT-DNN: github.com/namisan/mt-dnn
{}
null
HungVo/mt-dnn-ev-mrpc
[ "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #region-us
Model saved for Paraphrased Detection in English-Vietnamese cross-lingual based on XLM-R in MT-DNN MT-DNN: URL
[]
[ "TAGS\n#region-us \n" ]
[ 6 ]
[ "passage: TAGS\n#region-us \n" ]
[ 0.024608636274933815, -0.026205500587821007, -0.009666500613093376, -0.10395516455173492, 0.08638657629489899, 0.059816278517246246, 0.01882290467619896, 0.020661840215325356, 0.23975107073783875, -0.005599027033895254, 0.1219947561621666, 0.0015615287702530622, -0.037353623658418655, 0.03733762726187706, -0.0035912662278860807, -0.17583473026752472, 0.03876631706953049, -0.018274923786520958, 0.01843859627842903, 0.026470553129911423, -0.07776834815740585, -0.07564429938793182, 0.015296397730708122, -0.10247814655303955, -0.083692267537117, 0.11002834886312485, 0.031466204673051834, -0.019670886918902397, 0.10779199749231339, -0.04243955761194229, 0.18699054419994354, -0.011512263678014278, -0.11213519424200058, -0.2536850869655609, 0.021806683391332626, -0.01765260472893715, -0.08747660368680954, 0.01506110467016697, 0.0665089413523674, -0.09014441072940826, -0.0588928684592247, 0.0795099288225174, -0.01132340170443058, 0.04246443510055542, -0.27593839168548584, -0.12684126198291779, -0.05297930911183357, -0.1421966552734375, 0.08651168644428253, 0.04035491496324539, 0.008764253929257393, 0.15506891906261444, -0.20897391438484192, 0.004104613792151213, 0.08255259692668915, -0.2538507878780365, 0.05591634660959244, 0.17671173810958862, 0.03623908758163452, 0.18037272989749908, 0.0060391901060938835, 0.11029672622680664, 0.0716743916273117, -0.024263937026262283, -0.17590197920799255, -0.08127854019403458, -0.04696211963891983, 0.16642488539218903, -0.06727185100317001, -0.14248386025428772, 0.34701237082481384, 0.00015008423360995948, 0.009657775051891804, 0.16921205818653107, -0.059524230659008026, -0.09972117841243744, 0.07259953022003174, 0.016484731808304787, 0.018492350354790688, 0.1471305936574936, 0.16307872533798218, -0.0458691343665123, -0.13837823271751404, -0.018630273640155792, -0.22798998653888702, 0.17510560154914856, -0.03248048573732376, 0.13137903809547424, -0.27447956800460815, 0.01684025302529335, -0.2570667266845703, 0.0032130838371813297, 0.04178816080093384, -0.06004921346902847, -0.0226522795855999, -0.013265985064208508, -0.08018817007541656, 0.004899587947875261, 0.06192673370242119, 0.1266920566558838, -0.06128726154565811, 0.06128238886594772, -0.09319206327199936, 0.141696035861969, 0.07166698575019836, 0.07868369668722153, 0.13037432730197906, 0.041205424815416336, -0.07187089323997498, -0.21872246265411377, -0.0026476888451725245, -0.06275863200426102, -0.09502086788415909, -0.0020165652967989445, -0.11606067419052124, 0.17244569957256317, -0.030802514404058456, -0.09825427830219269, -0.11208184063434601, 0.09148659557104111, -0.032992321997880936, -0.03437839448451996, -0.03552987426519394, -0.020977836102247238, 0.019381176680326462, 0.04704452306032181, -0.1548958420753479, -0.005131472367793322, 0.07039852440357208, 0.11502562463283539, -0.1346137970685959, -0.003783059772104025, -0.07908964157104492, 0.03039063885807991, 0.07654735445976257, -0.16510222852230072, 0.03158547356724739, -0.1124754324555397, -0.07531405985355377, 0.002912673633545637, -0.015710093080997467, -0.016202643513679504, 0.166526660323143, -0.0020451415330171585, 0.0714716836810112, -0.026345307007431984, -0.05890209600329399, -0.11243434250354767, -0.08489254862070084, 0.05390460044145584, 0.03670717030763626, 0.03266148269176483, -0.2193479984998703, 0.014805203303694725, -0.12762966752052307, 0.1360815018415451, -0.10566820204257965, -0.04705966264009476, -0.022842247039079666, 0.20562705397605896, 0.037286072969436646, 0.08762791007757187, -0.22171171009540558, 0.039756543934345245, -0.05404696613550186, 0.18480908870697021, -0.1502426266670227, -0.0799463614821434, 0.20813211798667908, -0.07964949309825897, -0.10115210711956024, 0.021235812455415726, 0.020391687750816345, 0.026287272572517395, 0.0766737088561058, 0.4564172327518463, -0.09766800701618195, -0.09146861732006073, 0.10178250074386597, 0.17055274546146393, -0.12427149713039398, -0.1827561855316162, 0.06446871906518936, -0.16666454076766968, -0.1973118633031845, 0.0018917324487119913, 0.09222044050693512, 0.038269978016614914, -0.07875611633062363, -0.020746968686580658, 0.06325206160545349, -0.0007678253459744155, 0.09095914661884308, 0.03755716234445572, 0.09034032374620438, -0.08716782182455063, 0.11115926504135132, -0.05017651244997978, 0.004037132486701012, 0.1343354731798172, 0.027325427159667015, -0.03223329409956932, 0.08694463223218918, -0.0485352948307991, 0.05295134335756302, -0.1662379503250122, -0.15068690478801727, 0.03398871049284935, 0.06283251196146011, 0.03186952322721481, 0.1280253529548645, 0.08141885697841644, -0.10732853412628174, 0.022690722718834877, -0.004228927195072174, 0.058398615568876266, 0.03891623765230179, 0.006107209715992212, 0.008764320984482765, 0.0961301177740097, -0.10607069730758667, -0.13589619100093842, -0.07336436957120895, -0.014715781435370445, 0.14371353387832642, -0.0302802175283432, 0.07690227776765823, -0.004240254405885935, 0.00013200697139836848, 0.06930823624134064, 0.08137880265712738, 0.016412746161222458, 0.08971183747053146, -0.05237193778157234, -0.05160155147314072, 0.10863113403320312, -0.13533565402030945, 0.17837053537368774, 0.14053137600421906, -0.20532016456127167, 0.029453208670020103, -0.06838275492191315, 0.03670361638069153, -0.008162540383636951, 0.0975119024515152, -0.08272241055965424, -0.02106042578816414, 0.013134466484189034, 0.0052274600602686405, -0.013007243163883686, 0.017682146281003952, -0.07295988500118256, -0.07787393033504486, -0.10233919322490692, 0.08436838537454605, 0.11562882363796234, -0.10282530635595322, 0.14214380085468292, 0.4384984076023102, 0.11495281755924225, 0.21582984924316406, -0.09581480920314789, -0.0412987545132637, 0.007486371789127588, 0.0001535322517156601, -0.04476691037416458, 0.08031861484050751, -0.15973517298698425, -0.038901735097169876, 0.027348900213837624, 0.07128690183162689, 0.11475157737731934, -0.14959022402763367, -0.09639324247837067, -0.00793045200407505, 0.0022841424215584993, -0.1249532699584961, 0.023905446752905846, -0.03974650055170059, 0.04015624523162842, 0.07232289016246796, -0.021535737439990044, 0.13939237594604492, -0.04166141897439957, -0.0639561116695404, 0.07585346698760986, -0.2017085999250412, -0.23179671168327332, -0.12309670448303223, -0.14680525660514832, 0.04366797208786011, 0.05154111236333847, 0.01726446859538555, -0.17635835707187653, -0.015074856579303741, 0.07706750929355621, 0.07820965349674225, -0.20886357128620148, -0.022814949974417686, -0.004290030337870121, 0.0895976573228836, -0.10227091610431671, -0.0017130117630586028, -0.04419664293527603, -0.10150232166051865, 0.0017003051470965147, 0.07279510796070099, -0.137485533952713, 0.13807645440101624, 0.21589438617229462, 0.07225540280342102, 0.07359948754310608, -0.019093448296189308, 0.09936179965734482, -0.10856141895055771, -0.16549113392829895, 0.08348225057125092, -0.06234746053814888, 0.047262318432331085, 0.17534415423870087, 0.03307317942380905, -0.13904969394207, -0.015682822093367577, -0.0402069091796875, -0.15603256225585938, -0.238995760679245, -0.09178274869918823, -0.1182505264878273, 0.16442428529262543, 0.0009358620154671371, 0.06651917099952698, 0.08258313685655594, -0.022042419761419296, 0.16447891294956207, -0.07379321753978729, -0.07578866183757782, -0.006978808436542749, 0.12375060468912125, -0.056660156697034836, -0.03080669604241848, -0.10566964000463486, -0.008295975625514984, 0.1151021271944046, 0.15304014086723328, 0.12214863300323486, 0.2957419455051422, 0.08268889784812927, 0.026645636186003685, 0.08958091586828232, 0.17622539401054382, 0.09495089203119278, 0.07838419824838638, -0.045413073152303696, -0.014814783819019794, 0.014317171648144722, -0.04022889584302902, 0.010141594335436821, 0.14683100581169128, -0.2679629921913147, -0.006678564939647913, -0.2710230350494385, 0.0965198427438736, -0.10913380235433578, 0.11837165057659149, -0.01015760749578476, 0.10194015502929688, 0.11082887649536133, 0.03233652561903, -0.03858073800802231, 0.16613617539405823, 0.08450309932231903, -0.11277695000171661, 0.001758623169735074, 0.03737903758883476, 0.09715615212917328, -0.02818971499800682, 0.12721189856529236, -0.11048974841833115, -0.1464834064245224, 0.013753619976341724, 0.07152791321277618, -0.15373679995536804, 0.3138748109340668, 0.012069208547472954, -0.13481520116329193, -0.01481647603213787, -0.09957809001207352, -0.006440147757530212, 0.1254177987575531, 0.09333524852991104, 0.07935678958892822, -0.2185502052307129, -0.13339371979236603, 0.05872276425361633, -0.00575496768578887, 0.22408108413219452, -0.034034017473459244, -0.11356475204229355, -0.027013886719942093, 0.04241163283586502, -0.06043251231312752, 0.08524788916110992, 0.023536119610071182, -0.08113526552915573, -0.032957352697849274, 0.05323701351881027, 0.012368366122245789, 0.00524376705288887, 0.09360801428556442, 0.020107939839363098, -0.0009265501867048442, 0.01785753294825554, 0.047885000705718994, -0.0675911232829094, -0.1984109878540039, 0.09357594698667526, -0.05215044692158699, 0.0015536568826064467, -0.08013670891523361, -0.15122665464878082, -0.08837161958217621, -0.16009655594825745, 0.12540200352668762, -0.034406669437885284, 0.12700119614601135, -0.06619787961244583, 0.17341409623622894, -0.07871770113706589, 0.04481020197272301, -0.047349292784929276, 0.050332702696323395, -0.007268077693879604, -0.07756082713603973, 0.16585899889469147, -0.15564003586769104, 0.01809087023139, 0.19572502374649048, -0.018915493041276932, 0.07177707552909851, 0.021322092041373253, -0.0636206790804863, 0.23147478699684143, 0.3014698624610901, 0.008138049393892288, 0.1665448248386383, 0.3018903136253357, -0.07466315478086472, -0.2642788887023926, -0.05505012720823288, -0.2841376066207886, -0.05371501296758652, 0.10716094076633453, -0.22523896396160126, 0.06986407935619354, 0.14383509755134583, -0.06471995264291763, 0.30228954553604126, -0.21825523674488068, 0.012589273042976856, 0.15434536337852478, -0.08868814259767532, 0.5515313148498535, -0.1133413165807724, -0.17677772045135498, -0.008122089318931103, -0.08741296827793121, 0.10602109134197235, -0.0340677872300148, 0.06877441704273224, 0.013465235009789467, 0.04797380417585373, 0.048932258039712906, -0.03111894056200981, 0.22701001167297363, 0.008710170164704323, 0.09015397727489471, -0.07378865778446198, -0.18624304234981537, 0.11639340221881866, -0.04359482601284981, -0.08891059458255768, 0.0849778801202774, -0.05942516401410103, -0.11078983545303345, 0.04663389176130295, -0.07950539886951447, -0.024862350896000862, 0.08423490077257156, -0.04678233340382576, -0.042606171220541, -0.008054176345467567, -0.1618063747882843, -0.0002289071271661669, 0.31360217928886414, -0.07096036523580551, 0.16695955395698547, 0.03677211329340935, 0.00038613268407061696, -0.11027684062719345, 0.030288029462099075, -0.05203165486454964, -0.021576624363660812, 0.09578979015350342, -0.11096979677677155, 0.03204701095819473, 0.14160704612731934, -0.04864364117383957, 0.05846960097551346, 0.09256096184253693, -0.0849417969584465, 0.007583672646433115, 0.17753590643405914, -0.17537221312522888, -0.1273445188999176, -0.006135711446404457, -0.09862716495990753, 0.14055661857128143, 0.04394126310944557, 0.05191568285226822, 0.16669964790344238, 0.03967129811644554, -0.029474308714270592, -0.02817419543862343, -0.1153380498290062, -0.0201893113553524, 0.040153320878744125, 0.00045633706031367183, -0.08791285753250122, 0.2262638509273529, 0.06409153342247009, -0.1328488290309906, -0.051157206296920776, 0.2161225974559784, -0.06805316358804703, -0.04911920800805092, -0.223562553524971, 0.10752306133508682, -0.07112517952919006, -0.0965060144662857, 0.05453834682703018, -0.02270081453025341, 0.005106312222778797, 0.181985542178154, 0.03941008821129799, 0.11070270836353302, 0.03738937899470329, -0.02448922023177147, 0.15798696875572205, -0.142850860953331, -0.14191335439682007, -0.025354057550430298, -0.08757315576076508, -0.13844476640224457, -0.026804137974977493, 0.1617041826248169, -0.09177309274673462, -0.14772607386112213, -0.2621181011199951, 0.10968475043773651, -0.16432365775108337, -0.10192688554525375, -0.03469514101743698, -0.08968492597341537, 0.0696166530251503, 0.030301768332719803, -0.03093348816037178, -0.06706760823726654, -0.18593791127204895, 0.0816768929362297, 0.06349513679742813, 0.045533183962106705, -0.017847947776317596, 0.0067379772663116455, 0.1720137596130371, 0.025955144315958023, 0.10040043294429779, 0.16762186586856842, 0.011397695168852806, 0.2246655523777008, -0.1671202927827835, -0.11496317386627197, 0.1336962729692459, -0.026543032377958298, 0.06762003898620605, 0.16792191565036774, -0.0772583931684494, 0.015526676550507545, -0.028136352077126503, 0.07066910713911057, -0.11003983020782471, -0.105624258518219, 0.007937257178127766, 0.02567129209637642, -0.2755882740020752, -0.005599735304713249, -0.19717298448085785, 0.14788752794265747, 0.02579621411859989, 0.03297143429517746, 0.10257530212402344, 0.10404334217309952, 0.08312062919139862, -0.0017710148822516203, 0.03226327523589134, -0.1176818460226059, 0.02753005363047123, -0.059239376336336136, -0.020663779228925705, 0.017624232918024063, 0.36952024698257446, -0.03603357449173927, -0.046802736818790436, 0.003710439894348383, 0.1307835876941681, -0.02139742486178875, 0.017395347356796265, 0.13209912180900574, 0.12607666850090027, -0.08595693111419678, -0.1504845917224884, 0.04888554662466049, -0.04565655067563057, -0.02836887165904045, 0.1464131623506546, 0.05905961990356445, 0.1050296202301979, 0.0908031314611435, -0.014463032595813274, -0.00318976235575974, 0.012856799177825451, -0.15486004948616028, 0.06223496049642563, -0.010558074340224266, 0.012565906159579754, 0.017934376373887062, 0.15238402783870697, -0.005540105979889631, 0.07739730179309845, -0.09889880567789078, 0.004208535887300968, -0.13498884439468384, -0.07913459837436676, 0.03617347031831741, -0.13393273949623108, 0.04141177982091904, -0.01871878281235695, 0.029611799865961075, 0.30386561155319214, 0.02558239921927452, -0.020639164373278618, 0.12512871623039246, -0.1214587539434433, -0.12050267308950424, -0.001594188273884356, -0.029960084706544876, 0.0791488066315651, -0.02633434161543846, -0.0997740775346756, -0.1001306027173996, -0.15166029334068298, -0.09759195148944855, 0.05182836204767227, -0.04993441700935364, -0.059362251311540604, -0.17634081840515137, -0.05707859992980957, -0.05147340148687363, 0.14025864005088806, -0.12263951450586319, 0.15159130096435547, -0.014490418136119843, 0.004084470681846142, 0.04405883327126503, 0.1950942426919937, -0.03644494712352753, 0.08714226633310318, 0.0154351145029068, 0.1522706001996994, -0.05119588226079941, 0.14720745384693146, -0.10931728035211563, -0.04014137014746666, -0.06710435450077057, 0.21513493359088898, 0.25630924105644226, -0.06136954948306084, -0.008937356993556023, -0.012760217301547527, 0.058654606342315674, 0.1073930487036705, 0.16049085557460785, 0.002326392102986574, 0.2802925705909729, -0.03133585304021835, 0.04815128445625305, 0.02901598811149597, 0.013607407920062542, -0.06336209923028946, 0.03397751972079277, 0.07539387792348862, -0.035039983689785004, -0.1412304788827896, 0.15837742388248444, -0.21980468928813934, 0.18157227337360382, 0.11640069633722305, -0.19996967911720276, -0.013728445395827293, -0.04882071167230606, 0.1689416468143463, -0.0856364443898201, 0.1637246012687683, -0.0903693437576294, -0.2108195722103119, -0.2056000679731369, 0.03867346793413162, -0.34623071551322937, -0.254462867975235, 0.10422009229660034, 0.1488201916217804, 0.04015883058309555, -0.018507536500692368, -0.019967829808592796, -0.018367022275924683, 0.04877542704343796, -0.0067357709631323814, 0.06014643982052803, 0.031397558748722076, -0.02988368645310402, -0.24127542972564697, -0.029804671183228493, 0.023964406922459602, -0.07093082368373871, 0.07464958727359772, -0.06874357163906097, -0.022495782002806664, 0.08059766888618469, -0.03066304884850979, 0.03298592567443848, -0.035373736172914505, -0.16326889395713806, 0.027529051527380943, 0.03900543600320816, 0.036012712866067886, 0.00634160777553916, 0.0008072225609794259, -0.03455270454287529, 0.0644603744149208, -0.16716794669628143, -0.16015739738941193, 0.14140215516090393, -0.06745140254497528, 0.2779497504234314, -0.05812826007604599, -0.0809100940823555, 0.04766704887151718, -0.03426874056458473, 0.1807648241519928, -0.07756473124027252, 0.047254521399736404, 0.12766779959201813, 0.011127962730824947, 0.03121316432952881, -0.3092964291572571, 0.11082969605922699, -0.000795336440205574, -0.006093299947679043, -0.07581598311662674 ]
null
null
transformers
#DwightSchrute DialoGPT-Model #TheOffice
{"tags": ["conversational"]}
text-generation
HypNyx/DialoGPT-small-DwightBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#DwightSchrute DialoGPT-Model #TheOffice
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
#Thanos DialoGPT Model
{"tags": ["conversational"]}
text-generation
HypNyx/DialoGPT-small-Thanos
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#Thanos DialoGPT Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
# Peter from Your Boyfriend Game.
{"tags": ["conversational"]}
text-generation
HypedKid/PeterBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "has_space", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
# Peter from Your Boyfriend Game.
[ "# Peter from Your Boyfriend Game." ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n", "# Peter from Your Boyfriend Game." ]
[ 55, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n# Peter from Your Boyfriend Game." ]
[ 0.029336808249354362, 0.08473480492830276, -0.006291069556027651, 0.06550099700689316, 0.1508171707391739, -0.017133250832557678, 0.09925227612257004, 0.10033313184976578, -0.012911682017147541, 0.022072123363614082, 0.1630454957485199, 0.11513424664735794, -0.013527085073292255, 0.07097040116786957, 0.004938766825944185, -0.2923603355884552, 0.029714977368712425, 0.029295478016138077, -0.01047634519636631, 0.12709879875183105, 0.03987053781747818, -0.058486685156822205, 0.10198689997196198, 0.00495075574144721, -0.0546206496655941, 0.018209870904684067, 0.032216332852840424, -0.07413947582244873, 0.11292896419763565, -0.007761145476251841, 0.05938158929347992, 0.026108216494321823, -0.11689305305480957, -0.1273040771484375, 0.04848602041602135, 0.025513125583529472, -0.023157209157943726, 0.03202672675251961, 0.08503057807683945, -0.004460460506379604, 0.1158437579870224, 0.07746361941099167, 0.015841420739889145, 0.050963010638952255, -0.16793511807918549, -0.10395845770835876, -0.032600585371255875, 0.003264772007241845, 0.027504155412316322, 0.09927769005298615, -0.04428486153483391, 0.1442922055721283, -0.035845737904310226, 0.04773455858230591, 0.19831959903240204, -0.4169250726699829, -0.05878385901451111, 0.10432906448841095, 0.11380833387374878, 0.1625044196844101, -0.027339115738868713, 0.05424709990620613, 0.005405089817941189, 0.034339241683483124, 0.004640926141291857, -0.04293539375066757, -0.024094222113490105, 0.11912915110588074, -0.09329104423522949, -0.038642559200525284, 0.22875720262527466, -0.0452912263572216, 0.10357950627803802, -0.10843587666749954, -0.06948039680719376, -0.019773485139012337, -0.011125385761260986, -0.06487060338258743, -0.055123016238212585, 0.05345028266310692, -0.09662965685129166, -0.1114465519785881, -0.14952431619167328, 0.014710391871631145, -0.1468147486448288, 0.06520941108465195, -0.014201750047504902, 0.03195999935269356, -0.18836790323257446, 0.05891500040888786, -0.028963526710867882, -0.0946669653058052, 0.034575577825307846, -0.07120724767446518, 0.0753919705748558, 0.0288954209536314, -0.060914475470781326, -0.04504510387778282, 0.11924295127391815, 0.06217968463897705, 0.08603285998106003, 0.01672668755054474, -0.01552735548466444, 0.06309948116540909, 0.0823512002825737, 0.080861896276474, 0.0009847732726484537, -0.14135237038135529, -0.007230632472783327, -0.07221685349941254, 0.0311525147408247, -0.10013207048177719, -0.19951386749744415, 0.031863730400800705, 0.05283094942569733, -0.0025874848943203688, 0.0789579302072525, 0.12678466737270355, 0.019100705161690712, -0.008535362780094147, 0.11936046928167343, 0.0055982451885938644, -0.0021565102506428957, 0.04779499024152756, 0.020860588178038597, 0.0971016138792038, -0.07233314961194992, 0.014937087893486023, -0.05820810794830322, 0.0415629968047142, -0.06481771171092987, -0.09549964219331741, -0.018459461629390717, -0.06236221641302109, 0.05222262814640999, -0.029910072684288025, -0.009960721246898174, -0.1480451226234436, -0.017933115363121033, -0.000667693093419075, -0.030685460194945335, -0.01526629738509655, -0.10395052284002304, -0.11355254799127579, -0.009189039468765259, 0.003937953617423773, -0.03953993692994118, 0.005377843976020813, -0.019161591306328773, 0.12731169164180756, -0.021020432934165, 0.1382531225681305, -0.10843358933925629, 0.0682450607419014, -0.08414202928543091, -0.023641381412744522, -0.09185266494750977, 0.031054746359586716, -0.01167176105082035, -0.003192865988239646, -0.0023675987031310797, -0.01666034199297428, -0.05942235887050629, 0.05493763089179993, -0.05348201468586922, 0.11733195930719376, -0.060869574546813965, -0.14071790874004364, 0.23727937042713165, -0.074903205037117, -0.18080733716487885, 0.0755763128399849, -0.00873318500816822, 0.052262455224990845, 0.11202166229486465, 0.24574795365333557, -0.05851869285106659, -0.03700883314013481, 0.0174090713262558, 0.10697878897190094, -0.12515290081501007, 0.054052408784627914, 0.0953574851155281, 0.025571076199412346, -0.006089251488447189, 0.05447116121649742, -0.01715628057718277, 0.05803854763507843, -0.015468563884496689, -0.0316300168633461, 0.04983000084757805, -0.025554729625582695, 0.09165329486131668, -0.003024303587153554, 0.10897479206323624, -0.07810862362384796, -0.025367677211761475, 0.09027902781963348, -0.006261161062866449, 0.00169041333720088, 0.05911882966756821, -0.049373380839824677, 0.1498209834098816, 0.048692718148231506, 0.03848794475197792, -0.1343248337507248, -0.11098773032426834, -0.0754331722855568, 0.23843081295490265, 0.04181491956114769, 0.12816941738128662, 0.1022653877735138, -0.005840527359396219, -0.0036673799622803926, 0.018941549584269524, 0.12123961746692657, 0.001038120943121612, -0.027761898934841156, -0.06913807988166809, 0.032068636268377304, -0.05426676571369171, 0.047192614525556564, -0.07205061614513397, 0.002986319363117218, 0.0444190688431263, 0.0931207612156868, -0.0023913707118481398, 0.002165081212297082, -0.07867687195539474, -0.013362044468522072, -0.02667355351150036, -0.030796071514487267, 0.09739592671394348, 0.010795263573527336, -0.0474763885140419, 0.21754097938537598, -0.16586318612098694, 0.21349786221981049, 0.2433118373155594, -0.3130374848842621, 0.03516940027475357, -0.0316862016916275, -0.017343973740935326, 0.008735011331737041, 0.06339910626411438, -0.05590580403804779, 0.12973107397556305, 0.02668706700205803, 0.166686549782753, -0.04162575677037239, -0.015475835651159286, 0.0075373295694589615, -0.030186595395207405, -0.019070325419306755, 0.11416783928871155, 0.012292314320802689, -0.08546798676252365, 0.22895415127277374, 0.17135238647460938, 0.09879086166620255, 0.1734352707862854, 0.04785395786166191, 0.0032205511815845966, 0.030490543693304062, -0.02277132123708725, -0.06659778207540512, -0.059824638068675995, -0.2276456207036972, -0.04301668703556061, 0.0760529562830925, -0.042216598987579346, 0.07815612852573395, -0.12334312498569489, -0.08449004590511322, 0.05784051492810249, 0.04104146733880043, -0.07328063249588013, 0.16132456064224243, 0.0015606274828314781, 0.08980895578861237, 0.04638485610485077, 0.048565030097961426, 0.08361346274614334, -0.0034662613179534674, -0.0809740200638771, 0.07333649694919586, -0.14918041229248047, -0.2937370836734772, -0.0919165313243866, -0.15178021788597107, -0.04134657606482506, 0.0649091973900795, 0.1122424453496933, -0.1470416635274887, 0.03497057408094406, 0.004300008527934551, 0.033608924597501755, -0.15794973075389862, -0.06654667109251022, -0.13121946156024933, 0.008740698918700218, -0.16686326265335083, -0.06893860548734665, -0.029299410060048103, -0.011343875899910927, -0.1317577362060547, 0.11688918620347977, -0.11402992904186249, 0.041130632162094116, 0.15982568264007568, 0.04068313539028168, 0.0926070585846901, -0.0670216828584671, 0.2053854912519455, -0.057936470955610275, -0.02378508634865284, 0.17039887607097626, -0.013672048225998878, 0.07716570794582367, 0.008946914225816727, 0.003938701003789902, -0.0009853719966486096, 0.006061004940420389, -0.029828466475009918, -0.04875045642256737, -0.17424458265304565, -0.0763888731598854, -0.07517008483409882, 0.13436326384544373, 0.051404740661382675, 0.052949048578739166, 0.14032365381717682, 0.036069296300411224, 0.015904907137155533, -0.053775008767843246, 0.033367205411195755, 0.08894024044275284, 0.2915549576282501, -0.12911784648895264, 0.09288699179887772, -0.01845809631049633, -0.11785143613815308, 0.09696285426616669, 0.00578248780220747, 0.010042458772659302, 0.1006578579545021, 0.06896184384822845, 0.016560964286327362, 0.07455117255449295, 0.053508199751377106, -0.004441625904291868, 0.0256339181214571, -0.015679923817515373, -0.07657400518655777, -0.06537783890962601, -0.036823123693466187, 0.04619700089097023, 0.051707930862903595, -0.14905117452144623, -0.01206158846616745, -0.10948459059000015, 0.05927582457661629, 0.046924740076065063, 0.029458245262503624, -0.14704489707946777, -0.0011878382647410035, 0.04812951758503914, -0.02563006989657879, -0.12354099005460739, 0.09881819039583206, 0.08199582248926163, -0.15276271104812622, -0.020171858370304108, 0.01983737200498581, 0.11357412487268448, 0.026554357260465622, 0.09339210391044617, -0.056692641228437424, -0.09901967644691467, 0.020500188693404198, 0.09676185995340347, -0.237998366355896, 0.1484922617673874, -0.028767626732587814, -0.09350957721471786, -0.06610752642154694, -0.07830718904733658, 0.0005486700683832169, 0.01970032788813114, 0.06929197162389755, 0.031651437282562256, -0.11353418976068497, -0.06479395925998688, -0.03192596882581711, 0.021385231986641884, 0.08374927192926407, -0.07816646248102188, -0.04009544849395752, -0.030602071434259415, -0.003523900406435132, -0.046729009598493576, 0.0832177922129631, 0.104383684694767, -0.1441044807434082, 0.054866861552000046, 0.07969353348016739, 0.10464995354413986, 0.05610303208231926, -0.0712037980556488, -0.13676023483276367, 0.14411351084709167, 0.06339271366596222, -0.060169339179992676, -0.05803031474351883, -0.027573449537158012, -0.05896421894431114, -0.04344654083251953, -0.00956246443092823, -0.05570760741829872, 0.053702130913734436, -0.14079882204532623, -0.11366637051105499, 0.097536101937294, -0.008996143005788326, -0.04849836230278015, -0.016966506838798523, 0.19131113588809967, 0.035616956651210785, 0.033454298973083496, -0.017619075253605843, 0.0571541003882885, -0.11722038686275482, -0.05902251601219177, 0.0627693310379982, -0.06917787343263626, 0.06982564181089401, -0.09178155660629272, 0.10449697077274323, 0.05951237678527832, -0.0888466164469719, -0.0004849929828196764, 0.30906686186790466, 0.1491394191980362, -0.06758148223161697, 0.1721239537000656, 0.00811348669230938, -0.023046990856528282, -0.24857686460018158, -0.1330743283033371, -0.10235640406608582, -0.09914219379425049, 0.03320476785302162, -0.15622976422309875, 0.042808905243873596, -0.08498428016901016, -0.01007862389087677, 0.1300332248210907, -0.15459506213665009, -0.09633133560419083, 0.11240605264902115, 0.007774746045470238, 0.3278244137763977, -0.10929547995328903, -0.0377238392829895, -0.007025549653917551, -0.2117898315191269, 0.1365606039762497, 0.005663362797349691, 0.07657402008771896, 0.013003945350646973, 0.22970160841941833, 0.032036080956459045, -0.010927151888608932, 0.1032167300581932, -0.043184421956539154, -0.08095810562372208, -0.07784222066402435, -0.20330311357975006, 0.04477892816066742, 0.01463836245238781, -0.06847181171178818, -0.05816717445850372, -0.018390556797385216, -0.14135819673538208, 0.0028346439357846975, -0.11758724600076675, -0.024522120133042336, -0.00914765615016222, -0.027862608432769775, -0.015450282022356987, 0.022342965006828308, -0.010244673117995262, 0.01778869889676571, 0.12753549218177795, -0.1274869441986084, 0.1500997394323349, 0.03580854460597038, 0.026719355955719948, -0.0766737088561058, -0.11831708252429962, -0.057591523975133896, -0.07896772772073746, 0.08942007273435593, -0.13094526529312134, 0.03823700547218323, 0.11277631670236588, -0.006075727753341198, 0.02638663910329342, 0.10863882303237915, -0.056133024394512177, 0.008807848207652569, 0.11612528562545776, -0.2600567638874054, -0.05897219479084015, -0.10163553804159164, -0.024232424795627594, 0.14241085946559906, -0.038261737674474716, 0.12352391332387924, -0.0025386048946529627, -0.08831223845481873, 0.04701464623212814, -0.005038181319832802, -0.05509915202856064, -0.04615138843655586, -0.013775869272649288, 0.015006016939878464, -0.12521056830883026, 0.010636433959007263, 0.043321482837200165, -0.21984614431858063, 0.0429389588534832, 0.1389334350824356, -0.0626026839017868, -0.09039100259542465, -0.014228864572942257, 0.039764486253261566, 0.005707874428480864, -0.043841518461704254, 0.005753505975008011, -0.09559587389230728, 0.05157190561294556, 0.12478820234537125, 0.08191890269517899, 0.06319927424192429, -0.040567923337221146, 0.025194218382239342, 0.021953454241156578, 0.020810524001717567, 0.021726705133914948, -0.027267420664429665, -0.047695279121398926, 0.08075356483459473, 0.00004269627606845461, 0.12184374779462814, -0.0752321109175682, -0.12100591510534286, -0.1687421351671219, -0.011457046493887901, -0.009718039073050022, -0.08205410838127136, -0.07859057933092117, -0.07512559741735458, -0.008971210569143295, -0.0317380465567112, -0.06062313914299011, -0.0677526444196701, -0.08708620071411133, 0.029162077233195305, 0.012698792852461338, 0.02807995118200779, -0.12007097154855728, -0.005323610734194517, 0.10687142610549927, -0.04359429329633713, 0.09108161181211472, 0.14831092953681946, -0.07287819683551788, 0.09774963557720184, -0.05695806443691254, -0.13986095786094666, 0.026182811707258224, 0.04023925960063934, 0.05658445879817009, 0.08313868939876556, -0.02317427471280098, 0.017948433756828308, 0.05380985140800476, 0.06017466261982918, 0.13720417022705078, -0.07003217935562134, 0.09434986859560013, 0.0408131368458271, -0.13538284599781036, -0.046001557260751724, -0.06881479918956757, 0.07614752650260925, 0.008435850031673908, 0.09363928437232971, -0.043610770255327225, 0.10694501549005508, -0.1312662661075592, 0.05218334123492241, 0.0160214826464653, -0.15499861538410187, 0.027167508378624916, -0.07787240296602249, 0.014428696595132351, -0.019844116643071175, 0.1891719251871109, 0.037361543625593185, -0.006578317377716303, 0.039698000997304916, 0.12492278218269348, 0.002894250676035881, -0.0075867557898163795, 0.16762444376945496, 0.08758743852376938, -0.06011766567826271, -0.065793976187706, 0.12960031628608704, -0.003902075346559286, 0.0869496613740921, 0.14014574885368347, 0.030776966363191605, 0.02171592228114605, 0.048550501465797424, 0.007866841740906239, 0.112618587911129, -0.14712731540203094, -0.1371261179447174, 0.018687518313527107, 0.03149260953068733, -0.07229156047105789, 0.17484183609485626, 0.1262134462594986, -0.07708948105573654, 0.012802905403077602, -0.1128426343202591, -0.007136859931051731, -0.13112691044807434, -0.157483771443367, -0.07386581599712372, -0.16893447935581207, 0.017815878614783287, -0.10602911561727524, 0.07630955427885056, 0.019106846302747726, 0.05199993774294853, -0.07635919004678726, -0.0088400449603796, 0.017724838107824326, -0.07304102182388306, 0.005261906888335943, -0.04612138122320175, 0.09293343871831894, -0.05139673501253128, 0.010892742313444614, -0.03424912691116333, 0.03520594537258148, 0.028932716697454453, 0.04570581763982773, -0.02811541222035885, 0.00918759685009718, -0.16959922015666962, -0.10865995287895203, -0.05942031368613243, 0.052542414516210556, -0.024309813976287842, 0.18154822289943695, -0.0033823514822870493, 0.0013453339925035834, 0.012276416644454002, 0.22339023649692535, -0.037797924131155014, -0.06963460892438889, -0.04117969051003456, 0.19920402765274048, -0.041646476835012436, 0.035969365388154984, -0.03351163491606712, 0.032982416450977325, -0.13942117989063263, 0.38894203305244446, 0.3466539978981018, -0.07397731393575668, 0.004430819768458605, 0.012420094572007656, 0.06320946663618088, 0.09524989873170853, 0.10941778123378754, 0.042845215648412704, 0.24014754593372345, -0.1384439766407013, -0.07658741623163223, -0.0973687395453453, 0.014713876880705357, -0.038940414786338806, 0.052384693175554276, 0.13801871240139008, -0.06456975638866425, -0.02300240658223629, 0.07215431332588196, -0.21166490018367767, 0.08306356519460678, -0.11594877392053604, -0.20989251136779785, -0.049030061811208725, 0.020997999235987663, 0.17428937554359436, 0.0016654806677252054, 0.1324886977672577, 0.03385801985859871, -0.005336394999176264, 0.062457114458084106, -0.0014407592825591564, -0.20803594589233398, 0.05453984811902046, 0.136891171336174, -0.21255913376808167, 0.032742295414209366, -0.05393113195896149, 0.0615832544863224, 0.07128465175628662, 0.08952586352825165, 0.025226052850484848, -0.011818800121545792, -0.0028903421480208635, -0.07925458997488022, -0.09951315820217133, 0.022316353395581245, 0.001945342170074582, -0.07685128599405289, 0.10838951170444489, -0.15361624956130981, 0.07748440653085709, 0.06927986443042755, -0.06473354995250702, -0.02609897218644619, 0.06803569197654724, -0.06439341604709625, 0.049065958708524704, 0.06644800305366516, -0.012408609502017498, -0.030102675780653954, -0.03141709789633751, -0.05578267574310303, -0.004345414228737354, 0.0029665951151400805, -0.09960732609033585, -0.0867241844534874, -0.12477921694517136, 0.02005947194993496, -0.03706861659884453, -0.2179671972990036, 0.01906285248696804, -0.10217124968767166, 0.03920729085803032, -0.04973158985376358, 0.06359271705150604, 0.038043227046728134, -0.012130524031817913, -0.005887687671929598, -0.002262564841657877, 0.06789577752351761, 0.12987872958183289, -0.1011839509010315, -0.05016994848847389 ]
null
null
transformers
# Erlangshen-MegatronBert-1.3B - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 2021登顶FewCLUE和ZeroCLUE,处理NLU任务,开源时最大的中文BERT模型 It topped FewCLUE and ZeroCLUE benchmarks in 2021, solving NLU tasks, was the largest BERT when publicly released. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 通用 General | 自然语言理解 NLU | 二郎神 Erlangshen | MegatronBERT | 1.3B | 中文 Chinese | ## 模型信息 Model Information Encoder结构为主的双向语言模型,专注于解决各种自然语言理解任务。 我们跟进了[Megatron-LM](https://github.com/NVIDIA/Megatron-LM)的工作,使用了32张A100,总共耗时14天在悟道语料库(180 GB版本)上训练了十亿级别参数量的BERT。同时,鉴于中文语法和大规模训练的难度,我们使用四种预训练策略来改进BERT:1) 整词掩码, 2) 知识动态遮掩, 3) 句子顺序预测, 4) 层前归一化. A bidirectional language model based on the Encoder structure, focusing on solving various NLU tasks. We follow [Megatron-LM](https://github.com/NVIDIA/Megatron-LM), using 32 A100s and spending 14 days training a billion-level BERT on WuDao Corpora (180 GB version). Given Chinese grammar and the difficulty of large-scale training, we use four pre-training procedures to improve BERT: 1) Whole Word Masking (WWM), 2) Knowledge-based Dynamic Masking (KDM), 3) Sentence Order Prediction (SOP), 4) Pre-layer Normalization (Pre-LN). ### 成就 Achievements 1.2021年11月10日,Erlangshen-MegatronBert-1.3B在FewCLUE上取得第一。其中,它在CHIDF(成语填空)和TNEWS(新闻分类)子任务中的表现优于人类表现。此外,它在CHIDF(成语填空), CSLDCP(学科文献分类), OCNLI(自然语言推理)任务中均名列前茅。 2.2022年1月24日,Erlangshen-MegatronBert-1.3B在CLUE基准测试中的ZeroCLUE中取得第一。具体到子任务,我们在CSLDCP(主题文献分类), TNEWS(新闻分类), IFLYTEK(应用描述分类), CSL(抽象关键字识别)和CLUEWSC(参考消歧)任务中取得第一。 3.在2022年7月10日,Erlangshen-MegatronBert-1.3B在CLUE基准的语义匹配任务中取得第一。 1.On November 10, 2021, Erlangshen-MegatronBert-1.3B topped the FewCLUE benchmark. Among them, our Erlangshen outperformed human performance in CHIDF (idiom fill-in-the-blank) and TNEWS (news classification) subtasks. In addition, our Erlangshen ranked the top in CHIDF (idiom fill-in-the-blank), CSLDCP (subject literature classification), and OCNLI (natural language inference) tasks. 2.On January 24, 2022, Erlangshen-MegatronBert-1.3B topped the ZeroCLUE benchmark. For each of these tasks, we rank the top ones in CSLDCP (Subject Literature Classification), TNEWS (News Classification), IFLYTEK (Application Description Classification), CSL (Abstract Keyword Recognition), and CLUEWSC (Referential Disambiguation) tasks. 3.Erlangshen-MegatronBert-1.3B topped the CLUE benchmark semantic matching task on July 10, 2022. ### 下游效果 Performance | 模型 | afqmc | tnews | iflytek | ocnli | cmnli | wsc | csl | | :--------: | :-----: | :----: | :-----: | :----: | :----: | :----: | :----: | | roberta-wwm-ext-large | 0.7514 | 0.5872 | 0.6152 | 0.777 | 0.814 | 0.8914 | 0.86 | | Erlangshen-MegatronBert-1.3B | 0.7608 | 0.5996 | 0.6234 | 0.7917 | 0.81 | 0.9243 | 0.872 | ## 使用 Usage ``` python from transformers import MegatronBertConfig, MegatronBertModel from transformers import BertTokenizer tokenizer = BertTokenizer.from_pretrained("IDEA-CCNL/Erlangshen-MegatronBert-1.3B") config = MegatronBertConfig.from_pretrained("IDEA-CCNL/Erlangshen-MegatronBert-1.3B") model = MegatronBertModel.from_pretrained("IDEA-CCNL/Erlangshen-MegatronBert-1.3B") ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["zh"], "license": "apache-2.0", "tags": ["bert", "NLU", "FewCLUE", "ZeroCLUE"], "inference": true}
null
IDEA-CCNL/Erlangshen-MegatronBert-1.3B
[ "transformers", "pytorch", "megatron-bert", "bert", "NLU", "FewCLUE", "ZeroCLUE", "zh", "arxiv:2209.02970", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "zh" ]
TAGS #transformers #pytorch #megatron-bert #bert #NLU #FewCLUE #ZeroCLUE #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us
Erlangshen-MegatronBert-1.3B ============================ * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 2021登顶FewCLUE和ZeroCLUE,处理NLU任务,开源时最大的中文BERT模型 It topped FewCLUE and ZeroCLUE benchmarks in 2021, solving NLU tasks, was the largest BERT when publicly released. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- Encoder结构为主的双向语言模型,专注于解决各种自然语言理解任务。 我们跟进了Megatron-LM的工作,使用了32张A100,总共耗时14天在悟道语料库(180 GB版本)上训练了十亿级别参数量的BERT。同时,鉴于中文语法和大规模训练的难度,我们使用四种预训练策略来改进BERT:1) 整词掩码, 2) 知识动态遮掩, 3) 句子顺序预测, 4) 层前归一化. A bidirectional language model based on the Encoder structure, focusing on solving various NLU tasks. We follow Megatron-LM, using 32 A100s and spending 14 days training a billion-level BERT on WuDao Corpora (180 GB version). Given Chinese grammar and the difficulty of large-scale training, we use four pre-training procedures to improve BERT: 1) Whole Word Masking (WWM), 2) Knowledge-based Dynamic Masking (KDM), 3) Sentence Order Prediction (SOP), 4) Pre-layer Normalization (Pre-LN). ### 成就 Achievements 1.2021年11月10日,Erlangshen-MegatronBert-1.3B在FewCLUE上取得第一。其中,它在CHIDF(成语填空)和TNEWS(新闻分类)子任务中的表现优于人类表现。此外,它在CHIDF(成语填空), CSLDCP(学科文献分类), OCNLI(自然语言推理)任务中均名列前茅。 2.2022年1月24日,Erlangshen-MegatronBert-1.3B在CLUE基准测试中的ZeroCLUE中取得第一。具体到子任务,我们在CSLDCP(主题文献分类), TNEWS(新闻分类), IFLYTEK(应用描述分类), CSL(抽象关键字识别)和CLUEWSC(参考消歧)任务中取得第一。 3.在2022年7月10日,Erlangshen-MegatronBert-1.3B在CLUE基准的语义匹配任务中取得第一。 1.On November 10, 2021, Erlangshen-MegatronBert-1.3B topped the FewCLUE benchmark. Among them, our Erlangshen outperformed human performance in CHIDF (idiom fill-in-the-blank) and TNEWS (news classification) subtasks. In addition, our Erlangshen ranked the top in CHIDF (idiom fill-in-the-blank), CSLDCP (subject literature classification), and OCNLI (natural language inference) tasks. 2.On January 24, 2022, Erlangshen-MegatronBert-1.3B topped the ZeroCLUE benchmark. For each of these tasks, we rank the top ones in CSLDCP (Subject Literature Classification), TNEWS (News Classification), IFLYTEK (Application Description Classification), CSL (Abstract Keyword Recognition), and CLUEWSC (Referential Disambiguation) tasks. 3.Erlangshen-MegatronBert-1.3B topped the CLUE benchmark semantic matching task on July 10, 2022. ### 下游效果 Performance 使用 Usage -------- 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 成就 Achievements\n\n\n1.2021年11月10日,Erlangshen-MegatronBert-1.3B在FewCLUE上取得第一。其中,它在CHIDF(成语填空)和TNEWS(新闻分类)子任务中的表现优于人类表现。此外,它在CHIDF(成语填空), CSLDCP(学科文献分类), OCNLI(自然语言推理)任务中均名列前茅。 \n\n2.2022年1月24日,Erlangshen-MegatronBert-1.3B在CLUE基准测试中的ZeroCLUE中取得第一。具体到子任务,我们在CSLDCP(主题文献分类), TNEWS(新闻分类), IFLYTEK(应用描述分类), CSL(抽象关键字识别)和CLUEWSC(参考消歧)任务中取得第一。 \n\n3.在2022年7月10日,Erlangshen-MegatronBert-1.3B在CLUE基准的语义匹配任务中取得第一。\n\n\n1.On November 10, 2021, Erlangshen-MegatronBert-1.3B topped the FewCLUE benchmark. Among them, our Erlangshen outperformed human performance in CHIDF (idiom fill-in-the-blank) and TNEWS (news classification) subtasks. In addition, our Erlangshen ranked the top in CHIDF (idiom fill-in-the-blank), CSLDCP (subject literature classification), and OCNLI (natural language inference) tasks. \n\n2.On January 24, 2022, Erlangshen-MegatronBert-1.3B topped the ZeroCLUE benchmark. For each of these tasks, we rank the top ones in CSLDCP (Subject Literature Classification), TNEWS (News Classification), IFLYTEK (Application Description Classification), CSL (Abstract Keyword Recognition), and CLUEWSC (Referential Disambiguation) tasks. \n\n3.Erlangshen-MegatronBert-1.3B topped the CLUE benchmark semantic matching task on July 10, 2022.", "### 下游效果 Performance\n\n\n\n使用 Usage\n--------\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #megatron-bert #bert #NLU #FewCLUE #ZeroCLUE #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n", "### 成就 Achievements\n\n\n1.2021年11月10日,Erlangshen-MegatronBert-1.3B在FewCLUE上取得第一。其中,它在CHIDF(成语填空)和TNEWS(新闻分类)子任务中的表现优于人类表现。此外,它在CHIDF(成语填空), CSLDCP(学科文献分类), OCNLI(自然语言推理)任务中均名列前茅。 \n\n2.2022年1月24日,Erlangshen-MegatronBert-1.3B在CLUE基准测试中的ZeroCLUE中取得第一。具体到子任务,我们在CSLDCP(主题文献分类), TNEWS(新闻分类), IFLYTEK(应用描述分类), CSL(抽象关键字识别)和CLUEWSC(参考消歧)任务中取得第一。 \n\n3.在2022年7月10日,Erlangshen-MegatronBert-1.3B在CLUE基准的语义匹配任务中取得第一。\n\n\n1.On November 10, 2021, Erlangshen-MegatronBert-1.3B topped the FewCLUE benchmark. Among them, our Erlangshen outperformed human performance in CHIDF (idiom fill-in-the-blank) and TNEWS (news classification) subtasks. In addition, our Erlangshen ranked the top in CHIDF (idiom fill-in-the-blank), CSLDCP (subject literature classification), and OCNLI (natural language inference) tasks. \n\n2.On January 24, 2022, Erlangshen-MegatronBert-1.3B topped the ZeroCLUE benchmark. For each of these tasks, we rank the top ones in CSLDCP (Subject Literature Classification), TNEWS (News Classification), IFLYTEK (Application Description Classification), CSL (Abstract Keyword Recognition), and CLUEWSC (Referential Disambiguation) tasks. \n\n3.Erlangshen-MegatronBert-1.3B topped the CLUE benchmark semantic matching task on July 10, 2022.", "### 下游效果 Performance\n\n\n\n使用 Usage\n--------\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 59, 465, 63 ]
[ "passage: TAGS\n#transformers #pytorch #megatron-bert #bert #NLU #FewCLUE #ZeroCLUE #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ -0.07020561397075653, 0.04604746028780937, -0.00557973375543952, 0.00908314436674118, 0.00874472688883543, -0.0005789474816992879, 0.1005411297082901, 0.09168349951505661, 0.017039312049746513, -0.02722671627998352, 0.15925057232379913, 0.1771206557750702, -0.013019771315157413, -0.029031891375780106, -0.041927270591259, -0.11830519884824753, 0.07480306178331375, 0.08160143345594406, -0.104703389108181, 0.058078791946172714, 0.06895850598812103, -0.05617775768041611, 0.04463229328393936, -0.010928343050181866, -0.04060269519686699, 0.03578514605760574, 0.04616337642073631, -0.03464656323194504, 0.07867494225502014, 0.04894798621535301, 0.01848326064646244, 0.04312700778245926, -0.04528743401169777, -0.15279647707939148, 0.01019165851175785, 0.007987812161445618, -0.07198337465524673, 0.03818141669034958, 0.016375724226236343, -0.005935841239988804, 0.08479149639606476, -0.030707692727446556, -0.07069428265094757, 0.05046572908759117, -0.04795314371585846, -0.21734602749347687, -0.12541897594928741, 0.18965715169906616, 0.005640867166221142, 0.06730303168296814, 0.07201147824525833, 0.22292004525661469, -0.13023169338703156, 0.01699909381568432, 0.20833711326122284, -0.3659410774707794, -0.0002583255700301379, 0.0730823203921318, 0.04455596208572388, -0.011675025336444378, 0.002962597878649831, 0.06247226893901825, 0.0708232894539833, -0.001071431557647884, -0.02787197194993496, -0.03491732105612755, 0.008999809622764587, 0.060788851231336594, -0.060637108981609344, -0.03558090701699257, 0.20641890168190002, 0.052661798894405365, 0.04441482946276665, 0.0423693023622036, -0.06847573816776276, -0.022216172888875008, -0.02179804816842079, 0.04262218624353409, 0.029284147545695305, 0.09729180485010147, 0.03430075943470001, -0.012852272018790245, -0.10661458224058151, 0.005752875469624996, -0.1755569726228714, 0.16495265066623688, 0.023303596302866936, 0.10548273473978043, -0.13368473947048187, 0.031101875007152557, -0.010501155629754066, -0.11121465265750885, 0.014154956676065922, -0.050215721130371094, 0.1214303970336914, 0.09150607138872147, -0.0680752545595169, 0.15492528676986694, 0.1623058319091797, 0.2650756537914276, 0.0568707175552845, 0.01879502460360527, 0.05761576443910599, 0.1099679097533226, -0.08783291280269623, -0.017912333831191063, -0.014299076981842518, -0.07426343113183975, 0.1207214817404747, -0.07517503947019577, 0.1379799246788025, -0.01643824577331543, -0.07154330611228943, -0.06007686257362366, -0.03849009796977043, 0.11028794199228287, 0.07855726033449173, -0.005027026403695345, -0.04245981201529503, 0.02914794161915779, 0.07903037220239639, -0.018598567694425583, 0.020914945751428604, -0.00014789614942856133, 0.030495010316371918, 0.19425401091575623, -0.0007098998175933957, 0.014195791445672512, -0.01802537776529789, 0.0525064654648304, -0.09855645895004272, -0.037523284554481506, -0.01830565556883812, 0.027907900512218475, 0.12354950606822968, -0.04225872457027435, 0.07460382580757141, -0.13073572516441345, -0.08016709983348846, 0.06504727900028229, 0.07106085866689682, 0.010818347334861755, -0.08468110859394073, 0.09169738739728928, -0.06284883618354797, 0.04707656800746918, -0.056184303015470505, 0.0473867692053318, -0.06709115207195282, 0.04558287188410759, -0.024354437366127968, 0.018247131258249283, -0.16102007031440735, 0.0036730633582919836, -0.07681413739919662, 0.03305419534444809, 0.06296724826097488, -0.12628185749053955, -0.10787972807884216, 0.1653287708759308, -0.03593570366501808, -0.03213225305080414, -0.05313263088464737, -0.0003983179631177336, 0.029762063175439835, 0.09030677378177643, -0.05801533907651901, -0.08427049219608307, 0.15215881168842316, -0.11129308491945267, -0.17250928282737732, 0.05630823224782944, 0.0612947940826416, -0.0911271721124649, 0.07565096020698547, 0.12297474592924118, 0.0658368319272995, -0.10309808701276779, -0.02780863642692566, 0.1160675659775734, -0.09021095931529999, -0.267966628074646, 0.07224120199680328, -0.010567632503807545, -0.10286899656057358, 0.04834187403321266, -0.015767311677336693, 0.09494586288928986, -0.023498238995671272, -0.07582738250494003, -0.09987663477659225, -0.08299742639064789, -0.02101207710802555, 0.01241579744964838, 0.025838883593678474, -0.0959213376045227, -0.03290092200040817, -0.030444368720054626, 0.09531955420970917, 0.07234913110733032, 0.07560864835977554, -0.0714227557182312, 0.07296303659677505, -0.0033554586116224527, 0.013742011971771717, -0.0929383859038353, 0.027879945933818817, -0.008000143803656101, -0.06626610457897186, 0.028487002477049828, 0.12663760781288147, 0.05111093074083328, -0.0958864614367485, -0.021379344165325165, 0.01652318425476551, 0.08295315504074097, 0.06111342832446098, 0.0016670312033966184, -0.15417760610580444, 0.0019885292276740074, -0.015227372758090496, 0.0001718960120342672, -0.032087188214063644, 0.0015193361323326826, 0.06737010180950165, 0.11388576030731201, -0.06868469715118408, 0.07187431305646896, -0.056916240602731705, -0.007779092062264681, -0.01746182143688202, 0.002852745819836855, 0.1242440789937973, 0.05364004150032997, -0.09677814692258835, 0.0938495323061943, 0.0021973473485559225, 0.27994590997695923, 0.20134732127189636, -0.12017799913883209, 0.10818472504615784, 0.07653330266475677, -0.029633350670337677, -0.047540709376335144, 0.09206351637840271, 0.0030100499279797077, -0.01329383160918951, 0.013338753022253513, 0.07512392103672028, -0.045084454119205475, -0.05228051543235779, -0.015656642615795135, -0.048393864184617996, -0.021273765712976456, 0.08552681654691696, 0.2168891876935959, -0.19875530898571014, 0.16133570671081543, 0.31375932693481445, -0.04536408558487892, 0.03720906749367714, -0.11731461435556412, 0.00043567566899582744, -0.005218649283051491, -0.048998165875673294, -0.030180679634213448, 0.11204689741134644, -0.10655569285154343, 0.03115130215883255, 0.07390240579843521, 0.005962132476270199, 0.06653293967247009, -0.14703169465065002, -0.06210440769791603, -0.012520399875938892, -0.004541446454823017, -0.04398251324892044, 0.0755409374833107, -0.056206636130809784, 0.09469648450613022, -0.03134559839963913, -0.07879823446273804, 0.09076746553182602, 0.0010298300767317414, -0.04063296318054199, 0.08667198568582535, -0.12925375998020172, -0.13123467564582825, -0.04949088767170906, -0.014896328561007977, -0.07520895451307297, -0.06700838357210159, 0.07430504262447357, -0.033681467175483704, -0.04622618854045868, 0.03825073689222336, -0.09389728307723999, -0.07454349845647812, 0.03250470012426376, 0.05999096855521202, 0.040059544146060944, 0.027389908209443092, -0.13364747166633606, -0.06420940905809402, -0.017924729734659195, -0.04178818315267563, 0.014928633347153664, -0.06041911989450455, 0.054783277213573456, 0.07716891169548035, 0.07904037088155746, 0.023193202912807465, 0.019038232043385506, 0.10833287984132767, 0.0014752495335415006, 0.012027475982904434, 0.2165209800004959, 0.07450933009386063, 0.08736544102430344, 0.0786118283867836, 0.0745425894856453, -0.04731385409832001, -0.028698168694972992, -0.013938608579337597, -0.07286271452903748, -0.2089470773935318, -0.08777821809053421, -0.11184073239564896, 0.0009215745376423001, -0.008914574980735779, 0.08616093546152115, 0.08932734280824661, 0.0460071787238121, -0.016782987862825394, -0.018740607425570488, -0.08251382410526276, 0.03680611029267311, 0.25507885217666626, 0.010753094218671322, 0.07352815568447113, -0.13990341126918793, -0.011177649721503258, 0.12497983872890472, 0.04692349210381508, 0.1049220860004425, 0.13425366580486298, 0.05499481409788132, 0.08848292380571365, 0.20986224710941315, 0.06804045289754868, 0.09768873453140259, -0.0005012192414142191, -0.06178227439522743, -0.0385710634291172, -0.008559955283999443, -0.010230130515992641, 0.025049323216080666, 0.03343731537461281, -0.07133848965167999, 0.0283478032797575, -0.1591913104057312, 0.060509759932756424, 0.1646798700094223, 0.034615419805049896, -0.07134811580181122, 0.014157168567180634, 0.06750378012657166, -0.02453114464879036, 0.035558007657527924, 0.0903724804520607, -0.05859022215008736, -0.04233294725418091, 0.14736832678318024, 0.024695100262761116, 0.10062699019908905, 0.07853131741285324, 0.04576132819056511, -0.03935478255152702, -0.05970171093940735, 0.0821511372923851, 0.09602151066064835, -0.2737180292606354, 0.14295929670333862, -0.011326063424348831, -0.0073943655006587505, -0.06896504759788513, -0.04049958288669586, 0.05812017247080803, 0.14555971324443817, 0.04353303834795952, 0.060850128531455994, -0.09625783562660217, 0.044595867395401, -0.07080703228712082, 0.0769546627998352, -0.008821397088468075, 0.018000474199652672, -0.06526117771863937, -0.06958246976137161, -0.017288418486714363, 0.035914551466703415, 0.14159533381462097, -0.08035217225551605, -0.09642236679792404, 0.06102915480732918, 0.1359371691942215, -0.08328528702259064, -0.08875596523284912, -0.042961131781339645, -0.02698376402258873, 0.12825167179107666, -0.08961362391710281, -0.04480614885687828, -0.08239184319972992, -0.13051219284534454, 0.11335208266973495, -0.06857918947935104, 0.05400731414556503, -0.044803522527217865, -0.052281253039836884, -0.05524858459830284, -0.2122712880373001, 0.09102322161197662, -0.12968295812606812, -0.0767190158367157, -0.01654491014778614, 0.16016709804534912, -0.07610727101564407, 0.049110297113657, -0.007524463813751936, 0.00012588879326358438, -0.09791287779808044, -0.14262287318706512, -0.006584521383047104, 0.0315411202609539, 0.056697119027376175, -0.07981058210134506, -0.030243167653679848, -0.0008013085462152958, 0.08209288865327835, -0.08011865615844727, 0.1548311710357666, 0.28700071573257446, -0.06526276469230652, 0.10619478672742844, 0.19055865705013275, -0.035769425332546234, -0.24893485009670258, -0.19113948941230774, -0.16557158529758453, -0.08409696817398071, -0.04114289954304695, -0.09283924102783203, 0.1534675657749176, 0.10335757583379745, -0.08698064833879471, 0.15878888964653015, -0.2663813829421997, -0.06135499104857445, 0.11638278514146805, -0.024594862014055252, 0.44682180881500244, -0.14232909679412842, -0.06658372282981873, -0.06717493385076523, -0.18295884132385254, 0.19220271706581116, -0.0976852998137474, 0.05822746083140373, -0.040741413831710815, -0.04239484295248985, -0.03128288686275482, -0.061532702296972275, 0.1452111303806305, 0.011410227045416832, 0.02976624295115471, -0.06317785382270813, -0.06841834634542465, 0.12496335804462433, -0.0009078941657207906, 0.006427984219044447, -0.18082447350025177, 0.009445317089557648, -0.07722949981689453, -0.00523488549515605, -0.1109532043337822, 0.08801595866680145, -0.018927976489067078, -0.011648233979940414, -0.08033789694309235, -0.011723306961357594, 0.014127085916697979, -0.019064592197537422, 0.21764728426933289, 0.05612415447831154, 0.017568062990903854, 0.0673462525010109, 0.028535038232803345, -0.20716185867786407, -0.0714668408036232, -0.09957516193389893, -0.07345813512802124, 0.0718795508146286, -0.12156897038221359, 0.0388113372027874, 0.1099049299955368, 0.012111417017877102, -0.03946492075920105, 0.07098258286714554, -0.032642465084791183, -0.056521300226449966, 0.11955127120018005, -0.13548442721366882, 0.017177393659949303, 0.0053695919923484325, 0.11001373082399368, 0.11730233579874039, 0.13002246618270874, 0.0950341522693634, 0.0002155885740648955, -0.027756107971072197, 0.023144986480474472, 0.014205029234290123, -0.14577454328536987, 0.032185737043619156, 0.0892384871840477, 0.013470749370753765, -0.10844612121582031, 0.10200221836566925, -0.05348304659128189, -0.1109762191772461, -0.037729907780885696, 0.08712965995073318, -0.1015588641166687, -0.09894098341464996, 0.0420374870300293, 0.020120732486248016, -0.1402750164270401, -0.11868733912706375, -0.04315648972988129, -0.11413885653018951, 0.07028543204069138, 0.16548024117946625, 0.0893813893198967, 0.06796657294034958, -0.016677504405379295, -0.05174196511507034, 0.022427937015891075, -0.06418045610189438, -0.062452394515275955, 0.01185632310807705, -0.1061471700668335, -0.08770828694105148, 0.041359350085258484, 0.06965195387601852, -0.03462744504213333, 0.036282267421483994, -0.1322309672832489, 0.03745770826935768, -0.16260050237178802, -0.04586409777402878, -0.11529888212680817, -0.02285684086382389, 0.016614511609077454, -0.1390935480594635, -0.07808583974838257, 0.04257417097687721, -0.11047329753637314, -0.039770107716321945, 0.017242159694433212, 0.04197784513235092, -0.09191549569368362, -0.02718220464885235, 0.11255109310150146, -0.02022089995443821, 0.06779298186302185, 0.10164976119995117, -0.016480548307299614, 0.09828832745552063, -0.053879473358392715, -0.12027483433485031, 0.01683185249567032, 0.06826584786176682, 0.0050403056666255, -0.0038502414245158434, -0.005424692295491695, 0.12421543151140213, 0.03787628188729286, 0.028286511078476906, -0.024380449205636978, -0.10206691920757294, -0.06742678582668304, -0.03982948884367943, -0.1172308400273323, 0.007992049679160118, -0.15207895636558533, 0.1889081448316574, 0.036296918988227844, 0.12630203366279602, 0.016788695007562637, -0.01025603897869587, -0.05050235241651535, 0.033741969615221024, -0.03189755231142044, -0.17344985902309418, -0.04905975982546806, -0.026131771504878998, -0.03759719058871269, -0.001223812811076641, 0.22465994954109192, -0.1116277277469635, -0.14881613850593567, 0.048323389142751694, 0.06409630924463272, -0.0463373139500618, 0.02354351617395878, 0.3261919915676117, 0.06117803230881691, 0.029242495074868202, -0.06348405033349991, 0.0034323870204389095, 0.013035988435149193, -0.07185617834329605, 0.11724602431058884, 0.12261760979890823, 0.09178386628627777, 0.061417531222105026, 0.03585345670580864, -0.05889847129583359, -0.08085793256759644, -0.09181434661149979, -0.03368748724460602, 0.045355431735515594, -0.0060656811110675335, 0.18694768846035004, 0.1367778480052948, -0.022734124213457108, -0.027747798711061478, -0.04722319170832634, 0.03350946679711342, -0.12271251529455185, -0.14303697645664215, -0.05181027203798294, -0.11803445219993591, 0.003598818788304925, -0.01386194583028555, -0.007097207475453615, 0.16246360540390015, 0.05646146461367607, -0.05942016467452049, -0.048234764486551285, -0.005193613935261965, -0.03203844651579857, 0.018689043819904327, 0.009837059304118156, -0.07971084862947464, -0.023370057344436646, -0.024641042575240135, -0.10644131898880005, -0.07308368384838104, -0.05146297439932823, 0.036821577697992325, -0.058841411024332047, 0.0457037091255188, -0.011932913213968277, -0.048705779016017914, -0.06624893099069595, -0.014198903925716877, 0.059897180646657944, 0.12707671523094177, -0.024178121238946915, 0.031794752925634384, 0.06504249572753906, 0.09507916122674942, -0.06441396474838257, -0.15669457614421844, 0.00985356792807579, 0.11058515310287476, -0.015016481280326843, 0.03394763544201851, 0.018179915845394135, 0.04843830689787865, -0.05088453367352486, 0.29334092140197754, 0.2195909321308136, -0.06533989310264587, 0.059731196612119675, 0.02080639824271202, 0.021924396976828575, 0.0007645632140338421, 0.0883168876171112, 0.09769229590892792, 0.1933811455965042, -0.10963743180036545, -0.03383873403072357, -0.06563625484704971, 0.005476242862641811, -0.1751513034105301, 0.07638250291347504, -0.031047454103827477, -0.1153247132897377, -0.027383366599678993, 0.04773494601249695, -0.05660000443458557, 0.10234914720058441, 0.06392190605401993, -0.12328892201185226, -0.046320848166942596, -0.0029758999589830637, 0.17037241160869598, 0.029061637818813324, 0.04712020605802536, -0.06770317256450653, -0.03955261409282684, 0.03703273460268974, -0.0033654621802270412, -0.23703305423259735, -0.08074003458023071, 0.1081630140542984, 0.050915077328681946, 0.11023857444524765, -0.010101058520376682, 0.05173897743225098, 0.13089165091514587, 0.05104174464941025, -0.11314687132835388, 0.07938019186258316, 0.02701670676469803, -0.14861544966697693, -0.0753536969423294, -0.1800629198551178, -0.018211640417575836, -0.020122285932302475, 0.009785054251551628, -0.030293313786387444, 0.030558442696928978, 0.15448108315467834, 0.004319042433053255, -0.03269962966442108, 0.03283340111374855, -0.08682596683502197, 0.08511379361152649, -0.059157442301511765, -0.05735921859741211, -0.10054286569356918, -0.04443839564919472, 0.029509717598557472, 0.052119821310043335, -0.09901028126478195, -0.0649007186293602, -0.033899206668138504, 0.03222295641899109, -0.0008609096403233707, 0.03490282967686653, 0.022913407534360886, -0.05432186648249626, -0.0612521767616272, 0.008198483847081661, -0.15018117427825928, -0.02984609268605709, 0.056109342724084854, -0.03711668401956558, 0.009950787760317326, -0.16226747632026672, -0.011416240595281124, 0.0009538484155200422, -0.10037316381931305, -0.09533681720495224 ]
null
null
transformers
# Randeng-MegatronT5-770M - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 善于处理NLT任务,中文版的T5-large。 Good at solving NLT tasks, Chinese T5-large. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 通用 General | 自然语言转换 NLT | 燃灯 Randeng | MegatronT5 | 770M | 中文-Chinese | ## 模型信息 Model Information 为了得到一个大规模的中文版的T5,我们使用了Megatron-LM的方法和悟道语料库(180G版本)用于预训练。具体地,我们在预训练阶段中使用了[Megatron-LM](https://github.com/NVIDIA/Megatron-LM) 大概花费了16张A100约14天。 To get a large-scale Chinese T5, we use of [Megatron-LM](https://github.com/NVIDIA/Megatron-LM) and WuDao Corpora (180 GB version) for pre-training. Specifically, in the pre-training phase which cost about 14 days with 16 A100 GPUs. ## 使用 Usage 因为[transformers](https://github.com/huggingface/transformers)库中是没有Randeng-MegatronT5-770M相关的模型结构的,所以你可以在我们的[Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM)中找到并且运行代码。 Since there is no structure of Randeng-MegatronT5-770M in [transformers library](https://github.com/huggingface/transformers), you can find the structure of Randeng-MegatronT5-770M and run the codes in [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM). ```shell git clone https://github.com/IDEA-CCNL/Fengshenbang-LM.git ``` ### 加载模型 Loading Models ```python from fengshen import T5ForConditionalGeneration from fengshen import T5Config from fengshen import T5Tokenizer tokenizer = T5Tokenizer.from_pretrained('IDEA-CCNL/Randeng-MegatronT5-770M') config = T5Config.from_pretrained('IDEA-CCNL/Randeng-MegatronT5-770M') model = T5ForConditionalGeneration.from_pretrained('IDEA-CCNL/Randeng-MegatronT5-770M') ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["zh"], "license": "apache-2.0", "inference": false}
text2text-generation
IDEA-CCNL/Randeng-MegatronT5-770M
[ "transformers", "pytorch", "t5", "text2text-generation", "zh", "arxiv:2209.02970", "license:apache-2.0", "autotrain_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "zh" ]
TAGS #transformers #pytorch #t5 #text2text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us
Randeng-MegatronT5-770M ======================= * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 善于处理NLT任务,中文版的T5-large。 Good at solving NLT tasks, Chinese T5-large. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- 为了得到一个大规模的中文版的T5,我们使用了Megatron-LM的方法和悟道语料库(180G版本)用于预训练。具体地,我们在预训练阶段中使用了Megatron-LM 大概花费了16张A100约14天。 To get a large-scale Chinese T5, we use of Megatron-LM and WuDao Corpora (180 GB version) for pre-training. Specifically, in the pre-training phase which cost about 14 days with 16 A100 GPUs. 使用 Usage -------- 因为transformers库中是没有Randeng-MegatronT5-770M相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。 Since there is no structure of Randeng-MegatronT5-770M in transformers library, you can find the structure of Randeng-MegatronT5-770M and run the codes in Fengshenbang-LM. ### 加载模型 Loading Models 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 加载模型 Loading Models\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #t5 #text2text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n", "### 加载模型 Loading Models\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 58, 59 ]
[ "passage: TAGS\n#transformers #pytorch #t5 #text2text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n### 加载模型 Loading Models\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ -0.03813690319657326, 0.08126543462276459, -0.0047030942514538765, 0.02359665371477604, 0.07687419652938843, 0.019748706370592117, 0.2221692055463791, 0.07526828348636627, 0.025652725249528885, -0.09931520372629166, 0.1695411503314972, 0.18001367151737213, 0.013550807721912861, 0.03685414418578148, 0.006438189186155796, -0.23167552053928375, 0.01716950163245201, 0.04641900956630707, -0.014810863882303238, 0.13232362270355225, 0.13107672333717346, -0.04108306020498276, 0.08942102640867233, 0.055030521005392075, -0.06048719957470894, 0.012850373052060604, -0.005455441772937775, -0.06673259288072586, 0.17309333384037018, 0.040521953254938126, 0.044353555887937546, 0.10976830869913101, 0.03929884731769562, -0.08931272476911545, 0.03841141611337662, -0.02507423795759678, -0.0803418681025505, 0.1163763478398323, 0.06562159955501556, 0.00431031035259366, 0.2329283207654953, 0.07329590618610382, -0.08671845495700836, 0.06339232623577118, -0.11387185752391815, -0.11109445244073868, -0.04953009635210037, 0.09437476843595505, 0.057462602853775024, 0.05224451422691345, -0.00490611745044589, 0.1826128363609314, -0.0761786699295044, 0.06226503103971481, 0.12979240715503693, -0.2665788233280182, -0.012089933268725872, 0.11346373707056046, 0.07206133008003235, 0.06755957007408142, 0.0022918889299035072, 0.08937595784664154, 0.07179838418960571, -0.01322848442941904, 0.007816115394234657, -0.07248476147651672, -0.09318583458662033, 0.03226239234209061, -0.11488617956638336, -0.0214654840528965, 0.38286092877388, -0.007676387205719948, -0.014039709232747555, 0.013268145732581615, -0.07665302604436874, 0.11582320183515549, 0.02867334894835949, -0.051226623356342316, 0.01382164191454649, 0.038358174264431, 0.06221267953515053, -0.1146465465426445, -0.14214426279067993, -0.060150470584630966, -0.11170495301485062, 0.058002401143312454, 0.017939666286110878, 0.056305963546037674, -0.1180298700928688, 0.12588946521282196, -0.012882664799690247, -0.11372843384742737, 0.04810357466340065, -0.11678306013345718, 0.1045292392373085, 0.02221403643488884, -0.00429405365139246, -0.050709161907434464, 0.09750815480947495, 0.15591786801815033, 0.10738292336463928, -0.044845860451459885, -0.04168962687253952, 0.0985756516456604, 0.007675583474338055, 0.04469985142350197, -0.11166498064994812, -0.0381159633398056, 0.06054028868675232, -0.03129643201828003, 0.008333195000886917, -0.029149286448955536, -0.19970540702342987, -0.07569669932126999, 0.0046909567900002, 0.07460148632526398, 0.027817323803901672, 0.07428468018770218, 0.0003495074633974582, -0.04504689574241638, 0.09765803068876266, 0.004044447559863329, -0.08499862253665924, -0.007306254003196955, -0.04554055258631706, 0.06126163527369499, 0.08213052153587341, 0.05564204230904579, -0.07985743880271912, -0.044092584401369095, -0.11764048039913177, -0.033744215965270996, -0.024085190147161484, -0.050818122923374176, 0.01642054133117199, -0.02443004585802555, 0.07046155631542206, -0.12757176160812378, -0.16055350005626678, 0.010970884002745152, 0.07120607048273087, 0.011944289319217205, -0.08225574344396591, -0.0112477857619524, 0.01787107065320015, -0.017351044341921806, -0.04980340600013733, 0.06625303626060486, -0.06710102409124374, 0.08568673580884933, -0.06638538837432861, 0.022886108607053757, -0.18713590502738953, 0.03625071421265602, -0.11277016252279282, -0.010992883704602718, 0.015254529193043709, -0.028978915885090828, 0.0014988991897553205, 0.07995808869600296, -0.1125108152627945, -0.024578053504228592, -0.017513062804937363, 0.02373049221932888, 0.0027731996960937977, 0.16955992579460144, -0.09481333941221237, -0.05508166179060936, 0.10931439697742462, -0.10291334241628647, -0.18088746070861816, 0.08766181766986847, -0.019429096952080727, 0.200831800699234, 0.06813652813434601, 0.1917828917503357, 0.0488363541662693, -0.07532390207052231, 0.11604613065719604, 0.08752214163541794, -0.08397529274225235, -0.11441990733146667, 0.1097751259803772, 0.00417710468173027, -0.12462723255157471, 0.02144620008766651, -0.06947235763072968, 0.0444364994764328, -0.05205638334155083, -0.06488171964883804, 0.0019710478372871876, -0.05493959039449692, 0.052772510796785355, 0.0062850844115018845, 0.05679284781217575, 0.00784514844417572, -0.011860335245728493, 0.003694486105814576, 0.08465608954429626, 0.015109318308532238, -0.010165640152990818, -0.03719622269272804, 0.06957601755857468, -0.000783935422077775, 0.03779182210564613, -0.11363521218299866, 0.03691422566771507, -0.03542042896151543, 0.044683683663606644, 0.12524622678756714, 0.1540224552154541, 0.004860819783061743, 0.006604366470128298, 0.0031530268024653196, 0.023989981040358543, 0.032585106790065765, 0.013074998743832111, -0.024330919608473778, -0.10487288236618042, 0.02753176912665367, 0.017399456351995468, 0.08789630979299545, -0.15647779405117035, 0.03807995095849037, -0.05307988449931145, 0.05135099217295647, -0.04329543560743332, 0.08399132639169693, 0.03016742505133152, -0.041440363973379135, -0.06712587922811508, 0.06251158565282822, 0.10280460119247437, -0.005724368616938591, -0.14044025540351868, 0.17262747883796692, -0.015318814665079117, 0.19916068017482758, 0.14490485191345215, -0.19670996069908142, 0.036971792578697205, -0.11152761429548264, -0.06265107542276382, -0.013244238682091236, 0.040734075009822845, -0.027643568813800812, 0.028446825221180916, 0.031147295609116554, 0.11271582543849945, -0.08676072955131531, 0.0245383121073246, -0.00014222462777979672, -0.1065206527709961, 0.037605129182338715, 0.12614843249320984, 0.1869981288909912, -0.1827399730682373, 0.10865333676338196, 0.21792201697826385, -0.0076502850279212, 0.13761362433433533, -0.043601736426353455, -0.0662783831357956, 0.0038288419600576162, -0.08789881318807602, -0.061759237200021744, 0.08090415596961975, -0.12710608541965485, 0.011423379182815552, 0.11378989368677139, -0.053938962519168854, 0.058343857526779175, -0.13640257716178894, -0.06738327443599701, -0.02005673572421074, -0.0036999781150370836, -0.07145921885967255, 0.08768877387046814, -0.06041591987013817, 0.12395200878381729, -0.05016666650772095, -0.07550012320280075, 0.03443755954504013, 0.004946598317474127, -0.1130966767668724, 0.15284444391727448, -0.04136474058032036, -0.21076975762844086, -0.17369510233402252, -0.04294249787926674, -0.07154963165521622, 0.0030403430573642254, 0.06189339607954025, -0.008243403397500515, -0.033089637756347656, 0.032563451677560806, 0.03154011815786362, -0.02625526487827301, -0.06261153519153595, -0.0688796415925026, 0.012846505269408226, -0.02291303128004074, -0.14244839549064636, -0.040973372757434845, -0.031869709491729736, -0.01842685230076313, 0.06425707042217255, -0.14018945395946503, 0.10262943804264069, 0.1402105987071991, 0.032335273921489716, 0.03787928447127342, -0.00006894527177792042, 0.1506490409374237, -0.0649227574467659, 0.056168925017118454, 0.23901954293251038, -0.04313699156045914, 0.0745815858244896, 0.12559932470321655, 0.058030690997838974, -0.037299178540706635, 0.027781309559941292, -0.06157780438661575, -0.06464307755231857, -0.2574669420719147, -0.10298879444599152, -0.0547141395509243, 0.04382901266217232, 0.032094214111566544, 0.015078142285346985, 0.16850993037223816, 0.1378946602344513, -0.01092512533068657, -0.010462417267262936, 0.00686723692342639, 0.0626550167798996, 0.17212693393230438, -0.02052239701151848, 0.10856602340936661, -0.07370147109031677, -0.06591689586639404, 0.0824141576886177, 0.03046651929616928, 0.09057393670082092, 0.11506788432598114, 0.12157579511404037, 0.10803704708814621, 0.070260189473629, 0.09447132796049118, 0.15599879622459412, 0.02283131517469883, -0.011829212307929993, -0.08299259096384048, -0.07420726865530014, -0.026745503768324852, 0.07483427971601486, -0.03136865422129631, -0.07770007848739624, -0.03858698531985283, -0.04644487798213959, 0.04524845629930496, 0.0615713894367218, 0.04475891962647438, -0.2048882097005844, -0.006565865129232407, -0.008549566380679607, -0.03522650524973869, -0.05002010241150856, 0.05016525834798813, -0.07858609408140182, -0.1209307536482811, 0.024700088426470757, -0.024043669924139977, 0.12971484661102295, -0.011598744429647923, 0.07366026937961578, -0.14532309770584106, -0.044806357473134995, -0.009008255787193775, 0.15259703993797302, -0.25265687704086304, 0.3118951916694641, -0.008373972959816456, -0.07306061685085297, -0.11671867966651917, -0.06367041170597076, 0.07377208024263382, 0.16495540738105774, 0.13207879662513733, -0.013015924021601677, 0.058079350739717484, 0.037910446524620056, -0.1167064979672432, 0.062137264758348465, -0.014317678287625313, -0.11539202183485031, -0.001397796324454248, -0.0612407848238945, 0.01902814581990242, -0.00874100998044014, 0.08063912391662598, -0.10853007435798645, -0.054449670016765594, 0.06893514096736908, -0.024962471798062325, 0.04198705777525902, -0.0032816382590681314, -0.06694363057613373, -0.023186445236206055, 0.05951396003365517, -0.03143296390771866, -0.11172311007976532, -0.04331889748573303, -0.04164315387606621, 0.09433335810899734, -0.07378197461366653, 0.012800275348126888, -0.048307470977306366, 0.009725134819746017, -0.06683114171028137, -0.1167631447315216, 0.023772576823830605, -0.07184411585330963, -0.05299893021583557, -0.01223260909318924, 0.14044824242591858, -0.03470950201153755, 0.03781489282846451, 0.030488187447190285, -0.016045784577727318, -0.10994978249073029, -0.09094852954149246, -0.01794867031276226, -0.06182755157351494, 0.027365792542696, -0.0617394894361496, -0.0895620808005333, -0.00938776321709156, -0.06902231276035309, -0.06961065530776978, 0.1880612075328827, 0.17035594582557678, -0.03636021167039871, 0.10672325640916824, 0.2814847528934479, -0.06774335354566574, -0.27383774518966675, -0.17153654992580414, -0.11083179712295532, -0.028119994327425957, 0.03801080584526062, -0.17802050709724426, 0.0673816055059433, 0.058909643441438675, -0.06915789842605591, 0.05471120774745941, -0.2399187982082367, -0.12315633893013, 0.23669041693210602, 0.02584976516664028, 0.24758575856685638, -0.12957102060317993, -0.0524979867041111, -0.055803388357162476, -0.08547087758779526, 0.18275174498558044, -0.13593129813671112, 0.05463552847504616, -0.040821623057127, 0.04972873255610466, 0.01270958874374628, -0.029904847964644432, 0.13518723845481873, -0.026428041979670525, -0.0028913328424096107, -0.09924475103616714, -0.11968246102333069, 0.07381364703178406, 0.0011619806755334139, 0.10690619051456451, -0.06869061291217804, 0.038063894957304, -0.09814269840717316, -0.021991468966007233, -0.04831904545426369, 0.08893067389726639, -0.01053670048713684, -0.11584953218698502, -0.03212391957640648, 0.011826717294752598, -0.08186259120702744, 0.003935744985938072, 0.11902767419815063, -0.0466163344681263, 0.046923305839300156, 0.17629042267799377, 0.18154163658618927, -0.0767408013343811, 0.06410388648509979, -0.08130650967359543, -0.0610044039785862, 0.08282744139432907, -0.16070742905139923, -0.01748940534889698, 0.13299641013145447, 0.010002155788242817, 0.08857104927301407, 0.021689435467123985, -0.06267692893743515, -0.029335690662264824, 0.1149103119969368, -0.2229827344417572, -0.07594217360019684, -0.1272526979446411, -0.028414176777005196, 0.04239760711789131, 0.055115994065999985, 0.1482754796743393, -0.035904694348573685, -0.029734116047620773, 0.07131064683198929, 0.026563825085759163, -0.06321924924850464, 0.04711747542023659, 0.1280684620141983, 0.02260609343647957, -0.1049816757440567, 0.0668005496263504, 0.06955307722091675, 0.06254146248102188, -0.038806188851594925, 0.07153510302305222, -0.09855660796165466, -0.1267969161272049, -0.1115349531173706, 0.08084713667631149, -0.19508543610572815, -0.09937502443790436, -0.03704364225268364, -0.04586309567093849, -0.03356117382645607, 0.11337910592556, 0.09430280327796936, 0.024673674255609512, -0.03977985680103302, -0.08709719777107239, -0.015223382972180843, 0.04234224930405617, 0.02277674339711666, -0.05300670117139816, -0.0820998027920723, 0.009231745265424252, 0.026892634108662605, 0.12234964221715927, -0.07917798310518265, -0.047629788517951965, -0.113184355199337, 0.029363073408603668, -0.14410509169101715, 0.0025345426984131336, -0.08329035341739655, -0.02473016269505024, -0.016673501580953598, -0.07601366937160492, -0.0500948391854763, -0.013053648173809052, -0.118989959359169, 0.05271520838141441, 0.022529037669301033, 0.12736240029335022, -0.06898786872625351, 0.009570476599037647, 0.10667727887630463, 0.013768925331532955, 0.08745674043893814, 0.04466361925005913, -0.04642709717154503, 0.12114720046520233, -0.15305443108081818, 0.03154577314853668, 0.025457259267568588, 0.047500595450401306, 0.003615595167502761, -0.004346734378486872, -0.020076492801308632, 0.026319919154047966, 0.016361959278583527, 0.012732286006212234, -0.034079913049936295, -0.09971170872449875, -0.0036337522324174643, 0.030947180464863777, -0.0666569247841835, -0.008642271161079407, -0.03087029792368412, 0.012152786366641521, 0.06786951422691345, 0.11349092423915863, -0.014101912267506123, 0.05822206661105156, -0.08200664073228836, 0.0823763832449913, -0.03789057210087776, -0.12199920415878296, -0.06662242114543915, -0.1802540272474289, -0.03588653728365898, -0.06203509867191315, 0.2517799139022827, 0.03444401174783707, 0.0029708549845963717, -0.0018941398011520505, 0.18550601601600647, -0.004020660649985075, -0.04790593311190605, 0.16901373863220215, 0.05274464935064316, 0.06295612454414368, -0.1341579556465149, 0.07662967592477798, -0.025268929079174995, -0.08705218881368637, 0.12247366458177567, 0.049663908779621124, 0.005226286593824625, 0.03203174099326134, 0.06705446541309357, 0.02667446807026863, -0.011236541904509068, -0.12576718628406525, 0.100426584482193, 0.0431746169924736, -0.026196075603365898, 0.10903666913509369, 0.19975073635578156, -0.015486867167055607, -0.012751076370477676, 0.04793267697095871, -0.005159296561032534, -0.1665886491537094, -0.1608612984418869, -0.05352950841188431, -0.09228233993053436, -0.04018624126911163, -0.05259118229150772, -0.02385864034295082, 0.07371895015239716, 0.04716387391090393, -0.1034373790025711, 0.04409203678369522, 0.02620094269514084, -0.1260262429714203, 0.02123996429145336, -0.02070251852273941, -0.01214691624045372, -0.17697863280773163, -0.0024889614433050156, -0.04280586913228035, 0.06343275308609009, -0.03516532853245735, -0.010406596586108208, -0.016378775238990784, -0.03437644615769386, -0.09372571855783463, -0.05746106803417206, -0.07636524736881256, 0.027960969135165215, -0.0046766758896410465, 0.08749350905418396, -0.0009689818252809346, 0.005751126911491156, 0.03759400174021721, 0.1337232142686844, 0.029819771647453308, -0.13956806063652039, -0.04768747463822365, 0.285606324672699, -0.06118763983249664, 0.0036949594505131245, 0.01067258883267641, 0.011891432106494904, 0.011592068709433079, 0.3380993902683258, 0.3227989077568054, -0.0832274779677391, 0.007948596961796284, 0.02691568247973919, 0.03362973406910896, 0.03200298175215721, 0.09831283986568451, -0.007453104481101036, 0.17999866604804993, -0.07799090445041656, 0.021483922377228737, -0.08049037307500839, 0.03168479725718498, 0.009619111195206642, 0.08010466396808624, 0.07519832998514175, -0.08364252001047134, -0.02359873056411743, 0.12989139556884766, -0.1751215010881424, -0.01111128181219101, -0.17225494980812073, -0.06287135183811188, -0.06819725036621094, -0.026031581684947014, -0.011565323919057846, 0.03782793879508972, 0.032313425093889236, -0.06931369006633759, -0.020646173506975174, 0.01272557768970728, 0.021429184824228287, -0.155660480260849, 0.004337900783866644, 0.1920313537120819, -0.058546870946884155, 0.15137580037117004, -0.027275336906313896, 0.05249999463558197, 0.06390812993049622, 0.01029039453715086, -0.04194064065814018, 0.05808832868933678, 0.052674517035484314, 0.0017977546667680144, 0.019055014476180077, -0.10071172565221786, 0.054791159927845, -0.09644773602485657, 0.032084230333566666, -0.11748205870389938, 0.054276127368211746, 0.05581237003207207, -0.06706388294696808, -0.013282974250614643, 0.09025080502033234, -0.09843523055315018, 0.11642638593912125, 0.07852786779403687, -0.06357607990503311, -0.04903576523065567, -0.07150297611951828, 0.04316698759794235, 0.03821739926934242, -0.17225098609924316, -0.011912588030099869, -0.03041391260921955, -0.03991943970322609, -0.022440200671553612, -0.014453468844294548, -0.1669912487268448, 0.016647836193442345, -0.05265519767999649, 0.010122076608240604, -0.09759249538183212, 0.013729020021855831, 0.1490810364484787, 0.027287129312753677, 0.03280169144272804, -0.05122222751379013, -0.013201124034821987, -0.013147643767297268, -0.13185833394527435, -0.07799925655126572 ]
null
null
transformers
# Wenzhong-GPT2-3.5B - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 善于处理NLG任务,目前最大的,中文版的GPT2 Focused on handling NLG tasks, the current largest, Chinese GPT2. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 通用 General | 自然语言生成 NLG| 闻仲 Wenzhong | GPT2 | 3.5B | 中文 Chinese | ## 模型信息 Model Information 为了可以获得一个强大的单向语言模型,我们采用GPT模型结构,并且应用于中文语料上。具体地,这个模型拥有30层解码器和35亿参数,这比原本的GPT2-XL还要大。我们在100G的中文语料上预训练,这消耗了32个NVIDIA A100显卡大约28小时。据我们所知,它是目前最大的中文的GPT模型。 To obtain a robust unidirectional language model, we adopt the GPT model structure and apply it to the Chinese corpus. Specifically, this model has 30 decoder layers and 3.5 billion parameters, which is larger than the original GPT2-XL. We pre-train it on 100G of Chinese corpus, which consumes 32 NVIDIA A100 GPUs for about 28 hours. To the best of our knowledge, it is the largest Chinese GPT model currently available. ## 使用 Usage ### 加载模型 Loading Models ```python from transformers import GPT2Tokenizer, GPT2Model tokenizer = GPT2Tokenizer.from_pretrained('IDEA-CCNL/Wenzhong-GPT2-3.5B') model = GPT2Model.from_pretrained('IDEA-CCNL/Wenzhong-GPT2-3.5B') text = "Replace me by any text you'd like." encoded_input = tokenizer(text, return_tensors='pt') output = model(**encoded_input) ``` ### 使用示例 Usage Examples ```python from transformers import pipeline, set_seed set_seed(55) generator = pipeline('text-generation', model='IDEA-CCNL/Wenzhong-GPT2-3.5B') generator("北京位于", max_length=30, num_return_sequences=1) ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["zh"], "license": "apache-2.0", "inference": {"parameters": {"max_new_tokens": 128, "do_sample": true}}}
text-generation
IDEA-CCNL/Wenzhong-GPT2-3.5B
[ "transformers", "pytorch", "gpt2", "text-generation", "zh", "arxiv:2209.02970", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "zh" ]
TAGS #transformers #pytorch #gpt2 #text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Wenzhong-GPT2-3.5B ================== * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 善于处理NLG任务,目前最大的,中文版的GPT2 Focused on handling NLG tasks, the current largest, Chinese GPT2. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- 为了可以获得一个强大的单向语言模型,我们采用GPT模型结构,并且应用于中文语料上。具体地,这个模型拥有30层解码器和35亿参数,这比原本的GPT2-XL还要大。我们在100G的中文语料上预训练,这消耗了32个NVIDIA A100显卡大约28小时。据我们所知,它是目前最大的中文的GPT模型。 To obtain a robust unidirectional language model, we adopt the GPT model structure and apply it to the Chinese corpus. Specifically, this model has 30 decoder layers and 3.5 billion parameters, which is larger than the original GPT2-XL. We pre-train it on 100G of Chinese corpus, which consumes 32 NVIDIA A100 GPUs for about 28 hours. To the best of our knowledge, it is the largest Chinese GPT model currently available. 使用 Usage -------- ### 加载模型 Loading Models ### 使用示例 Usage Examples 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 65, 9, 60 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #zh #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### 加载模型 Loading Models### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ -0.04882131889462471, 0.012552875094115734, -0.0038968806620687246, 0.012530649080872536, 0.07627525180578232, 0.019277110695838928, 0.1598009169101715, 0.09122103452682495, -0.0007611630717292428, -0.09425868093967438, 0.20266227424144745, 0.20625998079776764, 0.0023251480888575315, -0.008545270189642906, -0.026633499190211296, -0.24291132390499115, 0.028121747076511383, 0.07625814527273178, -0.018084513023495674, 0.13177908957004547, 0.16650022566318512, -0.036235012114048004, 0.1053599864244461, 0.08635129034519196, -0.09115353226661682, -0.008729643188416958, -0.014170314185321331, -0.07621064782142639, 0.176203653216362, 0.07012181729078293, 0.029102960601449013, 0.06530717015266418, 0.02149580791592598, -0.1327851563692093, 0.021173397079110146, -0.0364023894071579, -0.0725235566496849, 0.07578770071268082, 0.03392313793301582, -0.041589122265577316, 0.2657913863658905, 0.05609070882201195, -0.08831679075956345, 0.04767116531729698, -0.09555396437644958, -0.1152370274066925, -0.042868517339229584, 0.10640589147806168, 0.09702792018651962, 0.07877197861671448, -0.005472149699926376, 0.14137881994247437, -0.05715418606996536, 0.05680292099714279, 0.17396070063114166, -0.29440295696258545, -0.03617778792977333, 0.11520083248615265, 0.11382683366537094, 0.002332761650905013, -0.003665045602247119, 0.08929680287837982, 0.06390739977359772, 0.008345267735421658, 0.0006703423568978906, -0.08703316003084183, -0.019871192052960396, 0.05594088137149811, -0.10412738472223282, -0.02364277094602585, 0.31677430868148804, -0.03241566941142082, -0.01817488484084606, -0.06600522249937057, -0.05356995016336441, 0.10615342855453491, -0.0189927089959383, -0.031716395169496536, -0.013134515844285488, 0.045265987515449524, 0.07211510092020035, -0.08244775980710983, -0.14586417376995087, -0.0629071444272995, -0.0683157816529274, 0.0699651688337326, 0.019809458404779434, 0.044013723731040955, -0.08763005584478378, 0.12096313387155533, -0.03904350847005844, -0.11466778814792633, -0.009204234927892685, -0.11283678561449051, 0.1504177749156952, 0.030405713245272636, -0.040789563208818436, -0.017789170145988464, 0.1034388616681099, 0.17355674505233765, 0.12733477354049683, -0.005356790963560343, 0.013218146748840809, 0.09084863215684891, -0.011220148764550686, 0.05379478260874748, -0.08490513265132904, -0.052659519016742706, 0.059278711676597595, -0.07080622017383575, 0.0010555312037467957, -0.014201688580214977, -0.1818627566099167, -0.1037922278046608, -0.006312608253210783, 0.049862030893564224, -0.0020320669282227755, 0.07906673103570938, 0.0023733361158519983, -0.029339702799916267, 0.1026381105184555, -0.0035927887074649334, -0.041555434465408325, -0.015152527019381523, 0.004612356424331665, 0.050159700214862823, 0.06314484030008316, 0.08988185226917267, -0.0724872350692749, -0.0030701656360179186, -0.07205040752887726, 0.00174533121753484, -0.046185560524463654, -0.019979974254965782, 0.012062530033290386, -0.030266625806689262, 0.08039025217294693, -0.12729676067829132, -0.17966744303703308, 0.008571550250053406, 0.0966854989528656, 0.0030057344119995832, -0.074957475066185, -0.01129044871777296, 0.007049406412988901, 0.00882432796061039, -0.04221921041607857, 0.07151705771684647, -0.06993968784809113, 0.0654352530837059, -0.05209633708000183, 0.02247602678835392, -0.16941078007221222, 0.02463150955736637, -0.07695961743593216, -0.0008459124946966767, 0.0008179767173714936, -0.006073104217648506, -0.0015852168435230851, 0.08953699469566345, -0.10829948633909225, -0.03514847159385681, -0.02789655327796936, 0.025611333549022675, -0.0005872938199900091, 0.14235062897205353, -0.05768294259905815, -0.0534522607922554, 0.13764774799346924, -0.08660593628883362, -0.18656741082668304, 0.10668770223855972, -0.027387136593461037, 0.18245342373847961, 0.0694834515452385, 0.1299470216035843, 0.0768093466758728, -0.09388319402933121, 0.08800728619098663, 0.09606281667947769, -0.06271123886108398, -0.10378959774971008, 0.08784661442041397, 0.018233465030789375, -0.08889763057231903, 0.03796698898077011, -0.07371994853019714, 0.0464579313993454, -0.03213702142238617, -0.07602568715810776, -0.031771864742040634, -0.05573716387152672, 0.02017674222588539, 0.014259648509323597, 0.07156261801719666, 0.006488368380814791, -0.03942355513572693, -0.02514307014644146, 0.04256043583154678, -0.022654686123132706, 0.018705518916249275, -0.06683844327926636, 0.07109946012496948, -0.002490938175469637, 0.02602578140795231, -0.11021173000335693, 0.08395051956176758, -0.05607527866959572, 0.08978774398565292, 0.05220365524291992, 0.09069553762674332, 0.023468486964702606, -0.013889163732528687, -0.014403767883777618, 0.04932091385126114, 0.0883253887295723, 0.0018119331216439605, -0.05144762620329857, -0.08760159462690353, 0.021039633080363274, 0.0162382610142231, 0.06944527477025986, -0.14427852630615234, 0.04239604249596596, -0.0017516185762360692, 0.05308457836508751, -0.09268926829099655, 0.06794008612632751, -0.012648499570786953, -0.035046182572841644, -0.07049871981143951, 0.05322181433439255, 0.09997690469026566, 0.019232241436839104, -0.14885467290878296, 0.16584599018096924, -0.018511496484279633, 0.23127734661102295, 0.14467047154903412, -0.22087377309799194, 0.025131242349743843, -0.1121559664607048, -0.05023884400725365, 0.00004015944432467222, 0.014110062271356583, -0.021707653999328613, 0.13189354538917542, 0.011997719295322895, 0.11162301152944565, -0.0837872326374054, -0.01869293302297592, 0.01838395744562149, -0.09958930313587189, 0.05349388346076012, 0.10910570621490479, 0.15792016685009003, -0.1592230349779129, 0.11780570447444916, 0.1747618168592453, -0.017155159264802933, 0.1253170669078827, -0.021918199956417084, -0.041283298283815384, 0.011401619762182236, -0.04118629917502403, -0.043406687676906586, 0.06744850426912308, -0.20383320748806, -0.02265103906393051, 0.105130635201931, -0.04753255471587181, 0.07390546798706055, -0.1437808871269226, -0.05356025695800781, -0.0038545127026736736, -0.00739144254475832, -0.05936763808131218, 0.07717669755220413, -0.06001225486397743, 0.0998595729470253, -0.026000086218118668, -0.03752725198864937, 0.05388663336634636, 0.013718544505536556, -0.13970308005809784, 0.1917506605386734, -0.035950470715761185, -0.21560361981391907, -0.1586054265499115, -0.09009528160095215, -0.048887427896261215, 0.011311788111925125, 0.08995167911052704, -0.0034922740887850523, -0.0463227704167366, 0.04163067787885666, 0.018953753635287285, -0.032857876271009445, -0.046453431248664856, -0.04097176715731621, 0.015826379880309105, -0.03555271029472351, -0.13802610337734222, -0.0629042387008667, 0.0006052813259884715, -0.015950655564665794, 0.051992207765579224, -0.11360560357570648, 0.08919178694486618, 0.08709710091352463, 0.04477063938975334, 0.04632117971777916, 0.007802386302500963, 0.18651430308818817, -0.07141680270433426, 0.03242362663149834, 0.2154916673898697, -0.07093247026205063, 0.07163125276565552, 0.10369189828634262, 0.06379226595163345, -0.044349052011966705, -0.014247956685721874, -0.06568193435668945, -0.0769554078578949, -0.19125477969646454, -0.10044107586145401, -0.0888281837105751, 0.0016273264773190022, 0.02774580754339695, 0.02439381368458271, 0.15750181674957275, 0.1679242104291916, -0.019535765051841736, 0.027211442589759827, 0.022449320182204247, 0.09453443437814713, 0.2010512501001358, 0.0021479856222867966, 0.11985024064779282, -0.08135616779327393, -0.08223353326320648, 0.045847173780202866, 0.0269288569688797, 0.12572534382343292, 0.10561810433864594, 0.08059033751487732, 0.10118327289819717, 0.08850469440221786, 0.08674149960279465, 0.14707398414611816, -0.0301190335303545, -0.0352158285677433, -0.056237418204545975, -0.0669202208518982, -0.041018590331077576, 0.11623530834913254, -0.07603158056735992, -0.10277833789587021, 0.0012822301359847188, -0.06884414702653885, 0.05944715440273285, 0.09781623631715775, 0.021056853234767914, -0.22731496393680573, -0.027510065585374832, 0.008821647614240646, -0.06400784105062485, -0.07163624465465546, 0.06810169667005539, -0.07665690779685974, -0.1505437046289444, 0.07822608947753906, -0.04619112238287926, 0.13375066220760345, 0.0000035887869671569206, 0.07354345917701721, -0.1077459305524826, -0.11858462542295456, 0.001317336456850171, 0.15903154015541077, -0.27761682868003845, 0.2835337519645691, -0.008567665703594685, -0.04000994935631752, -0.14279162883758545, -0.0080882478505373, 0.06859872490167618, 0.14651945233345032, 0.16697001457214355, -0.016236357390880585, 0.01551164872944355, 0.03717059642076492, -0.06987491995096207, 0.07521287351846695, -0.0025674887001514435, -0.0940072312951088, 0.013890797272324562, -0.05487672612071037, 0.0093282051384449, -0.003446589456871152, 0.05876968428492546, -0.09695500880479813, -0.13271550834178925, 0.07648582756519318, -0.011019323952496052, 0.04726657271385193, -0.011538524180650711, -0.025636449456214905, -0.05483169108629227, 0.1269209384918213, -0.09492996335029602, -0.1278758943080902, -0.05612167716026306, -0.05539296939969063, 0.0779668316245079, -0.05841792747378349, 0.06166844442486763, -0.03390497714281082, 0.017885003238916397, -0.07180552184581757, -0.11093135923147202, 0.03413267806172371, -0.09826193004846573, -0.046140167862176895, -0.006405847612768412, 0.13475319743156433, -0.017566973343491554, 0.02032979018986225, 0.07147189974784851, 0.014249861240386963, -0.1556989848613739, -0.12039335072040558, -0.050683166831731796, -0.04136451333761215, 0.07250476628541946, -0.11428487300872803, -0.0712108463048935, -0.00015548024384770542, -0.03396455943584442, -0.08873964101076126, 0.19858285784721375, 0.13443543016910553, -0.03807126730680466, 0.1124209463596344, 0.18419402837753296, -0.07017387449741364, -0.2574169635772705, -0.17886118590831757, -0.07350049912929535, -0.003737958613783121, -0.04001196101307869, -0.1611727476119995, 0.11243891716003418, 0.05280333012342453, -0.06367333978414536, 0.06833525002002716, -0.21460182964801788, -0.12816932797431946, 0.2290138155221939, 0.0011662016622722149, 0.2448301911354065, -0.1430935561656952, -0.04357350617647171, -0.08649667352437973, -0.17489098012447357, 0.14933636784553528, -0.0808093398809433, 0.039715275168418884, -0.03881330043077469, 0.06354659050703049, 0.004398117307573557, -0.0519898496568203, 0.14300614595413208, -0.0016476076561957598, -0.02394268475472927, -0.09618909657001495, -0.08340921252965927, 0.05180200934410095, 0.011003337800502777, 0.09434639662504196, -0.12204260379076004, 0.009277069941163063, -0.1402340531349182, -0.05558669939637184, -0.03573162853717804, 0.08102914690971375, -0.004407844040542841, -0.10299541801214218, -0.0357038639485836, -0.020326711237430573, -0.04635611176490784, 0.007476042490452528, 0.131764754652977, -0.07156684994697571, 0.057592105120420456, 0.10329313576221466, 0.2164994776248932, -0.13363884389400482, 0.026817133650183678, -0.06466151773929596, -0.047694310545921326, 0.08935435861349106, -0.17734231054782867, 0.0034746453166007996, 0.11200708150863647, 0.0032013372983783484, 0.06019948795437813, 0.052115969359874725, -0.01757882907986641, -0.010684128850698471, 0.1268944889307022, -0.1955203264951706, -0.048517920076847076, -0.1067456305027008, -0.015716778114438057, 0.049127984791994095, 0.06614507734775543, 0.1166672632098198, -0.04579179361462593, -0.05234043300151825, 0.04566231742501259, 0.03175940737128258, -0.08668096363544464, 0.037550799548625946, 0.08005078881978989, 0.023921668529510498, -0.10560623556375504, -0.020871546119451523, -0.0031860261224210262, 0.01967637985944748, -0.015359253622591496, 0.03208867460489273, -0.10517793893814087, -0.11875149607658386, -0.08424562960863113, 0.07122956216335297, -0.20660673081874847, -0.1034872904419899, -0.023306434974074364, -0.090761698782444, -0.002103934297338128, 0.10360918939113617, 0.11178362369537354, 0.020856956019997597, -0.020979885011911392, -0.06031950190663338, -0.027492467314004898, 0.02466217614710331, 0.02798064984381199, -0.0272276122123003, -0.08113075792789459, -0.01975339837372303, 0.008487308397889137, 0.07465043663978577, -0.06492489576339722, -0.009606664068996906, -0.1044258251786232, 0.03895530104637146, -0.1716783493757248, 0.004223491530865431, -0.14057070016860962, -0.02789440006017685, -0.0041119009256362915, -0.05765243247151375, -0.0455777645111084, -0.004790712147951126, -0.11993678659200668, 0.04409927874803543, -0.004009818658232689, 0.09933912754058838, -0.05627923831343651, 0.018888577818870544, 0.11360322684049606, -0.024538658559322357, 0.0871337503194809, 0.0918920561671257, -0.05791425332427025, 0.08971042931079865, -0.1659226268529892, 0.033661048859357834, 0.0456903874874115, 0.03789297863841057, -0.006006361450999975, -0.01775997132062912, 0.018742498010396957, 0.07354287058115005, 0.032855596393346786, 0.028524432331323624, 0.0038206952158361673, -0.10654087364673615, 0.03177262470126152, 0.009703539311885834, -0.07991107553243637, -0.004601302091032267, -0.030592242255806923, 0.03589431196451187, 0.06781826913356781, 0.1037721112370491, -0.02154584974050522, 0.05308967083692551, -0.05760791897773743, 0.08224160969257355, -0.026923133060336113, -0.1311929076910019, -0.046770136803388596, -0.18153177201747894, -0.029824573546648026, -0.029173385351896286, 0.30112648010253906, 0.009020850993692875, -0.004856090061366558, 0.004876160062849522, 0.1472712904214859, 0.0508747436106205, -0.02759774774312973, 0.22347424924373627, 0.05727400630712509, 0.0582859143614769, -0.1258580982685089, 0.08636905997991562, -0.0004552665923256427, -0.09533469378948212, 0.08013671636581421, 0.06658489257097244, -0.0019832884427160025, 0.06440113484859467, 0.03243931010365486, 0.00022020761389285326, -0.046454936265945435, -0.10848017036914825, 0.043745145201683044, 0.06693889945745468, -0.044592197984457016, 0.11899882555007935, 0.20427681505680084, -0.06365957111120224, -0.006004182621836662, 0.012565689161419868, -0.014833981171250343, -0.16418957710266113, -0.15044930577278137, -0.05707739666104317, -0.11158698797225952, -0.010172026231884956, -0.06880901008844376, -0.011620193719863892, 0.0711156576871872, 0.03730447590351105, -0.07018110901117325, 0.07390593737363815, 0.02356928400695324, -0.10016098618507385, 0.02544441819190979, -0.01936410553753376, 0.01003212295472622, -0.11183755844831467, 0.011230604723095894, -0.07570557296276093, 0.008321261033415794, -0.007431596517562866, -0.006617726292461157, -0.01911325752735138, -0.037236932665109634, -0.06856069713830948, -0.027733970433473587, -0.0816492959856987, 0.035371311008930206, 0.021139053627848625, 0.08892785757780075, -0.021577052772045135, 0.015519552864134312, 0.028665678575634956, 0.13330157101154327, -0.012243825942277908, -0.18159867823123932, -0.0750180333852768, 0.22327816486358643, -0.031560152769088745, 0.004709184635430574, -0.000944020866882056, 0.03760388866066933, 0.04199018329381943, 0.3676462173461914, 0.2972668707370758, -0.04175465181469917, 0.017445577308535576, 0.04250582307577133, 0.033764712512493134, 0.0791608914732933, 0.058831408619880676, 0.03127453103661537, 0.2824655771255493, -0.10366126894950867, -0.030056187883019447, -0.06851111352443695, 0.010420854203402996, -0.04909713566303253, 0.11159779876470566, 0.04979872703552246, -0.09999092668294907, 0.009866676293313503, 0.12662407755851746, -0.14189884066581726, 0.028181320056319237, -0.11724962294101715, -0.06742929667234421, -0.05372339114546776, 0.0002018262748606503, -0.005807673092931509, -0.000298534199828282, 0.042927686125040054, -0.045181598514318466, -0.06196651980280876, 0.0616571381688118, 0.03278125822544098, -0.1721954643726349, 0.05802680552005768, 0.16193942725658417, -0.022529849782586098, 0.1379961222410202, -0.0237362589687109, 0.07193344831466675, 0.09210534393787384, 0.02301153913140297, -0.03446052223443985, 0.037357017397880554, 0.05251048505306244, -0.034819021821022034, 0.03406770899891853, -0.10325347632169724, 0.0396108478307724, -0.11447548866271973, 0.011845462955534458, -0.13261885941028595, 0.08209558576345444, 0.059891991317272186, -0.039754629135131836, -0.01764766499400139, 0.07682734727859497, -0.10772066563367844, 0.1253572553396225, 0.06939300894737244, -0.05880235508084297, -0.059373654425144196, -0.06298217922449112, 0.06414911895990372, 0.028791705146431923, -0.11367480456829071, -0.03743400052189827, -0.08885784447193146, -0.03651348501443863, 0.01742391474545002, -0.013717854395508766, -0.13812336325645447, -0.018000686541199684, -0.004826160613447428, 0.01606259122490883, -0.09134820848703384, -0.008311538025736809, 0.15160484611988068, 0.003873186418786645, 0.02276035211980343, -0.0365789458155632, -0.014045929536223412, -0.011308223009109497, -0.08075720071792603, -0.09137610346078873 ]
null
null
transformers
# Yuyuan-GPT2-3.5B - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 目前最大的,医疗领域的生成语言模型GPT2。 The currently largest, generative language model GPT2 in the medical domain. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 特殊 Special | 领域 Domain | 余元 Yuyuan | GPT2 | 3.5B | - | ## 模型信息 Model Information 我们采用与Wenzhong-GPT2-3.5B相同的架构,在50GB的医学(PubMed)语料库上进行预训练。我们使用了32个NVIDIA A100显卡大约7天。我们的Yuyuan-GPT2-3.5B是医疗领域最大的开源的GPT2模型。进一步地,模型可以通过计算困惑度(PPL)来判断事实。为了完成问答功能,我们将短语模式从疑问的形式转换为了陈述句。 We adopt the same architecture as Wenzhong-GPT2-3.5B to be pre-trained on 50 GB medical (PubMed) corpus. We use 32 NVIDIA A100 GPUs for about 7 days. Our Yuyuan-GPT2-3.5B is the largest open-source GPT2 model in the medical domain. We further allow the model to judge facts by computing perplexity (PPL). To accomplish question-and-answer functionality, we transform the phrase pattern from interrogative to declarative. ## 使用 Usage ### 加载模型 Loading Models ```python from transformers import GPT2Tokenizer, GPT2Model tokenizer = GPT2Tokenizer.from_pretrained('IDEA-CCNL/Yuyuan-GPT2-3.5B') model = GPT2Model.from_pretrained('IDEA-CCNL/Yuyuan-GPT2-3.5B') text = "Replace me by any text you'd like." encoded_input = tokenizer(text, return_tensors='pt') output = model(**encoded_input) ``` ### 使用示例 Usage Examples ```python from transformers import pipeline, set_seed set_seed(55) generator = pipeline('text-generation', model='IDEA-CCNL/Yuyuan-GPT2-3.5B') generator("Diabetics should not eat", max_length=30, num_return_sequences=1) ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["en"], "license": "apache-2.0", "inference": false}
text-generation
IDEA-CCNL/Yuyuan-GPT2-3.5B
[ "transformers", "pytorch", "gpt2", "text-generation", "en", "arxiv:2209.02970", "license:apache-2.0", "autotrain_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #en #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us
Yuyuan-GPT2-3.5B ================ * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 目前最大的,医疗领域的生成语言模型GPT2。 The currently largest, generative language model GPT2 in the medical domain. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- 我们采用与Wenzhong-GPT2-3.5B相同的架构,在50GB的医学(PubMed)语料库上进行预训练。我们使用了32个NVIDIA A100显卡大约7天。我们的Yuyuan-GPT2-3.5B是医疗领域最大的开源的GPT2模型。进一步地,模型可以通过计算困惑度(PPL)来判断事实。为了完成问答功能,我们将短语模式从疑问的形式转换为了陈述句。 We adopt the same architecture as Wenzhong-GPT2-3.5B to be pre-trained on 50 GB medical (PubMed) corpus. We use 32 NVIDIA A100 GPUs for about 7 days. Our Yuyuan-GPT2-3.5B is the largest open-source GPT2 model in the medical domain. We further allow the model to judge facts by computing perplexity (PPL). To accomplish question-and-answer functionality, we transform the phrase pattern from interrogative to declarative. 使用 Usage -------- ### 加载模型 Loading Models ### 使用示例 Usage Examples 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #en #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n", "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 57, 9, 60 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #en #arxiv-2209.02970 #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n### 加载模型 Loading Models### 使用示例 Usage Examples\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ -0.022030368447303772, 0.09822552651166916, -0.0060209427028894424, 0.02618783712387085, 0.08629167824983597, 0.021036693826317787, 0.2228602170944214, 0.0805712342262268, -0.009432175196707249, -0.11066102236509323, 0.19998973608016968, 0.1824013739824295, 0.0020038033835589886, 0.02927674539387226, 0.011121860705316067, -0.24597713351249695, 0.023965638130903244, 0.03214946761727333, -0.0273252185434103, 0.14760832488536835, 0.13343125581741333, -0.030191199854016304, 0.07893471419811249, 0.07304202020168304, -0.08668408542871475, -0.014561374671757221, -0.010583532974123955, -0.09068471938371658, 0.17885926365852356, 0.04185185953974724, 0.05276879295706749, 0.07220856845378876, 0.03440576046705246, -0.1012779176235199, 0.024180488660931587, -0.02014980837702751, -0.06524666398763657, 0.11413976550102234, 0.05913656949996948, -0.0034750839695334435, 0.22794070839881897, 0.11205441504716873, -0.06888312846422195, 0.02933735027909279, -0.14429359138011932, -0.12949517369270325, -0.03564385324716568, 0.06174850836396217, 0.04849793761968613, 0.06869608908891678, -0.012891462072730064, 0.1545579731464386, -0.0860455334186554, 0.042632319033145905, 0.1051282063126564, -0.2238362431526184, -0.02122710645198822, 0.10307445377111435, 0.07776036858558655, 0.05873451009392738, -0.0003565863298717886, 0.08302813023328781, 0.04893344268202782, 0.007873510010540485, 0.010981485247612, -0.07334040850400925, -0.12149007618427277, 0.05447952821850777, -0.11246580630540848, -0.04727625846862793, 0.3549986183643341, -0.04250817745923996, -0.018024563789367676, -0.021750710904598236, -0.06419158726930618, 0.14184847474098206, 0.0311653483659029, -0.07375387847423553, 0.007570818066596985, 0.06236741691827774, 0.05031600221991539, -0.13020363450050354, -0.13230060040950775, -0.07675788551568985, -0.09132088720798492, 0.048809751868247986, 0.013578359968960285, 0.04700198769569397, -0.08312220126390457, 0.12580597400665283, -0.023175856098532677, -0.08400020748376846, 0.03795773908495903, -0.11070555448532104, 0.14764097332954407, 0.03719809278845787, -0.013892972841858864, -0.023685438558459282, 0.08879370987415314, 0.1391105353832245, 0.09636996686458588, -0.05435074120759964, -0.019787311553955078, 0.11780865490436554, 0.00614593643695116, 0.049464888870716095, -0.09016046673059464, 0.00516493758186698, 0.04553994908928871, -0.04137714207172394, -0.005611125845462084, -0.02606753632426262, -0.18562383949756622, -0.06155933439731598, -0.022110333666205406, 0.07509822398424149, 0.029666366055607796, 0.06545531749725342, -0.023604102432727814, -0.039177056401968, 0.12682633101940155, -0.003809202229604125, -0.049733538180589676, -0.016669923439621925, -0.00808100588619709, 0.0377248115837574, 0.06050530821084976, 0.07577972114086151, -0.07050945609807968, -0.04184132441878319, -0.09796389937400818, -0.015489504672586918, -0.042897772043943405, -0.04929631948471069, 0.007971635088324547, -0.010676874779164791, 0.04772285372018814, -0.11554480344057083, -0.17382197082042694, 0.007196417078375816, 0.07876001298427582, 0.0036541034933179617, -0.0841699168086052, -0.02693532407283783, 0.021465661004185677, -0.025594795122742653, -0.05020973086357117, 0.03889394551515579, -0.0641351267695427, 0.09050130099058151, -0.07492093741893768, 0.029224462807178497, -0.16860027611255646, 0.0341726616024971, -0.12079285830259323, -0.01738225482404232, -0.01514515746384859, -0.0026815878227353096, -0.0011863454710692167, 0.0690881535410881, -0.10452607274055481, -0.020926905795931816, -0.0285921823233366, 0.034034065902233124, -0.01203899271786213, 0.15971165895462036, -0.06624693423509598, -0.08018165081739426, 0.1360376924276352, -0.10648255795240402, -0.14296817779541016, 0.10865043103694916, -0.018976207822561264, 0.2105228751897812, 0.07864852994680405, 0.1782708317041397, 0.04730239883065224, -0.05640803277492523, 0.1315680593252182, 0.08541566878557205, -0.08042319118976593, -0.0934084802865982, 0.11045718938112259, -0.031188897788524628, -0.11133808642625809, 0.025866128504276276, -0.08927294611930847, 0.05808128044009209, -0.040243666619062424, -0.07532959431409836, 0.0073460908606648445, -0.02924947999417782, 0.03904249146580696, 0.009247059933841228, 0.04437107592821121, 0.016839710995554924, -0.03305661678314209, 0.0020616408437490463, 0.045798078179359436, -0.00747732724994421, -0.004839768633246422, -0.04175897315144539, 0.06592849642038345, -0.003960354253649712, 0.03739842399954796, -0.112171471118927, 0.04780595004558563, -0.028786564245820045, 0.039402104914188385, 0.09646904468536377, 0.1326388418674469, 0.014472710900008678, 0.0031515599694103003, -0.0008234831620939076, 0.053342677652835846, 0.029836472123861313, -0.01532731018960476, -0.02796022593975067, -0.0778886154294014, 0.055977560579776764, 0.00888750609010458, 0.06269357353448868, -0.12986144423484802, 0.041990965604782104, -0.020072901621460915, 0.015493416227400303, -0.05057045444846153, 0.04832443594932556, 0.024321094155311584, -0.018638743087649345, -0.0584707148373127, 0.040421463549137115, 0.10693244636058807, -0.010249722748994827, -0.12863965332508087, 0.17184850573539734, -0.014656786806881428, 0.20957888662815094, 0.14401733875274658, -0.21969568729400635, 0.020879505202174187, -0.12678246200084686, -0.05856833979487419, 0.011396016925573349, -0.001075170119293034, -0.01721803843975067, 0.11186058074235916, 0.03166380524635315, 0.09464610368013382, -0.07828079164028168, 0.0178215429186821, -0.01022131834179163, -0.09477954357862473, 0.04023868218064308, 0.1076417788863182, 0.19847774505615234, -0.10693945735692978, 0.12582345306873322, 0.21726559102535248, -0.012486585415899754, 0.12926660478115082, -0.02628294564783573, -0.0594233013689518, 0.013823149725794792, -0.06171383336186409, -0.05170125886797905, 0.05204715207219124, -0.15377594530582428, 0.0024949070066213608, 0.10876623541116714, -0.038585249334573746, 0.06547167897224426, -0.15618368983268738, -0.07871756702661514, -0.019116807729005814, -0.02268408238887787, -0.08108918368816376, 0.04746975749731064, -0.06003439053893089, 0.09843117743730545, -0.03418636694550514, -0.05737918242812157, 0.04518776759505272, 0.021249771118164062, -0.100391685962677, 0.17481523752212524, -0.04758491367101669, -0.25901347398757935, -0.18247689306735992, -0.014124498702585697, -0.03344116732478142, 0.02732618898153305, 0.07638340443372726, -0.03441135957837105, -0.03683844953775406, 0.03801790624856949, 0.06019437685608864, -0.02343294583261013, -0.08699537813663483, -0.06576646864414215, 0.012512270361185074, -0.021866580471396446, -0.1479363888502121, -0.03747812658548355, -0.0019167534774169326, -0.04476053640246391, 0.07171750068664551, -0.09596550464630127, 0.09658315777778625, 0.1235899031162262, 0.043289147317409515, 0.02606988325715065, 0.00474692415446043, 0.183965265750885, -0.08507745712995529, 0.011557884514331818, 0.19359461963176727, -0.06544075906276703, 0.07696424424648285, 0.10298938304185867, 0.07353505492210388, -0.041568052023649216, -0.0030153216794133186, -0.06331859529018402, -0.0640522763133049, -0.23723487555980682, -0.08933272957801819, -0.05040443316102028, 0.04366474971175194, 0.03311296924948692, 0.027438325807452202, 0.12746977806091309, 0.16513416171073914, 0.001780821825377643, 0.0011616444680839777, 0.01695386879146099, 0.06628427654504776, 0.22191068530082703, -0.028987020254135132, 0.11430198699235916, -0.05659271404147148, -0.10389004647731781, 0.07651460915803909, 0.037609636783599854, 0.1323101967573166, 0.13523150980472565, 0.1119406670331955, 0.11029720306396484, 0.050107672810554504, 0.09625609964132309, 0.14407724142074585, 0.008245831355452538, -0.0008555077947676182, -0.09055539965629578, -0.065327949821949, -0.0394233837723732, 0.08413220942020416, -0.022300366312265396, -0.1207258403301239, 0.01869690977036953, -0.08089777082204819, 0.0623716302216053, 0.05459428206086159, 0.02798360586166382, -0.22323614358901978, 0.001401935936883092, -0.0016981710214167833, -0.04977761581540108, -0.05796701833605766, 0.07576428353786469, -0.04477161914110184, -0.14238953590393066, 0.007428946904838085, -0.04223611205816269, 0.13330170512199402, -0.06038188934326172, 0.06577806174755096, -0.128357395529747, -0.07134561240673065, -0.00334860198199749, 0.15976598858833313, -0.2399444729089737, 0.3229542076587677, -0.011146451346576214, -0.07483822852373123, -0.1063188910484314, -0.013813650235533714, 0.06852098554372787, 0.13663476705551147, 0.1382601410150528, -0.012247025966644287, 0.0568898543715477, 0.01617681421339512, -0.12698087096214294, 0.08066380769014359, -0.012793302536010742, -0.11606825888156891, -0.015446211211383343, -0.05453820526599884, 0.03494289144873619, -0.0062163579277694225, 0.015296862460672855, -0.1166863888502121, -0.10525775700807571, 0.07931379228830338, -0.024400465190410614, 0.08541728556156158, -0.008035313338041306, -0.051470186561346054, -0.03667047992348671, 0.09600075334310532, -0.03974738344550133, -0.11711298674345016, -0.03377395495772362, -0.058651864528656006, 0.09471737593412399, -0.050393927842378616, 0.033407751470804214, -0.04816918447613716, -0.01358617190271616, -0.06753741204738617, -0.07680615037679672, 0.03756971284747124, -0.06644459068775177, -0.05935436114668846, -0.012340513058006763, 0.11097116768360138, -0.012852085754275322, 0.028941987082362175, 0.04218919947743416, 0.028894511982798576, -0.13919378817081451, -0.1160547062754631, -0.0003289325104560703, -0.060294635593891144, 0.02873273380100727, -0.06674671918153763, -0.07495788484811783, 0.026787536218762398, -0.051071278750896454, -0.08138039708137512, 0.21119822561740875, 0.16473987698554993, -0.023569248616695404, 0.1204036995768547, 0.27209728956222534, -0.09285512566566467, -0.2612900137901306, -0.17023539543151855, -0.10148385167121887, -0.03892506659030914, 0.034755975008010864, -0.23568473756313324, 0.06437110155820847, 0.10683263838291168, -0.07320831716060638, 0.06203769892454147, -0.22005771100521088, -0.10568162053823471, 0.24813272058963776, 0.011562766507267952, 0.19003108143806458, -0.15461426973342896, -0.0557628832757473, -0.04982190206646919, -0.10203738510608673, 0.17325279116630554, -0.07775226980447769, 0.05132976546883583, -0.03066295012831688, 0.06369977444410324, 0.010306845419108868, -0.03733360394835472, 0.1567518264055252, -0.02815064787864685, -0.010804067365825176, -0.08600886166095734, -0.10634567588567734, 0.07834816724061966, 0.03974658623337746, 0.07860469073057175, -0.07117129117250443, 0.018625350669026375, -0.09304703027009964, -0.04583379253745079, -0.03238040208816528, 0.08744028955698013, 0.010184736922383308, -0.12434755265712738, -0.038012608885765076, -0.006332654505968094, -0.11131632328033447, 0.0071831136010587215, 0.09533727914094925, -0.0600382536649704, 0.08384911715984344, 0.1340825855731964, 0.18369512259960175, -0.073846735060215, 0.04714971035718918, -0.07320651412010193, -0.05864350497722626, 0.09575644135475159, -0.15983755886554718, -0.016028951853513718, 0.10776544362306595, -0.00615316815674305, 0.09117155522108078, 0.032972875982522964, -0.03520006686449051, 0.007572796195745468, 0.12191798537969589, -0.2115928679704666, -0.08637361973524094, -0.0977526307106018, -0.06041024625301361, 0.04727866128087044, 0.037182122468948364, 0.1296861469745636, -0.033846233040094376, -0.05540720000863075, 0.07237563282251358, 0.05456556752324104, -0.0596950463950634, 0.04882587492465973, 0.09634360671043396, 0.011257230304181576, -0.10161539167165756, 0.03267020732164383, 0.07072558254003525, 0.0019251847406849265, -0.036148376762866974, 0.036779504269361496, -0.08158782124519348, -0.11991433799266815, -0.11308644711971283, 0.05889154225587845, -0.163728266954422, -0.08589453995227814, -0.02266821824014187, -0.05155476927757263, -0.021189378574490547, 0.018192894756793976, 0.08956249058246613, 0.03776323422789574, -0.03873279690742493, -0.04045385494828224, -0.0028460449539124966, 0.028883200138807297, 0.01529515627771616, -0.0644834116101265, -0.06655995547771454, 0.007851013913750648, 0.030672196298837662, 0.06609136611223221, -0.06471075862646103, -0.0485154390335083, -0.1091272383928299, 0.03463596850633621, -0.10331375151872635, -0.007420134264975786, -0.09961315244436264, -0.016617413610219955, -0.0019861890468746424, -0.06089651584625244, -0.03573615849018097, -0.03332023695111275, -0.1358119249343872, 0.0464828796684742, 0.01651150919497013, 0.11057942360639572, -0.08085756748914719, 0.026823243126273155, 0.13496583700180054, 0.014379959553480148, 0.10457988828420639, 0.05094170197844505, -0.05514351278543472, 0.08861756324768066, -0.18118660151958466, 0.04253580793738365, 0.05843105912208557, 0.032879166305065155, -0.0270091462880373, -0.008065002039074898, 0.0073024253360927105, 0.043489839881658554, 0.04066363722085953, 0.03177444636821747, 0.0029112217016518116, -0.11117877811193466, 0.03436874970793724, 0.04659680649638176, -0.10626798868179321, -0.002304305788129568, -0.03334078937768936, 0.01894310861825943, 0.06423681974411011, 0.11986146122217178, -0.022223984822630882, 0.06128530576825142, -0.06177572160959244, 0.08269113302230835, -0.03022184781730175, -0.12527935206890106, -0.07779986411333084, -0.1736297756433487, -0.03618387132883072, -0.03994615003466606, 0.31898579001426697, 0.055623240768909454, -0.019193001091480255, -0.0044714282266795635, 0.1582922637462616, 0.011831381358206272, -0.050594910979270935, 0.1460675746202469, 0.08672309666872025, 0.04852534085512161, -0.14137986302375793, 0.0735405907034874, -0.01853501796722412, -0.13544823229312897, 0.0931914746761322, 0.05826074257493019, -0.009481520392000675, 0.02886068820953369, 0.05700952932238579, 0.003779282560572028, -0.023606572300195694, -0.10432843118906021, 0.10620783269405365, 0.07883303612470627, -0.045136772096157074, 0.1182926744222641, 0.1704384982585907, -0.01160519476979971, 0.006697314325720072, 0.03312717005610466, -0.01081546489149332, -0.18324950337409973, -0.11440612375736237, -0.04596614092588425, -0.1256641298532486, -0.027040233835577965, -0.06765761226415634, -0.0007884568185545504, 0.09095624089241028, 0.029779596254229546, -0.0966368019580841, 0.04945193976163864, 0.04093625023961067, -0.12228962779045105, 0.010726938024163246, -0.02802620269358158, 0.012087003327906132, -0.1961102932691574, -0.01862548477947712, -0.061908744275569916, 0.08312053233385086, -0.005736534018069506, 0.0032459080684930086, -0.021456588059663773, -0.04503736272454262, -0.11972488462924957, -0.038689736276865005, -0.0979272723197937, 0.03871385380625725, -0.029277555644512177, 0.0654977411031723, -0.014633264392614365, 0.007775195874273777, 0.05639835074543953, 0.1407099962234497, 0.009043103083968163, -0.1544620543718338, -0.05811643972992897, 0.264512300491333, -0.08595801144838333, 0.0243854857981205, -0.004045645706355572, 0.021452100947499275, 0.012702075764536858, 0.33652496337890625, 0.3482248783111572, -0.07571031898260117, 0.0022231400944292545, 0.04596974700689316, 0.03240026533603668, 0.06861136853694916, 0.09274215251207352, 0.0018146437359973788, 0.22625215351581573, -0.08918054401874542, -0.015343429520726204, -0.06689120084047318, 0.023485468700528145, -0.016743535175919533, 0.07200772315263748, 0.06936592608690262, -0.06809389591217041, -0.031823378056287766, 0.14137905836105347, -0.15133844316005707, 0.013692331500351429, -0.1703113466501236, -0.0682462826371193, -0.0694909617304802, -0.014137711375951767, -0.007094792556017637, 0.01236655842512846, 0.0434567891061306, -0.047923650592565536, -0.051070984452962875, 0.04582646116614342, 0.0326690748333931, -0.19105947017669678, 0.010768085718154907, 0.17850685119628906, -0.03583207353949547, 0.1626325249671936, -0.014966151677072048, 0.06694138050079346, 0.057416222989559174, -0.004516690503805876, -0.037601109594106674, 0.05176683887839317, 0.05289599671959877, -0.00854501686990261, 0.014985510148108006, -0.12754841148853302, 0.05440439283847809, -0.11110296100378036, 0.033998798578977585, -0.0910751074552536, 0.07445698976516724, 0.04346875101327896, -0.06279674172401428, -0.013842282816767693, 0.04377266764640808, -0.11123833805322647, 0.09085753560066223, 0.08031351864337921, -0.040338240563869476, -0.04377191513776779, -0.07001658529043198, 0.060493871569633484, 0.03091423586010933, -0.15170878171920776, -0.029857980087399483, -0.04363488778471947, -0.0632307231426239, 0.005469920579344034, -0.008462131954729557, -0.15257246792316437, 0.009542202576994896, -0.024366959929466248, 0.03129738196730614, -0.08267301321029663, 0.0016677860403433442, 0.13255852460861206, 0.02140248380601406, 0.034520916640758514, -0.012035023421049118, -0.0016672577476128936, -0.017478762194514275, -0.09244099259376526, -0.04894901067018509 ]
null
null
transformers
# Zhouwenwang-Unified-1.3B - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 与追一科技合作探索的中文统一模型,13亿参数的编码器结构模型。 The Chinese unified model explored in cooperation with Zhuiyi Technology, the encoder structure model with 1.3B parameters. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 特殊 Special | 探索 Exploration | 周文王 Zhouwenwang | 待定 TBD | 1.3B | 中文 Chinese | ## 模型信息 Model Information IDEA研究院认知计算中心联合追一科技有限公司提出的具有新结构的大模型。该模型在预训练阶段时考虑统一LM和MLM的任务,这让其同时具备生成和理解的能力,并且增加了旋转位置编码技术。目前已有13亿参数的Zhouwenwang-Unified-1.3B大模型,是中文领域中可以同时做LM和MLM任务的最大的模型。我们后续会持续在模型规模、知识融入、监督辅助任务等方向不断优化。 A large-scale model (Zhouwenwang-Unified-1.3B) with a new structure proposed by IDEA CCNL and Zhuiyi Technology. The model considers the task of unifying LM (Language Modeling) and MLM (Masked Language Modeling) during the pre-training phase, which gives it both generative and comprehension capabilities, and applys rotational position encoding. At present, Zhouwenwang-Unified-1.3B with 13B parameters is the largest Chinese model that can do both LM and MLM tasks. In the future, we will continue to optimize it in the direction of model size, knowledge incorporation, and supervisory assistance tasks. ### 下游任务 Performance 下游中文任务的得分(没有做任何数据增强)。 Scores on downstream chinese tasks (without any data augmentation) | 模型 Model | afqmc | tnews | iflytek | ocnli | cmnli | wsc | csl | | :--------: | :-----: | :----: | :-----: | :----: | :----: | :----: | :----: | | roberta-wwm-ext-large | 0.7514 | 0.5872 | 0.6152 | 0.7770 | 0.8140 | 0.8914 | 0.8600 | | Zhouwenwang-Unified-1.3B | 0.7463 | 0.6036 | 0.6288 | 0.7654 | 0.7741 | 0.8849 | 0. 8777 | ## 使用 Usage 因为[transformers](https://github.com/huggingface/transformers)库中是没有 Zhouwenwang-Unified-1.3B相关的模型结构的,所以你可以在我们的[Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM)中找到并且运行代码。 Since there is no structure of Zhouwenwang-Unified-1.3B in [transformers library](https://github.com/huggingface/transformers), you can find the structure of Zhouwenwang-Unified-1.3B and run the codes in [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM). ```shell git clone https://github.com/IDEA-CCNL/Fengshenbang-LM.git ``` ### 加载模型 Loading Models ```python from fengshen import RoFormerModel from fengshen import RoFormerConfig from transformers import BertTokenizer tokenizer = BertTokenizer.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-1.3B") config = RoFormerConfig.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-1.3B") model = RoFormerModel.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-1.3B") ``` ### 使用示例 Usage Examples 你可以使用该模型进行续写任务。 You can use the model for continuation writing tasks. ```python from fengshen import RoFormerModel from transformers import AutoTokenizer import torch import numpy as np sentence = '清华大学位于' max_length = 32 tokenizer = AutoTokenizer.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-1.3B") model = RoFormerModel.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-1.3B") for i in range(max_length): encode = torch.tensor( [[tokenizer.cls_token_id]+tokenizer.encode(sentence, add_special_tokens=False)]).long() logits = model(encode)[0] logits = torch.nn.functional.linear( logits, model.embeddings.word_embeddings.weight) logits = torch.nn.functional.softmax( logits, dim=-1).cpu().detach().numpy()[0] sentence = sentence + \ tokenizer.decode(int(np.random.choice(logits.shape[1], p=logits[-1]))) if sentence[-1] == '。': break print(sentence) ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["zh"], "license": "apache-2.0", "widget": [{"text": "\u751f\u6d3b\u7684\u771f\u8c1b\u662f[MASK]\u3002"}]}
null
IDEA-CCNL/Zhouwenwang-Unified-1.3B
[ "transformers", "pytorch", "megatron-bert", "zh", "arxiv:2209.02970", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "zh" ]
TAGS #transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us
Zhouwenwang-Unified-1.3B ======================== * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 与追一科技合作探索的中文统一模型,13亿参数的编码器结构模型。 The Chinese unified model explored in cooperation with Zhuiyi Technology, the encoder structure model with 1.3B parameters. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- IDEA研究院认知计算中心联合追一科技有限公司提出的具有新结构的大模型。该模型在预训练阶段时考虑统一LM和MLM的任务,这让其同时具备生成和理解的能力,并且增加了旋转位置编码技术。目前已有13亿参数的Zhouwenwang-Unified-1.3B大模型,是中文领域中可以同时做LM和MLM任务的最大的模型。我们后续会持续在模型规模、知识融入、监督辅助任务等方向不断优化。 A large-scale model (Zhouwenwang-Unified-1.3B) with a new structure proposed by IDEA CCNL and Zhuiyi Technology. The model considers the task of unifying LM (Language Modeling) and MLM (Masked Language Modeling) during the pre-training phase, which gives it both generative and comprehension capabilities, and applys rotational position encoding. At present, Zhouwenwang-Unified-1.3B with 13B parameters is the largest Chinese model that can do both LM and MLM tasks. In the future, we will continue to optimize it in the direction of model size, knowledge incorporation, and supervisory assistance tasks. ### 下游任务 Performance 下游中文任务的得分(没有做任何数据增强)。 Scores on downstream chinese tasks (without any data augmentation) 使用 Usage -------- 因为transformers库中是没有 Zhouwenwang-Unified-1.3B相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。 Since there is no structure of Zhouwenwang-Unified-1.3B in transformers library, you can find the structure of Zhouwenwang-Unified-1.3B and run the codes in Fengshenbang-LM. ### 加载模型 Loading Models ### 使用示例 Usage Examples 你可以使用该模型进行续写任务。 You can use the model for continuation writing tasks. 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 下游任务 Performance\n\n\n下游中文任务的得分(没有做任何数据增强)。\n\n\nScores on downstream chinese tasks (without any data augmentation)\n\n\n\n使用 Usage\n--------\n\n\n因为transformers库中是没有 Zhouwenwang-Unified-1.3B相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。\n\n\nSince there is no structure of Zhouwenwang-Unified-1.3B in transformers library, you can find the structure of Zhouwenwang-Unified-1.3B and run the codes in Fengshenbang-LM.", "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n", "### 下游任务 Performance\n\n\n下游中文任务的得分(没有做任何数据增强)。\n\n\nScores on downstream chinese tasks (without any data augmentation)\n\n\n\n使用 Usage\n--------\n\n\n因为transformers库中是没有 Zhouwenwang-Unified-1.3B相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。\n\n\nSince there is no structure of Zhouwenwang-Unified-1.3B in transformers library, you can find the structure of Zhouwenwang-Unified-1.3B and run the codes in Fengshenbang-LM.", "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 44, 133, 9, 82 ]
[ "passage: TAGS\n#transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n### 下游任务 Performance\n\n\n下游中文任务的得分(没有做任何数据增强)。\n\n\nScores on downstream chinese tasks (without any data augmentation)\n\n\n\n使用 Usage\n--------\n\n\n因为transformers库中是没有 Zhouwenwang-Unified-1.3B相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。\n\n\nSince there is no structure of Zhouwenwang-Unified-1.3B in transformers library, you can find the structure of Zhouwenwang-Unified-1.3B and run the codes in Fengshenbang-LM.### 加载模型 Loading Models### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ -0.039821524173021317, -0.006813276093453169, -0.005877257324755192, 0.026450103148818016, 0.09603244066238403, 0.018302246928215027, 0.14509651064872742, 0.035508278757333755, 0.05732133239507675, 0.006615886930376291, 0.029642857611179352, 0.06162279471755028, 0.04189788177609444, -0.04949153587222099, -0.025722282007336617, -0.2481021136045456, 0.024074293673038483, 0.09314857423305511, -0.09891664981842041, 0.045701030641794205, 0.11760399490594864, -0.07683704048395157, 0.09847921878099442, 0.010679499246180058, -0.011249455623328686, -0.01352844387292862, -0.05033384636044502, -0.019849618896842003, 0.14393475651741028, 0.08957228064537048, 0.061278801411390305, 0.055256135761737823, -0.004724031779915094, -0.1080000177025795, 0.006561845541000366, -0.055935561656951904, -0.03495069593191147, 0.03528536856174469, -0.04915125295519829, 0.08365867286920547, 0.19085265696048737, -0.056956589221954346, -0.05959600582718849, 0.07912732660770416, -0.026441743597388268, -0.029868870973587036, -0.07268911600112915, 0.1753358542919159, 0.12648867070674896, 0.043170977383852005, 0.024778058752417564, 0.14534497261047363, -0.08357466012239456, 0.06990917772054672, 0.0964294895529747, -0.2848815321922302, -0.06423956900835037, 0.19373179972171783, 0.0735369399189949, 0.054379697889089584, -0.061780016869306564, 0.010488847270607948, 0.038381583988666534, 0.0023406478576362133, -0.0523001067340374, -0.1305713653564453, -0.0023048599250614643, 0.025871558114886284, -0.08958084136247635, 0.07993915677070618, 0.27390703558921814, 0.007761105895042419, -0.011578695848584175, -0.0924326553940773, -0.0391262024641037, 0.0692652240395546, -0.021185055375099182, -0.0057900394313037395, -0.0063657378777861595, 0.0058260210789740086, 0.10696239769458771, -0.10190107673406601, -0.08646616339683533, -0.07860720157623291, -0.03069435805082321, 0.0536956712603569, 0.02581658959388733, 0.0008143504383042455, -0.022446585819125175, 0.06768239289522171, -0.020918121561408043, -0.09002652764320374, -0.029399719089269638, -0.06913015246391296, -0.03261901065707207, 0.035642582923173904, 0.07548843324184418, -0.05862750485539436, 0.11052107065916061, 0.1392965316772461, 0.03587633743882179, 0.032571837306022644, 0.027167707681655884, 0.06142903119325638, 0.03856859728693962, 0.10247959941625595, -0.09332116693258286, -0.07637552171945572, 0.06017502024769783, -0.02875516377389431, 0.033137861639261246, -0.033690206706523895, -0.08312094211578369, -0.07474417239427567, -0.02253207005560398, 0.07592431455850601, -0.009799061343073845, 0.06644613295793533, 0.013894251547753811, -0.06854385137557983, 0.19027887284755707, -0.058735474944114685, -0.04266762733459473, 0.021935652941465378, -0.007886981591582298, 0.09913947433233261, 0.029281524941325188, 0.03803880140185356, -0.048453640192747116, 0.05213499069213867, -0.09643329679965973, -0.05744152143597603, -0.014970336109399796, -0.03277018666267395, 0.011425676755607128, -0.0038090432062745094, 0.04931989312171936, -0.07771199941635132, -0.09471230208873749, 0.0010761170415207744, 0.05327383056282997, -0.005247623659670353, -0.05621293559670448, 0.06827210634946823, -0.043963197618722916, -0.03139740973711014, -0.019163284450769424, 0.059653133153915405, -0.014898140914738178, 0.05398697778582573, 0.06494544446468353, -0.022599773481488228, -0.15221063792705536, 0.009224860928952694, -0.07801671326160431, 0.0691799446940422, -0.09700943529605865, -0.0549735352396965, -0.05606907606124878, 0.09216524660587311, -0.0824950709939003, 0.003494380507618189, 0.06503590196371078, -0.0011188617208972573, 0.015903856605291367, 0.06681492924690247, -0.022320754826068878, -0.043405499309301376, 0.013997912406921387, -0.153816357254982, -0.2001231461763382, 0.1172257512807846, 0.029829971492290497, 0.126712828874588, 0.030277030542492867, 0.0915793851017952, 0.1798740178346634, -0.12916962802410126, -0.021244125440716743, 0.06013312190771103, -0.011041142977774143, -0.074259914457798, 0.11277895420789719, 0.06780675798654556, -0.007650204934179783, 0.048257939517498016, -0.11368834972381592, -0.026813708245754242, -0.06629391014575958, -0.08424254506826401, -0.0114308912307024, -0.0639643669128418, -0.014643050730228424, 0.025415705516934395, 0.07416734844446182, 0.035758744925260544, 0.008887519128620625, 0.04131285846233368, 0.10735271126031876, -0.06835423409938812, 0.021898113191127777, -0.08915604650974274, -0.0017728889361023903, 0.09679467231035233, 0.04212784767150879, -0.059900496155023575, -0.009914618916809559, 0.03561301529407501, 0.03591502830386162, 0.0642755851149559, 0.05442659556865692, -0.014627181924879551, 0.06228867918252945, -0.060353364795446396, 0.015921449288725853, -0.011791887693107128, 0.005303661338984966, -0.04330086708068848, -0.10556948930025101, -0.0596156008541584, 0.011807916685938835, 0.022288449108600616, -0.1982174664735794, 0.042876262217760086, -0.01501027774065733, 0.029949506744742393, -0.04190004989504814, 0.05582810565829277, -0.005549565888941288, 0.05607777088880539, -0.0859973207116127, 0.06805618852376938, 0.044710833579301834, 0.035585906356573105, -0.17048920691013336, 0.11913572251796722, -0.00659349886700511, 0.11452312022447586, 0.08853444457054138, -0.018441349267959595, 0.017779823392629623, -0.003047105623409152, -0.046119894832372665, -0.07643143087625504, -0.0042397743090987206, -0.06718140840530396, 0.05330033227801323, 0.028794268146157265, 0.10577182471752167, -0.0475340262055397, 0.05430063605308533, -0.00750987883657217, -0.048160430043935776, 0.060826245695352554, 0.12919844686985016, 0.16097857058048248, -0.14001555740833282, 0.08545204252004623, -0.029907340183854103, -0.08438906818628311, 0.1815885603427887, -0.05024343729019165, -0.02348322607576847, -0.06200064346194267, 0.03315596655011177, 0.020243419334292412, 0.12689362466335297, -0.14774683117866516, -0.00006588586984435096, 0.05891207978129387, -0.019214678555727005, 0.04964292421936989, -0.10228177905082703, -0.04401408135890961, -0.02456420473754406, -0.022896569222211838, 0.024750808253884315, 0.03645618259906769, -0.08879561722278595, 0.043741535395383835, -0.06203329190611839, 0.02990795113146305, -0.031022047623991966, -0.01213461346924305, -0.11466266214847565, 0.07752301543951035, 0.020255133509635925, -0.16909317672252655, -0.14491282403469086, 0.04200231283903122, -0.11285820603370667, -0.043593212962150574, 0.04536578059196472, 0.021500416100025177, -0.06398166716098785, -0.02311583235859871, 0.07685012370347977, -0.029414134100079536, -0.05814100801944733, 0.022421400994062424, 0.03687332570552826, -0.08268288522958755, -0.11831815540790558, -0.017801066860556602, -0.01471653115004301, -0.08104872703552246, 0.066402368247509, -0.09208935499191284, 0.10111836344003677, 0.07368599623441696, 0.08892321586608887, -0.012787745334208012, -0.0008950577466748655, 0.030953584238886833, -0.05891877040266991, 0.10116104036569595, 0.22237180173397064, 0.007086174562573433, 0.03188100829720497, 0.06776057928800583, 0.05059307813644409, -0.027996284887194633, 0.01760469563305378, 0.02435794100165367, -0.07797601819038391, -0.19948166608810425, -0.09396108239889145, -0.1291576474905014, 0.12499815970659256, -0.02689983882009983, 0.03540492430329323, 0.10180661827325821, 0.06005417928099632, -0.031440626829862595, 0.06656947731971741, 0.03019198402762413, 0.0484103262424469, 0.08381510525941849, 0.03333638980984688, 0.05092092230916023, -0.10516615211963654, -0.019805967807769775, 0.06442634016275406, 0.05052374303340912, 0.1288057267665863, 0.05997132882475853, 0.21222350001335144, 0.06428813189268112, 0.11440000683069229, 0.060443561524152756, 0.12387480586767197, -0.07455363869667053, -0.025626584887504578, -0.027698662132024765, -0.0674046128988266, -0.01586737111210823, 0.07630522549152374, 0.06964419782161713, -0.026264149695634842, -0.004655111115425825, 0.06729382276535034, 0.0378851555287838, 0.1901341825723648, 0.01110500656068325, -0.00991517212241888, -0.11023916304111481, -0.010219736956059933, -0.022319599986076355, 0.004577802028506994, 0.038431402295827866, 0.0954330638051033, -0.13916094601154327, 0.030001888051629066, -0.009106678888201714, 0.13611119985580444, 0.00758767407387495, 0.0295509435236454, -0.11631202697753906, -0.0540335439145565, 0.022571416571736336, 0.08177033066749573, -0.23536232113838196, 0.18637515604496002, 0.003750195726752281, 0.05538295581936836, -0.07434337586164474, -0.022247295826673508, 0.03825302794575691, 0.088402159512043, 0.11565153300762177, -0.013223466463387012, 0.1124536544084549, 0.012712694704532623, -0.10336732864379883, 0.04511965438723564, -0.01883927546441555, -0.06683265417814255, 0.026437880471348763, -0.03224548324942589, -0.004837974440306425, 0.006683243438601494, 0.11224215477705002, -0.10005701333284378, -0.055401310324668884, 0.05296003445982933, -0.025624286383390427, -0.0420181080698967, 0.008786501362919807, 0.00203290325589478, 0.018136311322450638, 0.13310088217258453, -0.11912339180707932, -0.06015985831618309, -0.042082156985998154, -0.0957629606127739, 0.11253195255994797, -0.0969005897641182, -0.019575880840420723, -0.04697020351886749, -0.025592181831598282, -0.08019107580184937, -0.046522580087184906, -0.0021189081016927958, -0.06854758411645889, -0.1039252057671547, 0.00769064761698246, 0.12338632345199585, -0.026132654398679733, 0.0792163610458374, -0.010359121486544609, -0.03284519910812378, -0.01126532070338726, -0.18658147752285004, -0.07958274334669113, -0.03205759450793266, 0.032218657433986664, -0.002214594278484583, -0.1348239630460739, 0.02903536707162857, -0.07309422641992569, -0.1512146145105362, 0.14311344921588898, 0.22086919844150543, -0.019600512459874153, 0.03551660105586052, 0.1980879306793213, -0.021347178146243095, -0.2728131115436554, -0.20928524434566498, -0.02682119607925415, 0.050404228270053864, -0.051451779901981354, -0.1463635116815567, 0.08923856168985367, 0.08796274662017822, -0.01895178109407425, 0.010393121279776096, -0.2541435956954956, -0.15485839545726776, 0.08950763940811157, 0.018794160336256027, 0.07091369479894638, -0.17897018790245056, -0.046471044421195984, -0.014701886102557182, -0.18661782145500183, 0.15521161258220673, -0.08591581881046295, 0.08275846391916275, -0.03800644725561142, -0.06963838636875153, -0.02140648290514946, -0.07886826992034912, 0.12649233639240265, 0.02700350619852543, 0.02109001949429512, -0.018734022974967957, -0.16911634802818298, 0.1428106129169464, -0.006370944436639547, 0.1885261982679367, -0.07108985632658005, 0.020260578021407127, -0.14889337122440338, -0.046811893582344055, -0.009635373950004578, 0.055190153419971466, -0.045429594814777374, -0.08989807218313217, -0.09307689964771271, 0.09859612584114075, -0.0246753953397274, 0.030539674684405327, 0.24795207381248474, 0.013469204306602478, -0.1134839728474617, 0.19459335505962372, 0.08534429222345352, -0.05204955115914345, 0.035317398607730865, -0.06811860203742981, -0.020183850079774857, 0.10715150088071823, -0.1225861981511116, 0.05084075406193733, 0.10669395327568054, 0.05794661119580269, 0.056182969361543655, 0.02248976193368435, -0.04590625688433647, 0.013004075735807419, 0.04506132751703262, -0.12819316983222961, -0.16643337905406952, -0.07337487488985062, -0.10717001557350159, 0.03094320558011532, 0.07679664343595505, 0.07482670992612839, -0.07348114997148514, 0.017826778814196587, 0.0338243693113327, 0.010577986016869545, -0.09852266311645508, 0.07587126642465591, 0.04234548285603523, 0.05514279007911682, -0.04948841780424118, 0.014489295892417431, 0.0944313108921051, 0.06784804165363312, -0.05135899782180786, 0.10963868349790573, -0.09647203236818314, -0.07763515412807465, -0.11853062361478806, 0.08730866760015488, -0.06940139830112457, -0.052212949842214584, -0.07014893740415573, -0.07907868921756744, -0.05556277185678482, 0.10334170609712601, 0.06939956545829773, 0.052271272987127304, -0.029534267261624336, -0.02642839029431343, -0.10638909786939621, 0.0026638328563421965, 0.012738663703203201, 0.02779802307486534, -0.08663271367549896, 0.03385021910071373, 0.08685111999511719, 0.08103951811790466, -0.04984510317444801, -0.037587620317935944, -0.17070063948631287, 0.0322391614317894, -0.09112687408924103, 0.01510779932141304, -0.12928199768066406, -0.049924399703741074, -0.012523508630692959, -0.10553908348083496, -0.056228190660476685, 0.012273166328668594, -0.0009158023749478161, 0.01036831270903349, -0.027264900505542755, 0.1303737759590149, -0.049504294991493225, -0.013092335313558578, 0.10263426601886749, -0.07536984235048294, 0.05596480146050453, 0.041049715131521225, -0.008441540412604809, 0.05777692422270775, -0.08502360433340073, 0.046627964824438095, -0.010036293417215347, 0.06955716758966446, 0.020497387275099754, -0.03818291053175926, -0.041154079139232635, 0.04063574597239494, 0.05555585399270058, 0.027821365743875504, 0.047595422714948654, -0.11444970965385437, -0.029371581971645355, -0.11940038949251175, -0.1246672198176384, -0.047345180064439774, 0.0015585515648126602, 0.04615839570760727, 0.12241582572460175, 0.09861166030168533, -0.03973992541432381, 0.06658416241407394, -0.11202113330364227, 0.020432423800230026, -0.001492816605605185, -0.030339738354086876, 0.06939077377319336, -0.12934979796409607, -0.019485795870423317, -0.035117894411087036, 0.18549349904060364, -0.10636931657791138, -0.05696338415145874, 0.006887763738632202, 0.005434304941445589, -0.08225837349891663, 0.006416443269699812, 0.2397298812866211, 0.06705401837825775, 0.07624536007642746, -0.03097173571586609, 0.03970925509929657, -0.02228601835668087, 0.017987621948122978, 0.15483596920967102, 0.07446277141571045, 0.004081374034285545, 0.05468127131462097, 0.08742789179086685, -0.015117770992219448, -0.06833154708147049, -0.045330584049224854, -0.04503200575709343, -0.010213575325906277, -0.026622284203767776, 0.06671582907438278, 0.20812590420246124, -0.12642963230609894, 0.07479511946439743, 0.020563455298542976, -0.08366979658603668, -0.0396306999027729, -0.08389215171337128, -0.07272729277610779, -0.04802672937512398, 0.0012103087501600385, -0.07765136659145355, -0.06782525777816772, 0.04352943226695061, 0.03129568696022034, -0.06784364581108093, 0.10119473189115524, 0.03557960316538811, -0.03260532394051552, -0.01246839202940464, -0.016641132533550262, -0.03764258325099945, -0.07504677027463913, 0.025978846475481987, -0.07894311845302582, 0.053916458040475845, 0.0005218205624260008, 0.0686797946691513, -0.026634778827428818, 0.01914677955210209, -0.006292469799518585, -0.05156437307596207, -0.03956911712884903, -0.012332011945545673, 0.057613033801317215, 0.09207391738891602, 0.029708165675401688, -0.02298218011856079, 0.017089014872908592, 0.12620945274829865, 0.015093795023858547, -0.19224075973033905, -0.10103057324886322, 0.22851043939590454, 0.021246664226055145, -0.042710233479738235, 0.03407488390803337, -0.012450624257326126, -0.0039579737931489944, 0.26293355226516724, 0.2320428192615509, -0.0834302082657814, 0.0016242115525528789, 0.013590088114142418, 0.01503072865307331, -0.007267240434885025, 0.07447364926338196, 0.029162239283323288, 0.3293677866458893, -0.02456764690577984, 0.008550608530640602, -0.1194799616932869, -0.024084649980068207, -0.0687788799405098, 0.12365933507680893, 0.06285916268825531, -0.058910220861434937, -0.0391642190515995, 0.07334896177053452, -0.11359918117523193, -0.08488024771213531, 0.02255071885883808, -0.09286687523126602, -0.057839177548885345, 0.0013960553333163261, -0.048758044838905334, 0.005250596906989813, 0.02625676989555359, -0.025939244776964188, 0.025766422972083092, -0.007292312569916248, 0.049423620104789734, -0.04120927304029465, 0.04694996401667595, 0.16666346788406372, 0.02650938555598259, 0.1638413816690445, -0.018000075593590736, 0.04133528470993042, 0.07444707304239273, 0.014026847667992115, 0.012040866538882256, 0.11312761902809143, 0.039766352623701096, -0.0666213259100914, -0.016019975766539574, -0.0554589219391346, -0.0051718344911932945, 0.10745670646429062, -0.00964399054646492, -0.12859506905078888, 0.029943522065877914, 0.13766935467720032, 0.030375516042113304, -0.060048483312129974, 0.06375380605459213, -0.11568663269281387, 0.1537095010280609, 0.10789451748132706, -0.07596685737371445, -0.02297784574329853, -0.04281672090291977, 0.10988038033246994, -0.016132574528455734, -0.012421388179063797, -0.07436788827180862, -0.1603419929742813, 0.020974697545170784, -0.034777410328388214, 0.02420884557068348, -0.10670756548643112, -0.05216456949710846, 0.0199854988604784, 0.007536428049206734, -0.09960238635540009, -0.015352237038314342, 0.09977017343044281, -0.005441657267510891, -0.012079085223376751, -0.25968843698501587, -0.043958865106105804, -0.015948744490742683, -0.1069384515285492, -0.1319183111190796 ]
null
null
transformers
# Zhouwenwang-Unified-110M - Main Page:[Fengshenbang](https://fengshenbang-lm.com/) - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM) ## 简介 Brief Introduction 与追一科技合作探索的中文统一模型,1.1亿参数的编码器结构模型。 The Chinese unified model explored in cooperation with Zhuiyi Technology, the encoder structure model with 110M parameters. ## 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 特殊 Special | 探索 Exploration | 周文王 Zhouwenwang | 待定 TBD | 110M | 中文 Chinese | ## 模型信息 Model Information IDEA研究院认知计算中心联合追一科技有限公司提出的具有新结构的大模型。该模型在预训练阶段时考虑统一LM和MLM的任务,这让其同时具备生成和理解的能力,并且增加了旋转位置编码技术。我们后续会持续在模型规模、知识融入、监督辅助任务等方向不断优化。 A large-scale model (Zhouwenwang-Unified-1.3B) with a new structure proposed by IDEA CCNL and Zhuiyi Technology. The model considers the task of unifying LM (Language Modeling) and MLM (Masked Language Modeling) during the pre-training phase, which gives it both generative and comprehension capabilities, and applys rotational position encoding. In the future, we will continue to optimize it in the direction of model size, knowledge incorporation, and supervisory assistance tasks. ## 使用 Usage 因为[transformers](https://github.com/huggingface/transformers)库中是没有 Zhouwenwang-Unified-110M相关的模型结构的,所以你可以在我们的[Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM)中找到并且运行代码。 Since there is no structure of Zhouwenwang-Unified-110M in [transformers library](https://github.com/huggingface/transformers), you can find the structure of Zhouwenwang-Unified-110M and run the codes in [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM). ```shell git clone https://github.com/IDEA-CCNL/Fengshenbang-LM.git ``` ### 加载模型 Loading Models ```python from fengshen import RoFormerModel from fengshen import RoFormerConfig from transformers import BertTokenizer tokenizer = BertTokenizer.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-110M") config = RoFormerConfig.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-110M") model = RoFormerModel.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-110M") ``` ### 使用示例 Usage Examples 你可以使用该模型进行续写任务。 You can use the model for continuation writing tasks. ```python from fengshen import RoFormerModel from transformers import AutoTokenizer import torch import numpy as np sentence = '清华大学位于' max_length = 32 tokenizer = AutoTokenizer.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-110M") model = RoFormerModel.from_pretrained("IDEA-CCNL/Zhouwenwang-Unified-110M") for i in range(max_length): encode = torch.tensor( [[tokenizer.cls_token_id]+tokenizer.encode(sentence, add_special_tokens=False)]).long() logits = model(encode)[0] logits = torch.nn.functional.linear( logits, model.embeddings.word_embeddings.weight) logits = torch.nn.functional.softmax( logits, dim=-1).cpu().detach().numpy()[0] sentence = sentence + \ tokenizer.decode(int(np.random.choice(logits.shape[1], p=logits[-1]))) if sentence[-1] == '。': break print(sentence) ``` ## 引用 Citation 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970): If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970): ```text @article{fengshenbang, author = {Jiaxing Zhang and Ruyi Gan and Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen}, title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence}, journal = {CoRR}, volume = {abs/2209.02970}, year = {2022} } ``` 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/): You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/): ```text @misc{Fengshenbang-LM, title={Fengshenbang-LM}, author={IDEA-CCNL}, year={2021}, howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}}, } ```
{"language": ["zh"], "license": "apache-2.0", "widget": [{"text": "\u751f\u6d3b\u7684\u771f\u8c1b\u662f[MASK]\u3002"}]}
null
IDEA-CCNL/Zhouwenwang-Unified-110M
[ "transformers", "pytorch", "megatron-bert", "zh", "arxiv:2209.02970", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2209.02970" ]
[ "zh" ]
TAGS #transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us
Zhouwenwang-Unified-110M ======================== * Main Page:Fengshenbang * Github: Fengshenbang-LM 简介 Brief Introduction --------------------- 与追一科技合作探索的中文统一模型,1.1亿参数的编码器结构模型。 The Chinese unified model explored in cooperation with Zhuiyi Technology, the encoder structure model with 110M parameters. 模型分类 Model Taxonomy ------------------- 模型信息 Model Information ---------------------- IDEA研究院认知计算中心联合追一科技有限公司提出的具有新结构的大模型。该模型在预训练阶段时考虑统一LM和MLM的任务,这让其同时具备生成和理解的能力,并且增加了旋转位置编码技术。我们后续会持续在模型规模、知识融入、监督辅助任务等方向不断优化。 A large-scale model (Zhouwenwang-Unified-1.3B) with a new structure proposed by IDEA CCNL and Zhuiyi Technology. The model considers the task of unifying LM (Language Modeling) and MLM (Masked Language Modeling) during the pre-training phase, which gives it both generative and comprehension capabilities, and applys rotational position encoding. In the future, we will continue to optimize it in the direction of model size, knowledge incorporation, and supervisory assistance tasks. 使用 Usage -------- 因为transformers库中是没有 Zhouwenwang-Unified-110M相关的模型结构的,所以你可以在我们的Fengshenbang-LM中找到并且运行代码。 Since there is no structure of Zhouwenwang-Unified-110M in transformers library, you can find the structure of Zhouwenwang-Unified-110M and run the codes in Fengshenbang-LM. ### 加载模型 Loading Models ### 使用示例 Usage Examples 你可以使用该模型进行续写任务。 You can use the model for continuation writing tasks. 引用 Citation ----------- 如果您在您的工作中使用了我们的模型,可以引用我们的论文: If you are using the resource for your work, please cite the our paper: 也可以引用我们的网站: You can also cite our website:
[ "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ "TAGS\n#transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n", "### 加载模型 Loading Models", "### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ 44, 9, 82 ]
[ "passage: TAGS\n#transformers #pytorch #megatron-bert #zh #arxiv-2209.02970 #license-apache-2.0 #endpoints_compatible #region-us \n### 加载模型 Loading Models### 使用示例 Usage Examples\n\n\n你可以使用该模型进行续写任务。\n\n\nYou can use the model for continuation writing tasks.\n\n\n引用 Citation\n-----------\n\n\n如果您在您的工作中使用了我们的模型,可以引用我们的论文:\n\n\nIf you are using the resource for your work, please cite the our paper:\n\n\n也可以引用我们的网站:\n\n\nYou can also cite our website:" ]
[ -0.06749933958053589, 0.0064644962549209595, -0.004924236796796322, -0.014507518149912357, 0.0805429071187973, 0.05982634797692299, 0.12171322107315063, 0.024611566215753555, 0.052543699741363525, -0.0755160003900528, 0.1924005001783371, 0.1504560112953186, -0.029867742210626602, -0.0009092364343814552, 0.008326244540512562, -0.23548352718353271, 0.0347810797393322, 0.06305395811796188, -0.10514272749423981, 0.09485096484422684, 0.1119292750954628, -0.08496993780136108, 0.0908949002623558, 0.06865984946489334, -0.08359981328248978, -0.021448666229844093, -0.047012809664011, -0.004745459649711847, 0.15651573240756989, 0.03525552898645401, 0.0567842461168766, 0.06404267251491547, 0.020213374868035316, -0.08223895728588104, 0.03513629361987114, -0.03997260704636574, -0.05070824176073074, 0.05697960779070854, -0.006280609872192144, -0.016939077526330948, 0.3022250235080719, 0.06598089635372162, -0.08918061852455139, 0.051668137311935425, -0.0661100447177887, -0.11644844710826874, -0.042703088372945786, 0.10197418183088303, 0.0833166167140007, 0.028901422396302223, 0.021288985386490822, 0.15733079612255096, -0.0935855358839035, 0.035966478288173676, 0.13267210125923157, -0.24129104614257812, -0.03917015343904495, 0.20365390181541443, 0.1341295689344406, -0.012520596385002136, 0.023864345625042915, 0.09051802009344101, 0.041485875844955444, 0.036074914038181305, -0.005401660222560167, -0.09382577240467072, 0.05478702485561371, 0.05033857375383377, -0.11815741658210754, -0.009538421407341957, 0.29319337010383606, -0.022686176002025604, 0.00409478135406971, -0.05739724636077881, -0.06616345793008804, 0.09839709103107452, -0.043983008712530136, -0.00912912655621767, 0.020541807636618614, 0.04037363454699516, 0.09945230931043625, -0.08985566347837448, -0.13155852258205414, -0.07640528678894043, -0.087326779961586, 0.06328357756137848, 0.013292345218360424, 0.08006409555673599, -0.13642533123493195, 0.15046969056129456, -0.06517600268125534, -0.10400692373514175, 0.00990642886608839, -0.13900136947631836, 0.0866454467177391, 0.045298315584659576, -0.03437846526503563, 0.04221988096833229, 0.11787354946136475, 0.14652249217033386, 0.14946416020393372, -0.022532254457473755, 0.10204251110553741, 0.10063207149505615, 0.023518603295087814, 0.019909070804715157, -0.12071608006954193, -0.07473592460155487, 0.03561900183558464, -0.03299123793840408, -0.033295001834630966, 0.002027475042268634, -0.12552574276924133, -0.08211863040924072, -0.028239453211426735, 0.05700581148266792, 0.011903245002031326, 0.04982271417975426, 0.0013972927117720246, -0.019582713022828102, 0.11362633109092712, 0.0075431508012115955, -0.06645835191011429, 0.009224027395248413, -0.011656383983790874, 0.11634315550327301, 0.06276228278875351, 0.05704040080308914, -0.02211911603808403, 0.01228886004537344, -0.1117657944560051, -0.050704263150691986, -0.09310106188058853, -0.019970132037997246, 0.024835610762238503, -0.00796342734247446, 0.11415906995534897, -0.1007343977689743, -0.16940553486347198, 0.02127975970506668, 0.13480760157108307, 0.002991114044561982, -0.051933981478214264, 0.05530208721756935, -0.0070094456896185875, -0.020507747307419777, -0.036010950803756714, 0.12955766916275024, -0.06141192838549614, 0.04797196388244629, -0.023501591756939888, 0.0266730934381485, -0.148703470826149, -0.002248872769996524, -0.07163120061159134, 0.03800433874130249, -0.046243634074926376, -0.07973393052816391, 0.009284518659114838, 0.10371565073728561, -0.0997249186038971, -0.03936043381690979, -0.0425964780151844, 0.026782887056469917, 0.0021519914735108614, 0.1441132128238678, -0.05167383700609207, -0.021004831418395042, 0.11352831870317459, -0.08262673020362854, -0.24366740882396698, 0.0580437146127224, -0.01534541230648756, 0.1958012580871582, 0.04152778908610344, 0.06616076081991196, 0.1032097339630127, -0.08904565870761871, 0.10219741612672806, 0.0796675831079483, -0.09170889854431152, -0.1527682989835739, 0.10866257548332214, 0.030553430318832397, -0.08218179643154144, 0.034183308482170105, -0.13502874970436096, 0.050138574093580246, -0.07753223925828934, -0.04957292601466179, -0.011118590831756592, -0.09183435887098312, 0.0038625558372586966, 0.01455832552164793, 0.043549928814172745, 0.024761255830526352, 0.0043188040144741535, 0.01665680669248104, 0.08850681781768799, -0.018394216895103455, -0.0059622847475111485, -0.0701175406575203, 0.05494340509176254, -0.0343390554189682, 0.020374732092022896, -0.14288511872291565, -0.020723577588796616, -0.05377528816461563, 0.026423798874020576, 0.02851581759750843, 0.17743921279907227, 0.04118747636675835, -0.00034956890158355236, 0.019731750711798668, 0.04125572368502617, 0.05329616367816925, 0.01007646881043911, -0.05881195515394211, -0.07963290065526962, -0.06243710592389107, -0.005593153648078442, 0.014154230244457722, -0.14865514636039734, 0.03285086154937744, -0.08928577601909637, 0.035332091152668, -0.08894873410463333, 0.04760962724685669, 0.008704785257577896, -0.02274959161877632, -0.03453700616955757, 0.05196721851825714, 0.12031020224094391, 0.004330862313508987, -0.1349981129169464, 0.15476731956005096, 0.007361660711467266, 0.26267167925834656, 0.11897850036621094, -0.09337479621171951, 0.06023779511451721, -0.10860542953014374, -0.05435706302523613, -0.008835440501570702, 0.025850636884570122, -0.023977821692824364, 0.1143883466720581, 0.05892810970544815, 0.07550936192274094, -0.05412080138921738, 0.025145212188363075, 0.015334201976656914, -0.09221348166465759, 0.06479353457689285, 0.11708240211009979, 0.2337423712015152, -0.18733631074428558, 0.06001490354537964, 0.16063494980335236, -0.01647816225886345, 0.10092990845441818, -0.04859618842601776, -0.0567537359893322, -0.028527963906526566, -0.04567904770374298, -0.03963299095630646, 0.13701145350933075, -0.21796010434627533, -0.012086098082363605, 0.10040450096130371, -0.04499609395861626, 0.08545846492052078, -0.11165329813957214, -0.06447100639343262, 0.0199249479919672, 0.012152343988418579, -0.07807701826095581, 0.12989546358585358, -0.07244746387004852, 0.05714298039674759, -0.04111730679869652, -0.0687706246972084, 0.005772060714662075, -0.00931520015001297, -0.09358406811952591, 0.1767626702785492, 0.008113461546599865, -0.09998522698879242, -0.1330280601978302, -0.05095670372247696, -0.03352826088666916, -0.026139963418245316, 0.04955390840768814, 0.059766802936792374, -0.05320427566766739, 0.028469035401940346, 0.020650755614042282, -0.04899054765701294, -0.0407090000808239, -0.00484428321942687, 0.001713862526230514, -0.06533285230398178, -0.1328742355108261, -0.057357024401426315, -0.014294040389358997, 0.0043642534874379635, 0.0318262092769146, -0.09056934714317322, 0.10261892527341843, 0.10141775012016296, 0.05523645877838135, 0.04318390414118767, 0.043700508773326874, 0.19340258836746216, -0.038200460374355316, 0.028258413076400757, 0.297003835439682, -0.0031188440043479204, 0.06563989073038101, 0.08274826407432556, 0.09820123016834259, -0.046780362725257874, -0.0041379076428711414, -0.07105208933353424, -0.07917217910289764, -0.163664311170578, -0.11505444347858429, -0.08233043551445007, -0.008636129088699818, -0.00926002487540245, 0.013732184655964375, 0.0638604611158371, 0.13980044424533844, 0.02240743301808834, -0.07278646528720856, -0.03131730481982231, 0.05397708714008331, 0.1089300587773323, -0.003329878207296133, 0.08144370466470718, -0.06942649185657501, -0.04157870635390282, 0.025022652000188828, 0.025764789432287216, 0.16422802209854126, 0.11214395612478256, 0.06650303304195404, 0.1428646743297577, 0.08928408473730087, 0.07227186113595963, 0.2090519666671753, -0.05210615321993828, -0.07470156997442245, -0.05850212648510933, -0.05322575941681862, -0.019972315058112144, 0.07498415559530258, -0.010737827979028225, -0.05676800385117531, -0.04533298686146736, -0.045585181564092636, 0.011142906732857227, 0.0952427089214325, 0.025188148021697998, -0.20371267199516296, -0.02813895046710968, -0.00046639758511446416, -0.03654816746711731, -0.03484664484858513, 0.04258889704942703, -0.028234219178557396, -0.1293109506368637, -0.025978101417422295, -0.04185914248228073, 0.1319160908460617, 0.08531510084867477, 0.06832022219896317, -0.0867159441113472, -0.05939963087439537, 0.011990186758339405, 0.14268150925636292, -0.1517096757888794, 0.28860002756118774, -0.009454666636884212, -0.02588067576289177, -0.12166577577590942, -0.05384260416030884, 0.0624893493950367, 0.19196519255638123, 0.14416314661502838, -0.014653466641902924, 0.04632013291120529, 0.08514481037855148, -0.09375287592411041, 0.10054808109998703, -0.03388850390911102, -0.12023186683654785, 0.02396353892982006, -0.04032330960035324, 0.005968201439827681, 0.0024798158556222916, 0.09296243637800217, -0.08455503731966019, -0.09042888134717941, 0.04412560164928436, -0.016566194593906403, -0.013872114941477776, -0.02106044813990593, -0.029690487310290337, 0.0260880496352911, 0.09393029659986496, -0.054581187665462494, -0.1055048480629921, -0.0485624335706234, -0.0948890969157219, 0.15498802065849304, -0.07578324526548386, 0.03632902726531029, -0.05369574949145317, 0.0010838349116966128, -0.07653326541185379, -0.10494963079690933, 0.0022772555239498615, -0.13304781913757324, -0.025926735252141953, 0.010017466731369495, 0.09906183928251266, -0.010877878405153751, 0.025111950933933258, 0.045758914202451706, -0.018233604729175568, -0.1591825783252716, -0.13416363298892975, -0.08350510895252228, 0.006844005081802607, 0.14951647818088531, -0.09272654354572296, -0.06407219171524048, 0.07859526574611664, 0.029956381767988205, -0.04919160529971123, 0.15652760863304138, 0.16034436225891113, -0.03027208335697651, 0.05362140014767647, 0.21704089641571045, -0.03154170513153076, -0.26958248019218445, -0.2018936276435852, -0.08155228942632675, 0.01708485372364521, 0.014729095622897148, -0.09708467870950699, 0.1573302149772644, 0.06405361741781235, -0.045787032693624496, 0.0643966794013977, -0.35401827096939087, -0.11728081852197647, 0.1896945983171463, 0.03427291288971901, 0.29907864332199097, -0.12560369074344635, 0.00785780604928732, -0.041570231318473816, -0.21922184526920319, 0.07771732658147812, -0.09324236214160919, 0.0276018138974905, -0.03682506084442139, 0.05704449862241745, -0.0027293022722005844, -0.09936592727899551, 0.18412627279758453, -0.020075498148798943, 0.002230661455541849, -0.041346415877342224, -0.11583533138036728, 0.0754658654332161, -0.009281681850552559, 0.13850851356983185, -0.11388232558965683, 0.030950279906392097, -0.1306629329919815, -0.05269242450594902, -0.04650456830859184, 0.07471024990081787, -0.018493834882974625, -0.0715993121266365, -0.02109673246741295, 0.02636955864727497, -0.044681280851364136, 0.019025031477212906, 0.09792038798332214, -0.06564677506685257, -0.021477732807397842, 0.09976048767566681, 0.2154349535703659, -0.17013616859912872, -0.08765650540590286, -0.05240655690431595, -0.031916841864585876, 0.08350367844104767, -0.15810279548168182, -0.01401605922728777, 0.13365501165390015, -0.000516365806106478, 0.007389902137219906, 0.06347999721765518, -0.03565491363406181, -0.008978238329291344, 0.1168072298169136, -0.1678980588912964, -0.1341344565153122, -0.07389607280492783, 0.035910677164793015, 0.0042602429166436195, 0.10924625396728516, 0.06841473281383514, -0.07070525735616684, -0.019632332026958466, 0.028355788439512253, 0.018782325088977814, -0.10191614180803299, 0.06594663113355637, 0.056087471544742584, 0.07218417525291443, -0.10325959324836731, 0.0027637940365821123, -0.018138563260436058, 0.003943216055631638, -0.08152240514755249, 0.0014610195066779852, -0.09328411519527435, -0.12554123997688293, -0.04496749863028526, 0.0481925792992115, -0.1700448989868164, -0.08781345188617706, -0.007555305026471615, -0.04062521457672119, -0.03324490413069725, 0.15530453622341156, 0.11713666468858719, 0.016047682613134384, -0.06414658576250076, -0.0778069868683815, -0.04535721242427826, -0.0038577094674110413, 0.05362981557846069, -0.03742346912622452, -0.08260736614465714, 0.004109569825232029, 0.006366363260895014, 0.09552368521690369, -0.07467049360275269, -0.012257641181349754, -0.09953365474939346, 0.05505340173840523, -0.12665671110153198, -0.052762214094400406, -0.15365011990070343, -0.05422673746943474, 0.008965177461504936, -0.0599394328892231, -0.05649437755346298, 0.0077014220878481865, -0.10557384788990021, 0.0599149614572525, 0.005235299933701754, 0.08884362131357193, -0.032721541821956635, 0.02698790840804577, 0.1347208470106125, -0.01638694852590561, 0.0479348823428154, 0.06555352360010147, -0.04708939045667648, 0.08980057388544083, -0.11169304698705673, 0.00950195174664259, 0.011795242317020893, 0.03781730309128761, 0.013042041100561619, -0.05011269077658653, 0.001045868848450482, 0.043562714010477066, 0.02909381128847599, 0.02155638113617897, -0.05849568173289299, -0.10506055504083633, 0.0036765600088983774, 0.032860882580280304, -0.045146394520998, 0.00413372740149498, -0.10591153055429459, 0.05731826648116112, 0.1240384578704834, 0.09824996441602707, 0.030466653406620026, 0.04082120582461357, -0.05210331827402115, 0.07134532183408737, -0.03914962708950043, -0.08346716314554214, 0.024733323603868484, -0.13969425857067108, -0.03246661648154259, -0.03809696063399315, 0.28489741683006287, -0.04289402812719345, 0.01372324489057064, -0.020672231912612915, 0.10004427284002304, 0.060167886316776276, -0.018337944522500038, 0.22023309767246246, 0.061439141631126404, 0.09354739636182785, -0.06845225393772125, 0.11620518565177917, -0.014284878969192505, -0.11614697426557541, 0.16697131097316742, 0.09441046416759491, 0.00147207488771528, 0.07443566620349884, 0.038376376032829285, -0.001294447691179812, -0.04743235558271408, -0.20551106333732605, 0.05591263622045517, 0.04865892231464386, -0.0585583820939064, 0.1495591402053833, 0.21807582676410675, -0.037511635571718216, -0.006237046327441931, 0.03051954135298729, -0.012551729567348957, -0.1376521736383438, -0.13004522025585175, -0.026052149012684822, -0.06555244326591492, -0.024645909667015076, -0.07289440184831619, -0.06287284195423126, 0.13430508971214294, 0.028852906078100204, -0.07350841164588928, 0.08260805904865265, 0.00971674732863903, -0.06838925927877426, -0.015952520072460175, -0.011401177383959293, 0.0019325156463310122, -0.05656365677714348, 0.014561338350176811, -0.11437633633613586, -0.02340434305369854, -0.021577265113592148, -0.011884958483278751, -0.05894370749592781, -0.02315681055188179, -0.03458012640476227, -0.027783310040831566, -0.09696659445762634, 0.024552132934331894, 0.0271591916680336, 0.052712272852659225, -0.012580431997776031, 0.007415781728923321, -0.004520467948168516, 0.12601540982723236, -0.0058258771896362305, -0.1803051233291626, -0.071387380361557, 0.24031490087509155, -0.008866969496011734, -0.014336111024022102, -0.005354784429073334, 0.035526543855667114, -0.005638924427330494, 0.33315637707710266, 0.28300741314888, -0.11630987375974655, 0.0003902047174051404, 0.03871709853410721, 0.026611480861902237, -0.002119306242093444, 0.12030444294214249, 0.015153869055211544, 0.2859842777252197, -0.0978982076048851, 0.009243052452802658, -0.09471448510885239, 0.020219527184963226, -0.06493768095970154, 0.02862589620053768, 0.06032001972198486, -0.08903350681066513, 0.013450196012854576, 0.1307094842195511, -0.12777549028396606, 0.0016000238247215748, -0.07114776968955994, -0.013228916563093662, -0.06097937375307083, -0.03396698459982872, 0.008222228847444057, -0.014391962438821793, 0.0941852554678917, -0.09084111452102661, -0.03352637216448784, 0.05589846521615982, 0.0310332253575325, -0.1470969319343567, 0.004259314853698015, 0.1747269183397293, 0.05443336069583893, 0.17247554659843445, -0.0178392194211483, 0.02502223290503025, 0.08571881800889969, -0.013684545643627644, -0.06935729831457138, 0.033870384097099304, 0.06152307987213135, -0.09038890153169632, 0.011777275241911411, -0.12020867317914963, 0.021214623004198074, -0.11092190444469452, -0.025060616433620453, -0.1898089349269867, 0.06412235647439957, 0.055281881242990494, 0.02527865767478943, -0.011055239476263523, 0.06335796415805817, -0.08155690133571625, 0.11801758408546448, 0.06871318817138672, -0.06230570003390312, -0.06141051650047302, -0.03262047469615936, 0.12213721871376038, 0.03982756659388542, -0.05163038894534111, -0.069801926612854, -0.04665648192167282, -0.011343070305883884, -0.05978687107563019, -0.0434630922973156, -0.09241411834955215, -0.031143682077527046, 0.0035641745198518038, 0.02216951921582222, -0.03687088564038277, -0.029111772775650024, 0.14148111641407013, 0.0003075604035984725, 0.01643615961074829, -0.06388973444700241, -0.03596032038331032, -0.019657421857118607, -0.1471194326877594, -0.12581485509872437 ]
null
null
transformers
# Rick And Morty DialoGPT Model
{"tags": ["conversational"]}
text-generation
ILoveThatLady/DialoGPT-small-rickandmorty
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Rick And Morty DialoGPT Model
[ "# Rick And Morty DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Rick And Morty DialoGPT Model" ]
[ 51, 10 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Rick And Morty DialoGPT Model" ]
[ -0.019738588482141495, 0.10522279888391495, -0.006120367906987667, 0.012500651180744171, 0.12812815606594086, 0.004961691331118345, 0.1319509744644165, 0.13446347415447235, -0.028565170243382454, -0.04022872820496559, 0.1406410187482834, 0.20827123522758484, -0.009941884316504002, 0.028347855433821678, -0.08017753809690475, -0.3313993215560913, 0.04348941892385483, 0.047947101294994354, -0.043724313378334045, 0.1133369728922844, 0.10036422312259674, -0.035492103546857834, 0.07414176315069199, 0.012631178833544254, -0.1204182505607605, 0.013700063340365887, 0.01544748805463314, -0.09855936467647552, 0.11408963054418564, 0.07680003345012665, 0.031069671735167503, 0.03595593571662903, -0.04141658544540405, -0.13471783697605133, 0.0483015775680542, -0.0018732890021055937, -0.04030444100499153, 0.06467270851135254, 0.007147439289838076, -0.0983726978302002, 0.13400223851203918, 0.11856021732091904, -0.0004382509214337915, 0.032116230577230453, -0.1553584337234497, -0.03241973742842674, -0.012522069737315178, 0.04482676088809967, 0.055998560041189194, 0.10961735248565674, -0.040330857038497925, 0.11653458327054977, -0.04585551470518112, 0.11466258019208908, 0.1281801164150238, -0.2771594524383545, -0.01395264733582735, 0.1388750821352005, 0.03770413249731064, 0.031066901981830597, -0.03837009146809578, 0.09151049703359604, 0.011221151798963547, -0.008678405545651913, -0.052554652094841, -0.07628628611564636, -0.06733499467372894, 0.038539059460163116, -0.08468019962310791, -0.0026103616692125797, 0.22357165813446045, -0.028949948027729988, 0.0944199189543724, -0.06358633190393448, -0.08425678312778473, 0.0018762038089334965, -0.043787699192762375, -0.0339905209839344, -0.09858155250549316, 0.08518880605697632, -0.041329097002744675, -0.08844710886478424, -0.10886112600564957, -0.02108004130423069, -0.15873408317565918, 0.15904515981674194, 0.03512100875377655, 0.0394117496907711, -0.21043212711811066, 0.0775952935218811, -0.03508935868740082, -0.10102274268865585, 0.027046535164117813, -0.08420387655496597, 0.003825790248811245, 0.012862931936979294, -0.03306077420711517, -0.011092728935182095, 0.09168786555528641, 0.11968350410461426, -0.0033150312956422567, 0.026417626067996025, -0.0361047238111496, 0.04730074852705002, 0.0462784618139267, 0.04652037471532822, -0.031196964904665947, -0.007992113940417767, 0.02423880249261856, -0.08980056643486023, -0.011381103657186031, -0.059280335903167725, -0.19375848770141602, 0.012027287855744362, 0.05620415508747101, 0.05459398031234741, 0.031171707436442375, 0.13405483961105347, -0.0015639326302334666, -0.047641053795814514, 0.030310627073049545, -0.017250580713152885, -0.01767853833734989, 0.028444258496165276, -0.008000865578651428, 0.1534334421157837, 0.023007456213235855, 0.058853551745414734, -0.11234313994646072, 0.013517851941287518, -0.03389458730816841, -0.007415127009153366, -0.03305928781628609, -0.058961160480976105, 0.004154816269874573, -0.0009531039395369589, 0.014989693649113178, -0.12700296938419342, -0.1548684686422348, -0.004221001639962196, 0.0050674001686275005, -0.054269786924123764, -0.10223192721605301, -0.10699420422315598, -0.02887442521750927, 0.044617634266614914, -0.054180219769477844, 0.032410915940999985, -0.04177575558423996, 0.09383848309516907, -0.03647596761584282, 0.07078101485967636, -0.08679381012916565, 0.0892498642206192, -0.06224953755736351, -0.04246620088815689, -0.06199692189693451, 0.12266141176223755, 0.012398877181112766, 0.045388516038656235, -0.0340651199221611, -0.01686898060142994, -0.1131809651851654, 0.06400838494300842, -0.0382540263235569, 0.22808504104614258, -0.08880666643381119, -0.09728752821683884, 0.22699183225631714, -0.04440829157829285, -0.12642869353294373, 0.12395276129245758, -0.035864733159542084, 0.09853506088256836, 0.11748968064785004, 0.16299383342266083, 0.03293953835964203, -0.0021475735120475292, 0.10921799391508102, 0.10859095305204391, -0.08008962869644165, 0.008241254836320877, 0.024919942021369934, -0.022934628650546074, -0.09404043853282928, 0.01597493514418602, 0.08112721890211105, 0.05024540424346924, -0.056344322860240936, -0.015129178762435913, 0.015532056801021099, -0.003977551124989986, 0.0663214772939682, -0.016026291996240616, 0.11635433882474899, -0.038281481713056564, -0.07635919749736786, -0.01417163759469986, 0.026916561648249626, -0.06699786335229874, 0.02705756388604641, -0.08145292103290558, 0.0282561294734478, -0.01784360222518444, 0.06651277095079422, -0.16751638054847717, -0.08881248533725739, -0.06044168025255203, 0.23380690813064575, 0.07453566789627075, 0.12108190357685089, 0.06290711462497711, -0.05873934552073479, -0.001996308797970414, 0.03932803124189377, 0.196698859333992, -0.00665499921888113, -0.07516632974147797, -0.11738240718841553, 0.10516174137592316, -0.07373596727848053, 0.0659790188074112, -0.04189909249544144, 0.0071686748415231705, 0.018764406442642212, 0.11129205673933029, -0.04153931885957718, 0.0406268872320652, 0.013567105866968632, -0.037794094532728195, -0.05803782865405083, 0.0015044193714857101, 0.09627079963684082, 0.000814993807580322, -0.10439809411764145, 0.2377234697341919, -0.2083909660577774, 0.1273326873779297, 0.18137988448143005, -0.22907742857933044, 0.009262957610189915, -0.10738691687583923, -0.018160421401262283, 0.010104704648256302, 0.04103565961122513, -0.03990855813026428, 0.24294598400592804, -0.014386971481144428, 0.17156563699245453, -0.0481581874191761, -0.05002357438206673, -0.044052399694919586, -0.05039215460419655, 0.0004277807893231511, 0.12309852242469788, 0.09310649335384369, -0.18418152630329132, 0.1746310442686081, 0.06640738248825073, 0.0363326221704483, 0.15903322398662567, 0.02515883557498455, 0.01994180679321289, 0.055738665163517, -0.0051321894861757755, -0.03403637558221817, -0.0784125030040741, -0.21583771705627441, -0.011134905740618706, 0.07537277042865753, 0.04368175193667412, 0.10588908195495605, -0.10206989198923111, -0.03329060971736908, -0.006605284754186869, -0.029483282938599586, 0.0373636856675148, 0.13520608842372894, 0.01624486781656742, 0.1208621934056282, -0.018707646057009697, -0.06620726734399796, 0.07377640902996063, 0.013840269297361374, -0.09196297824382782, 0.17834697663784027, -0.12323803454637527, -0.3415684103965759, -0.10106025636196136, -0.20021864771842957, -0.03663451969623566, 0.04309204965829849, 0.10773751884698868, -0.14435769617557526, -0.02755025587975979, 0.002104210900142789, 0.08434751629829407, -0.1378743201494217, 0.004818307235836983, -0.016729850322008133, -0.00874321162700653, -0.13727866113185883, -0.09502943605184555, -0.04628029465675354, -0.059924375265836716, -0.03265826404094696, 0.10461065918207169, -0.15958106517791748, 0.006849090568721294, 0.2302682101726532, 0.05110904201865196, 0.0706336721777916, -0.03790748119354248, 0.17854152619838715, -0.0846787765622139, 0.01526755839586258, 0.23982477188110352, -0.05581766739487648, 0.07352792471647263, 0.10512711852788925, -0.005678664892911911, -0.05227305740118027, 0.03776124492287636, 0.005811189766973257, -0.07772261649370193, -0.21666252613067627, -0.10450585186481476, -0.10937380790710449, 0.045104578137397766, 0.04952750355005264, 0.04444124549627304, 0.15879935026168823, 0.06540331989526749, -0.05256549268960953, -0.013546144589781761, 0.08386046439409256, 0.08422746509313583, 0.2500190734863281, -0.06650130450725555, 0.14750437438488007, -0.020619012415409088, -0.16545714437961578, 0.07480712234973907, 0.06259618699550629, 0.06960005313158035, 0.07035181671380997, 0.10700821876525879, 0.0024197904858738184, 0.018780404701828957, 0.12586332857608795, 0.05909685045480728, -0.00869628693908453, -0.03280365467071533, -0.047921620309352875, -0.042774613946676254, -0.019789621233940125, 0.042973343282938004, 0.054951779544353485, -0.1604076772928238, -0.020709292963147163, 0.018456073477864265, 0.04687914624810219, -0.0011619633296504617, 0.08589004725217819, -0.1897020936012268, -0.015737436711788177, 0.06513303518295288, -0.003322301898151636, -0.09410451352596283, 0.08272699266672134, -0.010224766097962856, -0.09870320558547974, 0.03902057185769081, -0.03365584462881088, 0.12926141917705536, -0.07520949095487595, 0.07275792956352234, -0.11234959959983826, -0.025922374799847603, -0.007423750590533018, 0.11861496418714523, -0.3024219274520874, 0.1720508337020874, -0.00424342043697834, -0.05025133490562439, -0.11199498176574707, -0.017104079946875572, 0.03810341656208038, 0.08933760970830917, 0.10616028308868408, -0.031879179179668427, -0.05801203101873398, 0.07624165713787079, -0.05277102813124657, 0.035683054476976395, 0.10061320662498474, -0.04564318433403969, -0.0159565731883049, -0.05611368268728256, 0.0025772086810320616, 0.02225656621158123, -0.10780056565999985, 0.011708775535225868, -0.1922687143087387, 0.07767168432474136, 0.07659437507390976, 0.07170083373785019, 0.041898082941770554, -0.029979731887578964, -0.12734204530715942, 0.27125284075737, 0.005500227678567171, -0.09932561963796616, -0.10999298095703125, 0.04279307648539543, 0.05637688934803009, -0.06809382140636444, -0.027591777965426445, -0.0773019939661026, 0.051338691264390945, -0.07196549326181412, -0.19758933782577515, 0.11246708035469055, -0.09849418699741364, -0.04915110394358635, -0.03987080976366997, 0.22793038189411163, -0.026359735056757927, 0.022099781781435013, 0.04095112159848213, -0.0004975974443368614, -0.128662571310997, -0.09564707428216934, 0.006704695522785187, -0.0019020559266209602, 0.026300618425011635, 0.019868403673171997, -0.04458758234977722, 0.0021208778489381075, -0.06752035766839981, -0.005664037540555, 0.31408780813217163, 0.11208795011043549, -0.045180175453424454, 0.15829865634441376, 0.10388781875371933, -0.0643082857131958, -0.2866746485233307, -0.11258458346128464, -0.07518996298313141, -0.055502090603113174, -0.08130361139774323, -0.18303565680980682, 0.08268210291862488, -0.041661523282527924, -0.008165720850229263, 0.04303259775042534, -0.26580318808555603, -0.093377485871315, 0.18841080367565155, -0.01960025727748871, 0.43231332302093506, -0.11039798706769943, -0.07402986288070679, -0.05543089285492897, -0.13610169291496277, 0.1895221620798111, -0.020743561908602715, 0.09504543989896774, 0.0036161106545478106, 0.20255248248577118, 0.05930137261748314, -0.0014203465543687344, 0.0733293890953064, 0.00914702657610178, -0.04656416177749634, -0.09066478163003922, -0.09339838474988937, -0.018530847504734993, 0.007944087497889996, 0.032774247229099274, -0.09096521884202957, 0.05114026740193367, -0.11179976910352707, -0.05786819010972977, -0.07272911071777344, 0.02686474658548832, 0.02422136254608631, -0.06413720548152924, -0.006990409456193447, -0.047689080238342285, -0.0012624486116692424, 0.008371862582862377, 0.2083287537097931, -0.11330064386129379, 0.1222454085946083, 0.043773140758275986, 0.1530260443687439, -0.0874684527516365, -0.032909493893384933, -0.04919169470667839, -0.05705055594444275, 0.06581226736307144, -0.12686239182949066, 0.043505970388650894, 0.10137496888637543, -0.030922478064894676, 0.08818995207548141, 0.11178284883499146, -0.027807950973510742, 0.0037881468888372183, 0.0740511417388916, -0.2383851557970047, -0.08705697953701019, -0.07776600867509842, 0.050930608063936234, 0.06068822741508484, 0.08842980861663818, 0.21759946644306183, 0.012445521540939808, -0.024028658866882324, 0.02769952081143856, 0.02964569628238678, -0.016256988048553467, 0.055956482887268066, 0.008578306064009666, 0.028449680656194687, -0.1462176889181137, 0.04584316164255142, -0.010608616285026073, -0.07531017810106277, 0.031132841482758522, 0.16434209048748016, -0.10310196131467819, -0.12152180820703506, -0.04805738478899002, 0.17116504907608032, -0.12919773161411285, -0.015542998909950256, -0.05348845571279526, -0.12507064640522003, 0.07970166206359863, 0.11358063668012619, 0.05066753551363945, 0.04491769149899483, -0.09647826850414276, -0.037556640803813934, -0.05376710742712021, 0.01959627866744995, 0.02081415243446827, -0.03255145251750946, -0.03668813779950142, 0.0266887117177248, -0.04024529829621315, 0.1125221699476242, -0.08899303525686264, -0.09791100770235062, -0.16653187572956085, 0.04092322289943695, -0.05183875933289528, -0.07968579977750778, -0.09491865336894989, -0.03741256147623062, 0.01320063415914774, -0.03363186866044998, -0.020245863124728203, -0.02392544597387314, -0.09668993949890137, 0.03664097189903259, -0.04706627130508423, -0.004117811098694801, -0.08330624550580978, 0.017479117959737778, 0.04991757869720459, -0.02377358451485634, 0.14427511394023895, 0.12368664145469666, -0.1172938346862793, 0.09786824882030487, -0.1661272943019867, -0.06946735084056854, 0.09561722725629807, 0.02433699741959572, 0.04204501584172249, 0.031155498698353767, 0.006665556691586971, 0.049687180668115616, 0.06029479578137398, 0.03813772648572922, 0.04328715428709984, -0.07169313728809357, 0.062380678951740265, -0.05938473343849182, -0.11487046629190445, -0.04140029847621918, -0.009432326070964336, 0.0015670013381168246, 0.07163850218057632, 0.1117386743426323, -0.04991377517580986, 0.09517436474561691, -0.052388496696949005, 0.04744070768356323, 0.029053274542093277, -0.16429369151592255, 0.009933680295944214, -0.08423558622598648, 0.052495189011096954, 0.004550590645521879, 0.16564662754535675, 0.027563631534576416, -0.03284747153520584, 0.028399614617228508, 0.051827482879161835, 0.061070408672094345, -0.008358526974916458, 0.18867884576320648, 0.0980774313211441, -0.044453203678131104, -0.09504766017198563, 0.08819779753684998, 0.04827674850821495, 0.04575951769948006, 0.13827753067016602, -0.019495980814099312, 0.012214853428304195, 0.07584299147129059, 0.01313996221870184, 0.018478158861398697, -0.07728811353445053, -0.09383171796798706, -0.013603277504444122, 0.024266768246889114, -0.03025894984602928, 0.11732363700866699, 0.16525648534297943, -0.0007025242084637284, 0.01317595411092043, -0.0181155763566494, -0.05634307861328125, -0.20081865787506104, -0.19270677864551544, -0.09408287703990936, -0.136435866355896, 0.0010738099226728082, -0.13701315224170685, 0.03702375665307045, 0.04212728887796402, 0.09936115890741348, -0.04204930365085602, 0.01607084833085537, 0.02936989814043045, -0.1059412807226181, 0.04157722741365433, -0.04645829647779465, 0.0925518125295639, -0.014460412785410881, 0.0055799647234380245, -0.04818853363394737, 0.026673216372728348, 0.020104704424738884, 0.037150170654058456, -0.015994196757674217, 0.020771387964487076, -0.11498860269784927, -0.09283115714788437, -0.05875677987933159, 0.05695800110697746, 0.0052931406535208225, 0.17900587618350983, 0.022687871009111404, -0.031839095056056976, 0.027440164238214493, 0.1948576718568802, -0.06191878020763397, -0.09892649203538895, -0.08185681700706482, 0.21261458098888397, -0.018394604325294495, 0.09397158771753311, -0.03481057658791542, 0.013361925259232521, -0.07089370489120483, 0.3319280445575714, 0.2959900200366974, -0.10584329813718796, 0.009668993763625622, -0.001509308349341154, 0.04140779748558998, 0.12930533289909363, 0.07590454816818237, 0.11735426634550095, 0.2581145167350769, -0.0663759857416153, -0.05751742422580719, -0.01371354702860117, -0.026088587939739227, -0.06214866787195206, 0.042368680238723755, 0.0489131323993206, -0.06908626854419708, -0.010379672050476074, 0.1230156347155571, -0.24683840572834015, 0.04919163137674332, -0.13843196630477905, -0.14819277822971344, -0.07222277671098709, 0.0031490279361605644, 0.09865697473287582, 0.008387699723243713, 0.08547738939523697, -0.012657656334340572, -0.0726812332868576, 0.04243016242980957, 0.02095651812851429, -0.216035395860672, 0.021814854815602303, 0.07425124198198318, -0.030049145221710205, -0.06784458458423615, -0.014109323732554913, 0.0846550241112709, 0.09479974210262299, 0.03257166966795921, -0.008066299371421337, 0.04493296518921852, -0.00036976434057578444, -0.06790339201688766, 0.03512891009449959, 0.019998669624328613, 0.015196138992905617, -0.05519351735711098, 0.07941567897796631, -0.17069514095783234, 0.023815972730517387, -0.03831242397427559, -0.06773658096790314, -0.007134115789085627, 0.0316154845058918, -0.06259669363498688, 0.08119215071201324, 0.08543501049280167, -0.011288600973784924, -0.015351654961705208, -0.019337981939315796, -0.01265628356486559, -0.03021564520895481, -0.06783336400985718, -0.09330721944570541, -0.1556696742773056, -0.12403053790330887, 0.08197387307882309, -0.007999398745596409, -0.20806816220283508, 0.013431215658783913, -0.1309669017791748, 0.045497164130210876, -0.10722782462835312, 0.0938316360116005, 0.08154952526092529, 0.021703077480196953, -0.0056320857256650925, 0.006083747837692499, 0.037672482430934906, 0.07765012234449387, -0.1307152360677719, -0.07936017215251923 ]
null
null
transformers
#Slovak RoBERTA Masked Language Model ###83Mil Parameters in small model Medium and Large models coming soon! RoBERTA pretrained tokenizer vocab and merges included. --- ##Training params: - **Dataset**: 8GB Slovak Monolingual dataset including ParaCrawl (monolingual), OSCAR, and several gigs of my own findings and cleaning. - **Preprocessing**: Tokenized with a pretrained ByteLevelBPETokenizer trained on the same dataset. Uncased, with s, pad, /s, unk, and mask special tokens. - **Evaluation results**: - Mnoho ľudí tu MASK - žije. - žijú. - je. - trpí. - Ako sa MASK - máte - máš - má - hovorí - Plážová sezóna pod Zoborom patrí medzi MASK obdobia. - ročné - najkrajšie - najobľúbenejšie - najnáročnejšie - **Limitations**: The current model is fairly small, although it works very well. This model is meant to be finetuned on downstream tasks e.g. Part-of-Speech tagging, Question Answering, anything in GLUE or SUPERGLUE. - **Credit**: If you use this or any of my models in research or professional work, please credit me - Christopher Brousseau in said work.
{}
fill-mask
IMJONEZZ/SlovenBERTcina
[ "transformers", "pytorch", "safetensors", "roberta", "fill-mask", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #safetensors #roberta #fill-mask #autotrain_compatible #endpoints_compatible #region-us
#Slovak RoBERTA Masked Language Model ###83Mil Parameters in small model Medium and Large models coming soon! RoBERTA pretrained tokenizer vocab and merges included. --- ##Training params: - Dataset: 8GB Slovak Monolingual dataset including ParaCrawl (monolingual), OSCAR, and several gigs of my own findings and cleaning. - Preprocessing: Tokenized with a pretrained ByteLevelBPETokenizer trained on the same dataset. Uncased, with s, pad, /s, unk, and mask special tokens. - Evaluation results: - Mnoho ľudí tu MASK - žije. - žijú. - je. - trpí. - Ako sa MASK - máte - máš - má - hovorí - Plážová sezóna pod Zoborom patrí medzi MASK obdobia. - ročné - najkrajšie - najobľúbenejšie - najnáročnejšie - Limitations: The current model is fairly small, although it works very well. This model is meant to be finetuned on downstream tasks e.g. Part-of-Speech tagging, Question Answering, anything in GLUE or SUPERGLUE. - Credit: If you use this or any of my models in research or professional work, please credit me - Christopher Brousseau in said work.
[]
[ "TAGS\n#transformers #pytorch #safetensors #roberta #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 42 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #roberta #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.0688251480460167, -0.0006219777278602123, -0.008977851830422878, 0.016062406823039055, 0.107199527323246, 0.009290448389947414, 0.1326877623796463, 0.06040089577436447, 0.05801795423030853, -0.0015195317100733519, 0.15865245461463928, 0.19646146893501282, -0.03707929328083992, 0.2128314971923828, -0.0636933371424675, -0.22736719250679016, 0.0831809863448143, 0.02399665117263794, -0.04596315324306488, 0.13289432227611542, 0.07743001729249954, -0.09078354388475418, 0.0527360662817955, -0.02064482681453228, -0.08989014476537704, 0.02641587145626545, 0.07978507876396179, -0.131717249751091, 0.13515058159828186, 0.003648138139396906, 0.23696967959403992, 0.0329892635345459, -0.0428297221660614, -0.08689593523740768, 0.058646947145462036, 0.009419716894626617, -0.07162898778915405, 0.045247264206409454, 0.012312451377511024, -0.0952560156583786, -0.028858594596385956, 0.023897429928183556, 0.04606865718960762, 0.04695940390229225, -0.13590773940086365, -0.15055418014526367, -0.018137050792574883, 0.03945290669798851, 0.06293665617704391, 0.07064250111579895, 0.013664761558175087, 0.23681387305259705, -0.1127508208155632, 0.10498198121786118, 0.13958081603050232, -0.29747292399406433, -0.01152300275862217, 0.05015658214688301, 0.08048558980226517, -0.04954744875431061, -0.03653336316347122, 0.05459093675017357, 0.02065996453166008, 0.013696311973035336, 0.06716012954711914, -0.06490619480609894, -0.07321973145008087, -0.019362011924386024, -0.07978556305170059, -0.04271140694618225, 0.12449634820222855, -0.050029631704092026, 0.023060845211148262, -0.024884890764951706, -0.13363070785999298, -0.007576487492769957, -0.02042660489678383, -0.01475053932517767, -0.04255635663866997, 0.020066484808921814, -0.039881251752376556, 0.007181993220001459, -0.11874480545520782, 0.011201693676412106, -0.20752952992916107, 0.2996160387992859, 0.026865923777222633, 0.06728407740592957, -0.1646410971879959, 0.04177381843328476, 0.003358201589435339, -0.13362184166908264, 0.05642756074666977, -0.1071522980928421, 0.03924284502863884, 0.0038877343758940697, -0.029814448207616806, -0.04734843596816063, 0.11512459814548492, 0.21394294500350952, 0.026571810245513916, 0.021820439025759697, 0.028108498081564903, 0.08810366690158844, -0.0027927905321121216, 0.06596379727125168, 0.02563805691897869, -0.023241594433784485, 0.08313966542482376, -0.06935924291610718, 0.0690278708934784, -0.04288124293088913, -0.0787995457649231, -0.030246542766690254, 0.041086263954639435, 0.1088138148188591, 0.03869536519050598, 0.05423571169376373, -0.09292128682136536, 0.029257358983159065, 0.10439173877239227, -0.08559732139110565, -0.014207343570888042, -0.01759207621216774, 0.07325529307126999, 0.047364406287670135, 0.030340086668729782, -0.01156437024474144, -0.008168106898665428, 0.12468189001083374, -0.07715177536010742, -0.04298538714647293, -0.04617367684841156, -0.056599896401166916, 0.027763713151216507, -0.10458268225193024, 0.040537770837545395, -0.206930473446846, -0.1462651491165161, 0.05532076209783554, 0.043738726526498795, 0.023577570915222168, -0.020184574648737907, 0.03890783339738846, -0.00874484982341528, -0.006991815287619829, -0.044706083834171295, -0.07091522961854935, -0.04514395073056221, 0.11232571303844452, 0.015658317133784294, 0.10528077930212021, -0.0777982845902443, 0.010684207081794739, -0.11341524869203568, 0.016014378517866135, -0.16240505874156952, -0.06330683082342148, -0.04187411442399025, 0.16276919841766357, 0.010246393270790577, -0.037461139261722565, -0.11326467245817184, 0.03330032154917717, -0.006152770482003689, 0.18608681857585907, -0.04071662575006485, -0.11029182374477386, 0.2646951973438263, -0.15657702088356018, -0.13690154254436493, 0.0860963985323906, 0.009122688323259354, -0.0057576983235776424, 0.06757233291864395, 0.08094562590122223, 0.03860408812761307, -0.14955967664718628, 0.06095769628882408, 0.09209023416042328, -0.1611911803483963, -0.11135231703519821, 0.017745625227689743, 0.0018904941389337182, -0.12247883528470993, 0.0410340391099453, 0.0897873044013977, 0.11386444419622421, -0.07747910171747208, -0.06999378651380539, -0.029918141663074493, -0.056157421320676804, 0.14125216007232666, 0.03649308532476425, 0.06930318474769592, -0.09963353723287582, -0.04323158040642738, -0.09411724656820297, 0.008646666072309017, 0.05785860866308212, 0.011921326629817486, -0.11069417744874954, 0.11718270927667618, -0.035843897610902786, 0.0005573738599196076, -0.15535257756710052, -0.153195321559906, -0.016895392909646034, 0.03642438352108002, -0.04854366183280945, 0.057937514036893845, 0.12380260229110718, -0.00011181021545780823, -0.017216209322214127, -0.04645795002579689, 0.09210273623466492, 0.03138435631990433, -0.0027514188550412655, -0.11111054569482803, 0.037421371787786484, -0.0892220288515091, 0.04393728822469711, 0.010283181443810463, 0.016323521733283997, 0.0004950435250066221, 0.1374184936285019, 0.01080115232616663, 0.033423565328121185, -0.04046564921736717, 0.022223934531211853, -0.025598395615816116, -0.001965498086065054, 0.07476434856653214, 0.0014406339032575488, -0.05923888832330704, 0.13430321216583252, -0.15225130319595337, 0.38713914155960083, 0.18093988299369812, -0.22953103482723236, -0.03764719143509865, 0.05116825923323631, -0.027407558634877205, 0.0073933652602136135, 0.02287248708307743, 0.004810950253158808, -0.01865869201719761, 0.004673311952501535, 0.13358916342258453, -0.022487031295895576, -0.024890096858143806, 0.043635763227939606, -0.08484487980604172, -0.03190680220723152, 0.02564266510307789, 0.054780054837465286, -0.11089853942394257, 0.1687205731868744, 0.23971906304359436, -0.007523845881223679, 0.13747845590114594, -0.0026165680028498173, 0.010958119295537472, 0.010664247907698154, -0.01725691184401512, -0.006481867749243975, 0.07005836814641953, -0.1239960640668869, -0.015148865059018135, 0.06297904998064041, -0.05033835023641586, 0.032147154211997986, -0.11893332749605179, -0.05839109793305397, 0.0035508563742041588, 0.04602736979722977, -0.04908382520079613, 0.12398181855678558, 0.02204352617263794, 0.09029968827962875, -0.02611580304801464, -0.1103406772017479, 0.09383521229028702, 0.00245275953784585, -0.03193211555480957, 0.17028820514678955, -0.10446375608444214, -0.3464675843715668, -0.1259882003068924, -0.12774357199668884, 0.02516629919409752, 0.04019615054130554, 0.058636318892240524, -0.09796301275491714, -0.07177054136991501, 0.0682084709405899, -0.005043081007897854, 0.03562590852379799, 0.07588322460651398, -0.03419438749551773, 0.033425360918045044, 0.005091528873890638, -0.07121611386537552, -0.06781496852636337, -0.038503941148519516, -0.04744443669915199, 0.16396194696426392, -0.04235904663801193, 0.0809316411614418, 0.11432496458292007, 0.0012378271203488111, 0.027840884402394295, -0.010946919210255146, 0.1599227488040924, -0.07578068971633911, 0.005515585653483868, 0.20724400877952576, -0.059252023696899414, 0.09972857683897018, 0.17700767517089844, 0.028870997950434685, -0.04296499863266945, 0.018551424145698547, -0.055706512182950974, -0.11921961605548859, -0.17289718985557556, -0.11158410459756851, -0.09002871811389923, -0.0055516003631055355, 0.03155292570590973, 0.05334706977009773, 0.1416819989681244, 0.11530177295207977, 0.019823599606752396, -0.06931319087743759, -0.031015805900096893, 0.04986131563782692, 0.12003350257873535, -0.018341857939958572, 0.14294087886810303, -0.0445069782435894, -0.1757907271385193, 0.049781061708927155, -0.014339353889226913, 0.11693016439676285, 0.0880466103553772, -0.05013655126094818, 0.05452413111925125, 0.1706349104642868, 0.15710151195526123, 0.1805204302072525, 0.03927961736917496, -0.07411108165979385, 0.009676824323832989, -0.01824476197361946, -0.05436078459024429, 0.004668451379984617, 0.05767247825860977, -0.058285366743803024, -0.031117094680666924, -0.09087805449962616, 0.07718160003423691, 0.11688245087862015, 0.0501069612801075, -0.2427925169467926, 0.0074403067119419575, 0.06104592606425285, 0.010644664987921715, -0.06283354759216309, 0.04722225293517113, -0.018410205841064453, -0.11335457116365433, 0.07663505524396896, -0.06961451470851898, 0.06052969768643379, 0.05981376767158508, 0.06980801373720169, -0.07291334867477417, -0.03583504632115364, 0.014538745395839214, 0.05307612195611, -0.21066462993621826, 0.27787938714027405, -0.008731366135179996, -0.004078966565430164, -0.06967110186815262, -0.004882844164967537, 0.057438503950834274, 0.11181603372097015, 0.1471492350101471, 0.019239328801631927, -0.042640406638383865, -0.12966156005859375, -0.03984291851520538, 0.044542256742715836, 0.08876435458660126, -0.005527072586119175, 0.004304515663534403, -0.03564295917749405, -0.04699314758181572, -0.002112128771841526, 0.02340524084866047, -0.0385478250682354, -0.10352825373411179, 0.05593708157539368, 0.0583610013127327, 0.016178064048290253, -0.04928440600633621, -0.06313423812389374, -0.09654681384563446, 0.17471195757389069, -0.0484326146543026, -0.06301755458116531, -0.10402138531208038, -0.12029380351305008, 0.0906924456357956, -0.10038914531469345, 0.12365206331014633, -0.08979000896215439, 0.0227696280926466, -0.10237706452608109, -0.16006512939929962, 0.13053953647613525, -0.14751577377319336, -0.04590624198317528, -0.07399910688400269, 0.16047577559947968, -0.05456206947565079, 0.013567314483225346, 0.011484915390610695, 0.03608345985412598, -0.08742481470108032, -0.0497378334403038, 0.025199690833687782, -0.07429742813110352, 0.04325621947646141, 0.054578687995672226, -0.05533887445926666, -0.12304601818323135, 0.006209481041878462, 0.026294395327568054, 0.1943604201078415, 0.2771334946155548, -0.0486922562122345, 0.11734589189291, 0.20023834705352783, 0.00994977168738842, -0.34405654668807983, -0.13089178502559662, -0.14237752556800842, -0.012246720492839813, 0.02961466833949089, -0.07376152276992798, 0.10872874408960342, 0.005023897159844637, -0.07435531169176102, 0.11933901906013489, -0.13693319261074066, -0.0926717072725296, 0.24763408303260803, 0.03487536311149597, 0.46856287121772766, -0.11937931180000305, -0.04748120903968811, -0.03427453711628914, -0.0915013924241066, 0.0324133038520813, -0.04207684472203255, 0.06873893737792969, -0.01158691756427288, 0.03162335976958275, 0.0327749140560627, -0.09997168928384781, 0.10008327662944794, -0.07803241908550262, 0.03347526863217354, -0.10799343883991241, -0.07165541499853134, 0.11102275550365448, -0.0043715531937778, -0.0014464337145909667, -0.008712195791304111, 0.02369030937552452, 0.028963135555386543, -0.029879385605454445, -0.08703889697790146, 0.12468701601028442, 0.025782128795981407, -0.07377615571022034, 0.04348239675164223, -0.011057124473154545, -0.03217460587620735, -0.01672946661710739, 0.1929038017988205, 0.004056375473737717, 0.21974478662014008, 0.09365689009428024, 0.042503856122493744, -0.1200207844376564, -0.027849243953824043, -0.03244537487626076, -0.0955234095454216, 0.07935938984155655, 0.018465716391801834, 0.055734921246767044, 0.08323386311531067, -0.007944685406982899, 0.03765840455889702, 0.10141787678003311, 0.007455390878021717, -0.029081737622618675, 0.17868104577064514, -0.23860225081443787, 0.011583268642425537, -0.004838151857256889, 0.00384862395003438, 0.04024059697985649, 0.09525461494922638, 0.1023617833852768, 0.029329271987080574, -0.04179186373949051, -0.02279057912528515, 0.01067307498306036, -0.060275450348854065, 0.0723762959241867, 0.07140426337718964, 0.06617273390293121, -0.1139318123459816, 0.0016795189585536718, -0.030260629951953888, -0.16257520020008087, -0.028657520189881325, 0.06757321208715439, -0.12481003999710083, -0.11039397865533829, 0.01371186226606369, 0.08227931708097458, -0.05491776019334793, -0.04936935752630234, -0.09326868504285812, -0.1333298683166504, 0.02520179934799671, 0.24295537173748016, 0.10754555463790894, 0.08063920587301254, 0.026035599410533905, -0.00930735468864441, -0.028910141438245773, 0.014930606819689274, 0.029536133632063866, 0.02968282252550125, -0.11068468540906906, 0.020151183009147644, 0.0005312743596732616, 0.12716573476791382, -0.11579538136720657, -0.0348488874733448, -0.1602787971496582, 0.03679540753364563, -0.04914093017578125, -0.07634355127811432, -0.09182701259851456, -0.06435422599315643, 0.0054199229925870895, -0.06719081103801727, -0.04067748412489891, -0.029460789635777473, -0.09341930598020554, 0.043434690684080124, 0.043024469166994095, -0.03261801227927208, -0.09196880459785461, -0.05036372318863869, 0.12147179991006851, -0.0518278107047081, 0.08237647265195847, 0.1296815127134323, -0.07424261420965195, 0.08181357383728027, -0.16238614916801453, -0.10176516324281693, 0.11024286597967148, -0.0010352354729548097, 0.05713340640068054, 0.052967142313718796, 0.02467094361782074, 0.05374768003821373, 0.027874615043401718, 0.04975787550210953, 0.0672139897942543, -0.11410431563854218, 0.10611274838447571, 0.024332774803042412, -0.17593923211097717, -0.02476082742214203, -0.11788693815469742, 0.07900475710630417, -0.04151597619056702, 0.15114019811153412, -0.05968455225229263, 0.08940088003873825, -0.06256740540266037, 0.026371417567133904, -0.03228489309549332, -0.16128042340278625, -0.04073919355869293, -0.020588424056768417, 0.004760523326694965, -0.009928334504365921, 0.21964116394519806, -0.01724170334637165, 0.008178074844181538, 0.04715742915868759, 0.058323197066783905, 0.011437716893851757, 0.01226725522428751, 0.1351718306541443, 0.06987974047660828, -0.051175717264413834, -0.08483447879552841, 0.053636904805898666, 0.01643437147140503, -0.14209318161010742, 0.11375506967306137, 0.08563282340765, 0.04509470611810684, 0.08045034110546112, 0.017236821353435516, 0.045946914702653885, -0.08998570591211319, -0.22730939090251923, -0.06151463836431503, 0.009942760691046715, 0.044349391013383865, -0.01188048068434, 0.18757560849189758, 0.014865344390273094, 0.03246641159057617, -0.03184039518237114, -0.009588652290403843, -0.1962994635105133, -0.10682153701782227, -0.08970396220684052, -0.044044189155101776, 0.03794223815202713, -0.021908139809966087, -0.05430839955806732, 0.0972302183508873, 0.030880749225616455, -0.024846548214554787, 0.18594205379486084, 0.016331827268004417, 0.012787791900336742, 0.021319715306162834, 0.012808633036911488, 0.010594449937343597, 0.043500371277332306, -0.035239532589912415, -0.1601358950138092, 0.007052420172840357, -0.052134472876787186, -0.006543252617120743, -0.09636235237121582, 0.03597145527601242, -0.09118634462356567, -0.1218310222029686, -0.06243554502725601, 0.03594132512807846, -0.03617075830698013, 0.059506457298994064, -0.010642040520906448, 0.04763888195157051, 0.0201286431401968, 0.1349562555551529, -0.048453353345394135, -0.15274065732955933, -0.05100299045443535, 0.17701692879199982, 0.022324077785015106, 0.09128759056329727, -0.011590758338570595, 0.02056429535150528, -0.06949435919523239, 0.2920604348182678, 0.3091326653957367, -0.025553744286298752, 0.09547238796949387, 0.016072168946266174, 0.02998320199549198, 0.03373197466135025, 0.10352040082216263, 0.09161051362752914, 0.29790550470352173, -0.08114448189735413, -0.025506330654025078, -0.04841962456703186, -0.029307257384061813, -0.13417719304561615, -0.009733080863952637, 0.014419588260352612, -0.00890540424734354, -0.06487515568733215, 0.08193706721067429, -0.1444881409406662, 0.112643301486969, 0.07179682701826096, -0.19154706597328186, -0.04973611235618591, -0.01681424304842949, 0.17391452193260193, 0.02009991742670536, 0.09472446888685226, -0.03980322927236557, -0.0814620852470398, 0.010553027503192425, 0.02547893300652504, -0.16823089122772217, -0.06515674293041229, 0.0797896683216095, 0.005974937230348587, 0.1305229663848877, -0.020956432446837425, 0.02883455716073513, 0.08777786046266556, 0.023830696940422058, -0.03404496982693672, 0.07159103453159332, 0.026214104145765305, -0.11450250446796417, -0.042458537966012955, 0.008912011981010437, -0.0018211461137980223, -0.10276545584201813, 0.020372914150357246, -0.14524897933006287, 0.034636374562978745, -0.07989880442619324, -0.04103260114789009, -0.008193403482437134, 0.08703237771987915, -0.030989376828074455, 0.04809832572937012, 0.047750964760780334, 0.009180465713143349, -0.015037352219223976, -0.04807599261403084, 0.019667912274599075, 0.0668729618191719, -0.10455524176359177, -0.13590572774410248, -0.11254703253507614, -0.039686936885118484, 0.04806091636419296, -0.008270339109003544, -0.16902868449687958, -0.04859336093068123, -0.13280287384986877, 0.01657620258629322, -0.17883232235908508, 0.014348543249070644, 0.07266537100076675, 0.05465002730488777, 0.02939320169389248, -0.02748057432472706, 0.03074190393090248, 0.04932467266917229, -0.15602757036685944, -0.09359626471996307 ]
null
null
transformers
# Hate Speech Classifier for Social Media Content in English Language A monolingual model for hate speech classification of social media content in English language. The model was trained on 103190 YouTube comments and tested on an independent test set of 20554 YouTube comments. It is based on English BERT base pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. https://link.springer.com/chapter/10.1007/978-3-031-08974-9_54 ## Tokenizer During training the text was preprocessed using the original English BERT base tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent Details on data acquisition and labeling including the Annotation guidelines: http://imsypp.ijs.si/wp-content/uploads/2021/12/IMSyPP_D2.2_multilingual-dataset.pdf
{"language": ["en"], "license": "mit", "widget": [{"text": "My name is Mark and I live in London. I am a postgraduate student at Queen Mary University."}]}
text-classification
IMSyPP/hate_speech_en
[ "transformers", "pytorch", "bert", "text-classification", "en", "license:mit", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #text-classification #en #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us
# Hate Speech Classifier for Social Media Content in English Language A monolingual model for hate speech classification of social media content in English language. The model was trained on 103190 YouTube comments and tested on an independent test set of 20554 YouTube comments. It is based on English BERT base pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. URL ## Tokenizer During training the text was preprocessed using the original English BERT base tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent Details on data acquisition and labeling including the Annotation guidelines: URL
[ "# Hate Speech Classifier for Social Media Content in English Language\n\nA monolingual model for hate speech classification of social media content in English language. The model was trained on 103190 YouTube comments and tested on an independent test set of 20554 YouTube comments. It is based on English BERT base pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original English BERT base tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent\n\n\nDetails on data acquisition and labeling including the Annotation guidelines: \nURL" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #en #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "# Hate Speech Classifier for Social Media Content in English Language\n\nA monolingual model for hate speech classification of social media content in English language. The model was trained on 103190 YouTube comments and tested on an independent test set of 20554 YouTube comments. It is based on English BERT base pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original English BERT base tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent\n\n\nDetails on data acquisition and labeling including the Annotation guidelines: \nURL" ]
[ 47, 70, 97, 36, 51 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #en #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us \n# Hate Speech Classifier for Social Media Content in English Language\n\nA monolingual model for hate speech classification of social media content in English language. The model was trained on 103190 YouTube comments and tested on an independent test set of 20554 YouTube comments. It is based on English BERT base pre-trained language model.## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL## Tokenizer\n\nDuring training the text was preprocessed using the original English BERT base tokenizer. We suggest the same tokenizer is used for inference.## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent\n\n\nDetails on data acquisition and labeling including the Annotation guidelines: \nURL" ]
[ -0.005059394519776106, 0.10795153677463531, -0.002367636188864708, 0.06571268290281296, 0.07175552099943161, -0.04325404763221741, 0.14472045004367828, 0.07002594321966171, -0.0483054555952549, 0.007850494235754013, 0.01546879205852747, 0.07732877880334854, 0.02796979621052742, 0.08634976297616959, -0.06710358709096909, -0.1928166151046753, 0.05765655264258385, 0.0010392038384452462, 0.07674198597669601, 0.1057484894990921, 0.19033409655094147, -0.09015105664730072, 0.03670365363359451, -0.007919960655272007, -0.0848778784275055, -0.009418487548828125, 0.01564774289727211, -0.07168752700090408, 0.09809176623821259, 0.005675151478499174, 0.11975900083780289, 0.06587672233581543, 0.05996837094426155, -0.12438031286001205, 0.03559606522321701, 0.06558884680271149, 0.01018373854458332, -0.002823637565597892, 0.11462647467851639, -0.023769978433847427, 0.11394263803958893, -0.06308376044034958, 0.08486256748437881, 0.07011961936950684, -0.11293802410364151, -0.10936867445707321, -0.1361546516418457, 0.1847032606601715, 0.11642373353242874, 0.05048554390668869, -0.056748099625110626, 0.12656651437282562, -0.03178279474377632, 0.09810713678598404, 0.08767136186361313, -0.1672927290201187, -0.06510495394468307, 0.009338107891380787, 0.07011301815509796, 0.10208573192358017, -0.10382958501577377, 0.03346720710396767, 0.09384644776582718, -0.001892782631330192, 0.010187249630689621, -0.07776186615228653, 0.013499358668923378, -0.06551359593868256, -0.14715337753295898, -0.06854654103517532, 0.1373441219329834, 0.03521238639950752, -0.07526260614395142, -0.10833898931741714, -0.014696079306304455, 0.027092698961496353, 0.04565753415226936, -0.037895459681749344, -0.010478131473064423, -0.008493716828525066, 0.03406999632716179, -0.036868367344141006, -0.08128469437360764, 0.01817215234041214, -0.0035501958336681128, 0.2494821846485138, 0.02271738275885582, 0.02079564332962036, -0.043242499232292175, 0.002205197000876069, -0.046549562364816666, -0.09100417047739029, 0.020834902301430702, -0.06352259963750839, -0.03850436955690384, -0.05322645977139473, -0.07223164290189743, -0.16854418814182281, 0.013551382347941399, -0.04644104093313217, -0.07141892611980438, 0.03470151126384735, -0.13018369674682617, 0.02201688662171364, 0.17110846936702728, 0.07732125371694565, -0.05821984261274338, 0.05559563264250755, 0.03976455330848694, 0.1106206476688385, 0.036273907870054245, -0.011405260302126408, -0.026890208944678307, 0.005481539759784937, 0.10385382920503616, 0.08490133285522461, -0.0027612734120339155, 0.11010946333408356, -0.0881233736872673, -0.045081593096256256, -0.04810505732893944, -0.1297244429588318, 0.029614653438329697, 0.09647859632968903, -0.005879645701497793, 0.0021189784165471792, -0.026187419891357422, 0.013559715822339058, -0.06448708474636078, 0.018289927393198013, -0.03549862653017044, 0.018423551693558693, -0.08931692689657211, -0.12701691687107086, 0.05688488483428955, -0.02824382670223713, -0.08369249105453491, -0.07578598707914352, -0.06285712122917175, -0.030724847689270973, 0.02197856642305851, 0.02294175885617733, -0.040528710931539536, -0.08730389177799225, 0.01214329618960619, 0.012031975202262402, -0.028698481619358063, -0.08473610877990723, -0.030951522290706635, 0.07572003453969955, -0.11384459584951401, 0.021561237052083015, 0.045224837958812714, 0.01510162279009819, -0.028549768030643463, 0.051252905279397964, -0.05235486850142479, 0.07821076363325119, -0.12041130661964417, -0.031222403049468994, -0.04835887998342514, -0.05438521131873131, 0.0241574514657259, 0.04954461380839348, 0.005834575742483139, 0.15417197346687317, -0.22116504609584808, -0.0007803761400282383, 0.11801858246326447, -0.17686933279037476, -0.007225110195577145, 0.15780918300151825, -0.10509978979825974, -0.04472644254565239, 0.11398661136627197, 0.1537199318408966, -0.12146863341331482, -0.11442210525274277, 0.003694256069138646, -0.017374476417899132, -0.053628984838724136, 0.14892032742500305, 0.03209737315773964, -0.04775739088654518, -0.03951183706521988, -0.05951636657118797, 0.010683282278478146, -0.042272649705410004, -0.01590874418616295, -0.05035915598273277, -0.016900641843676567, -0.0155158881098032, 0.1538069099187851, 0.006433418020606041, -0.0749235674738884, -0.05692781135439873, -0.09740255773067474, 0.0157548226416111, 0.10979314148426056, -0.05009292811155319, 0.03124220110476017, -0.08847843110561371, 0.083312027156353, 0.0021920152939856052, -0.01789659634232521, -0.14085787534713745, -0.057660412043333054, 0.019754964858293533, -0.021587111055850983, 0.0818566307425499, 0.11353406310081482, -0.011781326495110989, 0.008338848128914833, -0.03591223433613777, -0.004443288780748844, -0.04539689049124718, 0.044595349580049515, -0.06883423775434494, -0.1319982260465622, 0.009844710119068623, -0.060652825981378555, 0.0976707860827446, -0.18294286727905273, 0.005368833430111408, 0.1624680459499359, 0.04477546736598015, -0.013357536867260933, -0.002244052244350314, 0.10382196307182312, 0.029314035549759865, -0.008364237844944, -0.044427480548620224, 0.07865753769874573, 0.01727646216750145, -0.014317832887172699, 0.10373585671186447, -0.14100030064582825, -0.0975046455860138, 0.09370817244052887, -0.06698441505432129, -0.0738353431224823, -0.014093728736042976, -0.0282403863966465, 0.040400415658950806, -0.027961213141679764, 0.0072343009524047375, 0.1637711375951767, 0.010987325571477413, 0.10734698176383972, -0.1478513926267624, -0.03784143552184105, -0.021529683843255043, -0.08329948782920837, -0.1073712706565857, 0.08177731186151505, -0.023212172091007233, -0.2581216096878052, 0.09046096354722977, 0.10324664413928986, -0.08070547878742218, 0.18390516936779022, -0.024774180725216866, 0.002010955708101392, -0.017624376341700554, 0.01211597677320242, -0.00995626114308834, 0.09226094186306, -0.03809477761387825, -0.0018843415891751647, 0.00835883617401123, -0.014447826892137527, 0.01535419188439846, -0.11538662761449814, 0.02521340176463127, -0.016611799597740173, -0.03786464035511017, -0.08791141957044601, -0.011514618061482906, 0.06021175906062126, 0.12649783492088318, -0.0099282655864954, -0.06355473399162292, 0.04836181178689003, -0.05829676613211632, -0.14014315605163574, 0.13298603892326355, -0.14741647243499756, -0.15994253754615784, -0.012464866042137146, 0.013262007385492325, -0.1530866026878357, 0.016569683328270912, -0.005994563922286034, -0.11843758076429367, -0.04782011732459068, -0.07412891834974289, -0.04295652359724045, -0.0643191859126091, -0.05596793815493584, 0.04222062975168228, 0.014927046373486519, -0.016445690765976906, -0.13021646440029144, -0.026212116703391075, -0.03161102905869484, -0.06321735680103302, 0.045206084847450256, -0.058628249913454056, 0.03825220465660095, 0.18258731067180634, -0.03688874840736389, -0.0040728310123085976, -0.05563408508896828, 0.10918688774108887, -0.09066867083311081, 0.008703995496034622, 0.10266582667827606, -0.15579572319984436, 0.06530778855085373, 0.11697784066200256, -0.00541132315993309, -0.06714903563261032, 0.04836805909872055, 0.033039722591638565, 0.010220389813184738, -0.18599240481853485, -0.08223195374011993, -0.015902312472462654, -0.010728847235441208, 0.07599957287311554, 0.0158963855355978, 0.02307993732392788, 0.02547038346529007, -0.04386771097779274, -0.09697770327329636, 0.1829836517572403, 0.07789324223995209, 0.11564579606056213, -0.006391774397343397, 0.06446244567632675, -0.03221636638045311, 0.008565199561417103, 0.09113136678934097, -0.03649331256747246, 0.18926794826984406, -0.024016646668314934, 0.0575258694589138, 0.12769325077533722, 0.042655132710933685, 0.07209853082895279, 0.04129352048039436, -0.01796558126807213, 0.027486342936754227, -0.039248790591955185, -0.04961807280778885, -0.10267336666584015, 0.01801740750670433, 0.06907032430171967, -0.004088388290256262, -0.04946598410606384, -0.10933829098939896, 0.10417363792657852, 0.28647175431251526, 0.02223876304924488, -0.14476552605628967, -0.012450160458683968, 0.06560741364955902, -0.026181023567914963, -0.0323653407394886, 0.06132534518837929, 0.04781481623649597, -0.12944598495960236, 0.1261463314294815, -0.030238982290029526, 0.06776760518550873, -0.08669300377368927, -0.0001647913595661521, -0.0652972161769867, -0.002268350450322032, -0.05027902126312256, 0.09706170111894608, -0.2531440258026123, 0.23675017058849335, 0.027719572186470032, 0.055747490376234055, -0.10291243344545364, -0.046468913555145264, 0.0673588439822197, 0.13195109367370605, 0.1120966374874115, -0.0017191508086398244, -0.029973791912198067, -0.08935057371854782, -0.017237618565559387, -0.0011326385429129004, 0.06421039998531342, 0.05524922534823418, 0.07249860465526581, -0.04129095748066902, 0.03193150833249092, -0.0013850429095327854, -0.003510931972414255, -0.1773853898048401, -0.12318500876426697, 0.021075161173939705, -0.05406191572546959, 0.014277593232691288, -0.0969705730676651, -0.10238851606845856, -0.04879756271839142, 0.2167309820652008, -0.027479084208607674, -0.10726039111614227, -0.13576366007328033, -0.024025151506066322, 0.0000324640168400947, -0.03296806663274765, -0.0383436344563961, -0.011953511275351048, 0.17858827114105225, -0.1630868762731552, -0.056781891733407974, 0.05854025110602379, -0.07810685783624649, -0.15440893173217773, -0.03469103202223778, 0.11798183619976044, 0.12850916385650635, 0.05099717527627945, 0.09653164446353912, 0.013162299990653992, 0.059970956295728683, -0.1020406037569046, -0.03966199979186058, 0.10277032107114792, 0.06740644574165344, 0.029506560415029526, -0.07488173991441727, -0.20970988273620605, -0.13977885246276855, -0.048443179577589035, 0.14969037473201752, 0.23191507160663605, -0.0034412506502121687, 0.08272726833820343, 0.18679873645305634, -0.10771521180868149, -0.2416473776102066, -0.01922060176730156, 0.06469941139221191, -0.05017104744911194, 0.01821209117770195, -0.05842789635062218, -0.059822503477334976, 0.025753438472747803, 0.0035891656298190355, -0.07256119698286057, -0.14555718004703522, -0.09602774679660797, 0.13733261823654175, 0.13999280333518982, 0.13286498188972473, -0.06049342453479767, -0.013721942901611328, -0.05633389949798584, 0.02101970836520195, 0.1931593269109726, -0.04430533945560455, 0.04865902289748192, 0.07017218321561813, 0.025445306673645973, 0.0391702726483345, -0.02508693002164364, 0.10275491327047348, 0.014439777471125126, 0.11718124896287918, -0.13711141049861908, -0.1462513506412506, 0.06631139665842056, -0.04955166205763817, 0.0364270843565464, 0.0018754125339910388, -0.0050258943811059, -0.1712990552186966, -0.07267242670059204, -0.1104012280702591, 0.049405064433813095, -0.07553231716156006, -0.06644196808338165, -0.07214207202196121, 0.094072125852108, 0.06861705332994461, -0.026661133393645287, 0.08504685759544373, -0.1049153208732605, 0.06605114042758942, 0.15885357558727264, 0.24367770552635193, 0.051246050745248795, -0.001989794196560979, -0.00846310704946518, -0.04095977172255516, 0.026582343503832817, -0.044119928032159805, 0.013831714168190956, 0.0496232844889164, 0.0009699970833025873, 0.17002680897712708, 0.02363862656056881, -0.07535410672426224, 0.07149986922740936, 0.019375145435333252, -0.11624082177877426, -0.07461502403020859, 0.007131599821150303, 0.06200274080038071, -0.09123688191175461, -0.09540306776762009, 0.18873849511146545, -0.021097710356116295, -0.010682504624128342, -0.018555333837866783, 0.05893387645483017, -0.025228599086403847, -0.0070739262737333775, 0.08777208626270294, 0.0511137992143631, -0.04498469829559326, 0.12066347151994705, 0.08654115349054337, -0.08688984811306, 0.07165688276290894, 0.09676260501146317, -0.11003877222537994, -0.05974839627742767, -0.010842259973287582, 0.1269669234752655, 0.02289961278438568, -0.0897669866681099, -0.027102848514914513, -0.11331807076931, -0.022428588941693306, 0.17683975398540497, 0.02911350317299366, 0.06791737675666809, -0.040527958422899246, -0.015596536919474602, -0.046044375747442245, 0.0920804813504219, 0.040612854063510895, -0.030326563864946365, -0.03493087366223335, 0.1781691014766693, 0.001843731733970344, 0.058404989540576935, -0.04482536017894745, -0.04959968477487564, -0.0950891450047493, 0.0006486038328148425, -0.08655133098363876, 0.028088225051760674, -0.08646288514137268, 0.04323558509349823, -0.028534425422549248, -0.03934444487094879, 0.004318741615861654, 0.026432910934090614, -0.08737791329622269, 0.04198400303721428, 0.040516339242458344, 0.06287825852632523, -0.149237260222435, -0.04756930097937584, 0.05383696407079697, -0.04041113331913948, 0.08339803665876389, 0.025826899334788322, -0.07292209565639496, 0.07068207859992981, -0.18611256778240204, -0.00883042998611927, -0.027551889419555664, -0.015887558460235596, -0.021812576800584793, -0.11909296363592148, 0.029883764684200287, 0.03429016098380089, 0.002979581942781806, 0.050406720489263535, 0.08714013546705246, -0.018835928291082382, 0.03126158565282822, 0.08700467646121979, -0.11077947914600372, -0.01430869847536087, 0.06365742534399033, 0.10908908396959305, 0.023430567234754562, 0.18288584053516388, -0.08470503240823746, 0.025590773671865463, -0.1033378466963768, 0.01408696174621582, 0.024208396673202515, -0.034666597843170166, -0.09799918532371521, -0.049245331436395645, 0.039590802043676376, -0.03626694902777672, 0.06532119959592819, 0.034441422671079636, -0.08579476922750473, 0.08337679505348206, -0.05061420798301697, -0.09182842820882797, 0.04609520733356476, 0.08886399865150452, -0.07150831818580627, -0.021485336124897003, 0.0032089995220303535, -0.04759301245212555, -0.003204692853614688, -0.05501643195748329, 0.1526588797569275, 0.15169674158096313, 0.07127207517623901, 0.02942577563226223, 0.04344119876623154, 0.00013374081754591316, -0.019452346488833427, 0.06163269653916359, -0.01483884733170271, 0.04912028834223747, -0.09909266978502274, 0.07291265577077866, 0.1460246741771698, -0.11575861275196075, 0.03597871959209442, -0.005997347179800272, -0.09678372740745544, -0.1031690165400505, -0.23304033279418945, -0.0831344723701477, -0.0003968982200603932, 0.05787946656346321, -0.1154862567782402, 0.08562348037958145, 0.08181099593639374, 0.07668610662221909, -0.06278981268405914, 0.01695488765835762, -0.10867693275213242, -0.08900746703147888, 0.14078406989574432, -0.012429027818143368, 0.02430064231157303, -0.01513320580124855, -0.0122380331158638, 0.026534080505371094, -0.04639589786529541, 0.03980634734034538, 0.06890451908111572, 0.0637509822845459, 0.009827830828726292, -0.04844272881746292, -0.06425429880619049, 0.045638103038072586, 0.004858237691223621, 0.11806729435920715, 0.20968294143676758, 0.07694407552480698, -0.005623681005090475, 0.012928904965519905, 0.06919696182012558, 0.021542862057685852, -0.09996943175792694, -0.11993182450532913, 0.14896120131015778, -0.04647773131728172, 0.014263475313782692, 0.02759772166609764, -0.08245968818664551, 0.031783416867256165, 0.13428182899951935, 0.1091221496462822, -0.08896371722221375, 0.03412214294075966, -0.10697131603956223, 0.023833295330405235, 0.03188249096274376, 0.06181131675839424, -0.0030639716424047947, 0.09010887145996094, -0.07580359280109406, 0.07899715006351471, -0.02220148779451847, 0.02275737002491951, -0.03415381535887718, 0.10125844180583954, -0.012863913550972939, -0.025647718459367752, -0.07999563962221146, 0.11355729401111603, 0.028624005615711212, -0.15549539029598236, -0.07715853303670883, -0.05547046661376953, -0.08588872849941254, 0.04513856768608093, -0.04121581092476845, 0.03873245045542717, 0.08218443393707275, 0.03355701267719269, -0.044759366661310196, 0.11029766499996185, 0.01227022334933281, -0.040027372539043427, -0.060732580721378326, 0.14045412838459015, 0.023894572630524635, 0.128623828291893, 0.024888185784220695, 0.1487685889005661, 0.0739133358001709, -0.05388163402676582, -0.03922439366579056, 0.10635347664356232, 0.03943746164441109, 0.04191827028989792, -0.04164033383131027, 0.08114814013242722, -0.009560531005263329, 0.05851731821894646, 0.059787143021821976, -0.04643843322992325, 0.09565640985965729, -0.06947224587202072, -0.10455518215894699, -0.0905531495809555, 0.14809325337409973, -0.1185750812292099, 0.12594832479953766, 0.13928475975990295, -0.0174716729670763, -0.014076492749154568, -0.05254411697387695, 0.007935598492622375, -0.07222284376621246, 0.01940673589706421, 0.012464846484363079, -0.1487613022327423, -0.00621754489839077, -0.09565654397010803, 0.05018077418208122, -0.1168249174952507, -0.0014331457205116749, -0.07710088044404984, -0.023983625695109367, -0.03609989210963249, 0.049402058124542236, -0.0014358412008732557, -0.02614235319197178, -0.00009442498412681744, -0.10338803380727768, 0.02575284242630005, 0.09534649550914764, -0.03666915372014046, 0.0011553153162822127 ]
null
null
transformers
# Hate Speech Classifier for Social Media Content in Italian Language A monolingual model for hate speech classification of social media content in Italian language. The model was trained on 119,670 YouTube comments and tested on an independent test set of 21,072 YouTube comments. It is based on Italian ALBERTO pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. https://link.springer.com/chapter/10.1007/978-3-031-08974-9_54 ## Tokenizer During training the text was preprocessed using the original Italian ALBERTO tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
{"language": ["it"], "license": "mit", "widget": [{"text": "Ciao, mi chiamo Marcantonio, sono di Roma. Studio informatica all'Universit\u00e0 di Roma."}]}
text-classification
IMSyPP/hate_speech_it
[ "transformers", "pytorch", "bert", "text-classification", "it", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "it" ]
TAGS #transformers #pytorch #bert #text-classification #it #license-mit #autotrain_compatible #endpoints_compatible #region-us
# Hate Speech Classifier for Social Media Content in Italian Language A monolingual model for hate speech classification of social media content in Italian language. The model was trained on 119,670 YouTube comments and tested on an independent test set of 21,072 YouTube comments. It is based on Italian ALBERTO pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. URL ## Tokenizer During training the text was preprocessed using the original Italian ALBERTO tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
[ "# Hate Speech Classifier for Social Media Content in Italian Language\n\nA monolingual model for hate speech classification of social media content in Italian language. The model was trained on 119,670 YouTube comments and tested on an independent test set of 21,072 YouTube comments. It is based on Italian ALBERTO pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original Italian ALBERTO tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n\n* 0 - acceptable\n\n* 1 - inappropriate\n\n* 2 - offensive\n\n* 3 - violent" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #it #license-mit #autotrain_compatible #endpoints_compatible #region-us \n", "# Hate Speech Classifier for Social Media Content in Italian Language\n\nA monolingual model for hate speech classification of social media content in Italian language. The model was trained on 119,670 YouTube comments and tested on an independent test set of 21,072 YouTube comments. It is based on Italian ALBERTO pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original Italian ALBERTO tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n\n* 0 - acceptable\n\n* 1 - inappropriate\n\n* 2 - offensive\n\n* 3 - violent" ]
[ 43, 72, 97, 36, 36 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #it #license-mit #autotrain_compatible #endpoints_compatible #region-us \n# Hate Speech Classifier for Social Media Content in Italian Language\n\nA monolingual model for hate speech classification of social media content in Italian language. The model was trained on 119,670 YouTube comments and tested on an independent test set of 21,072 YouTube comments. It is based on Italian ALBERTO pre-trained language model.## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL## Tokenizer\n\nDuring training the text was preprocessed using the original Italian ALBERTO tokenizer. We suggest the same tokenizer is used for inference.## Model output\n\nThe model classifies each input into one of four distinct classes:\n\n* 0 - acceptable\n\n* 1 - inappropriate\n\n* 2 - offensive\n\n* 3 - violent" ]
[ -0.018123846501111984, 0.07766526937484741, -0.002761959098279476, 0.04723672941327095, 0.07504807412624359, -0.04187069088220596, 0.188335582613945, 0.10686273872852325, 0.030291743576526642, 0.020441874861717224, 0.0013785025803372264, 0.07990284264087677, 0.025085540488362312, 0.05828462168574333, -0.09112200886011124, -0.18484441936016083, 0.06363549083471298, -0.007546508219093084, 0.10911611467599869, 0.10932210832834244, 0.18435059487819672, -0.06022253260016441, 0.02778560295701027, -0.008972566574811935, -0.10154209285974503, 0.019695062190294266, 0.03973384201526642, -0.07800368219614029, 0.10022787749767303, 0.034433476626873016, 0.11195604503154755, 0.08804546296596527, 0.03183498606085777, -0.1413683444261551, 0.032392967492341995, 0.06914258748292923, 0.005910944193601608, -0.03762441873550415, 0.14399173855781555, -0.05659426003694534, 0.14080096781253815, -0.02496623620390892, 0.03495408594608307, 0.07889185845851898, -0.11258514970541, -0.06057662516832352, -0.11804144084453583, 0.1689632534980774, 0.08256552368402481, 0.048617154359817505, -0.07285554707050323, 0.1560598611831665, -0.07871080189943314, 0.09444132447242737, 0.0746428519487381, -0.17411014437675476, -0.06872235983610153, -0.025619590654969215, 0.03763212636113167, 0.11222313344478607, -0.08271150290966034, 0.0624859593808651, 0.07989133149385452, -0.020976005122065544, -0.06006662920117378, -0.09381022304296494, 0.05070404335856438, -0.0861785039305687, -0.1534525454044342, -0.06036930903792381, 0.15401145815849304, 0.0266773272305727, -0.08438186347484589, -0.11559183150529861, -0.02268066070973873, 0.06022556126117706, 0.05002521723508835, -0.06948284804821014, -0.029148858040571213, 0.013815720565617085, 0.0898253470659256, -0.020738819614052773, -0.0854499563574791, -0.009645008482038975, 0.004654074087738991, 0.3405756652355194, 0.03993453085422516, 0.005327857099473476, -0.027052581310272217, 0.013767302967607975, -0.08580732345581055, -0.09287431836128235, 0.04154210165143013, -0.06119100749492645, -0.029285456985235214, -0.026761380955576897, -0.08888833969831467, -0.19644777476787567, 0.045901305973529816, -0.011103454977273941, -0.03838447853922844, 0.03781217709183693, -0.10331706702709198, 0.059966620057821274, 0.1274755597114563, 0.08771810680627823, -0.06833893805742264, 0.038497768342494965, 0.023128822445869446, 0.09844254702329636, 0.05054990202188492, -0.0032582536805421114, -0.04974517226219177, -0.028974782675504684, 0.07563409209251404, 0.08792082965373993, 0.008651914075016975, 0.11095834523439407, -0.09787662327289581, -0.049895886331796646, -0.07422205805778503, -0.12613704800605774, 0.0310053750872612, 0.0977153331041336, -0.04359877109527588, 0.08061379194259644, -0.04005298390984535, 0.017677970230579376, -0.0884368047118187, 0.02800622023642063, -0.015091432258486748, 0.02713818848133087, -0.07823602110147476, -0.11162444949150085, 0.06024201959371567, -0.07926864922046661, -0.07492515444755554, -0.10758212208747864, -0.007492606993764639, -0.04114289581775665, 0.011760304681956768, -0.010385289788246155, 0.0014782192884013057, -0.08309441804885864, 0.03172080218791962, 0.0064315712079405785, -0.022282050922513008, -0.13643041253089905, -0.0372093990445137, 0.08708306401968002, -0.096299909055233, 0.024583440274000168, 0.011867033317685127, 0.006959883961826563, -0.04042753577232361, 0.0402049757540226, -0.07670862227678299, 0.059692807495594025, -0.1115359514951706, -0.029865393415093422, -0.06965464353561401, -0.04449678584933281, -0.005097225774079561, 0.06309767812490463, 0.03582387790083885, 0.18386614322662354, -0.18793869018554688, -0.003106719348579645, 0.12279612571001053, -0.1873404085636139, -0.009470726363360882, 0.2059844732284546, -0.056721899658441544, -0.007999888621270657, 0.10010579228401184, 0.17949238419532776, -0.09118808805942535, -0.12832345068454742, 0.010500443167984486, -0.028572089970111847, -0.06250716745853424, 0.15487457811832428, 0.02163773588836193, -0.031788915395736694, 0.0012470291694626212, -0.05160821974277496, 0.0031171177979558706, -0.0318743996322155, -0.008169670589268208, -0.053930703550577164, -0.025224938988685608, -0.011003229767084122, 0.16350558400154114, 0.009092511609196663, -0.05765627697110176, -0.07889711856842041, -0.12507668137550354, -0.08768071234226227, 0.10897441953420639, -0.057221632450819016, 0.037489499896764755, -0.09870586544275284, 0.1462223082780838, 0.030421853065490723, -0.008836898021399975, -0.11753004789352417, -0.018200017511844635, 0.036037977784872055, -0.01044332142919302, 0.0785805806517601, 0.12197140604257584, -0.009653653018176556, -0.0034399093128740788, -0.033601392060518265, -0.00789146963506937, -0.009244284592568874, 0.028425196185708046, -0.03519801050424576, -0.1467326432466507, 0.03361580893397331, -0.03848227858543396, 0.14636638760566711, -0.16532860696315765, 0.01228173729032278, 0.17526431381702423, 0.059949882328510284, -0.050799258053302765, 0.028469879180192947, 0.05534027889370918, 0.040158338844776154, -0.01930103451013565, -0.03910183906555176, 0.1049295961856842, 0.016811691224575043, -0.041405025869607925, 0.1125512421131134, -0.17808371782302856, -0.11861288547515869, 0.08780042082071304, -0.11812101304531097, -0.0848207101225853, -0.0429525263607502, -0.026540571823716164, 0.02427802048623562, 0.0009732205653563142, 0.018995914608240128, 0.17314375936985016, 0.006063103210180998, 0.08279182016849518, -0.15425783395767212, -0.014823148027062416, 0.0013937863986939192, -0.1111554279923439, -0.08514317125082016, 0.07937996834516525, 0.0028862932231277227, -0.2600565254688263, 0.10046258568763733, 0.13457606732845306, -0.11625904589891434, 0.2019180804491043, -0.0179583840072155, -0.007100528106093407, -0.0138004245236516, 0.07688484340906143, -0.001078131957910955, 0.0630219578742981, -0.08606375008821487, -0.01498512364923954, -0.01427968218922615, -0.011574848555028439, 0.034367453306913376, -0.12276006489992142, 0.02976713888347149, -0.019232144579291344, -0.043440140783786774, -0.05818865820765495, 0.015862036496400833, 0.02583872154355049, 0.12977775931358337, -0.017077099531888962, -0.1161491647362709, 0.03863207623362541, -0.06251027435064316, -0.139193594455719, 0.11981798708438873, -0.11947771161794662, -0.13621234893798828, -0.00553841283544898, 0.03434792906045914, -0.17316250503063202, 0.03286566957831383, 0.014522654004395008, -0.10676088184118271, -0.02969866432249546, -0.038638319820165634, -0.04977796971797943, -0.04293682798743248, -0.04671267420053482, -0.026705767959356308, 0.021580537781119347, -0.011966957710683346, -0.10008985549211502, -0.051895711570978165, -0.03855004161596298, -0.09462006390094757, 0.033627789467573166, -0.1140756607055664, 0.07796300202608109, 0.17706604301929474, -0.02672097086906433, 0.005631508771330118, -0.05291244760155678, 0.0843164324760437, -0.12108990550041199, -0.005253964569419622, 0.13130758702754974, -0.15391747653484344, 0.06324945390224457, 0.11527518182992935, 0.00009948445222107694, -0.07327792793512344, 0.03070785664021969, 0.03196844458580017, 0.008150193840265274, -0.17453381419181824, -0.10061082988977432, -0.025452852249145508, -0.01473995391279459, 0.04398183524608612, 0.008102123625576496, 0.06448257714509964, 0.042241137474775314, -0.07635382562875748, -0.13044247031211853, 0.17562666535377502, 0.08293662965297699, 0.12852256000041962, -0.00444667786359787, 0.08132032305002213, -0.024123843759298325, -0.013567809946835041, 0.09920401126146317, -0.005696566309779882, 0.17036889493465424, -0.007808989379554987, 0.0975615531206131, 0.1283840388059616, 0.04717143252491951, 0.06806689500808716, 0.01716272346675396, -0.005945286713540554, 0.00846632570028305, -0.020832031965255737, -0.05587727949023247, -0.10780572146177292, 0.03547670692205429, 0.08661375939846039, -0.03388049080967903, -0.047022368758916855, -0.08697716891765594, 0.14453375339508057, 0.3036678731441498, 0.015527056530117989, -0.1314397007226944, 0.016991235315799713, 0.04610729590058327, -0.002970566274598241, -0.03051098808646202, 0.0515119731426239, 0.07070618122816086, -0.12508638203144073, 0.1252680867910385, -0.020051201805472374, 0.06611552834510803, -0.12600208818912506, -0.0001101412417483516, -0.07060015201568604, -0.024323783814907074, -0.051315754652023315, 0.10465845465660095, -0.2490149885416031, 0.25132670998573303, 0.0423009917140007, 0.05626951903104782, -0.12421295046806335, -0.046588823199272156, 0.06607671082019806, 0.1740570068359375, 0.12930716574192047, 0.002811878453940153, -0.027499109506607056, -0.1075277030467987, -0.026568269357085228, -0.00857012439519167, 0.13104930520057678, 0.06187397614121437, 0.06240105256438255, -0.05056917294859886, 0.027451099827885628, -0.009242034517228603, 0.025853952392935753, -0.1606360822916031, -0.11939852684736252, 0.038541559129953384, 0.008820824325084686, -0.02718031220138073, -0.07060953229665756, -0.07950345426797867, -0.030197739601135254, 0.19477984309196472, -0.057337723672389984, -0.08113572746515274, -0.12449223548173904, -0.03312275931239128, -0.03821096941828728, -0.033334095031023026, -0.05347364768385887, -0.021187491714954376, 0.1226220428943634, -0.16203539073467255, -0.016634812578558922, 0.09392146021127701, -0.07689329981803894, -0.13853983581066132, -0.045102763921022415, 0.12424924969673157, 0.11021625250577927, 0.043794672936201096, 0.10303701460361481, 0.0004896316677331924, 0.07767844200134277, -0.09720668941736221, -0.05080147832632065, 0.05758187919855118, 0.036523014307022095, 0.027522142976522446, -0.0917881578207016, -0.1505739390850067, -0.16453012824058533, -0.04648576304316521, 0.1572025865316391, 0.22792963683605194, -0.009540590457618237, 0.03453851491212845, 0.18486317992210388, -0.11769366264343262, -0.24279743432998657, -0.015562670305371284, 0.06418904662132263, -0.05150275304913521, -0.03593217954039574, -0.04762459918856621, -0.09091509133577347, 0.05148293450474739, 0.007544497959315777, -0.032801318913698196, -0.1815360188484192, -0.08182821422815323, 0.09933587163686752, 0.11597104370594025, 0.20272104442119598, -0.07265553623437881, -0.017728107050061226, -0.04342423751950264, 0.07485376298427582, 0.10664544999599457, -0.04875985532999039, 0.06686810404062271, 0.07220394164323807, -0.026952246204018593, 0.05485418066382408, -0.016280068084597588, 0.1205795630812645, 0.019290225580334663, 0.10117438435554504, -0.1424494981765747, -0.09982243925333023, 0.05549486726522446, -0.02463419735431671, 0.034570012241601944, -0.040170956403017044, -0.035756565630435944, -0.14114777743816376, -0.07427549362182617, -0.1006283089518547, 0.06381069123744965, -0.07599692046642303, -0.06194644421339035, -0.04167277738451958, 0.08170128613710403, 0.05685960128903389, -0.0052676997147500515, 0.03723478317260742, -0.14189709722995758, 0.07849300652742386, 0.19754044711589813, 0.21969392895698547, 0.043896015733480453, -0.02632971480488777, 0.0030243434011936188, -0.016779057681560516, 0.03379252180457115, -0.013104659505188465, 0.012799110263586044, 0.054881274700164795, -0.022352399304509163, 0.16249191761016846, 0.028477370738983154, -0.07819478213787079, 0.05792369320988655, 0.048654377460479736, -0.126336932182312, -0.07037578523159027, -0.009239492006599903, 0.07105036079883575, -0.03275501728057861, -0.07055634260177612, 0.19625942409038544, -0.029955117031931877, -0.0034223259426653385, -0.02638351358473301, 0.036395251750946045, -0.03761989623308182, 0.01754462905228138, 0.07097888737916946, 0.019716482609510422, -0.02979205548763275, 0.12506860494613647, 0.05916380509734154, -0.10862796753644943, 0.042511168867349625, 0.10214606672525406, -0.11186101287603378, -0.06488852947950363, 0.00009257359488401562, 0.11222317814826965, 0.0029684449546039104, -0.12789195775985718, -0.08529220521450043, -0.10341096669435501, -0.04891287907958031, 0.15481840074062347, 0.04707906022667885, 0.045760173350572586, -0.034018829464912415, -0.0418119914829731, -0.03971901163458824, 0.0772278755903244, 0.06988842785358429, -0.03312929719686508, -0.029176168143749237, 0.13283956050872803, 0.022704098373651505, 0.01554340310394764, -0.04409744217991829, -0.06665834784507751, -0.09444128721952438, 0.01565173827111721, -0.07908619195222855, 0.015264506451785564, -0.07542529702186584, 0.03422434255480766, -0.025189805775880814, -0.03659245744347572, -0.015337121672928333, 0.011448186822235584, -0.10377578437328339, 0.047263484448194504, 0.03577348589897156, 0.06282395869493484, -0.11641990393400192, -0.03064270317554474, 0.04763086885213852, -0.061126478016376495, 0.07932618260383606, 0.049112580716609955, -0.0875515341758728, 0.06314563006162643, -0.18930575251579285, 0.012668483890593052, -0.026585711166262627, -0.007204657886177301, -0.03558531403541565, -0.09331575036048889, 0.05316287279129028, 0.06517650932073593, 0.00023635126126464456, 0.040201336145401, 0.0927996039390564, -0.02369099110364914, 0.07337100803852081, 0.10626281052827835, -0.14248442649841309, -0.017214281484484673, 0.07621171325445175, 0.09873757511377335, 0.04949376732110977, 0.18073569238185883, -0.10401017218828201, 0.03780698776245117, -0.06711389869451523, 0.018011486157774925, 0.05273642763495445, -0.04853443428874016, -0.055587977170944214, -0.05962497740983963, 0.031100427731871605, -0.017466813325881958, 0.04136480391025543, 0.03293316438794136, -0.005247165914624929, 0.07943113893270493, -0.03657202422618866, -0.0854354053735733, 0.04345952346920967, 0.05239875242114067, -0.060167018324136734, -0.00492396904155612, -0.04000561684370041, -0.030924111604690552, 0.0011248127557337284, -0.015968700870871544, 0.12678708136081696, 0.15847361087799072, 0.04776638001203537, 0.059525225311517715, 0.0674438551068306, 0.013334512710571289, -0.02576032467186451, 0.0645342543721199, -0.04358713701367378, 0.06172499433159828, -0.11166216433048248, 0.07428563386201859, 0.16007518768310547, -0.10201039165258408, 0.014498736709356308, -0.010444976389408112, -0.10100308805704117, -0.13422618806362152, -0.26533573865890503, -0.0752832219004631, -0.04329259321093559, 0.055431876331567764, -0.08799789100885391, 0.10070165991783142, 0.04715471714735031, 0.09209585189819336, -0.09468778222799301, 0.05274372920393944, -0.11031267791986465, -0.1106673926115036, 0.15558815002441406, -0.021945184096693993, 0.06555676460266113, -0.029477715492248535, -0.03159716725349426, -0.0056900642812252045, -0.05724798142910004, 0.038856200873851776, 0.07763805985450745, 0.04603132978081703, -0.022188179194927216, -0.07241559028625488, -0.050478070974349976, 0.037628885358572006, -0.005542344879359007, 0.09992203861474991, 0.20153367519378662, 0.05073801428079605, -0.0060998741537332535, 0.008811595849692822, 0.07195503264665604, 0.0256212055683136, -0.09602143615484238, -0.1231912150979042, 0.15560895204544067, -0.03510420769453049, 0.04224981740117073, -0.011146154254674911, -0.09349551051855087, 0.02693924494087696, 0.1428084671497345, 0.11336928606033325, -0.07477440685033798, 0.040315039455890656, -0.1032705307006836, 0.041258394718170166, 0.051754046231508255, 0.05305520445108414, -0.03766969218850136, 0.09750646352767944, -0.07001069188117981, 0.10554231703281403, -0.037936437875032425, 0.015354680828750134, -0.03450978174805641, 0.14823555946350098, 0.0017473888583481312, -0.029196951538324356, -0.10797592252492905, 0.1331232488155365, 0.05607873573899269, -0.09287483990192413, -0.041430216282606125, -0.10016069561243057, -0.07113228738307953, 0.030355064198374748, -0.029213882982730865, 0.036498356610536575, 0.1324484795331955, 0.00631339056417346, -0.07023368030786514, 0.06401701271533966, 0.014016710221767426, -0.0574008971452713, -0.10281461477279663, 0.10704309493303299, 0.017231468111276627, 0.12304969131946564, 0.02126050740480423, 0.15921202301979065, 0.08942383527755737, -0.022214876487851143, -0.017155522480607033, 0.11008147895336151, 0.0470321960747242, 0.010391755029559135, -0.047647204250097275, 0.06087322160601616, -0.03437104448676109, 0.05509175360202789, 0.054858360439538956, -0.0800674632191658, 0.12841811776161194, -0.098504438996315, -0.11139141768217087, -0.10022296756505966, 0.1533828228712082, -0.12187584489583969, 0.13088738918304443, 0.1418163925409317, -0.005625260528177023, -0.026301022619009018, -0.056238699704408646, -0.00031766833853907883, -0.0379612110555172, 0.0021320986561477184, 0.0035569053143262863, -0.18019349873065948, -0.001894197310321033, -0.07956519722938538, 0.06668394804000854, -0.0775824710726738, 0.001690542558208108, -0.06928867101669312, 0.00237105181440711, -0.06033884361386299, 0.03788602724671364, -0.00012374005746096373, -0.02186724543571472, -0.006451531313359737, -0.2058877795934677, 0.03323054686188698, 0.08668708056211472, -0.02186369150876999, -0.012970587238669395 ]
null
null
transformers
# Hate Speech Classifier for Social Media Content in Dutch A monolingual model for hate speech classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on thepre-trained language model [BERTje](https://huggingface.co/wietsedv/bert-base-dutch-cased). ## Tokenizer During training the text was preprocessed using the BERTje tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
{"language": ["nl"], "license": "mit"}
text-classification
IMSyPP/hate_speech_nl
[ "transformers", "pytorch", "bert", "text-classification", "nl", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "nl" ]
TAGS #transformers #pytorch #bert #text-classification #nl #license-mit #autotrain_compatible #endpoints_compatible #region-us
# Hate Speech Classifier for Social Media Content in Dutch A monolingual model for hate speech classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on thepre-trained language model BERTje. ## Tokenizer During training the text was preprocessed using the BERTje tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
[ "# Hate Speech Classifier for Social Media Content in Dutch\n\nA monolingual model for hate speech classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on thepre-trained language model BERTje.", "## Tokenizer\n\nDuring training the text was preprocessed using the BERTje tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #nl #license-mit #autotrain_compatible #endpoints_compatible #region-us \n", "# Hate Speech Classifier for Social Media Content in Dutch\n\nA monolingual model for hate speech classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on thepre-trained language model BERTje.", "## Tokenizer\n\nDuring training the text was preprocessed using the BERTje tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ 43, 74, 34, 36 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #nl #license-mit #autotrain_compatible #endpoints_compatible #region-us \n# Hate Speech Classifier for Social Media Content in Dutch\n\nA monolingual model for hate speech classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on thepre-trained language model BERTje.## Tokenizer\n\nDuring training the text was preprocessed using the BERTje tokenizer. We suggest the same tokenizer is used for inference.## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ -0.018114499747753143, -0.04588284343481064, -0.002575149293988943, 0.06062249094247818, 0.04953495040535927, -0.07350874692201614, 0.18993869423866272, 0.05826412886381149, 0.09239859133958817, -0.06884898245334625, 0.13915954530239105, 0.06428954005241394, -0.03238203376531601, 0.09523464739322662, -0.05471052601933479, -0.22522766888141632, 0.10116815567016602, 0.021552199497818947, 0.07747313380241394, 0.14290593564510345, 0.15818899869918823, -0.053972695022821426, 0.054365374147892, 0.07623246312141418, -0.14273425936698914, 0.05186126008629799, 0.0377117283642292, -0.10186181217432022, 0.10391651093959808, -0.012434126809239388, 0.07092180103063583, 0.08327081054449081, 0.04032500833272934, -0.005920943804085255, 0.027017904445528984, -0.01599382422864437, -0.004715168848633766, -0.010833505541086197, 0.08015306293964386, -0.12743611633777618, 0.17704181373119354, 0.050832491368055344, 0.06255429238080978, 0.04043945297598839, -0.1133403405547142, -0.14897580444812775, -0.019051065668463707, 0.10140851885080338, 0.09384938329458237, 0.061214037239551544, -0.07917306572198868, 0.12462618201971054, -0.12590718269348145, 0.14382998645305634, 0.07308635115623474, -0.13156571984291077, -0.05635198950767517, -0.004096196498721838, 0.05811367556452751, 0.06072840467095375, -0.06190776452422142, 0.06359197944402695, 0.06756053119897842, 0.061431173235177994, 0.053463589400053024, -0.13196438550949097, 0.006107789929956198, -0.053934577852487564, -0.17646200954914093, -0.012639014050364494, 0.09818786382675171, 0.04644246771931648, -0.04336748644709587, -0.0922236442565918, 0.02117462083697319, 0.1048138439655304, 0.0006948534864932299, -0.08231595158576965, -0.06336034834384918, -0.008281157352030277, -0.002247057855129242, 0.024660618975758553, -0.017290830612182617, -0.033898256719112396, -0.048068586736917496, 0.2529466152191162, -0.006480874959379435, 0.05297884717583656, -0.07198776304721832, -0.0037413351237773895, -0.0797664150595665, -0.10272004455327988, 0.034847088158130646, -0.08242546766996384, -0.013515817932784557, 0.012070626951754093, -0.07626119256019592, -0.17489226162433624, 0.035645853728055954, -0.08120434731245041, 0.009345697239041328, 0.03049474023282528, -0.08173669129610062, 0.03601132705807686, 0.14685998857021332, 0.09866418689489365, -0.04098643735051155, 0.05790208280086517, 0.005350146442651749, 0.05768781900405884, -0.012020970694720745, 0.012757956981658936, -0.0861157700419426, 0.04556431621313095, 0.13171112537384033, 0.034947268664836884, -0.04793689772486687, 0.1459486335515976, -0.0917399600148201, -0.04439350962638855, 0.0020658252760767937, -0.06761432439088821, 0.04392172768712044, 0.06461688876152039, -0.036104585975408554, 0.061785370111465454, -0.027294181287288666, -0.011083695106208324, -0.05672478675842285, -0.023279543966054916, 0.004962011706084013, 0.029673349112272263, -0.07204990088939667, -0.18819767236709595, 0.009302970953285694, 0.015931300818920135, -0.06364037841558456, -0.13835227489471436, -0.16406556963920593, -0.055945154279470444, 0.0034506956581026316, -0.009457993321120739, 0.025613605976104736, -0.15109820663928986, -0.017979012802243233, 0.031349629163742065, -0.04787978157401085, -0.14892080426216125, -0.03826103359460831, 0.04072387143969536, -0.09198576211929321, 0.06360582262277603, -0.017994211986660957, 0.02514556609094143, -0.08960194885730743, 0.052789732813835144, -0.16656973958015442, 0.11982143670320511, -0.12051040679216385, 0.011511417105793953, -0.033500924706459045, -0.10686922818422318, 0.018593013286590576, 0.08313024044036865, 0.049966663122177124, 0.18810158967971802, -0.22476395964622498, -0.06160367280244827, 0.05172208324074745, -0.1848946213722229, -0.03929068520665169, 0.18946801126003265, -0.09605546295642853, 0.023885855451226234, 0.12231593579053879, 0.240513414144516, -0.06958793848752975, -0.027463408187031746, 0.07416073232889175, 0.053434524685144424, -0.0902666300535202, 0.05305541679263115, 0.030104536563158035, 0.03378096595406532, -0.14342086017131805, -0.02073759399354458, -0.02382739633321762, 0.044810280203819275, -0.05511860176920891, -0.02827446162700653, 0.02114453911781311, 0.016058512032032013, 0.21549084782600403, 0.00775390537455678, -0.04026021063327789, -0.10690560936927795, -0.08705751597881317, 0.09538909792900085, 0.07359015196561813, -0.09281594306230545, 0.019488025456666946, -0.16138586401939392, 0.062389932572841644, 0.018398048356175423, 0.010109451599419117, -0.14856359362602234, -0.012911451049149036, -0.01628478243947029, -0.011884606443345547, 0.05937420204281807, 0.13995255529880524, 0.017904741689562798, -0.03525899350643158, 0.009416797198355198, -0.011126772500574589, 0.022343922406435013, 0.05031710863113403, -0.02926410734653473, -0.1222527027130127, -0.005798729602247477, -0.03989485651254654, 0.030676469206809998, -0.12647375464439392, -0.008052146062254906, 0.13697510957717896, 0.019307103008031845, -0.07702374458312988, 0.065243199467659, 0.07416330277919769, 0.10641655325889587, 0.017493337392807007, -0.021410001441836357, 0.09902487695217133, 0.00479850871488452, -0.05256015807390213, 0.16668005287647247, -0.08238646388053894, -0.0023882610257714987, 0.10879749804735184, -0.1215018704533577, -0.05613795295357704, 0.09785979241132736, -0.0016308502526953816, 0.05590476840734482, 0.04899955913424492, -0.02790956385433674, 0.19946974515914917, 0.0037666806019842625, 0.057040173560380936, -0.13067899644374847, -0.05439146235585213, 0.020404251292347908, -0.07190944254398346, -0.03898097574710846, 0.10221169888973236, -0.04982077330350876, -0.2292201817035675, 0.09041497856378555, 0.15525704622268677, -0.10118063539266586, 0.08975828438997269, -0.02780541032552719, 0.08064687997102737, -0.03377419710159302, -0.04013938084244728, -0.04819371923804283, 0.05180218443274498, -0.13526706397533417, -0.10249573737382889, 0.0010480929631739855, -0.008706939406692982, -0.00021599263709504157, -0.035818763077259064, -0.009346685372292995, -0.026261357590556145, -0.016332564875483513, -0.08477068692445755, 0.022463133558630943, 0.039141539484262466, 0.08141061663627625, -0.02576049230992794, -0.22363510727882385, 0.04077209159731865, -0.04907970130443573, -0.15639767050743103, 0.17516683042049408, -0.11276472359895706, -0.301103413105011, 0.026471609249711037, -0.04074672982096672, -0.16140660643577576, 0.02413376048207283, 0.02714049071073532, -0.13322027027606964, -0.041147418320178986, -0.05293693020939827, 0.006329347845166922, 0.00592000363394618, 0.02215568721294403, 0.04615706950426102, -0.07368429005146027, 0.014792855829000473, -0.1179148256778717, -0.08635939657688141, -0.10062345117330551, -0.04165104776620865, 0.09276754409074783, -0.15454545617103577, 0.010855560190975666, 0.17548565566539764, 0.0011978484690189362, 0.018853146582841873, -0.08205375075340271, 0.1918443888425827, -0.06102265417575836, -0.02255738526582718, 0.07340367138385773, -0.1512550264596939, 0.04193923994898796, 0.05025852099061012, 0.02139621414244175, -0.07674350589513779, 0.03239738568663597, -0.006219101138412952, -0.02408163622021675, -0.05011298134922981, -0.13296300172805786, 0.012035240419209003, 0.028068063780665398, 0.08277896791696548, 0.026941509917378426, -0.017916621640324593, 0.04097765311598778, 0.06265117228031158, -0.1273738443851471, 0.13513045012950897, 0.049482058733701706, 0.1547837257385254, -0.013856464996933937, 0.13309744000434875, -0.0011628392385318875, -0.0803333967924118, 0.08036275953054428, -0.1642022728919983, 0.06557948142290115, 0.012369174510240555, -0.027359189465641975, 0.14076678454875946, 0.029408879578113556, 0.15265585482120514, 0.07669029384851456, -0.05460475757718086, -0.01128348708152771, -0.008743242360651493, -0.05361231416463852, -0.09363359212875366, -0.032001711428165436, -0.041987840086221695, 0.002486580051481724, -0.07940449565649033, -0.11793027073144913, 0.16483408212661743, 0.14903675019741058, 0.04577716812491417, -0.26271653175354004, -0.02673596516251564, 0.012645142152905464, -0.0637890100479126, 0.015417508780956268, 0.08711541444063187, 0.08720795065164566, -0.13883157074451447, 0.1333804428577423, 0.012797302566468716, 0.08609333634376526, -0.04438691958785057, 0.07449014484882355, -0.07037210464477539, -0.039267100393772125, -0.041439034044742584, 0.10139231383800507, -0.2792096436023712, 0.22684267163276672, -0.010295760817825794, 0.0063958605751395226, -0.10819701850414276, -0.11056645214557648, 0.053326986730098724, 0.17822028696537018, 0.1468297392129898, 0.03781240060925484, 0.032216742634773254, -0.08535464107990265, -0.00929876696318388, 0.02643759362399578, 0.006691845133900642, 0.026917848736047745, 0.024968674406409264, 0.03180922195315361, 0.02180919051170349, 0.021416975185275078, -0.03290852531790733, -0.08162830024957657, -0.008126608096063137, -0.054049476981163025, 0.02334154024720192, 0.02837015502154827, -0.04743576422333717, -0.12484756112098694, -0.086582250893116, 0.1935109943151474, 0.014736841432750225, -0.12053585797548294, -0.1323145478963852, 0.04868939891457558, -0.036397285759449005, -0.04063867777585983, -0.05880075693130493, 0.013153745792806149, 0.12973099946975708, -0.11699934303760529, -0.0755411759018898, 0.12525565922260284, -0.09326526522636414, -0.06287672370672226, -0.011030674912035465, 0.10454970598220825, 0.14820276200771332, 0.033221274614334106, 0.13253293931484222, 0.02714352495968342, 0.015623663552105427, -0.16820169985294342, -0.06477054953575134, -0.01842123083770275, -0.10848665982484818, -0.00967381615191698, 0.0132018206641078, -0.08803971111774445, -0.07063984125852585, 0.07039471715688705, 0.13125009834766388, 0.13981615006923676, -0.013656011782586575, 0.06480729579925537, 0.2331554889678955, -0.06296174228191376, -0.3060668110847473, -0.030259927734732628, 0.10203106701374054, -0.007464079186320305, -0.012913401238620281, -0.0448458269238472, 0.05636381357908249, 0.03158826008439064, 0.021097363904118538, -0.2130693644285202, -0.16234180331230164, -0.08972945809364319, 0.2646060287952423, 0.06430168449878693, 0.33741581439971924, -0.015214086510241032, -0.012337100692093372, -0.05748767405748367, 0.05361462011933327, 0.19620727002620697, -0.06198075786232948, 0.00343344546854496, 0.051046792417764664, 0.06277889013290405, 0.03436542674899101, 0.019569318741559982, 0.09643298387527466, 0.1310744285583496, 0.14030654728412628, -0.11402600258588791, -0.11489032953977585, 0.1025652289390564, 0.007373993285000324, 0.11326877027750015, -0.04688373580574989, 0.009740621782839298, -0.15314176678657532, -0.0822935625910759, -0.14512397348880768, 0.09466634690761566, -0.002075995085760951, -0.04208746924996376, -0.012355022132396698, 0.0424930676817894, 0.008421868085861206, -0.0269667599350214, 0.07684417814016342, -0.10149815678596497, 0.03029184229671955, 0.12840518355369568, 0.23768387734889984, -0.0327158086001873, 0.010637059807777405, 0.04306875914335251, -0.05234987661242485, 0.05827413499355316, 0.018856441602110863, 0.0008857647189870477, 0.058406513184309006, -0.024443188682198524, 0.14340351521968842, 0.061188988387584686, -0.018438586965203285, 0.030961256474256516, 0.06087271496653557, -0.13999716937541962, -0.06491012871265411, -0.0180397666990757, 0.03697483241558075, -0.005118416156619787, -0.045053258538246155, 0.17859141528606415, -0.038937754929065704, -0.0023335518781095743, -0.0025962810032069683, 0.01590442843735218, -0.08236628770828247, 0.013329687528312206, 0.05970004200935364, 0.049712639302015305, -0.08407178521156311, 0.019465573132038116, 0.025833411142230034, -0.02505304105579853, 0.10337978601455688, 0.12115458399057388, -0.1784040778875351, -0.06474044173955917, -0.028602896258234978, 0.28715699911117554, -0.030454637482762337, -0.10044693946838379, -0.05462876707315445, -0.17749439179897308, -0.054696813225746155, 0.20528441667556763, 0.1281113624572754, 0.07495717704296112, -0.04696616157889366, -0.044268909841775894, 0.03346555307507515, 0.0697135329246521, 0.0691458135843277, -0.08193216472864151, 0.020072991028428078, 0.14331531524658203, 0.02138660103082657, 0.11411258578300476, -0.10732980817556381, -0.09071104228496552, -0.13675141334533691, 0.041922297328710556, -0.144133523106575, -0.019455067813396454, -0.12063455581665039, 0.038835909217596054, 0.020773738622665405, -0.09453301131725311, -0.002070826478302479, 0.013988249003887177, -0.09441306442022324, 0.08436009287834167, 0.08033444732427597, 0.025486459955573082, -0.1463320404291153, -0.05997684970498085, 0.044030915945768356, 0.005869628861546516, 0.0664040669798851, 0.09796757251024246, -0.13808563351631165, 0.09495926648378372, -0.14014357328414917, -0.041086986660957336, 0.06951457262039185, 0.006017674226313829, 0.04183794930577278, -0.0659174919128418, 0.04171537980437279, 0.12687629461288452, 0.06944870948791504, 0.08593010902404785, 0.12140191346406937, -0.0023426897823810577, 0.12259290367364883, 0.11376244574785233, -0.11804649233818054, -0.016620978713035583, 0.06691498309373856, 0.03338086977601051, 0.11707635223865509, 0.18484343588352203, -0.08494555205106735, -0.018324291333556175, -0.08637866377830505, -0.005128124263137579, 0.026633910834789276, -0.08779517561197281, -0.1023075208067894, -0.08229643851518631, 0.026291795074939728, -0.054699502885341644, 0.1315845251083374, 0.12356764078140259, -0.08630063384771347, 0.06565414369106293, 0.02044624276459217, -0.032406680285930634, 0.021523432806134224, 0.0028774719685316086, -0.04373803362250328, -0.015957316383719444, -0.03769964352250099, -0.03820374980568886, 0.002048748079687357, -0.065360888838768, 0.10138023644685745, 0.05375024676322937, 0.08287332206964493, 0.058945607393980026, 0.08367902040481567, 0.1286146491765976, 0.007361947558820248, -0.06929248571395874, -0.04485038295388222, 0.10564777255058289, -0.060714103281497955, 0.13812392950057983, 0.05469876155257225, -0.03353097662329674, 0.045048803091049194, 0.044496387243270874, -0.12449567019939423, -0.13700780272483826, -0.3033261299133301, -0.07957205176353455, -0.1141664907336235, 0.015379784628748894, -0.10274633765220642, -0.022554483264684677, 0.020055480301380157, 0.13649962842464447, -0.06796655803918839, 0.059484828263521194, -0.12224266678094864, -0.048249367624521255, 0.14949731528759003, -0.07234961539506912, 0.026657825335860252, -0.04259942099452019, 0.024201039224863052, 0.018052194267511368, 0.07218609750270844, -0.000021871603166800924, 0.03465566411614418, 0.004920241888612509, -0.01435268484055996, -0.13207073509693146, -0.08810356259346008, 0.01577710546553135, -0.004861033987253904, 0.007129495032131672, 0.10302522778511047, 0.08719213306903839, -0.023120302706956863, 0.00891132466495037, 0.03864351287484169, 0.03361006826162338, -0.13925491273403168, -0.10289355367422104, 0.31087419390678406, -0.08236867934465408, 0.030574768781661987, -0.021748052909970284, -0.0007195255602709949, -0.05530198663473129, 0.18469391763210297, 0.18032951653003693, -0.13075107336044312, 0.040115125477313995, -0.15064355731010437, 0.02204045280814171, 0.074473075568676, 0.06523852050304413, -0.013509822078049183, 0.1700674444437027, -0.055747851729393005, 0.06709723174571991, -0.033544737845659256, -0.06876592338085175, 0.01773548685014248, -0.013780957087874413, 0.054659996181726456, -0.041025012731552124, -0.11340994387865067, 0.16789455711841583, -0.03847450762987137, -0.0068864477798342705, -0.15564799308776855, 0.0023549897596240044, -0.09006278216838837, 0.03370138630270958, -0.08950217813253403, 0.09380441159009933, 0.11675313115119934, -0.00014276763249654323, -0.026656854897737503, 0.040143173187971115, -0.0006954577402211726, -0.03449290618300438, -0.10004652291536331, 0.13863319158554077, -0.005846885032951832, 0.003823001403361559, 0.04173606261610985, 0.157897487282753, 0.0650109127163887, -0.032943032681941986, -0.04370931163430214, 0.09799780696630478, 0.00210746587254107, 0.08042630553245544, -0.013484838418662548, 0.015597259625792503, 0.015743477270007133, 0.011154239997267723, 0.024467477574944496, -0.06399571895599365, 0.052909668534994125, -0.10297795385122299, -0.11416281014680862, -0.09155818819999695, 0.0765213668346405, -0.039318401366472244, 0.05800848454236984, 0.13964292407035828, -0.012194085866212845, -0.021937528625130653, -0.041229408234357834, 0.005790152121335268, -0.11752039939165115, -0.15244965255260468, 0.003043764503672719, -0.1558859497308731, -0.010916982777416706, -0.005342567339539528, 0.012775561772286892, -0.12205992639064789, 0.025616643950343132, -0.10938702523708344, 0.008273046463727951, 0.03001689910888672, 0.037118688225746155, -0.09169351309537888, 0.011875036172568798, -0.009846363216638565, 0.014896119944751263, 0.04448791965842247, 0.09222429990768433, -0.02267169952392578, -0.07919008284807205 ]
null
null
transformers
# Hate Speech Classifier for Social Media Content in Slovenian Language A monolingual model for hate speech classification of social media content in Slovenian language. The model was trained on 50,000 Twitter comments and tested on an independent test set of 10,000 Twitter comments. It is based on multilingual CroSloEngual BERT pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. https://link.springer.com/chapter/10.1007/978-3-031-08974-9_54 ## Tokenizer During training the text was preprocessed using the original CroSloEngual BERT tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
{"language": ["sl"], "license": "mit", "pipeline_tag": "text-classification", "inference": true, "widget": [{"text": "Sem Mark in \u017eivim v Ljubljani. Sem doktorski \u0161tudent na Mednarodni podiplomski \u0161oli Jo\u017eefa Stefana."}]}
text-classification
IMSyPP/hate_speech_slo
[ "transformers", "pytorch", "bert", "text-classification", "sl", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "sl" ]
TAGS #transformers #pytorch #bert #text-classification #sl #license-mit #autotrain_compatible #endpoints_compatible #region-us
# Hate Speech Classifier for Social Media Content in Slovenian Language A monolingual model for hate speech classification of social media content in Slovenian language. The model was trained on 50,000 Twitter comments and tested on an independent test set of 10,000 Twitter comments. It is based on multilingual CroSloEngual BERT pre-trained language model. ## Please cite: Kralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing. URL ## Tokenizer During training the text was preprocessed using the original CroSloEngual BERT tokenizer. We suggest the same tokenizer is used for inference. ## Model output The model classifies each input into one of four distinct classes: * 0 - acceptable * 1 - inappropriate * 2 - offensive * 3 - violent
[ "# Hate Speech Classifier for Social Media Content in Slovenian Language\n\nA monolingual model for hate speech classification of social media content in Slovenian language. The model was trained on 50,000 Twitter comments and tested on an independent test set of 10,000 Twitter comments. It is based on multilingual CroSloEngual BERT pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original CroSloEngual BERT tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #sl #license-mit #autotrain_compatible #endpoints_compatible #region-us \n", "# Hate Speech Classifier for Social Media Content in Slovenian Language\n\nA monolingual model for hate speech classification of social media content in Slovenian language. The model was trained on 50,000 Twitter comments and tested on an independent test set of 10,000 Twitter comments. It is based on multilingual CroSloEngual BERT pre-trained language model.", "## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL", "## Tokenizer\n\nDuring training the text was preprocessed using the original CroSloEngual BERT tokenizer. We suggest the same tokenizer is used for inference.", "## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ 43, 77, 97, 39, 36 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #sl #license-mit #autotrain_compatible #endpoints_compatible #region-us \n# Hate Speech Classifier for Social Media Content in Slovenian Language\n\nA monolingual model for hate speech classification of social media content in Slovenian language. The model was trained on 50,000 Twitter comments and tested on an independent test set of 10,000 Twitter comments. It is based on multilingual CroSloEngual BERT pre-trained language model.## Please cite:\nKralj Novak, P., Scantamburlo, T., Pelicon, A., Cinelli, M., Mozetič, I., & Zollo, F. (2022, July). __Handling disagreement in hate speech modelling__. In International Conference on Information Processing and Management of Uncertainty in Knowledge-Based Systems (pp. 681-695). Cham: Springer International Publishing.\nURL## Tokenizer\n\nDuring training the text was preprocessed using the original CroSloEngual BERT tokenizer. We suggest the same tokenizer is used for inference.## Model output\n\nThe model classifies each input into one of four distinct classes:\n* 0 - acceptable\n* 1 - inappropriate\n* 2 - offensive\n* 3 - violent" ]
[ -0.010991141200065613, 0.013532072305679321, -0.003011934692040086, 0.07234567403793335, 0.03945344313979149, -0.028442753478884697, 0.23166023194789886, 0.07191477715969086, 0.0415385365486145, 0.008136129938066006, 0.03703615441918373, 0.10445785522460938, -0.010330617427825928, 0.04511367529630661, -0.059045083820819855, -0.1917646825313568, 0.08447372913360596, -0.012878820300102234, 0.08181323856115341, 0.09343104809522629, 0.18177148699760437, -0.060829054564237595, 0.02981627732515335, -0.00023069190501701087, -0.05544249713420868, 0.012747135013341904, 0.010900923050940037, -0.08992414176464081, 0.08740425854921341, -0.004389022011309862, 0.08924639225006104, 0.10225780308246613, 0.04851158708333969, -0.11542762070894241, 0.02440452203154564, 0.024054143577814102, -0.026538576930761337, -0.018641646951436996, 0.11327364295721054, -0.09286341816186905, 0.16140174865722656, -0.0830155536532402, 0.06779564917087555, 0.041862498968839645, -0.10843274742364883, -0.15305380523204803, -0.12992432713508606, 0.20843757688999176, 0.1050800010561943, 0.0492866076529026, -0.03260746970772743, 0.14154250919818878, -0.05949106439948082, 0.12402268499135971, 0.049951303750276566, -0.17813579738140106, -0.05940767005085945, -0.018898526206612587, 0.04620073735713959, 0.10391325503587723, -0.09503404051065445, 0.03827577829360962, 0.05574607104063034, 0.011821318417787552, -0.0310435239225626, -0.11865488439798355, 0.02872462198138237, -0.0683753713965416, -0.14079958200454712, -0.056207943707704544, 0.13373485207557678, 0.0351610966026783, -0.07803013920783997, -0.09747723489999771, 0.045892197638750076, 0.02234320528805256, 0.03846534714102745, -0.014900832436978817, -0.03388068825006485, -0.019689854234457016, 0.030412856489419937, 0.0011200569570064545, -0.0842384472489357, 0.04512913152575493, 0.010016117244958878, 0.2714862525463104, 0.022417571395635605, 0.03315550833940506, 0.018355965614318848, -0.008609038777649403, -0.03697292506694794, -0.10040897876024246, 0.0008190645603463054, -0.06874337047338486, -0.03254986181855202, -0.03192811459302902, -0.05955995246767998, -0.16782094538211823, 0.0584910586476326, -0.01931057497859001, -0.00467704376205802, 0.03848044201731682, -0.05553624406456947, 0.041713494807481766, 0.1385122388601303, 0.0756816565990448, -0.017447181046009064, 0.042799606919288635, 0.01497664675116539, 0.048257093876600266, 0.025746945291757584, -0.01412251964211464, -0.07485051453113556, -0.015184140764176846, 0.07501133531332016, 0.08214868605136871, 0.00009656909242039546, 0.12046437710523605, -0.032188575714826584, -0.03903183713555336, -0.06256525963544846, -0.08946048468351364, 0.0263118464499712, 0.04987112432718277, 0.013464275747537613, 0.08292482793331146, -0.06959302723407745, 0.010075954720377922, -0.0942465290427208, 0.023761646822094917, 0.01431542169302702, 0.040371641516685486, -0.07227867841720581, -0.15837498009204865, 0.08080647140741348, -0.051365967839956284, -0.06946602463722229, -0.11878641694784164, -0.031236715614795685, -0.058922771364450455, 0.018862836062908173, -0.008164288476109505, 0.004019992891699076, -0.10432998090982437, -0.015277709811925888, 0.0316598042845726, -0.021241841837763786, -0.15887194871902466, -0.04992150142788887, 0.05023932829499245, -0.1554880142211914, 0.022163070738315582, -0.02874024584889412, -0.015897706151008606, -0.02817845717072487, 0.025195719674229622, -0.09646061807870865, 0.0850454643368721, -0.121799036860466, -0.0010992703028023243, -0.05919374153017998, -0.07433302700519562, 0.049699608236551285, 0.03338972479104996, 0.0013848308008164167, 0.1462380588054657, -0.20352861285209656, 0.009400197304785252, 0.05737625062465668, -0.1804153025150299, 0.010482646524906158, 0.16688045859336853, -0.08074531704187393, -0.04066721722483635, 0.11247006058692932, 0.20205320417881012, -0.04255659505724907, -0.08541180938482285, 0.006651321891695261, -0.025262238457798958, -0.07241257280111313, 0.10387065261602402, 0.0458027645945549, -0.023569023236632347, 0.034776680171489716, -0.021624935790896416, 0.050137314945459366, -0.025094425305724144, -0.0021662649232894182, -0.023400571197271347, -0.0041141873225569725, 0.01011725701391697, 0.16968205571174622, -0.027739273384213448, -0.042498569935560226, -0.11921199411153793, -0.0796530470252037, -0.045017071068286896, 0.10012011975049973, -0.06902579218149185, 0.03839246928691864, -0.05426056683063507, 0.11068850755691528, -0.03770199045538902, -0.006470701657235622, -0.12322653830051422, -0.05313074588775635, 0.029078224673867226, -0.01773080788552761, 0.0746413916349411, 0.16778740286827087, 0.017740100622177124, 0.004858819767832756, -0.02830212563276291, -0.015811821445822716, -0.03416359797120094, 0.0391409769654274, -0.046073175966739655, -0.18496249616146088, 0.004274839535355568, -0.05454639345407486, 0.059288784861564636, -0.1493835598230362, -0.010401822626590729, 0.14863751828670502, 0.02734021656215191, -0.03656494989991188, 0.03295625001192093, 0.05031174421310425, 0.07583656162023544, -0.013468912802636623, -0.024553757160902023, 0.09544669836759567, 0.003375438041985035, -0.025295311585068703, 0.15810386836528778, -0.08731191605329514, -0.10561981797218323, 0.06223316863179207, -0.062731072306633, -0.0764121487736702, -0.038976773619651794, -0.033351052552461624, 0.03143836185336113, 0.043038129806518555, 0.03575225546956062, 0.1763172596693039, 0.005196986719965935, 0.05408327281475067, -0.11929550766944885, -0.06607815623283386, -0.007169625256210566, -0.10831127315759659, -0.0925607830286026, 0.11953407526016235, -0.07209267467260361, -0.25265318155288696, 0.09316506236791611, 0.08274106681346893, -0.06255831569433212, 0.18104194104671478, -0.018912820145487785, -0.035853222012519836, -0.056618254631757736, 0.03797003626823425, 0.016254425048828125, 0.09185630828142166, -0.030719805508852005, -0.013000169768929482, 0.01896444708108902, 0.0133346663787961, 0.004209809470921755, -0.077664814889431, 0.0158537607640028, -0.030065173283219337, -0.053214285522699356, -0.12703676521778107, 0.032953206449747086, 0.06234751269221306, 0.11705342680215836, -0.02423916757106781, -0.05076896399259567, 0.04052223265171051, -0.05744652822613716, -0.12170771509408951, 0.11894293874502182, -0.12446601688861847, -0.14838320016860962, -0.06060586869716644, -0.04089637100696564, -0.1591646522283554, 0.01173641812056303, 0.03278700262308121, -0.12165304273366928, -0.054110702127218246, -0.04733889549970627, -0.049019522964954376, -0.042995478957891464, -0.042994700372219086, -0.009242800064384937, 0.049812354147434235, -0.035369984805583954, -0.10051441192626953, -0.06653086096048355, -0.04388228431344032, -0.014201218262314796, 0.07118566334247589, -0.05560080707073212, 0.048669926822185516, 0.1322518289089203, -0.014401789754629135, 0.007696239277720451, -0.05172288045287132, 0.08373615890741348, -0.09655546396970749, -0.000019698787582456134, 0.09395644068717957, -0.16030515730381012, 0.04705607518553734, 0.11412125825881958, 0.004745172336697578, -0.0419347770512104, 0.0216053556650877, -0.001985191600397229, -0.0030766876880079508, -0.1872713416814804, -0.08931917697191238, -0.046711597591638565, -0.042202893644571304, 0.03706210479140282, 0.014259183779358864, 0.04713989049196243, 0.03369707614183426, -0.0350227989256382, -0.09466923028230667, 0.15796324610710144, 0.10323860496282578, 0.1693253368139267, 0.01861371286213398, 0.04892374575138092, -0.07230636477470398, -0.022926533594727516, 0.10030212998390198, -0.06225141882896423, 0.20935703814029694, -0.020454255864024162, 0.062184300273656845, 0.12674932181835175, 0.048284564167261124, 0.06813288480043411, 0.06408335268497467, 0.011012079194188118, 0.01937560737133026, -0.00885788630694151, -0.0477617010474205, -0.05978494510054588, -0.008241672068834305, 0.08263202756643295, -0.028642017394304276, -0.06679476052522659, -0.10627089440822601, 0.1467171311378479, 0.3197423219680786, 0.035073164850473404, -0.13184471428394318, -0.03051339089870453, 0.032370418310165405, -0.031206024810671806, -0.017114905640482903, -0.010556773282587528, 0.08366023004055023, -0.142449751496315, 0.10976098477840424, -0.0066173505038022995, 0.049304019659757614, -0.12748920917510986, 0.004399475175887346, -0.06991620361804962, -0.030002020299434662, -0.04474689066410065, 0.11765515059232712, -0.22004194557666779, 0.24047206342220306, 0.01651087962090969, 0.06624436378479004, -0.13272833824157715, -0.05787915736436844, 0.02949088253080845, 0.10274987667798996, 0.10986899584531784, 0.0407976433634758, -0.08916180580854416, -0.10847918689250946, -0.05227743089199066, -0.002188567304983735, 0.09911614656448364, 0.04405272379517555, 0.09485239535570145, -0.02073582634329796, 0.020600097253918648, -0.027522359043359756, -0.048057664185762405, -0.12428555637598038, -0.12823839485645294, 0.05337774381041527, -0.02409614995121956, -0.04689283296465874, -0.07550828903913498, -0.10603410005569458, -0.004964522086083889, 0.201068714261055, -0.036847684532403946, -0.10461046546697617, -0.14456143975257874, -0.01890222728252411, 0.027258679270744324, -0.05758732557296753, -0.04645843431353569, -0.005372488405555487, 0.1183667927980423, -0.13078640401363373, -0.04773525893688202, 0.030187999829649925, -0.06078561395406723, -0.12850211560726166, -0.003798283403739333, 0.12700887024402618, 0.10585349798202515, 0.03257708251476288, 0.10348344594240189, 0.01524985022842884, 0.06284217536449432, -0.13891521096229553, -0.0581558495759964, 0.03320610895752907, 0.03631768003106117, 0.011788575910031796, -0.08630600571632385, -0.15849676728248596, -0.13810743391513824, -0.05310540273785591, 0.17446863651275635, 0.26742875576019287, -0.007939358241856098, 0.11199693381786346, 0.15209166705608368, -0.09432250261306763, -0.2108825445175171, -0.038115791976451874, 0.08371050655841827, -0.04747163504362106, -0.04974230378866196, 0.0036204964853823185, -0.06351162493228912, 0.039228495210409164, 0.027403414249420166, -0.04583987221121788, -0.1509760022163391, -0.0957508385181427, 0.08428729325532913, 0.08471564948558807, 0.21421800553798676, -0.04568321257829666, -0.025352487340569496, -0.06709499657154083, 0.020977137610316277, 0.10268233716487885, -0.008325109258294106, 0.061584848910570145, 0.05671972408890724, 0.028410382568836212, 0.03919040784239769, -0.016623489558696747, 0.12810276448726654, 0.03627007082104683, 0.11404941976070404, -0.1587657630443573, -0.09982939064502716, 0.0922241285443306, -0.049975812435150146, 0.0494677871465683, 0.0009663206874392927, -0.04111797362565994, -0.17013832926750183, -0.07153598964214325, -0.11178891360759735, 0.07115699350833893, -0.06590873003005981, -0.053621407598257065, -0.032197944819927216, 0.06470045447349548, 0.06503831595182419, -0.04020782187581062, 0.07371364533901215, -0.10411238670349121, 0.05258554965257645, 0.08052460849285126, 0.20771829783916473, 0.08393594622612, 0.0019521545618772507, 0.00044897745829075575, -0.03804846480488777, -0.029579296708106995, -0.018674347549676895, -0.0051411730237305164, 0.055973079055547714, -0.044277410954236984, 0.12842467427253723, 0.028976812958717346, -0.05397948622703552, 0.05505876988172531, 0.05554405227303505, -0.11276362836360931, -0.01748240925371647, 0.033327288925647736, 0.009752978570759296, -0.031437650322914124, -0.05073518678545952, 0.20274366438388824, -0.029077336192131042, -0.007768434006720781, -0.047803845256567, 0.015406766906380653, -0.054002583026885986, 0.009191597811877728, 0.07030975818634033, 0.04985836148262024, -0.04881662875413895, 0.10338141024112701, 0.05491362512111664, -0.0892503410577774, 0.0573476180434227, 0.11963856220245361, -0.12683641910552979, -0.07490620762109756, 0.039348021149635315, 0.15899911522865295, 0.024571243673563004, -0.08668561279773712, -0.05987556651234627, -0.12749366462230682, -0.01719856634736061, 0.19470059871673584, 0.04984583333134651, 0.04416915401816368, -0.0120792081579566, -0.040435537695884705, -0.05204476788640022, 0.060060445219278336, 0.060558415949344635, -0.04225747287273407, -0.006417701952159405, 0.15398341417312622, -0.019737301394343376, 0.053846169263124466, -0.04191020876169205, -0.04020100086927414, -0.11215496063232422, -0.012054989114403725, -0.06480220705270767, 0.0024267181288450956, -0.11028137058019638, 0.03886903449892998, -0.006268162280321121, -0.05482848361134529, -0.014164456166327, 0.04546334594488144, -0.1100744903087616, 0.0394325852394104, 0.015261034481227398, 0.08614224195480347, -0.10657335072755814, -0.06178408861160278, 0.024433277547359467, -0.05323200672864914, 0.09640834480524063, 0.0916828066110611, -0.08061229437589645, 0.0782562792301178, -0.1982932835817337, 0.027628764510154724, -0.018430890515446663, -0.014886672608554363, 0.002368114423006773, -0.09099754691123962, 0.04407439008355141, 0.07199107855558395, 0.023515325039625168, 0.06695842742919922, 0.06640227138996124, -0.010648613795638084, 0.035064078867435455, 0.08113638311624527, -0.16931401193141937, -0.029204202815890312, 0.08275258541107178, 0.08445721864700317, 0.05133108049631119, 0.20832283794879913, -0.11288625746965408, 0.062364865094423294, -0.0564490482211113, 0.006916243117302656, 0.05113973096013069, -0.06204349175095558, -0.028170742094516754, -0.0864061564207077, 0.039783842861652374, -0.026232747361063957, 0.05686460807919502, 0.01788967289030552, -0.031699538230895996, 0.05882987752556801, -0.04035642743110657, -0.1070730909705162, 0.045629363507032394, 0.029618844389915466, -0.08958954364061356, -0.026623647660017014, -0.05110043287277222, -0.03815872222185135, -0.010522255674004555, -0.05331236496567726, 0.09305131435394287, 0.14845821261405945, 0.13472430408000946, 0.04538969695568085, 0.08393826335668564, 0.023911943659186363, 0.05104529485106468, 0.05631903558969498, 0.01133684255182743, 0.06556499004364014, -0.08261469751596451, 0.14597375690937042, 0.11945337802171707, -0.11887568980455399, 0.02358938381075859, 0.014562699012458324, -0.10303393006324768, -0.0680067241191864, -0.2693539559841156, -0.07517217099666595, -0.02307572029531002, 0.05876712128520012, -0.10989820957183838, 0.08831292390823364, 0.025349991396069527, 0.11457893252372742, -0.055024079978466034, -0.008008158765733242, -0.1053701713681221, -0.07093531638383865, 0.15828877687454224, -0.040483370423316956, 0.039090488106012344, 0.008151591755449772, -0.00986192375421524, -0.03552846983075142, -0.06051110103726387, 0.019882462918758392, 0.09325790405273438, 0.0631127879023552, -0.039250120520591736, -0.10191069543361664, -0.0927617996931076, 0.061387740075588226, -0.0006435292307287455, 0.1338837891817093, 0.22238172590732574, 0.08745971322059631, -0.04233959689736366, 0.008927009999752045, 0.08906152844429016, 0.039028801023960114, -0.12700021266937256, -0.1322484165430069, 0.07399565726518631, -0.03871956467628479, 0.007186738308519125, -0.017612718045711517, -0.06117749959230423, 0.05133897438645363, 0.13573096692562103, 0.1375851035118103, -0.004906105808913708, 0.047610897570848465, -0.11169181019067764, 0.020818745717406273, 0.0777418240904808, 0.07111074775457382, -0.025969963520765305, 0.07696440070867538, -0.059392694383859634, 0.0907103642821312, -0.054304104298353195, 0.048561178147792816, -0.04612376168370247, 0.1387135535478592, -0.028499647974967957, -0.05825335532426834, -0.07722879201173782, 0.16363126039505005, 0.002606628928333521, -0.07323561608791351, -0.02745669148862362, -0.046760447323322296, -0.08822812139987946, 0.054071515798568726, -0.02329852804541588, 0.03715572878718376, 0.11952663958072662, 0.016233175992965698, -0.06327542662620544, 0.06704549491405487, 0.013880214653909206, -0.034761764109134674, -0.05372453108429909, 0.1114886999130249, 0.038995411247015, 0.07164979726076126, 0.025270819664001465, 0.17781081795692444, 0.1027531698346138, -0.031109943985939026, -0.05776236206293106, 0.09445704519748688, 0.01599850133061409, 0.0004824340285267681, 0.008157951757311821, 0.07262051105499268, -0.029878772795200348, 0.02183881402015686, 0.059880003333091736, -0.05669064447283745, 0.11166024953126907, -0.04460115358233452, -0.06848656386137009, -0.06108391657471657, 0.16293750703334808, -0.11159461736679077, 0.101426862180233, 0.1634019911289215, -0.0012667675036936998, -0.02275051735341549, -0.06440243870019913, -0.0038948163855820894, -0.057582926005125046, -0.05278206989169121, -0.027210162952542305, -0.14374063909053802, 0.010032559745013714, -0.0791429951786995, 0.057482268661260605, -0.11223786324262619, -0.01918274164199829, -0.09013960510492325, -0.019652459770441055, -0.04715938866138458, 0.0676545649766922, -0.012241329997777939, -0.02283933013677597, 0.0011569550260901451, -0.14416199922561646, 0.05531076341867447, 0.08374076336622238, -0.03938347101211548, 0.0005831231828778982 ]
null
null
transformers
# Cyber Bones DialoGPT Model
{"tags": ["conversational"]}
text-generation
ITNODove/DialoGPT-medium-cyberbones
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Cyber Bones DialoGPT Model
[ "# Cyber Bones DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Cyber Bones DialoGPT Model" ]
[ 51, 9 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Cyber Bones DialoGPT Model" ]
[ 0.022881697863340378, 0.11512941867113113, -0.004394392017275095, 0.02309287153184414, 0.13175147771835327, 0.003439724911004305, 0.15356887876987457, 0.1445162147283554, -0.005155156832188368, -0.0210794135928154, 0.1172022596001625, 0.14596298336982727, 0.024319393560290337, 0.08726593852043152, -0.047989003360271454, -0.28028246760368347, 0.08062614500522614, 0.05410131812095642, -0.02838914655148983, 0.09749424457550049, 0.07999484241008759, -0.041015394032001495, 0.057724691927433014, -0.04197389632463455, -0.17007839679718018, -0.002137462142854929, 0.01192215085029602, -0.04896616190671921, 0.11338181793689728, 0.059707872569561005, 0.05525200068950653, -0.0014897834043949842, -0.016818543896079063, -0.11447219550609589, 0.0496307909488678, -0.0006152903661131859, -0.09250770509243011, 0.06053829938173294, -0.03670649975538254, -0.042051419615745544, 0.2146967649459839, 0.04002425819635391, -0.0018204881343990564, 0.011462782509624958, -0.12182776629924774, 0.03350290656089783, 0.02055862918496132, 0.06849583238363266, 0.04447144269943237, 0.11697976291179657, -0.04091082513332367, 0.17312908172607422, -0.04955187439918518, 0.12183522433042526, 0.050780314952135086, -0.26713892817497253, -0.061115339398384094, 0.17058205604553223, 0.06171277165412903, 0.10938386619091034, -0.031910233199596405, 0.07264050841331482, -0.004083491861820221, 0.03554602339863777, -0.0522950142621994, -0.04499064013361931, -0.175050288438797, 0.028338730335235596, -0.09947974234819412, 0.0013711488572880626, 0.17471568286418915, -0.05738847702741623, 0.1466096192598343, -0.07764014601707458, -0.09764396399259567, -0.09130037575960159, -0.025304999202489853, -0.04186780005693436, -0.09658690541982651, 0.049528978765010834, 0.0329207144677639, -0.09767545759677887, -0.0923001617193222, -0.03418068215250969, -0.21774470806121826, 0.10456561297178268, 0.03339016065001488, 0.02730827033519745, -0.19480125606060028, 0.07123164087533951, 0.107579804956913, -0.043933700770139694, 0.05011651664972305, -0.02484932914376259, -0.0011884362902492285, -0.006468093488365412, -0.06701124459505081, -0.015421658754348755, 0.13542799651622772, 0.09018779546022415, -0.005994576960802078, -0.0009487807983532548, 0.007600965443998575, 0.04776793718338013, 0.0069053759798407555, -0.040017686784267426, -0.07182024419307709, -0.011675987392663956, 0.06308337301015854, -0.03598788380622864, 0.025065038353204727, -0.08586636185646057, -0.1992066502571106, -0.01840203069150448, 0.07337763160467148, 0.038695380091667175, 0.059174373745918274, 0.11570696532726288, -0.008936658501625061, -0.06097717583179474, 0.06951255351305008, -0.0049341339617967606, -0.011619758792221546, 0.008781545795500278, 0.027117909863591194, 0.05734654515981674, 0.013407072052359581, 0.09221195429563522, -0.12506315112113953, -0.02949405089020729, -0.0435134693980217, -0.011481232941150665, -0.026260431855916977, -0.06520210951566696, 0.04075250402092934, -0.03163051977753639, -0.009644235484302044, -0.14569513499736786, -0.08953345566987991, -0.016348250210285187, -0.016826283186674118, -0.079271599650383, -0.12509891390800476, -0.10099183022975922, -0.0439847931265831, 0.03096763603389263, -0.05807441473007202, 0.048733700066804886, -0.047213707119226456, 0.05921681225299835, -0.05903203785419464, 0.1267673820257187, -0.18572145700454712, 0.03738667815923691, -0.05251830071210861, -0.08707287162542343, -0.015192091464996338, 0.07828199118375778, 0.01198156550526619, 0.04686161130666733, 0.000991961220279336, 0.026945652440190315, -0.16894271969795227, 0.03647962212562561, -0.00017541786655783653, 0.195438951253891, -0.10640498995780945, -0.07216936349868774, 0.32426387071609497, -0.031921204179525375, -0.14161814749240875, 0.16810445487499237, -0.019835112616419792, 0.06421497464179993, 0.1218513548374176, 0.21054990589618683, -0.028497077524662018, 0.04978817701339722, 0.05433528125286102, 0.016324272379279137, -0.08271846175193787, -0.018046032637357712, 0.002508323173969984, -0.005301612429320812, 0.006952819414436817, 0.01686382293701172, 0.04616428166627884, 0.09068179130554199, -0.0777164176106453, -0.015131857246160507, 0.017523810267448425, -0.049504250288009644, 0.10166574269533157, -0.00419567059725523, 0.10319001972675323, -0.05754542350769043, -0.022013813257217407, -0.04615122824907303, 0.005284590646624565, -0.07427295297384262, 0.025600770488381386, -0.11457270383834839, 0.029017779976129532, -0.019152043387293816, 0.07734131067991257, -0.15690946578979492, -0.15949663519859314, -0.009141860529780388, 0.08626757562160492, 0.10697592794895172, 0.02044094353914261, 0.05592212826013565, -0.06071935594081879, -0.008809313178062439, 0.062263280153274536, 0.14170695841312408, 0.010763488709926605, -0.11724108457565308, -0.13821768760681152, 0.10553181171417236, -0.04838375747203827, 0.09611441195011139, -0.06996321678161621, 0.026668598875403404, 0.05120903626084328, 0.21664665639400482, -0.057269543409347534, 0.02506154775619507, -0.018394749611616135, -0.003585509955883026, -0.05606149137020111, -0.0032796915620565414, 0.11813950538635254, -0.02810327149927616, -0.10614854097366333, 0.21544499695301056, -0.17086389660835266, 0.14990593492984772, 0.19013220071792603, -0.18628036975860596, 0.044068869203329086, -0.11542517691850662, 0.009812859818339348, -0.001328802783973515, 0.08225330710411072, -0.06693065911531448, 0.29326021671295166, -0.023012183606624603, 0.11757521331310272, -0.049614690244197845, -0.07143408060073853, -0.0008974986849352717, -0.00767951924353838, 0.04877452552318573, 0.0772833377122879, 0.11002135276794434, -0.23229411244392395, 0.15769782662391663, 0.024242330342531204, -0.004715370945632458, 0.21620486676692963, 0.0484154149889946, 0.04922216758131981, 0.03795552998781204, -0.004415440373122692, -0.029045652598142624, -0.036419887095689774, -0.2876514792442322, -0.05088506639003754, 0.03810357302427292, 0.028866423293948174, 0.1277446448802948, -0.09651066362857819, -0.02861548773944378, -0.0442294105887413, -0.027502408251166344, 0.05798475071787834, 0.10749422013759613, 0.027590394020080566, 0.15337014198303223, -0.032803263515233994, -0.02595067396759987, 0.05097978562116623, -0.025469422340393066, -0.11318216472864151, 0.1655043363571167, -0.134829580783844, -0.3915764391422272, -0.07531856000423431, -0.09359730780124664, -0.07771562784910202, 0.027869844809174538, 0.06833279132843018, -0.12057853490114212, 0.011003639549016953, -0.02574975974857807, 0.05123452469706535, -0.006910940632224083, 0.03005632758140564, -0.017997603863477707, 0.010083534754812717, -0.11469267308712006, -0.06549786031246185, -0.05342970788478851, -0.0486275888979435, -0.038436487317085266, 0.12088384479284286, -0.1637887954711914, 0.07109720259904861, 0.21767321228981018, 0.025157155469059944, 0.060804203152656555, -0.053781501948833466, 0.16752569377422333, -0.10139043629169464, 0.03292988985776901, 0.17122389376163483, -0.01774810440838337, 0.0514262430369854, 0.12476810812950134, -0.003603102173656225, -0.06903529167175293, 0.06593901664018631, 0.015189701691269875, -0.062305886298418045, -0.1504252552986145, -0.16678844392299652, -0.10785804688930511, 0.030943488702178, 0.03444991260766983, 0.07128704339265823, 0.18910782039165497, 0.03239629045128822, -0.041572924703359604, -0.04593878239393234, 0.09638141840696335, 0.0680704414844513, 0.2090228796005249, -0.029072962701320648, 0.16332146525382996, -0.0065135713666677475, -0.14957745373249054, 0.0878385603427887, 0.11338956654071808, 0.048746172338724136, 0.0642540231347084, 0.09163735061883926, -0.01861211657524109, 0.11074605584144592, 0.12645646929740906, 0.08099870383739471, 0.051119666546583176, -0.06208297982811928, -0.017660845071077347, -0.030322672799229622, -0.004393500275909901, 0.04258079081773758, 0.09589794278144836, -0.15706755220890045, -0.012682368978857994, -0.016367703676223755, 0.0756559744477272, 0.09256931394338608, 0.0576208271086216, -0.23176833987236023, -0.023849286139011383, 0.03752737492322922, -0.01605517975986004, -0.09938400983810425, 0.054347943514585495, 0.07147181034088135, -0.10756242275238037, 0.022757641971111298, -0.06109732761979103, 0.11246316134929657, -0.06436149775981903, 0.07481425255537033, -0.048714540898799896, -0.0898585245013237, 0.006946195848286152, 0.08804741501808167, -0.25875067710876465, 0.1753215193748474, -0.04417561739683151, -0.047792937606573105, -0.1002364456653595, -0.02836947701871395, 0.04970325902104378, 0.0857795849442482, 0.06601462513208389, -0.005308182910084724, 0.0670366957783699, 0.034924354404211044, -0.0707993283867836, 0.0477343425154686, 0.11463563144207001, -0.08487436920404434, 0.03274349868297577, -0.05268331244587898, 0.02558019757270813, 0.0033609899692237377, -0.09418077766895294, 0.029514845460653305, -0.19274193048477173, 0.08698862046003342, 0.13409331440925598, 0.0722043514251709, 0.0485430508852005, -0.05639475956559181, -0.1280335783958435, 0.20413143932819366, -0.14235278964042664, -0.09042584151029587, -0.10101877152919769, 0.02595643699169159, 0.07039313018321991, -0.045527491718530655, 0.013626780360937119, -0.06670158356428146, 0.05298563838005066, -0.07145179808139801, -0.20865947008132935, 0.12740159034729004, -0.10083281993865967, -0.07706248015165329, -0.049403510987758636, 0.1352468580007553, -0.006226754747331142, 0.01642679236829281, 0.039110567420721054, -0.005927571095526218, -0.14266547560691833, -0.07576709985733032, -0.012684270739555359, 0.06702516973018646, 0.013550933450460434, 0.04840611666440964, -0.054222069680690765, -0.022581616416573524, -0.0750948041677475, -0.024626145139336586, 0.2625701129436493, 0.10128306597471237, -0.05465521663427353, 0.13525809347629547, 0.09255236387252808, -0.0699530765414238, -0.35657384991645813, -0.13619890809059143, -0.0427471324801445, -0.01015280932188034, -0.024822060018777847, -0.0997472032904625, 0.11438318341970444, -0.027235399931669235, 0.0009569530375301838, 0.05506977438926697, -0.23167258501052856, -0.09480848908424377, 0.09311487525701523, -0.023185595870018005, 0.30504482984542847, -0.10936366021633148, -0.06441500782966614, -0.04064295068383217, -0.12952813506126404, 0.18142709136009216, -0.08255638182163239, 0.06763169169425964, 0.03224056214094162, 0.15829604864120483, 0.03142321854829788, 0.0064277686178684235, 0.07178585231304169, -0.024115152657032013, -0.03182010352611542, -0.09837856888771057, -0.12453106045722961, -0.004637226462364197, 0.03115306980907917, 0.007506813853979111, -0.07112087309360504, 0.022856473922729492, -0.07132414728403091, -0.028671689331531525, -0.08795201778411865, 0.03244725614786148, 0.040262460708618164, -0.039147209376096725, -0.024449404329061508, -0.03254818171262741, 0.0535222664475441, 0.031697507947683334, 0.1533103585243225, -0.09905795007944107, 0.19305816292762756, 0.12456697225570679, 0.15271851420402527, -0.16431452333927155, 0.08125559985637665, -0.04837142676115036, -0.07143378257751465, 0.0375412255525589, 0.011126607656478882, 0.015588788315653801, 0.14438602328300476, -0.05276916176080704, 0.05024440959095955, 0.0987062156200409, 0.024577312171459198, -0.00670278538018465, 0.10428259521722794, -0.2230866402387619, -0.07624362409114838, -0.042195238173007965, 0.02201792411506176, 0.05351153016090393, 0.1428937315940857, 0.22008365392684937, 0.007023975718766451, -0.05052020028233528, 0.0036772238090634346, 0.047568585723638535, -0.04078254848718643, 0.05320762097835541, -0.037371791899204254, 0.024473771452903748, -0.14741678535938263, 0.06032024323940277, 0.02277226746082306, -0.17598523199558258, 0.05154683068394661, 0.1568916141986847, -0.14138612151145935, -0.12323353439569473, -0.02881522849202156, 0.10634365677833557, -0.13947120308876038, -0.02963685616850853, -0.07731601595878601, -0.14437128603458405, 0.027219517156481743, 0.1824924200773239, 0.05192713439464569, 0.058866843581199646, -0.08556140214204788, -0.00771136861294508, -0.06247273087501526, 0.0521867461502552, 0.0004759933799505234, -0.02884468249976635, -0.043217044323682785, 0.09243512898683548, -0.031623464077711105, 0.055975452065467834, -0.10125601291656494, -0.04247082397341728, -0.1321367621421814, 0.006714596413075924, -0.041674960404634476, -0.11600765585899353, -0.07167577743530273, -0.06645740568637848, 0.01888083666563034, -0.04607206583023071, -0.03518940508365631, -0.026524415239691734, -0.06974222511053085, 0.016725821420550346, -0.03849520534276962, 0.0027357798535376787, -0.06425721198320389, -0.000041577499359846115, 0.02150779403746128, 0.01495192851871252, 0.16735118627548218, 0.1049623191356659, -0.09632302075624466, 0.08013205230236053, -0.11365041136741638, 0.00903365109115839, 0.09232985228300095, 0.0388641320168972, 0.025123976171016693, 0.02987416461110115, -0.010874486528337002, 0.06235804036259651, 0.08372284471988678, 0.0923452228307724, 0.07782190293073654, -0.03134935721755028, 0.021968990564346313, -0.1164742261171341, -0.08878695964813232, -0.01322523970156908, -0.023809347301721573, 0.0243532694876194, 0.051340360194444656, 0.07706471532583237, -0.07770171761512756, 0.02560201659798622, -0.08505799621343613, 0.05326712504029274, 0.006783549673855305, -0.12750311195850372, -0.12514758110046387, -0.07396554201841354, 0.07219900190830231, 0.00011914176866412163, 0.20730465650558472, 0.035213619470596313, -0.010880346409976482, 0.017730599269270897, 0.023748338222503662, -0.029448766261339188, 0.032248832285404205, 0.17589034140110016, 0.07776756584644318, -0.08742404729127884, -0.08320555090904236, 0.0637582466006279, -0.004606444388628006, -0.0029165158048272133, 0.1012909784913063, 0.009640481323003769, 0.03978573530912399, 0.08612135052680969, 0.051020167768001556, 0.041920989751815796, -0.057175956666469574, -0.09846892952919006, -0.0365079864859581, -0.022438442334532738, -0.06968215852975845, 0.13436442613601685, 0.14849627017974854, -0.028693050146102905, 0.0019051232375204563, -0.03928077593445778, -0.07160770148038864, -0.12581822276115417, -0.22001469135284424, -0.08638134598731995, -0.14948329329490662, -0.06544031202793121, -0.17488519847393036, 0.010907851159572601, 0.03428737074136734, 0.07541018724441528, -0.08728961646556854, 0.10317329317331314, 0.04382118582725525, -0.07848881185054779, 0.07635904848575592, -0.014516675844788551, 0.10701048374176025, -0.023585567250847816, -0.03835926577448845, -0.05941719934344292, 0.08479121327400208, 0.018544889986515045, 0.03007214143872261, -0.05623016878962517, -0.0040147374384105206, -0.1151629239320755, -0.09626144915819168, -0.011053891852498055, 0.015111183747649193, -0.057082951068878174, 0.1625475436449051, 0.0615118145942688, -0.07628475874662399, 0.010350457392632961, 0.17950555682182312, -0.07233276963233948, -0.06998201459646225, -0.09386057406663895, 0.2076244354248047, -0.042019378393888474, 0.1460646688938141, -0.03926350921392441, 0.020331114530563354, -0.10916712135076523, 0.30369171500205994, 0.2618626654148102, -0.17662973701953888, -0.004845939110964537, 0.02785472199320793, 0.035388052463531494, 0.08901484310626984, 0.09019806236028671, 0.12242282927036285, 0.289257675409317, -0.03751150891184807, -0.016364790499210358, -0.017625197768211365, 0.00469445763155818, -0.07258552312850952, -0.07379074394702911, 0.06225231662392616, -0.03311675414443016, -0.030228465795516968, 0.1063222661614418, -0.23849272727966309, 0.18503129482269287, -0.1524631679058075, -0.25370872020721436, -0.07976305484771729, 0.0092937545850873, 0.06264609843492508, -0.03818529099225998, 0.0634799525141716, -0.011118676513433456, -0.05482770875096321, 0.07609671354293823, -0.004541372414678335, -0.17307662963867188, 0.0077324239537119865, 0.021528659388422966, -0.09932823479175568, -0.042945120483636856, -0.06659524887800217, 0.10431661456823349, 0.1076546311378479, 0.013069938868284225, -0.006218217313289642, 0.031312599778175354, -0.010844998992979527, -0.008087683469057083, 0.050346050411462784, 0.033841151744127274, 0.042279038578271866, -0.07524359226226807, 0.11680546402931213, -0.13178092241287231, 0.03722601756453514, -0.05543852970004082, 0.006121810991317034, -0.023417703807353973, 0.07472506165504456, -0.0606486015021801, 0.09023861587047577, 0.06879188865423203, -0.026590168476104736, 0.017451560124754906, 0.010153762064874172, -0.0492669977247715, -0.013610802590847015, 0.09496559202671051, -0.08813675493001938, -0.22518126666545868, -0.0991574078798294, -0.019789380952715874, 0.009215484373271465, -0.22172382473945618, -0.006683499086648226, -0.14756205677986145, 0.03613089770078659, -0.10096762329339981, 0.12564992904663086, 0.0954795554280281, -0.0034861890599131584, -0.012204322963953018, 0.049039773643016815, 0.033010389655828476, 0.1266937404870987, -0.13845397531986237, -0.10812123119831085 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # output This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) on a dataset of Shakespeare's plays. ## Model description The model is the original gpt-2 model fine-tuned on a custom dataset. ## Intended uses & limitations The model can be used to generate Shakespearean-like text. Consider that because it comes from plays, such a typographical structure might be reproduced. ## Training and evaluation data Trained with Shakespeare's plays corpus. ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 1 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 2.0 ### Training results ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.0+cu111 - Datasets 1.18.0 - Tokenizers 0.11.0
{"license": "mit", "tags": ["generated_from_trainer"], "model-index": [{"name": "output", "results": []}]}
text-generation
Iacopo/Shakespear-GPT2
[ "transformers", "pytorch", "gpt2", "text-generation", "generated_from_trainer", "license:mit", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #generated_from_trainer #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# output This model is a fine-tuned version of gpt2 on a dataset of Shakespeare's plays. ## Model description The model is the original gpt-2 model fine-tuned on a custom dataset. ## Intended uses & limitations The model can be used to generate Shakespearean-like text. Consider that because it comes from plays, such a typographical structure might be reproduced. ## Training and evaluation data Trained with Shakespeare's plays corpus. ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 1 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 2.0 ### Training results ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.0+cu111 - Datasets 1.18.0 - Tokenizers 0.11.0
[ "# output\n\nThis model is a fine-tuned version of gpt2 on a dataset of Shakespeare's plays.", "## Model description\n\nThe model is the original gpt-2 model fine-tuned on a custom dataset.", "## Intended uses & limitations\n\nThe model can be used to generate Shakespearean-like text. Consider that because it comes from plays, such a typographical structure might be reproduced.", "## Training and evaluation data\n\nTrained with Shakespeare's plays corpus.", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 1\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2.0", "### Training results", "### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.0+cu111\n- Datasets 1.18.0\n- Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #generated_from_trainer #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# output\n\nThis model is a fine-tuned version of gpt2 on a dataset of Shakespeare's plays.", "## Model description\n\nThe model is the original gpt-2 model fine-tuned on a custom dataset.", "## Intended uses & limitations\n\nThe model can be used to generate Shakespearean-like text. Consider that because it comes from plays, such a typographical structure might be reproduced.", "## Training and evaluation data\n\nTrained with Shakespeare's plays corpus.", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 1\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2.0", "### Training results", "### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.0+cu111\n- Datasets 1.18.0\n- Tokenizers 0.11.0" ]
[ 59, 26, 22, 43, 15, 3, 90, 4, 40 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #generated_from_trainer #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# output\n\nThis model is a fine-tuned version of gpt2 on a dataset of Shakespeare's plays.## Model description\n\nThe model is the original gpt-2 model fine-tuned on a custom dataset.## Intended uses & limitations\n\nThe model can be used to generate Shakespearean-like text. Consider that because it comes from plays, such a typographical structure might be reproduced.## Training and evaluation data\n\nTrained with Shakespeare's plays corpus.## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 1\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2.0### Training results### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.0+cu111\n- Datasets 1.18.0\n- Tokenizers 0.11.0" ]
[ -0.1006804034113884, 0.15855950117111206, -0.003161470405757427, 0.13156741857528687, 0.1230502650141716, -0.004605889320373535, 0.17130474746227264, 0.14262211322784424, -0.015744544565677643, 0.04345357045531273, 0.11201438307762146, 0.058831553906202316, -0.013258079998195171, 0.10647077113389969, 0.05808276683092117, -0.3027428388595581, -0.015878230333328247, 0.0022772205993533134, -0.13645969331264496, 0.10298013687133789, 0.10952265560626984, -0.04619432985782623, 0.10694950819015503, 0.03758476302027702, -0.07355254143476486, 0.02305014617741108, -0.012209299951791763, -0.022436367347836494, 0.15153245627880096, 0.09143105894327164, 0.023871198296546936, 0.012500097043812275, 0.04947124794125557, -0.1770886778831482, 0.014615354128181934, 0.0856906920671463, 0.006985376123338938, 0.045921728014945984, 0.11315441131591797, -0.026383893564343452, 0.18065598607063293, -0.009036594070494175, 0.014980471692979336, -0.0018645513337105513, -0.08352689445018768, -0.08705303072929382, -0.022883467376232147, 0.0029028821736574173, 0.039350081235170364, 0.14630092680454254, -0.04972259700298309, 0.14847035706043243, -0.03639740124344826, 0.10356463491916656, 0.14662839472293854, -0.226592019200325, -0.047931019216775894, -0.003596161026507616, 0.10868582129478455, 0.13813981413841248, -0.06747457385063171, 0.006785053294152021, -0.011718682944774628, 0.08360433578491211, 0.060168299823999405, -0.03143896162509918, -0.0265412125736475, 0.019489755854010582, -0.14167800545692444, -0.03628433495759964, 0.22999140620231628, -0.01505614910274744, -0.04173409938812256, -0.1023024395108223, -0.01269842404872179, 0.03350820019841194, 0.008191232569515705, -0.026553215458989143, 0.011499772779643536, 0.03474690765142441, -0.04439998045563698, -0.11404869705438614, -0.10666860640048981, -0.012340155430138111, 0.012968108989298344, 0.011619589291512966, 0.030527208000421524, 0.035602737218141556, -0.08081243932247162, 0.0916011855006218, -0.07724520564079285, -0.09239505976438522, -0.010452775284647942, -0.03073950484395027, 0.01243494264781475, -0.07776187360286713, -0.06711532920598984, 0.0075982664711773396, -0.0243727695196867, 0.1263500452041626, 0.07686740159988403, 0.07091332972049713, 0.07113060355186462, 0.031755298376083374, 0.026565082371234894, 0.13888464868068695, -0.16106173396110535, 0.053584933280944824, 0.0623764805495739, 0.12075012922286987, 0.003084018127992749, 0.039659783244132996, -0.128604456782341, -0.06647718697786331, 0.07039150595664978, 0.025388145819306374, -0.008597016334533691, 0.05546204000711441, -0.04368521273136139, -0.02439608983695507, 0.07184229791164398, -0.08134997636079788, 0.0021882676519453526, 0.005760306026786566, -0.07394939661026001, 0.037656571716070175, 0.062256429344415665, -0.007464678958058357, -0.10861801356077194, -0.014026264660060406, -0.1245468333363533, -0.006722485180944204, 0.028878550976514816, -0.09492576122283936, 0.01948309689760208, -0.04387866333127022, 0.02207220532000065, -0.04535890370607376, -0.15165778994560242, -0.03839970752596855, 0.042257990688085556, -0.016444291919469833, -0.06126119941473007, -0.06132214516401291, -0.06353431940078735, -0.04703965410590172, 0.011368407867848873, 0.026505162939429283, -0.030454952269792557, 0.03557654097676277, -0.033870629966259, 0.026980284601449966, 0.0013377886498346925, 0.07287924736738205, -0.15655522048473358, 0.03251791372895241, -0.12941551208496094, 0.14436830580234528, 0.027822470292448997, -0.05851561576128006, -0.12714247405529022, -0.10025868564844131, 0.024111095815896988, 0.04893259331583977, 0.029148152098059654, 0.12751610577106476, -0.16301457583904266, -0.08913131058216095, 0.14374010264873505, -0.03586145490407944, -0.1576705276966095, 0.14673016965389252, -0.04476967453956604, 0.05590232089161873, 0.09604781121015549, 0.14739874005317688, 0.14481940865516663, -0.021287091076374054, -0.01411578431725502, 0.049806635826826096, 0.018785135820508003, 0.056909047067165375, 0.09500724822282791, -0.03738207742571831, 0.12893007695674896, 0.016242528334259987, -0.17799660563468933, -0.02296530082821846, -0.04269153252243996, -0.05514548718929291, -0.03958216309547424, -0.04415659233927727, 0.02041156217455864, 0.011981794610619545, 0.04767276346683502, -0.030614439398050308, -0.11621049046516418, 0.059200920164585114, 0.06634373962879181, -0.14647692441940308, 0.08751201629638672, -0.039504215121269226, -0.027793748304247856, 0.036588720977306366, 0.012502100318670273, -0.23058582842350006, -0.03968289867043495, 0.046158842742443085, -0.08346790075302124, 0.05363623425364494, 0.07736899703741074, 0.03773413971066475, 0.11404787003993988, -0.015823082998394966, 0.03688810393214226, -0.028437001630663872, -0.047017764300107956, -0.11776495724916458, -0.18414683640003204, -0.08356712758541107, -0.060390956699848175, 0.13506829738616943, -0.19257856905460358, 0.005117757245898247, -0.04820188507437706, 0.09152837097644806, -0.010113757103681564, -0.059184860438108444, 0.03392234444618225, 0.0207316055893898, -0.05687450245022774, -0.0946861058473587, 0.04575638845562935, 0.007167338393628597, -0.11046843975782394, 0.006267772987484932, -0.19505499303340912, 0.05760896950960159, 0.09065379202365875, 0.016345640644431114, -0.031928613781929016, -0.0156001141294837, -0.06386890262365341, -0.026971137151122093, -0.023140229284763336, -0.02385755442082882, 0.28842148184776306, 0.021708538755774498, 0.12612111866474152, -0.09588942676782608, -0.01711159572005272, -0.013326380401849747, -0.04361306503415108, -0.024702394381165504, 0.11139866709709167, 0.02643677219748497, -0.09866268932819366, 0.05592399463057518, 0.04785384237766266, -0.08668524771928787, 0.12385886162519455, -0.01993640325963497, -0.05206671357154846, 0.01369203720241785, -0.030101269483566284, -0.00871159229427576, -0.010706870816648006, -0.13253219425678253, -0.0013587329303845763, 0.018395982682704926, 0.011397645808756351, 0.04394741728901863, -0.16761574149131775, -0.0268552303314209, 0.04169932380318642, -0.058704011142253876, -0.03127026557922363, 0.04504977911710739, -0.06742978096008301, 0.06888831406831741, 0.017345178872346878, -0.016620250418782234, 0.02186218835413456, -0.013397695496678352, -0.1614948958158493, 0.19352686405181885, -0.11792931705713272, -0.10480469465255737, -0.15467576682567596, 0.05236228555440903, -0.05782526358962059, 0.08562653511762619, 0.02701808512210846, -0.03588462620973587, -0.06524761021137238, -0.11613071709871292, 0.06907851248979568, -0.07743111997842789, -0.043245475739240646, -0.07722220569849014, 0.01561436802148819, -0.004119140096008778, -0.10479719936847687, 0.01689217984676361, 0.005379761569201946, -0.10534407198429108, -0.04920477420091629, -0.11694887280464172, 0.004130733199417591, 0.13878151774406433, 0.00803328026086092, 0.0019711139611899853, -0.02317696437239647, 0.25955677032470703, -0.06340073049068451, 0.043534211814403534, 0.16047003865242004, -0.007369245868176222, 0.06894741952419281, 0.06988170742988586, 0.02025158517062664, -0.03280198574066162, 0.036389708518981934, -0.03403898701071739, -0.0335710309445858, -0.21830236911773682, -0.02936435304582119, -0.06344588100910187, 0.04689118638634682, 0.1411641538143158, 0.02737114205956459, -0.029928933829069138, 0.08749159425497055, -0.05886376276612282, 0.09754753857851028, 0.08212513476610184, 0.05010553449392319, 0.1429978311061859, 0.0787651389837265, 0.06140872836112976, -0.0020226386841386557, -0.03780864179134369, 0.03332994878292084, 0.017011526972055435, 0.20107078552246094, -0.015989243984222412, 0.20787562429904938, 0.002925399225205183, 0.018885599449276924, 0.005810622125864029, 0.017931994050741196, 0.06445301324129105, 0.03428727388381958, -0.014818396419286728, -0.0692218765616417, 0.009593913331627846, 0.05839702486991882, 0.03318077698349953, -0.0798405110836029, -0.042581841349601746, 0.09325391054153442, 0.005257344804704189, 0.1063229963183403, 0.10261418670415878, -0.34593647718429565, -0.07151059806346893, 0.006360046565532684, 0.00808313861489296, -0.021091653034090996, 0.030714821070432663, 0.06898444890975952, -0.16152189671993256, 0.027791094034910202, -0.05124042555689812, 0.08465606719255447, -0.08303918689489365, 0.037146810442209244, 0.06324508041143417, 0.08675520867109299, -0.021254319697618484, 0.07885205745697021, -0.1624002605676651, 0.17116889357566833, 0.018084632232785225, 0.08390533924102783, -0.05593203008174896, 0.0009828794281929731, 0.05398965999484062, 0.07958070933818817, 0.11928610503673553, -0.0049848053604364395, 0.10105416923761368, -0.04848393425345421, -0.06991875171661377, 0.068724125623703, 0.08788828551769257, -0.08327624946832657, 0.1053767129778862, -0.06483589857816696, 0.0029549032915383577, 0.005727322772145271, 0.03657650575041771, -0.07137517631053925, -0.1455368548631668, 0.015943290665745735, 0.0070953043177723885, -0.0031128989066928625, -0.01927313208580017, -0.0995909571647644, -0.007763291243463755, 0.11638391762971878, -0.011078943498432636, -0.10822033882141113, -0.07173352688550949, 0.08189087361097336, 0.17429962754249573, -0.07023812085390091, 0.03259141743183136, -0.023414671421051025, 0.1411273032426834, -0.029275963082909584, -0.08916179835796356, 0.05563829094171524, -0.02363644726574421, -0.15386652946472168, -0.05350682511925697, 0.15334081649780273, 0.011090589687228203, 0.057852473109960556, 0.004225136712193489, 0.04476044699549675, -0.054248977452516556, -0.07655937969684601, 0.0008513847715221345, -0.020449521020054817, 0.02953474409878254, 0.07227598875761032, -0.021490810438990593, 0.09759306162595749, -0.09131115674972534, 0.005493681412190199, 0.061361413449048996, 0.1595020443201065, -0.042515743523836136, -0.013517068699002266, 0.08463624119758606, -0.06713950634002686, -0.2295389026403427, -0.010605554096400738, 0.09158811718225479, 0.01982717588543892, 0.04954545572400093, -0.22548963129520416, 0.0625632032752037, 0.047247376292943954, 0.01542896218597889, 0.041737839579582214, -0.3363935351371765, -0.1540578305721283, 0.07591147720813751, 0.07209116220474243, -0.004324065521359444, -0.1063256561756134, -0.026885924860835075, -0.022078700363636017, -0.029469262808561325, 0.030482174828648567, -0.06786096841096878, 0.11912389099597931, -0.04012860730290413, 0.0382135808467865, 0.011504404246807098, -0.006738766096532345, 0.11637245863676071, 0.12619492411613464, 0.04643571749329567, 0.004729455802589655, 0.015945985913276672, 0.1602666825056076, -0.032086532562971115, 0.09267432987689972, -0.054398197680711746, 0.0674140602350235, -0.052121054381132126, -0.02981008216738701, -0.10926520824432373, 0.009856746532022953, -0.030752262100577354, -0.02317478321492672, -0.0677841454744339, 0.012431628070771694, -0.008258392103016376, 0.009691568091511726, 0.07478637248277664, -0.0024397815577685833, -0.04646827280521393, 0.11110255867242813, 0.1574876606464386, 0.09890887886285782, -0.18787971138954163, 0.055212218314409256, 0.006441510282456875, 0.007215011399239302, -0.1330501139163971, 0.0013437478337436914, 0.12824739515781403, 0.02917497232556343, 0.10477437824010849, 0.08326339721679688, -0.07646716386079788, -0.00844735000282526, 0.03208446502685547, -0.13292630016803741, -0.17589564621448517, -0.08374857157468796, -0.10919712483882904, -0.16990014910697937, 0.0015587989473715425, 0.13649538159370422, -0.09159277379512787, -0.024935387074947357, 0.016888661310076714, -0.009400490671396255, -0.013810996897518635, 0.16882489621639252, 0.04718907177448273, 0.008618696592748165, -0.08432481437921524, 0.14030228555202484, 0.04478450119495392, -0.020474642515182495, 0.030564093962311745, 0.08712202310562134, -0.14667026698589325, -0.029391391202807426, 0.02050471492111683, 0.07371634989976883, -0.10383408516645432, 0.011569966562092304, -0.0614619106054306, -0.09450128674507141, 0.012113635428249836, 0.014585808850824833, 0.058312561362981796, 0.07751002907752991, -0.1390932947397232, -0.026102116331458092, -0.1603652983903885, 0.1135287955403328, 0.1367872655391693, 0.0337836779654026, -0.0957103967666626, 0.11845143139362335, -0.029740020632743835, 0.02780233323574066, -0.012914477847516537, -0.03188521787524223, -0.028406895697116852, -0.016837459057569504, -0.1388084888458252, 0.013651382178068161, -0.06385591626167297, -0.04063815996050835, -0.04460092633962631, -0.033114511519670486, -0.04785563796758652, 0.01409036573022604, -0.039223261177539825, -0.07861244678497314, -0.05318012461066246, 0.055305369198322296, -0.13007161021232605, -0.008050693199038506, 0.036418866366147995, -0.12419316917657852, 0.08481360226869583, 0.0842716321349144, -0.02583928592503071, 0.033306293189525604, 0.014438536018133163, -0.033892132341861725, -0.020017974078655243, 0.03099261038005352, 0.0012621615314856172, -0.05828312039375305, -0.05235471948981285, -0.048987358808517456, 0.05629946291446686, -0.010334081947803497, 0.03551286458969116, -0.07006238400936127, 0.04327907785773277, -0.01562650501728058, 0.037378448992967606, -0.05403677001595497, 0.06423094868659973, 0.07556276023387909, 0.07373173534870148, 0.1514139473438263, -0.0658634603023529, 0.05043576657772064, -0.20609846711158752, -0.0018790296744555235, 0.000011726194315997418, -0.0596156120300293, -0.05965337157249451, -0.05806306004524231, 0.04130222648382187, -0.04809229075908661, 0.10617361217737198, -0.0011476795189082623, 0.08653397113084793, 0.038004547357559204, 0.08329450339078903, 0.0643640086054802, 0.04828217998147011, 0.14466939866542816, 0.04927942529320717, -0.06412887573242188, 0.009783194400370121, 0.04091624170541763, 0.07667692750692368, 0.0930473655462265, 0.12805022299289703, 0.035634517669677734, -0.003294182475656271, 0.10336543619632721, 0.0396733321249485, -0.01179261039942503, -0.16326329112052917, -0.007810370530933142, 0.06417504698038101, 0.1060446947813034, -0.011935110203921795, 0.08638589084148407, 0.14477728307247162, -0.12910687923431396, 0.03803398460149765, -0.01566927507519722, -0.12967117130756378, -0.10263275355100632, -0.14424940943717957, -0.057463791221380234, -0.07811422646045685, -0.0217035710811615, -0.15018004179000854, 0.03253490850329399, 0.05450384318828583, 0.02752913534641266, -0.0524289645254612, 0.14105281233787537, 0.030532367527484894, -0.12800095975399017, 0.07202935963869095, -0.04558425769209862, 0.061195068061351776, 0.05846120044589043, -0.012268470600247383, 0.03538142889738083, -0.09151675552129745, 0.042120371013879776, 0.02130996808409691, 0.017427382990717888, 0.040198858827352524, -0.07282067090272903, -0.08423899114131927, -0.031149236485362053, 0.05882992595434189, -0.039520513266325, 0.016021274030208588, 0.01616322435438633, -0.0931914672255516, 0.007798108737915754, 0.1918729543685913, -0.01468941941857338, -0.008701201528310776, -0.07592011988162994, 0.28521156311035156, 0.05353787913918495, -0.02340690605342388, 0.06437256187200546, -0.05713248625397682, -0.014712195843458176, 0.19771958887577057, 0.19718815386295319, -0.12016282975673676, -0.03134461119771004, -0.0126730278134346, 0.0020713277626782656, 0.03079814836382866, 0.08717112988233566, 0.015082512982189655, 0.08131289482116699, -0.10035780072212219, 0.04821968451142311, -0.02884789928793907, -0.009777713567018509, -0.07525375485420227, 0.04262919723987579, 0.08057409524917603, -0.012140258215367794, -0.05577969551086426, 0.08021242916584015, -0.08902418613433838, -0.09979326277971268, -0.07306355237960815, -0.08447197079658508, -0.08542545884847641, -0.027786031365394592, -0.09828652441501617, 0.028039731085300446, 0.15330155193805695, -0.008401665836572647, -0.0007191529730334878, 0.08640497177839279, -0.017564380541443825, -0.16014482080936432, -0.010990982875227928, 0.09673082083463669, -0.10319270193576813, 0.11082300543785095, -0.028010539710521698, 0.12395571917295456, 0.06333300471305847, 0.051133327186107635, -0.10266824066638947, -0.032072048634290695, 0.04816122725605965, 0.08025725185871124, 0.012625111266970634, 0.04434952139854431, -0.020324155688285828, 0.0053344601765275, 0.025883669033646584, -0.07087122648954391, 0.013618823140859604, 0.02652807906270027, -0.030343400314450264, -0.07544710487127304, -0.05463317036628723, -0.07901456207036972, 0.13180913031101227, 0.1712104231119156, -0.061363909393548965, -0.024572255089879036, 0.0021927168127149343, 0.0009285432752221823, 0.09218849986791611, 0.10353033989667892, 0.011035187169909477, -0.17572863399982452, -0.03754117712378502, 0.004614827688783407, -0.021612223237752914, -0.2566876709461212, -0.06730208545923233, -0.025354156270623207, -0.043332427740097046, -0.02675420604646206, 0.099667988717556, -0.0020551809575408697, 0.039360854774713516, -0.03581021726131439, 0.06033730134367943, -0.05559869110584259, 0.11449800431728363, -0.12362897396087646, -0.14550714194774628 ]
null
null
transformers
# Hank Hill DialoGPT Model
{"tags": ["conversational"]}
text-generation
Icemiser/chat-test
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Hank Hill DialoGPT Model
[ "# Hank Hill DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Hank Hill DialoGPT Model" ]
[ 51, 9 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Hank Hill DialoGPT Model" ]
[ -0.06167367845773697, 0.12431930005550385, -0.005004893988370895, 0.023562945425510406, 0.10829204320907593, -0.003459138795733452, 0.16675448417663574, 0.1415243297815323, 0.0500914603471756, -0.04779992252588272, 0.1473265141248703, 0.2086438238620758, -0.0011395812034606934, 0.0883016511797905, -0.09171683341264725, -0.29451513290405273, 0.019112177193164825, 0.06887195259332657, 0.02716984413564205, 0.11398616433143616, 0.0742078647017479, -0.06363619863986969, 0.08248598873615265, -0.008675029501318932, -0.12204843759536743, -0.009687187150120735, 0.017929473891854286, -0.1109284907579422, 0.11726310849189758, 0.053825683891773224, 0.008782868273556232, 0.032313063740730286, -0.05328081548213959, -0.1164473369717598, 0.039820969104766846, -0.014265421777963638, -0.03971680998802185, 0.06800340116024017, -0.013873706571757793, -0.11192820221185684, 0.09313024580478668, 0.10058936476707458, 0.01325952634215355, 0.036480218172073364, -0.14493994414806366, -0.012274052016437054, -0.005382100120186806, 0.0852440744638443, 0.09540995955467224, 0.09090518951416016, -0.033240869641304016, 0.1444225311279297, -0.05881093442440033, 0.11857722699642181, 0.12497739493846893, -0.3022378087043762, -0.015318158082664013, 0.12574969232082367, 0.005885569378733635, 0.0538933128118515, -0.054893746972084045, 0.09004692733287811, 0.010141775012016296, -0.0013439180329442024, -0.052010390907526016, -0.09152761101722717, -0.060871489346027374, 0.04463035613298416, -0.09496283531188965, -0.011993415653705597, 0.24304980039596558, -0.020333588123321533, 0.0646740049123764, -0.07286964356899261, -0.09441883116960526, -0.029758192598819733, -0.04399419575929642, -0.02331489324569702, -0.08297551423311234, 0.0640917494893074, -0.02241525612771511, -0.10941511392593384, -0.11377306282520294, -0.020699668675661087, -0.15633301436901093, 0.14064612984657288, 0.03646262362599373, 0.03344358876347542, -0.2223886400461197, 0.11000865697860718, 0.0667959600687027, -0.09930730611085892, 0.030362481251358986, -0.08804775774478912, 0.00943442527204752, 0.01327812485396862, -0.0278970617800951, -0.0005143769085407257, 0.06891851127147675, 0.12143474817276001, 0.05737048760056496, 0.026163829490542412, -0.000588734750635922, 0.05501113831996918, 0.04526136815547943, 0.08038385212421417, 0.013002118095755577, -0.12279106676578522, 0.04393669217824936, -0.08853671699762344, 0.014000111259520054, -0.06039407476782799, -0.19132792949676514, -0.011712171137332916, 0.05022689700126648, 0.05010310187935829, 0.07065741717815399, 0.11139767616987228, -0.029631085693836212, -0.061513930559158325, 0.004089927766472101, -0.019786546006798744, -0.028042437508702278, -0.013493701815605164, 0.03362447768449783, 0.14867877960205078, 0.02265879511833191, 0.06350742280483246, -0.11871829628944397, -0.013382194563746452, -0.04224007576704025, -0.017123127356171608, -0.004572388716042042, -0.0005217059515416622, -0.0005468451417982578, -0.0442541241645813, 0.015721643343567848, -0.12693224847316742, -0.18671280145645142, -0.0013045333325862885, -0.012244029901921749, -0.0337434858083725, -0.14043694734573364, -0.09023769199848175, 0.0036649731919169426, 0.026364363729953766, -0.05633516609668732, -0.006847647950053215, -0.046359721571207047, 0.07609663158655167, -0.07805924862623215, 0.09847573935985565, -0.07271204143762589, 0.07386743277311325, -0.0704406350851059, -0.04194367676973343, -0.17667606472969055, 0.14621300995349884, 0.026644591242074966, 0.10443677008152008, -0.01588522084057331, 0.002471641171723604, -0.08481225371360779, 0.06262839585542679, -0.06885744631290436, 0.2569487690925598, -0.07811571657657623, -0.12177551537752151, 0.2309398502111435, -0.040293384343385696, -0.12299063801765442, 0.13445575535297394, -0.021821027621626854, 0.08805190026760101, 0.16534796357154846, 0.21850335597991943, 0.027507202699780464, -0.024709835648536682, 0.09406077861785889, 0.12901657819747925, -0.08877993375062943, -0.033619195222854614, 0.011876684613525867, -0.06126422435045242, -0.11617663502693176, 0.028947187587618828, 0.074828140437603, 0.05329237878322601, -0.0516202487051487, -0.016710789874196053, -0.0033289501443505287, -0.017062190920114517, 0.07123570889234543, -0.029310137033462524, 0.13273045420646667, -0.034221045672893524, -0.057060010731220245, -0.024194244295358658, 0.029655177146196365, -0.042305268347263336, 0.032417383044958115, -0.0721929520368576, 0.06301100552082062, -0.004283145070075989, 0.04797746613621712, -0.13091832399368286, -0.02080526202917099, -0.047438304871320724, 0.1458035409450531, 0.060593269765377045, 0.10591402649879456, 0.04852301999926567, -0.05105193704366684, -0.019950203597545624, 0.020087240263819695, 0.1899804174900055, -0.009699756279587746, -0.1096685379743576, -0.14201274514198303, 0.09800983965396881, -0.0461689829826355, 0.11509108543395996, -0.04246366396546364, 0.016701871529221535, 0.0021763229742646217, 0.13459545373916626, 0.0023630126379430294, 0.021165460348129272, 0.028816677629947662, -0.04081610217690468, -0.040860727429389954, -0.013238764367997646, 0.09513240307569504, 0.011801484040915966, -0.08319184929132462, 0.2314610481262207, -0.15377461910247803, 0.09285053610801697, 0.19657523930072784, -0.2377782016992569, 0.010381841100752354, -0.11264733225107193, -0.020816989243030548, 0.0014609917998313904, 0.06001037359237671, -0.04166482761502266, 0.2609287202358246, -0.015838615596294403, 0.16552548110485077, -0.0396534688770771, -0.07510004937648773, -0.046076081693172455, -0.04117367044091225, 0.02889118529856205, 0.10732165724039078, 0.09921279549598694, -0.1724674552679062, 0.15319764614105225, 0.09993624687194824, 0.0812913328409195, 0.19878964126110077, 0.021610362455248833, -0.00975242629647255, 0.05318339914083481, -0.020474880933761597, -0.05538906902074814, -0.04441684111952782, -0.29676783084869385, -0.047570355236530304, 0.07447800785303116, 0.019205644726753235, 0.10592462867498398, -0.09518150985240936, -0.02142266184091568, -0.016459833830595016, -0.0016186926513910294, 0.06550298631191254, 0.09693719446659088, 0.03326962888240814, 0.11777906119823456, -0.030259668827056885, -0.061877187341451645, 0.07311142981052399, 0.011552765965461731, -0.08925370126962662, 0.1679343581199646, -0.11370182037353516, -0.3442954421043396, -0.11911206692457199, -0.19348923861980438, -0.037816889584064484, 0.05828556418418884, 0.09551380574703217, -0.10748247057199478, -0.010679740458726883, -0.009286340326070786, 0.11419891566038132, -0.08824872970581055, 0.03571217507123947, -0.03032565675675869, -0.009622503072023392, -0.11542321741580963, -0.08993585407733917, -0.06109544262290001, -0.0687703937292099, -0.05396116152405739, 0.13071776926517487, -0.1411263644695282, -0.019378043711185455, 0.23286288976669312, 0.08503355830907822, 0.06231735646724701, -0.04433225840330124, 0.16720488667488098, -0.11033084988594055, 0.037887249141931534, 0.1506674885749817, -0.05620376020669937, 0.05383554846048355, 0.11657579988241196, -0.02195090800523758, -0.08266428858041763, 0.03444288671016693, -0.01179497130215168, -0.06596571207046509, -0.24393656849861145, -0.11739176511764526, -0.11238779872655869, 0.10288918763399124, 0.04665477201342583, 0.04518070071935654, 0.16454391181468964, 0.07795809954404831, -0.04430254176259041, 0.04088868945837021, 0.03269330412149429, 0.07228455692529678, 0.27974146604537964, -0.0866176038980484, 0.14472605288028717, -0.02406522072851658, -0.14896082878112793, 0.0811370387673378, 0.033987052738666534, 0.10495542734861374, 0.056103337556123734, 0.051770105957984924, 0.006772193592041731, 0.06516872346401215, 0.13484708964824677, 0.042530033737421036, 0.04646071046590805, -0.04007924720644951, -0.04073221981525421, -0.04019363224506378, -0.020740212872624397, 0.06577828526496887, 0.09275879710912704, -0.13928037881851196, -0.00642777094617486, 0.014668494462966919, 0.039274830371141434, 0.11003471165895462, 0.1058637872338295, -0.13946816325187683, -0.019846633076667786, 0.0744866281747818, -0.04135175421833992, -0.09795847535133362, 0.11083590984344482, -0.00012368883471935987, -0.13527169823646545, 0.041677817702293396, -0.005426769144833088, 0.10381820052862167, -0.1209821030497551, 0.06452703475952148, -0.16141662001609802, -0.05321930721402168, -0.016461465507745743, 0.073734812438488, -0.27053308486938477, 0.18834373354911804, 0.0025162617675960064, -0.04819098860025406, -0.10594579577445984, -0.006224407814443111, 0.03701158985495567, 0.05526721477508545, 0.09975787997245789, -0.001049424521625042, 0.07414495199918747, 0.011224029585719109, -0.10586000978946686, 0.02689896523952484, 0.07623989135026932, -0.07487770169973373, -0.019539540633559227, -0.02453390136361122, -0.011755414307117462, -0.014039425179362297, -0.11782865971326828, 0.0372714102268219, -0.16850298643112183, 0.05337529629468918, 0.06268198043107986, 0.06340891867876053, 0.020042162388563156, -0.039808083325624466, -0.10825536400079727, 0.20324955880641937, 0.02310541644692421, -0.0988599881529808, -0.09333330392837524, -0.025667084380984306, 0.04498235881328583, -0.06637382507324219, 0.030431177467107773, -0.043605782091617584, 0.007892846129834652, -0.05436930060386658, -0.18863584101200104, 0.12915097177028656, -0.09387614578008652, -0.058296915143728256, -0.03596441447734833, 0.26704564690589905, -0.003263669554144144, 0.03175634890794754, 0.04011443629860878, 0.005894081201404333, -0.12803499400615692, -0.10206492990255356, 0.034336745738983154, 0.04199735075235367, 0.04019398242235184, 0.05690401792526245, -0.015080306679010391, -0.021813366562128067, -0.05004732310771942, -0.020036784932017326, 0.33233141899108887, 0.1485186070203781, -0.051171183586120605, 0.2037094682455063, 0.1196252778172493, -0.060853853821754456, -0.2913246154785156, -0.08366747200489044, -0.07230368256568909, -0.04698897525668144, -0.044150616973638535, -0.18200501799583435, 0.15540340542793274, -0.03501582890748978, -0.012658683583140373, 0.0871652364730835, -0.23881690204143524, -0.10764670372009277, 0.2365022599697113, -0.04118839651346207, 0.4315607249736786, -0.08619125187397003, -0.08398967236280441, -0.011406642384827137, -0.20179490745067596, 0.1236891970038414, -0.04844796285033226, 0.10808959603309631, -0.00651167007163167, 0.16207443177700043, 0.050322096794843674, -0.003336802590638399, 0.06699024140834808, 0.05764386057853699, -0.04908985644578934, -0.09348583221435547, -0.09088059514760971, -0.01414475403726101, 0.014202258549630642, 0.007410952355712652, -0.05689466744661331, 0.0397663377225399, -0.16693292558193207, -0.06575584411621094, -0.08059956133365631, 0.038465771824121475, 0.022902581840753555, -0.08682450652122498, 0.009231404401361942, -0.06147950515151024, -0.018041804432868958, 0.007244909182190895, 0.16258861124515533, -0.10512671619653702, 0.13009566068649292, 0.05497519299387932, 0.13879716396331787, -0.19081275165081024, -0.05988393351435661, -0.07712382078170776, -0.07401825487613678, 0.055266693234443665, -0.09919293969869614, 0.023282084614038467, 0.08723774552345276, -0.004931767471134663, 0.0922970399260521, 0.07904575765132904, -0.001432756893336773, 0.0025974144227802753, 0.07189461588859558, -0.24659530818462372, -0.0832391232252121, -0.09360778331756592, -0.018455587327480316, 0.06747902929782867, 0.1240072175860405, 0.20767313241958618, 0.018750527873635292, -0.03423801809549332, 0.0126143554225564, 0.0012694234028458595, -0.01260463334619999, 0.051766734570264816, 0.0190645232796669, 0.023157522082328796, -0.17361390590667725, 0.06281016767024994, -0.015935059636831284, -0.05871293693780899, 0.032708268612623215, 0.13684919476509094, -0.1100294291973114, -0.11215599626302719, -0.09114020317792892, 0.1516934633255005, -0.08472895622253418, 0.025315281003713608, -0.04176640510559082, -0.1398206502199173, 0.08793500810861588, 0.06286995857954025, 0.053039439022541046, 0.07232016324996948, -0.11148863285779953, -0.0352141410112381, -0.022995585575699806, -0.0014212317764759064, 0.041340261697769165, -0.035385385155677795, -0.039994850754737854, 0.08166871964931488, -0.023506855592131615, 0.1074184775352478, -0.0855809673666954, -0.12013769894838333, -0.1357547491788864, 0.041553180664777756, -0.11289641261100769, -0.08214476704597473, -0.09321543574333191, -0.031840309500694275, -0.003156609833240509, -0.05553290247917175, -0.037620142102241516, -0.026500772684812546, -0.12420845031738281, 0.03676842153072357, -0.016458088532090187, 0.022478872910141945, -0.05351806432008743, 0.024850105866789818, 0.06324782967567444, -0.03555494546890259, 0.16785064339637756, 0.14306995272636414, -0.10781070590019226, 0.07836169749498367, -0.12916317582130432, -0.08096765726804733, 0.09403499960899353, 0.013876345939934254, 0.0493529811501503, 0.06258270889520645, -0.012521439231932163, 0.06161949411034584, 0.059787921607494354, 0.054466091096401215, 0.008081244304776192, -0.08425034582614899, 0.06864002346992493, -0.050306495279073715, -0.11061010509729385, -0.06534967571496964, -0.04334940016269684, 0.007572031579911709, 0.04927757382392883, 0.0816478580236435, -0.051632534712553024, 0.07300510257482529, -0.09260085970163345, 0.02697005681693554, 0.004804304800927639, -0.1530693769454956, 0.004181870725005865, -0.10020224004983902, 0.0569031797349453, 0.02667820453643799, 0.20718926191329956, -0.015237963758409023, -0.052741002291440964, 0.029916390776634216, 0.09584035724401474, 0.06335258483886719, -0.015979818999767303, 0.19729489088058472, 0.09753740578889847, -0.045120902359485626, -0.08776609599590302, 0.09483199566602707, 0.0661095455288887, 0.06590865552425385, 0.12316904217004776, -0.03814530745148659, -0.0042475489899516106, 0.07790166884660721, -0.024822134524583817, 0.04168412834405899, -0.12654736638069153, -0.08859008550643921, -0.044577695429325104, 0.07019606232643127, -0.043071433901786804, 0.136226624250412, 0.1501438319683075, -0.02359696477651596, 0.012718282639980316, 0.017998311668634415, -0.0620143748819828, -0.18464341759681702, -0.15491166710853577, -0.074969083070755, -0.1459077000617981, 0.004548429511487484, -0.1093914583325386, 0.03393302112817764, 0.02654864825308323, 0.09861895442008972, -0.048820409923791885, 0.058452993631362915, 0.07144074141979218, -0.09898251295089722, 0.08668142557144165, -0.029249142855405807, 0.07824282348155975, -0.07570530474185944, -0.02296084724366665, -0.08327930420637131, 0.03311360254883766, -0.00839927140623331, 0.011208944022655487, -0.050454381853342056, 0.009736929088830948, -0.11519569158554077, -0.08857536315917969, -0.047044821083545685, 0.04425513744354248, 0.002644304186105728, 0.137538880109787, 0.03662855923175812, -0.028058234602212906, 0.02369411289691925, 0.24417677521705627, -0.07893401384353638, -0.10981472581624985, -0.05855164676904678, 0.16609445214271545, -0.009250158444046974, 0.06701546162366867, -0.012958038598299026, 0.001253803726285696, -0.04713154956698418, 0.3185100257396698, 0.3180032968521118, -0.07729058712720871, 0.02406560815870762, -0.007746295537799597, 0.035664647817611694, 0.1083575114607811, 0.09705822169780731, 0.10361102223396301, 0.2925741374492645, -0.052659157663583755, -0.0297895185649395, 0.006775563582777977, -0.04252997785806656, -0.08209984004497528, 0.03843316435813904, 0.04806143045425415, -0.07313407212495804, 0.0029080319218337536, 0.09529106318950653, -0.23511341214179993, 0.032003406435251236, -0.1439332365989685, -0.20879888534545898, -0.08027351647615433, -0.001589314080774784, 0.10071051120758057, 0.042222388088703156, 0.07838515937328339, 0.004190376959741116, -0.05698101222515106, 0.07404305040836334, 0.006681677419692278, -0.24522437155246735, -0.017703283578157425, 0.09845687448978424, -0.09131132811307907, -0.07224303483963013, -0.029116444289684296, 0.06026528403162956, 0.07736218720674515, 0.06176045909523964, -0.012452277354896069, 0.02645324170589447, -0.016133548691868782, -0.095625139772892, 0.026880208402872086, 0.010015061125159264, 0.01876065507531166, -0.06570103764533997, 0.08452524244785309, -0.07191241532564163, 0.025067199021577835, -0.07313413172960281, -0.04125295951962471, -0.026505934074521065, 0.007561068050563335, -0.06533388048410416, 0.08192422986030579, 0.05131477862596512, -0.03389640152454376, -0.02025618962943554, -0.013502586632966995, -0.03741935268044472, -0.020752208307385445, -0.11238067597150803, -0.09365421533584595, -0.1550663858652115, -0.08877729624509811, 0.053075335919857025, 0.009060719050467014, -0.17548373341560364, -0.004467225633561611, -0.13099506497383118, 0.03907433897256851, -0.15459580719470978, 0.09353163838386536, 0.08218123018741608, 0.02478712983429432, 0.011833718046545982, 0.038890160620212555, 0.024662552401423454, 0.09319454431533813, -0.13849535584449768, -0.0816459059715271 ]
null
null
transformers
@inproceedings{adebara-abdul-mageed-2021-improving, title = "Improving Similar Language Translation With Transfer Learning", author = "Adebara, Ife and Abdul-Mageed, Muhammad", booktitle = "Proceedings of the Sixth Conference on Machine Translation", month = nov, year = "2021", address = "Online", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2021.wmt-1.27", pages = "273--278", abstract = "We investigate transfer learning based on pre-trained neural machine translation models to translate between (low-resource) similar languages. This work is part of our contribution to the WMT 2021 Similar Languages Translation Shared Task where we submitted models for different language pairs, including French-Bambara, Spanish-Catalan, and Spanish-Portuguese in both directions. Our models for Catalan-Spanish (82.79 BLEU)and Portuguese-Spanish (87.11 BLEU) rank top 1 in the official shared task evaluation, and we are the only team to submit models for the French-Bambara pairs.", }
{"language": ["bm", "fr"]}
text2text-generation
Ife/BM-FR
[ "transformers", "pytorch", "marian", "text2text-generation", "bm", "fr", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "bm", "fr" ]
TAGS #transformers #pytorch #marian #text2text-generation #bm #fr #autotrain_compatible #endpoints_compatible #region-us
@inproceedings{adebara-abdul-mageed-2021-improving, title = "Improving Similar Language Translation With Transfer Learning", author = "Adebara, Ife and Abdul-Mageed, Muhammad", booktitle = "Proceedings of the Sixth Conference on Machine Translation", month = nov, year = "2021", address = "Online", publisher = "Association for Computational Linguistics", url = "URL pages = "273--278", abstract = "We investigate transfer learning based on pre-trained neural machine translation models to translate between (low-resource) similar languages. This work is part of our contribution to the WMT 2021 Similar Languages Translation Shared Task where we submitted models for different language pairs, including French-Bambara, Spanish-Catalan, and Spanish-Portuguese in both directions. Our models for Catalan-Spanish (82.79 BLEU)and Portuguese-Spanish (87.11 BLEU) rank top 1 in the official shared task evaluation, and we are the only team to submit models for the French-Bambara pairs.", }
[]
[ "TAGS\n#transformers #pytorch #marian #text2text-generation #bm #fr #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 44 ]
[ "passage: TAGS\n#transformers #pytorch #marian #text2text-generation #bm #fr #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.04999151825904846, -0.023952051997184753, -0.008309788070619106, 0.020969443023204803, 0.13934160768985748, 0.006741134915500879, 0.08761423826217651, 0.09994586557149887, -0.0010515438625589013, -0.019520321860909462, 0.15361110866069794, 0.2023184448480606, -0.04622964933514595, 0.13466285169124603, -0.10785374790430069, -0.2532006800174713, 0.027011768892407417, 0.0859806165099144, -0.02445891499519348, 0.11994960904121399, 0.08780743926763535, -0.07075979560613632, 0.09327659755945206, -0.03871278837323189, -0.17694438993930817, 0.04837296903133392, 0.038468748331069946, -0.09423506259918213, 0.10092999786138535, 0.07543151825666428, 0.12101950496435165, 0.06075671687722206, -0.047287095338106155, -0.1345219761133194, 0.043140556663274765, -0.04264753684401512, -0.07243013381958008, 0.0480579175055027, 0.08361995965242386, -0.10213840007781982, 0.1098707839846611, 0.07523160427808762, -0.025483280420303345, 0.05308695137500763, -0.1520080268383026, -0.01746559888124466, -0.02441931702196598, 0.06090477481484413, 0.010150275193154812, 0.06176435574889183, 0.008454591035842896, 0.1205260157585144, -0.1092476025223732, 0.135060653090477, 0.17125125229358673, -0.26384812593460083, -0.010185182094573975, 0.06114405021071434, 0.08459657430648804, 0.05730606988072395, 0.011876421980559826, 0.07919490337371826, 0.03542521968483925, 0.014813133515417576, -0.02063002996146679, -0.08576422929763794, -0.06121864914894104, 0.03515364229679108, -0.07254774868488312, -0.04741295054554939, 0.23092301189899445, -0.061890918761491776, 0.06464442610740662, 0.011908815242350101, -0.0955950990319252, -0.026754820719361305, -0.02030411921441555, -0.009269747883081436, -0.061138976365327835, 0.06499403715133667, -0.004510046448558569, -0.06745290756225586, -0.12794700264930725, 0.017298726364970207, -0.20127475261688232, 0.18054181337356567, -0.017059290781617165, 0.053081970661878586, -0.22680367529392242, 0.06185367703437805, 0.013973257504403591, -0.12004178762435913, 0.04691435769200325, -0.09868902713060379, 0.09956463426351547, -0.0075828940607607365, -0.07066076248884201, -0.061391640454530716, 0.07774227112531662, 0.10118091106414795, 0.020515842363238335, 0.026994189247488976, -0.05580861493945122, 0.09051725268363953, 0.041583701968193054, 0.04303518310189247, 0.025922948494553566, -0.08551765233278275, 0.09203525632619858, -0.11289297789335251, 0.009604883380234241, -0.05743265151977539, -0.1620851457118988, -0.05584963783621788, 0.05878359079360962, 0.08027267456054688, 0.037818413227796555, 0.058703359216451645, -0.0490645170211792, -0.03145932778716087, 0.04687553644180298, -0.0651940107345581, 0.003957395441830158, 0.02255825512111187, -0.006724940612912178, 0.10146135836839676, 0.03459617868065834, -0.008385813795030117, -0.07063388079404831, 0.10331740230321884, -0.05559253692626953, -0.030063847079873085, -0.03451761230826378, -0.06667455285787582, 0.047270383685827255, -0.10183027386665344, 0.053028419613838196, -0.1668279618024826, -0.15528042614459991, 0.024594588205218315, 0.006951283197849989, -0.03526725247502327, -0.04336735978722572, -0.015659162774682045, -0.016087794676423073, 0.046477362513542175, -0.06465501338243484, 0.01584654115140438, -0.04818117618560791, 0.10817673057317734, 0.010635408572852612, 0.07775651663541794, -0.14606402814388275, 0.05914129689335823, -0.06939530372619629, -0.009520246647298336, -0.0814884603023529, 0.04830774664878845, -0.015088184736669064, 0.123560331761837, 0.025032011792063713, -0.013088889420032501, -0.11386218667030334, 0.06238722801208496, -0.01912839524447918, 0.20760954916477203, -0.06340117007493973, -0.12337512522935867, 0.23823297023773193, -0.07084842771291733, -0.1501321792602539, 0.06779646128416061, 0.0009697377681732178, 0.04921265318989754, 0.08541101217269897, 0.13604772090911865, 0.013033698312938213, -0.016507050022482872, 0.11712511628866196, 0.09735709428787231, -0.07111459970474243, -0.1026482954621315, -0.001788181602023542, 0.0012524455087259412, -0.09489309787750244, 0.050787705928087234, 0.10779279470443726, 0.0795355960726738, -0.07108264416456223, -0.03000168688595295, -0.03155365213751793, -0.028421951457858086, 0.06426611542701721, 0.027760624885559082, 0.11824744939804077, -0.08536720275878906, 0.008577936328947544, 0.024248817935585976, -0.005362153053283691, 0.02857416681945324, 0.024524249136447906, -0.03707941994071007, 0.13293899595737457, -0.050380051136016846, 0.043705374002456665, -0.20917709171772003, -0.020045490935444832, -0.029782677069306374, 0.11476527899503708, 0.029197340831160545, 0.1391465663909912, 0.07833414524793625, -0.0251613762229681, -0.01903119869530201, 0.010474230162799358, 0.14071834087371826, 0.01244288682937622, -0.0650804415345192, -0.10674851387739182, 0.06440693140029907, -0.07666846364736557, 0.029991677030920982, -0.08471106737852097, 0.019908137619495392, 0.12144407629966736, 0.13841761648654938, 0.012251455336809158, 0.06013200804591179, -0.03894789516925812, 0.03723699226975441, -0.08075124770402908, 0.04291735589504242, 0.10778361558914185, 0.0075895111076533794, -0.05566158518195152, 0.18765996396541595, -0.15896470844745636, 0.2680415213108063, 0.22623185813426971, -0.27660757303237915, 0.02101760171353817, -0.04825970530509949, -0.012980341911315918, 0.006333902012556791, 0.073115773499012, -0.02071218006312847, 0.03649623692035675, 0.009322901256382465, 0.21463529765605927, -0.06277751922607422, -0.05261039733886719, 0.011951279826462269, -0.06517193466424942, -0.0571560263633728, 0.06929244846105576, 0.07337101548910141, -0.21057294309139252, 0.17735950648784637, 0.2117307186126709, 0.03539891541004181, 0.22478854656219482, 0.02168467454612255, -0.0014761370839551091, 0.04307057335972786, -0.03497201204299927, -0.03252201899886131, -0.019746791571378708, -0.21662737429141998, -0.04136503115296364, 0.06798484921455383, 0.009612751193344593, 0.11546242237091064, -0.10675310343503952, -0.030441971495747566, 0.018426692113280296, 0.023033196106553078, 0.001338079571723938, 0.10017318278551102, 0.04396539553999901, 0.11335887759923935, -0.00486190477386117, -0.02394799329340458, 0.09244155883789062, 0.00972438883036375, -0.10177844017744064, 0.15204143524169922, -0.1350833624601364, -0.3119978904724121, -0.17787052690982819, -0.1925598531961441, -0.04982108995318413, 0.05606583133339882, 0.10637112706899643, -0.07464255392551422, -0.015850385650992393, 0.03419004753232002, 0.06862402707338333, -0.06521550565958023, 0.011875537224113941, -0.042336076498031616, 0.07864008843898773, -0.05423364043235779, -0.08605748414993286, -0.060243893414735794, -0.02062605507671833, 0.0036159995943307877, 0.12841925024986267, -0.13671356439590454, 0.10566604137420654, 0.13596008718013763, -0.001689803204499185, 0.07179941236972809, 0.0032385317608714104, 0.20402564108371735, -0.062136758118867874, -0.0017386017134413123, 0.20187915861606598, -0.056733835488557816, 0.05749620497226715, 0.12751521170139313, 0.01666327565908432, -0.06632963567972183, 0.006965093780308962, -0.05402475595474243, -0.08864250034093857, -0.21291665732860565, -0.13931424915790558, -0.11640628427267075, 0.06056217476725578, 0.0227595716714859, 0.04386135935783386, 0.13170498609542847, 0.06959527730941772, 0.0064119030721485615, 0.010298694483935833, 0.014160589314997196, 0.07809782028198242, 0.22042344510555267, -0.02698797918856144, 0.14290760457515717, -0.05302003026008606, -0.10603761672973633, 0.11592888087034225, 0.050105854868888855, 0.08882921934127808, 0.07404974102973938, 0.017529679462313652, 0.03380471095442772, 0.04034491255879402, 0.15237681567668915, 0.12172490358352661, 0.02973097562789917, -0.022188447415828705, -0.021662166342139244, -0.023253867402672768, -0.06091047823429108, 0.022857723757624626, 0.021857574582099915, -0.10590246319770813, -0.08051726222038269, -0.09764482825994492, 0.05723850429058075, 0.06392600387334824, 0.04233424738049507, -0.16835172474384308, -0.009433185681700706, 0.09608987718820572, 0.004876787308603525, -0.0938737764954567, 0.05701224133372307, 0.005707086529582739, -0.13763527572155, 0.05396413803100586, -0.015668896958231926, 0.13296721875667572, -0.0527467280626297, 0.08986229449510574, -0.09203380346298218, -0.08991116285324097, 0.0388190932571888, 0.10333260148763657, -0.3145909011363983, 0.24616189301013947, 0.02127717435359955, -0.06663810461759567, -0.0794888511300087, -0.01843038946390152, 0.005180563777685165, 0.17423836886882782, 0.055499542504549026, -0.0008109193295240402, -0.06837081909179688, -0.11249925941228867, 0.01439086813479662, 0.006191521883010864, 0.13655127584934235, 0.008366149850189686, 0.0031951696146279573, -0.03911156952381134, -0.028421267867088318, -0.030755365267395973, 0.017700225114822388, -0.03270570561289787, -0.17499089241027832, 0.07267210632562637, 0.009077073074877262, 0.011923150159418583, -0.007376103196293116, -0.026286477223038673, -0.03821701183915138, 0.20842309296131134, -0.04205850139260292, -0.058300573378801346, -0.11565681546926498, -0.04518373683094978, 0.022379195317626, -0.09352565556764603, 0.05344906076788902, -0.08607625961303711, 0.029983147978782654, -0.08677311986684799, -0.18849427998065948, 0.1269153207540512, -0.12370093911886215, -0.03568464517593384, -0.06639113277196884, 0.1693098396062851, -0.06383626908063889, 0.013767535798251629, 0.02481338568031788, -0.005205032881349325, -0.09936132282018661, -0.058252811431884766, -0.011379562318325043, -0.01553279161453247, 0.022590408101677895, 0.005599512252956629, -0.13144342601299286, -0.04807122051715851, -0.006543735507875681, -0.052022114396095276, 0.28263863921165466, 0.2131340503692627, -0.05340147018432617, 0.15820461511611938, 0.16916024684906006, -0.07125923037528992, -0.3300342559814453, -0.07729040831327438, -0.11496322602033615, -0.01143572200089693, -0.045424122363328934, -0.1493997424840927, 0.053177326917648315, -0.0025559875648468733, -0.02261195331811905, 0.09440750628709793, -0.2165306806564331, -0.09441930800676346, 0.16099688410758972, 0.01907661370933056, 0.4235299527645111, -0.12293416261672974, -0.11801721900701523, -0.09434809535741806, -0.191711887717247, 0.10136740654706955, -0.047753047198057175, 0.07966621965169907, -0.02667517028748989, 0.08131808787584305, 0.04879610612988472, -0.04497726261615753, 0.08605346083641052, -0.04428893327713013, 0.005521702114492655, -0.12505190074443817, -0.06975650042295456, 0.08062468469142914, 0.004559909459203482, -0.015484591014683247, -0.05748463794589043, 0.02778005041182041, -0.14440086483955383, -0.0403631217777729, -0.1056656613945961, 0.05350998416543007, 0.0010018771281465888, -0.05075754225254059, 0.032950788736343384, -0.060220733284950256, -0.016459882259368896, 0.009710562415421009, 0.15679991245269775, -0.08209363371133804, 0.13433384895324707, 0.18945258855819702, 0.13040845096111298, -0.16983895003795624, 0.10152272135019302, -0.06651783734560013, -0.0714760422706604, 0.04295581579208374, -0.07052251696586609, 0.0644201710820198, 0.10576627403497696, -0.03468215838074684, 0.06210658326745033, 0.09040664881467819, 0.0034775733947753906, -0.027448201552033424, 0.16296879947185516, -0.25279003381729126, 0.0272469874471426, -0.08200198411941528, 0.009184629656374454, 0.11471512168645859, 0.05071233585476875, 0.17739510536193848, 0.058840587735176086, -0.04503372311592102, -0.026200661435723305, -0.007408931385725737, -0.06940414756536484, 0.08390865474939346, 0.05950690433382988, 0.018236961215734482, -0.12473974376916885, 0.047005701810121536, 0.00883435271680355, -0.1542176753282547, -0.007006585597991943, 0.17145858705043793, -0.1257178634405136, -0.12829136848449707, 0.002486971439793706, 0.14809486269950867, -0.16030332446098328, -0.02563614584505558, -0.08008680492639542, -0.12091028690338135, 0.08718033879995346, 0.2576194703578949, 0.08790234476327896, 0.07151669263839722, -0.03028077632188797, -0.03296653926372528, -0.024296781048178673, 0.019664457067847252, 0.03168947622179985, 0.029119009152054787, -0.08263539522886276, 0.03147488459944725, -0.04557060822844505, 0.1344643235206604, -0.09025796502828598, -0.04417598620057106, -0.15150223672389984, 0.025552408769726753, -0.17164991796016693, -0.0875130295753479, -0.05994899198412895, -0.06356190145015717, -0.01439600344747305, -0.04681878164410591, -0.048986244946718216, -0.04965854808688164, -0.11731036752462387, 0.031436800956726074, -0.031914595514535904, 0.01133157778531313, -0.07003972679376602, -0.023630844429135323, 0.10396397858858109, -0.039192479103803635, 0.09224674105644226, 0.1407221555709839, -0.06914766132831573, 0.0854356586933136, -0.13294313848018646, -0.10456471890211105, 0.10438990592956543, 0.03001161478459835, 0.07627607136964798, 0.07554122805595398, 0.03888687118887901, 0.08094794303178787, 0.0359884537756443, 0.05613839998841286, 0.1164192333817482, -0.10358214378356934, 0.04111510142683983, -0.01181530300527811, -0.17223887145519257, -0.04982307553291321, -0.013638478703796864, 0.08167707920074463, 0.004987200256437063, 0.10161896795034409, -0.044114455580711365, 0.08776116371154785, -0.029772408306598663, 0.023546412587165833, -0.004559981171041727, -0.1875147670507431, -0.06795689463615417, -0.07318568229675293, 0.011997383087873459, 0.008748629130423069, 0.24912452697753906, 0.012828675098717213, 0.013295489363372326, 0.0454949326813221, 0.04059586673974991, 0.012331326492130756, 0.012002441100776196, 0.19227401912212372, 0.0817585214972496, -0.03721821680665016, -0.11724922806024551, 0.11750475317239761, 0.01204611361026764, 0.018514996394515038, 0.13087251782417297, 0.07265303283929825, -0.007624279707670212, 0.08372777700424194, 0.04731975123286247, 0.06087876483798027, -0.078689806163311, -0.2052374631166458, 0.0007664691656827927, 0.05136999487876892, -0.025730395689606667, 0.09420027583837509, 0.14675362408161163, -0.03474751487374306, 0.03666173294186592, -0.048353563994169235, -0.03335684537887573, -0.1855798214673996, -0.10596448183059692, -0.08514341711997986, -0.0839715376496315, 0.0008184819598682225, -0.08321628719568253, 0.025775877758860588, -0.015687670558691025, 0.049017179757356644, -0.08311498165130615, 0.07575845718383789, 0.025170093402266502, -0.08001118898391724, 0.04869083687663078, -0.022328132763504982, 0.031612128019332886, -0.012848101556301117, 0.012454532086849213, -0.1350637674331665, -0.0191130880266428, -0.050608664751052856, 0.059071581810712814, -0.08355698734521866, -0.02261415123939514, -0.11819993704557419, -0.10941662639379501, -0.05301210656762123, 0.03768510743975639, -0.009379568509757519, 0.16458803415298462, -0.018025362864136696, -0.009213299490511417, 0.035940345376729965, 0.20692692697048187, -0.049605075269937515, -0.08981382846832275, -0.009737641550600529, 0.15199540555477142, 0.05697734281420708, 0.14048337936401367, -0.04134314879775047, 0.010231093503534794, -0.08848518133163452, 0.3555189073085785, 0.31999170780181885, -0.09498346596956253, 0.05251414701342583, 0.06446629017591476, 0.05053160712122917, 0.12576551735401154, 0.09589312225580215, 0.07983016967773438, 0.27441585063934326, -0.05613259598612785, -0.025084704160690308, -0.0366772897541523, -0.017182515934109688, -0.08617039769887924, 0.13947786390781403, 0.030208023265004158, -0.06673306226730347, -0.04013451933860779, 0.059464335441589355, -0.17405174672603607, 0.1293288916349411, -0.05695819854736328, -0.23284496366977692, -0.049999918788671494, -0.02785468101501465, 0.12588466703891754, 0.003430083394050598, 0.0921507403254509, -0.009324118494987488, -0.09908954054117203, 0.051524341106414795, 0.019997699186205864, -0.24066920578479767, -0.017920654267072678, 0.05918838456273079, -0.10643329471349716, -0.009223594330251217, -0.03645642474293709, 0.027882685884833336, 0.0920993909239769, 0.04467517510056496, -0.03342064097523689, 0.041720613837242126, 0.02216477133333683, -0.045880500227212906, -0.004629914183169603, 0.06835394352674484, -0.0016151927411556244, -0.09612005949020386, 0.06650787591934204, -0.16257184743881226, 0.056794892996549606, -0.029997343197464943, -0.06260719150304794, 0.006312476471066475, 0.049502063542604446, -0.052589189261198044, 0.03336121141910553, 0.081196628510952, -0.0018023879965767264, -0.022175602614879608, -0.06938167661428452, -0.0036109325010329485, 0.039689142256975174, -0.03852635622024536, -0.1026090607047081, -0.11295175552368164, -0.10119280964136124, 0.10238909721374512, 0.009145176969468594, -0.21899080276489258, -0.021959392353892326, -0.1129101887345314, 0.039658140391111374, -0.16525046527385712, 0.11440429091453552, 0.09425898641347885, 0.024914363399147987, -0.0007622477714903653, -0.05132490023970604, 0.0441107340157032, 0.07264978438615799, -0.12712697684764862, -0.08837384730577469 ]
null
null
transformers
# Similar-Languages-MT
{}
text2text-generation
Ife/CA-ES
[ "transformers", "pytorch", "marian", "text2text-generation", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us
# Similar-Languages-MT
[ "# Similar-Languages-MT" ]
[ "TAGS\n#transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n", "# Similar-Languages-MT" ]
[ 39, 8 ]
[ "passage: TAGS\n#transformers #pytorch #marian #text2text-generation #autotrain_compatible #endpoints_compatible #region-us \n# Similar-Languages-MT" ]
[ -0.073247991502285, 0.011782562360167503, -0.00754973292350769, 0.043536845594644547, 0.16223813593387604, 0.016145052388310432, 0.09402257949113846, 0.13919037580490112, 0.0021659049671143293, -0.04813771694898605, 0.08614983409643173, 0.20872557163238525, -0.022190215066075325, 0.10138849169015884, -0.07927257567644119, -0.2974105179309845, 0.01832147128880024, 0.05313033610582352, 0.016586706042289734, 0.10115096718072891, 0.11673400551080704, -0.022852137684822083, 0.10518663376569748, -0.022113138809800148, -0.10930706560611725, 0.07617513090372086, 0.03140569105744362, -0.12731938064098358, 0.1015968918800354, 0.06294640898704529, 0.09984607994556427, 0.029419565573334694, -0.05924994498491287, -0.13928304612636566, 0.02294609136879444, -0.019238295033574104, -0.0404851995408535, -0.012865131720900536, 0.1349572241306305, -0.19117918610572815, 0.0846584364771843, 0.021440137177705765, -0.009215074591338634, 0.06348389387130737, -0.12077239155769348, -0.01420931052416563, -0.01038826908916235, -0.05267985165119171, 0.035006362944841385, 0.07057210803031921, -0.01288706623017788, 0.15863889455795288, -0.11515595763921738, 0.13418221473693848, 0.13566839694976807, -0.265463262796402, -0.021842682734131813, 0.09385094791650772, 0.07815982401371002, 0.10080721974372864, 0.031817227602005005, 0.062184207141399384, -0.003272743197157979, 0.04178174212574959, -0.10657909512519836, -0.09795574098825455, -0.0804499089717865, 0.017860589548945427, -0.10691189020872116, -0.01744685135781765, 0.2166697233915329, -0.10903667658567429, 0.06952426582574844, -0.021380020305514336, -0.08348003029823303, 0.0399923138320446, -0.027377808466553688, -0.0018891075160354376, -0.08080965280532837, 0.08516160398721695, 0.0032444766256958246, -0.05303070694208145, -0.11015576869249344, 0.041052501648664474, -0.1699221432209015, 0.11118088662624359, 0.03741675615310669, 0.03378976136445999, -0.1691335290670395, 0.04887539893388748, -0.018471254035830498, -0.11540002375841141, 0.05063909664750099, -0.1268654763698578, 0.060069892555475235, 0.0037494769785553217, -0.084209144115448, -0.12698706984519958, 0.09257955849170685, 0.015608466230332851, 0.09719234704971313, 0.06531736999750137, -0.06269120424985886, 0.08575493097305298, 0.00812477432191372, 0.1034727692604065, 0.017766285687685013, -0.13573728501796722, 0.0482945442199707, -0.11956042796373367, -0.01719045825302601, -0.060935478657484055, -0.17457854747772217, -0.07732021063566208, 0.013473555445671082, 0.10674833506345749, 0.0416252575814724, 0.0791592225432396, -0.012883921153843403, -0.042936552315950394, -0.0012498405994847417, -0.0948939323425293, 0.020723197609186172, -0.001723562367260456, 0.003227696055546403, 0.1841055303812027, 0.00803819764405489, 0.0040466333739459515, -0.16191208362579346, 0.05693763494491577, -0.012683273293077946, 0.03836049512028694, -0.0572996512055397, -0.0636516883969307, 0.024332167580723763, -0.058543816208839417, 0.0027658140752464533, -0.16209310293197632, -0.12739084661006927, 0.0016386175993829966, 0.021336788311600685, -0.029124142602086067, -0.022457262501120567, -0.0742243304848671, 0.0030746033880859613, 0.06673254817724228, -0.05293406546115875, -0.03098716214299202, -0.06341086328029633, 0.062497593462467194, -0.0165149737149477, 0.07115373760461807, -0.1057758554816246, 0.06918296217918396, -0.08691543340682983, -0.03790079802274704, -0.11092754453420639, 0.09562330693006516, -0.022082537412643433, 0.10358113795518875, 0.0064904531463980675, -0.03991280868649483, -0.07485394179821014, 0.08219453692436218, -0.027030615136027336, 0.190952867269516, -0.1370587944984436, -0.09957502037286758, 0.21872647106647491, -0.05832355469465256, -0.08562512695789337, 0.12800444662570953, 0.02088301070034504, 0.01699383556842804, 0.09691561758518219, 0.17570552229881287, 0.052905526012182236, 0.03341451659798622, 0.15124011039733887, 0.08399558812379837, -0.0439884252846241, -0.07571820169687271, 0.004618617706000805, -0.015577219426631927, -0.07105426490306854, 0.0639202743768692, 0.09620938450098038, 0.04187075421214104, -0.060150038450956345, -0.0465189665555954, -0.03167475759983063, -0.024705473333597183, 0.0679333508014679, 0.03915718197822571, 0.1006692498922348, -0.10805023461580276, -0.0025072325952351093, 0.022714708000421524, 0.00363419228233397, -0.02670873887836933, 0.044541675597429276, -0.04503701999783516, 0.0952807068824768, 0.01354430802166462, 0.02751472033560276, -0.16459281742572784, -0.018570778891444206, -0.008633437566459179, 0.12008754909038544, 0.07681253552436829, 0.12210427224636078, 0.05063662305474281, -0.013207855634391308, -0.05636199936270714, 0.037419646978378296, 0.18680545687675476, -0.009118087589740753, -0.03242906555533409, -0.10108726471662521, 0.10480833053588867, -0.059476085007190704, 0.0034319383557885885, -0.0392550453543663, 0.0056432136334478855, 0.013916781172156334, 0.14189200103282928, -0.02575504779815674, 0.0669461265206337, -0.019641457125544548, 0.08774594962596893, -0.0779726579785347, 0.02980194054543972, 0.09395335614681244, -0.012133370153605938, -0.062401171773672104, 0.284765362739563, -0.15731193125247955, 0.22112689912319183, 0.2378837615251541, -0.27884620428085327, 0.059315748512744904, -0.05194959044456482, 0.02543114684522152, 0.013768899254500866, 0.08690658956766129, 0.008134886622428894, 0.10056830197572708, -0.016544217243790627, 0.1990986466407776, -0.06943020969629288, -0.022472873330116272, -0.030099686235189438, -0.07883711159229279, -0.055605947971343994, 0.10298296809196472, 0.04477168619632721, -0.21187229454517365, 0.18311817944049835, 0.16361699998378754, -0.0009834588272497058, 0.1973821222782135, 0.040105100721120834, -0.005303637590259314, 0.08484693616628647, -0.016328146681189537, -0.013861975632607937, -0.11072790622711182, -0.21356907486915588, -0.05621807649731636, 0.06266357749700546, 0.08087076991796494, 0.1247699111700058, -0.08055209368467331, -0.03552745282649994, -0.012346561066806316, 0.002013494959101081, -0.01953979581594467, 0.07049571722745895, 0.08028644323348999, 0.09827178716659546, -0.052185267210006714, -0.019317638128995895, 0.0549369752407074, -0.003839143319055438, -0.08100734651088715, 0.16003955900669098, -0.1783503293991089, -0.3237561881542206, -0.20368987321853638, -0.20816463232040405, -0.08134789764881134, 0.08050206303596497, 0.12343133985996246, -0.10239171981811523, -0.021566733717918396, 0.025207417085766792, 0.07942506670951843, -0.08802556246519089, -0.010088607668876648, -0.10400047153234482, 0.07683296501636505, -0.08021865040063858, -0.09001606702804565, -0.04587400332093239, 0.00881682988256216, -0.06180712580680847, 0.13791459798812866, -0.1889483481645584, 0.06099173054099083, 0.18433953821659088, 0.004025051835924387, 0.06107209250330925, -0.022152874618768692, 0.15897081792354584, -0.07163935154676437, -0.02639845944941044, 0.22024844586849213, -0.02300293557345867, 0.08145739138126373, 0.12760843336582184, 0.0017874699551612139, -0.07624033093452454, 0.03635122627019882, -0.039344146847724915, -0.08553387969732285, -0.282480925321579, -0.16491958498954773, -0.13077089190483093, 0.05617175251245499, -0.006780978292226791, 0.030149126425385475, 0.10150816291570663, 0.05389050394296646, -0.027260374277830124, -0.028128022328019142, 0.043833207339048386, 0.08116304874420166, 0.21188801527023315, -0.017577247694134712, 0.1773868203163147, -0.03529588505625725, -0.12766876816749573, 0.09441263228654861, 0.06471624970436096, 0.08829329907894135, 0.04743935167789459, 0.008421552367508411, 0.020111769437789917, 0.0627676323056221, 0.1579175442457199, 0.08036067336797714, 0.04589091241359711, 0.016405949369072914, -0.027213923633098602, -0.02803855761885643, -0.03639625757932663, 0.044197212904691696, 0.09048669785261154, -0.1455303430557251, -0.051223114132881165, -0.04812391474843025, 0.07949479669332504, 0.06888365000486374, 0.04726112633943558, -0.1738358736038208, 0.047765132039785385, 0.09402532130479813, -0.001790459849871695, -0.09964536875486374, 0.08932460844516754, 0.006984267383813858, -0.12723509967327118, 0.1169137954711914, 0.01004792656749487, 0.12945543229579926, -0.04140358045697212, 0.06613869965076447, -0.10268443822860718, -0.08193276077508926, 0.030890339985489845, 0.12417847663164139, -0.3529393672943115, 0.22983328998088837, 0.02348504588007927, -0.054065607488155365, -0.0864836573600769, -0.01738142967224121, 0.04314739257097244, 0.165971040725708, 0.03532787784934044, -0.004450419917702675, -0.1059734970331192, -0.09785812348127365, -0.03756416589021683, 0.0019464242504909635, 0.14712144434452057, 0.0608208030462265, -0.02512073516845703, -0.03764572739601135, -0.056516241282224655, -0.054313141852617264, 0.0595339760184288, -0.028417566791176796, -0.19404304027557373, 0.069893978536129, 0.028462940827012062, 0.010351363569498062, 0.011636614799499512, -0.05516767129302025, -0.06573738902807236, 0.20814502239227295, 0.03343799710273743, -0.07060348987579346, -0.0949268788099289, -0.13414578139781952, 0.09227564185857773, -0.09331464022397995, 0.04036903381347656, -0.05038488656282425, 0.046735670417547226, -0.07007550448179245, -0.17578692734241486, 0.10283445566892624, -0.10959991067647934, -0.01808261312544346, -0.06322837620973587, 0.19951513409614563, -0.06084446981549263, 0.03059437684714794, 0.05667713284492493, 0.012590914033353329, -0.09402818977832794, -0.039412274956703186, -0.033719632774591446, 0.05154966190457344, 0.027531428262591362, 0.05984916910529137, -0.11940185725688934, -0.04862498864531517, -0.07407873868942261, -0.08036158978939056, 0.28236696124076843, 0.10892198234796524, -0.03192807361483574, 0.12583041191101074, 0.18406188488006592, -0.10192006826400757, -0.33995717763900757, -0.061947230249643326, -0.07974603772163391, 0.005273521412163973, -0.06964050978422165, -0.13005149364471436, 0.0558842271566391, -0.01325348112732172, -0.00027586345095187426, 0.022681301459670067, -0.24525944888591766, -0.1091407760977745, 0.13560913503170013, -0.002736575435847044, 0.30619949102401733, -0.127813458442688, -0.09572891145944595, -0.10555297136306763, -0.13181622326374054, 0.07205075025558472, -0.01348187867552042, 0.09593100845813751, 0.0070887343026697636, 0.09285753965377808, 0.040285829454660416, -0.013036966323852539, 0.0971418172121048, 0.023313332349061966, -0.031107496470212936, -0.10208367556333542, 0.017225919291377068, 0.00026499261730350554, 0.016706934198737144, -0.008656024001538754, -0.022166209295392036, -0.0013607576256617904, -0.09967441856861115, -0.06069324538111687, -0.10660938173532486, 0.052226778119802475, 0.026779474690556526, -0.04453123360872269, 0.04281986504793167, -0.058402229100465775, -0.0036811220925301313, -0.0006027312483638525, 0.11199783533811569, -0.11367807537317276, 0.12840698659420013, 0.1221911683678627, 0.17735828459262848, -0.2142036259174347, 0.09547359496355057, -0.06259723007678986, -0.06362143903970718, 0.032134976238012314, -0.017612004652619362, 0.055424489080905914, 0.10152634233236313, -0.06889594346284866, 0.02963927946984768, 0.08436085283756256, 0.019681135192513466, -0.012869922444224358, 0.15238524973392487, -0.15948641300201416, 0.023891447111964226, -0.09478899836540222, 0.01868532970547676, 0.1499604731798172, 0.012846092693507671, 0.15985378623008728, 0.036569561809301376, -0.055516116321086884, -0.03395653888583183, -0.0339522659778595, -0.041317567229270935, 0.11466799676418304, 0.03858458623290062, 0.020041977986693382, -0.13302816450595856, 0.0677114725112915, 0.032119497656822205, -0.17024347186088562, -0.017807736992836, 0.21916203200817108, -0.10690304636955261, -0.12216433137655258, 0.03242957964539528, 0.11329275369644165, -0.11970700323581696, -0.03773046284914017, -0.08186878263950348, -0.09985852986574173, 0.0571175217628479, 0.2015330046415329, 0.09159132838249207, 0.048148252069950104, -0.04155665636062622, -0.06263498961925507, 0.001691805082373321, -0.014062880538403988, 0.06844901293516159, 0.044534459710121155, -0.07004271447658539, 0.0943792387843132, -0.05811656266450882, 0.1246517226099968, -0.07677517831325531, -0.05603364109992981, -0.12440328299999237, 0.05272625386714935, -0.11479055881500244, -0.03943438082933426, -0.07455801963806152, -0.050660181790590286, -0.019220715388655663, -0.09253567457199097, -0.054784346371889114, -0.031929176300764084, -0.11954260617494583, 0.021540140733122826, -0.07205750048160553, 0.04832811281085014, -0.03029628098011017, -0.02386123314499855, 0.09459050744771957, -0.025079617276787758, 0.05810996890068054, 0.13257743418216705, -0.12667874991893768, 0.09966931492090225, -0.12223830819129944, -0.14028173685073853, 0.09866440296173096, 0.07120805978775024, 0.07194855809211731, 0.061485376209020615, 0.04651998355984688, 0.1096448302268982, 0.06472615152597427, 0.04457839950919151, 0.0928812325000763, -0.11092930287122726, 0.020382817834615707, -0.04083767160773277, -0.19505935907363892, -0.017937174066901207, -0.02938961423933506, 0.12296921759843826, 0.028413213789463043, 0.10663465410470963, -0.07508828490972519, 0.1074487492442131, -0.025878826156258583, 0.010520508512854576, -0.008816230110824108, -0.18349464237689972, -0.02491001784801483, -0.09316599369049072, 0.04756990075111389, 0.03994519263505936, 0.22416159510612488, 0.04616905376315117, 0.07068198919296265, 0.023511262610554695, 0.050765205174684525, 0.02331290952861309, 0.025403598323464394, 0.1410389393568039, 0.11119791120290756, -0.02442680299282074, -0.07509037852287292, 0.07840108126401901, 0.025529488921165466, 0.09457150846719742, 0.05530072748661041, 0.07944074273109436, 0.09906391054391861, 0.1175924763083458, 0.011002185754477978, 0.07559864968061447, -0.115142822265625, -0.2138233184814453, 0.027924055233597755, 0.06864874064922333, -0.04995863139629364, 0.07370692491531372, 0.12450248748064041, -0.04382023215293884, 0.06570176780223846, -0.07619911432266235, -0.06900707632303238, -0.19777971506118774, -0.11410605907440186, -0.10567466914653778, -0.111686110496521, -0.008887986652553082, -0.10577520728111267, 0.05561671406030655, 0.04076460003852844, 0.08331664651632309, -0.07633030414581299, 0.047194357961416245, -0.009077832102775574, -0.11271268874406815, 0.027474593371152878, -0.042482178658246994, 0.12271076440811157, 0.03663046285510063, -0.023760676383972168, -0.14342981576919556, 0.005941507872194052, -0.026041600853204727, 0.049357250332832336, -0.0875694528222084, -0.018284007906913757, -0.15790215134620667, -0.0774075910449028, -0.04131830483675003, 0.01899462193250656, 0.022050676867365837, 0.17171354591846466, 0.00367889367043972, -0.04740119352936745, 0.05479690432548523, 0.21600162982940674, -0.04335976764559746, -0.16666275262832642, -0.032187145203351974, 0.22090378403663635, 0.07698686420917511, 0.12969212234020233, -0.04382748529314995, 0.01309838704764843, -0.10461332648992538, 0.3305484652519226, 0.30551809072494507, -0.06295688450336456, 0.00932465959340334, 0.057771459221839905, 0.05279911682009697, 0.10289924591779709, 0.09782569855451584, 0.11606285721063614, 0.2293250858783722, -0.048381298780441284, -0.014760641381144524, -0.0562482587993145, -0.0013486269162967801, -0.1574055552482605, 0.13915622234344482, 0.011820261366665363, -0.09059806168079376, 0.0025021128822118044, 0.10147549211978912, -0.1706005185842514, 0.2396935224533081, -0.13060367107391357, -0.25994569063186646, -0.08237963169813156, -0.016994398087263107, 0.1436690390110016, 0.014040528796613216, 0.0839897021651268, 0.003000617027282715, -0.09037858992815018, -0.006662157829850912, 0.01900254376232624, -0.22158706188201904, -0.033224690705537796, 0.037092119455337524, -0.11158712208271027, -0.03800555691123009, -0.004222611431032419, 0.029524212703108788, 0.07047426700592041, 0.08595684170722961, 0.017366981133818626, 0.039132267236709595, 0.020860541611909866, -0.009353859350085258, 0.057177964597940445, 0.06611388921737671, -0.039588455110788345, -0.048272404819726944, 0.05464443564414978, -0.13014598190784454, 0.07992919534444809, -0.050244566053152084, -0.022302409633994102, 0.019648352637887, 0.04334647208452225, -0.10157070308923721, 0.030389651656150818, 0.10112468898296356, 0.021475179120898247, -0.02313712053000927, -0.061772916465997696, -0.0062990011647343636, -0.012948044575750828, -0.07425650209188461, -0.1325899064540863, -0.14183607697486877, -0.13250672817230225, 0.05459429323673248, 0.03676752373576164, -0.16977347433567047, -0.021199628710746765, -0.079643614590168, 0.022541875019669533, -0.19417373836040497, 0.12387252599000931, 0.03758556395769119, -0.019131112843751907, -0.0007296783151105046, -0.11707355827093124, 0.06775447726249695, 0.08260103315114975, -0.13581421971321106, -0.09351843595504761 ]
null
null
transformers
A distilbert model fine-tuned for question answering.
{"language": ["en"], "datasets": ["squad_v2", "wiki_qa"], "metrics": ["accuracy"], "pipeline_tag": "question-answering"}
question-answering
Ifenna/dbert-3epoch
[ "transformers", "pytorch", "safetensors", "distilbert", "question-answering", "en", "dataset:squad_v2", "dataset:wiki_qa", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #safetensors #distilbert #question-answering #en #dataset-squad_v2 #dataset-wiki_qa #endpoints_compatible #region-us
A distilbert model fine-tuned for question answering.
[]
[ "TAGS\n#transformers #pytorch #safetensors #distilbert #question-answering #en #dataset-squad_v2 #dataset-wiki_qa #endpoints_compatible #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #distilbert #question-answering #en #dataset-squad_v2 #dataset-wiki_qa #endpoints_compatible #region-us \n" ]
[ -0.12236440926790237, 0.0662885382771492, -0.007256162352859974, -0.00013928886619396508, 0.0720784142613411, 0.04070528596639633, 0.04394685849547386, 0.09999126195907593, 0.09638366848230362, 0.0013243185821920633, 0.14885686337947845, 0.19087408483028412, 0.0009736591018736362, 0.018146997317671776, -0.11471309512853622, -0.1267337054014206, 0.08268019556999207, 0.07216952741146088, -0.08645731955766678, 0.1268284022808075, 0.0844498798251152, -0.131265327334404, 0.04881974309682846, -0.03603867068886757, -0.08133601397275925, 0.024591192603111267, 0.031169481575489044, -0.06986793875694275, 0.14075714349746704, 0.017688293009996414, 0.16336612403392792, 0.09391479939222336, -0.05375580117106438, -0.1920839548110962, 0.04806150496006012, 0.0037323401775211096, -0.0550713837146759, 0.032235827296972275, 0.025325080379843712, -0.03822341188788414, -0.08156044036149979, -0.022261178120970726, -0.01407401543110609, 0.07438613474369049, -0.14868071675300598, -0.17671780288219452, -0.08129944652318954, -0.01933244615793228, 0.09775630384683609, 0.05556952953338623, -0.016672633588314056, 0.22090354561805725, -0.157918319106102, 0.09515834599733353, 0.132217139005661, -0.33330994844436646, -0.007738121785223484, 0.05002005025744438, 0.08729119598865509, -0.006807273719459772, -0.036938466131687164, 0.04670659452676773, 0.050055041909217834, 0.02645023912191391, -0.04341131076216698, -0.0686565712094307, -0.15478742122650146, 0.062373291701078415, -0.09233269095420837, -0.0575563982129097, 0.29435691237449646, 0.01983998529613018, 0.035832930356264114, 0.0030575115233659744, -0.10179762542247772, 0.07252326607704163, 0.02007223293185234, -0.02777072973549366, -0.04846695438027382, 0.0001635942026041448, -0.009921588003635406, 0.030018901452422142, -0.13932809233665466, -0.019001133739948273, -0.2056824266910553, 0.1673361361026764, 0.02009512484073639, 0.09851624071598053, -0.23418639600276947, 0.057027436792850494, 0.008591713383793831, -0.10656865686178207, -0.0038585285656154156, -0.1137232705950737, -0.045753609389066696, -0.011967533268034458, -0.021340545266866684, 0.005016938783228397, 0.1486806869506836, 0.14015011489391327, -0.04296731576323509, -0.019667640328407288, 0.004245830699801445, 0.05678047239780426, 0.09268514066934586, 0.059918783605098724, -0.07833786308765411, -0.019749518483877182, 0.0331583246588707, -0.07571559399366379, -0.02893834188580513, -0.015805307775735855, -0.019465334713459015, -0.0898408591747284, 0.055585380643606186, 0.15620771050453186, 0.09959915280342102, 0.030998025089502335, -0.07602802664041519, -0.009084164164960384, 0.03246307745575905, -0.047844208776950836, -0.02812083065509796, 0.024786289781332016, 0.029810847714543343, 0.10066524147987366, -0.055682454258203506, 0.03963452950119972, -0.03528435155749321, 0.030536280944943428, -0.07233990728855133, -0.046180397272109985, 0.03502146154642105, -0.04182905703783035, 0.0665164440870285, -0.12232354283332825, 0.06855178624391556, -0.147678405046463, -0.08602272719144821, 0.024921054020524025, -0.003408268094062805, 0.021595295518636703, -0.005197648424655199, 0.010564198717474937, -0.033450327813625336, -0.041085921227931976, -0.05642477050423622, -0.021846935153007507, -0.07645375281572342, 0.10790076106786728, -0.005395751446485519, 0.06615152209997177, -0.09913232177495956, 0.02029328979551792, -0.10842130333185196, 0.044815368950366974, -0.0008167192572727799, -0.016497498378157616, -0.05050651356577873, 0.10404118150472641, -0.04055113345384598, -0.057530127465724945, -0.017007429152727127, -0.010715585201978683, -0.018109753727912903, 0.22776958346366882, -0.15311668813228607, -0.04184655845165253, 0.23820118606090546, -0.11481449007987976, -0.27452701330184937, 0.10241562873125076, 0.008064326830208302, -0.035019539296627045, 0.08411477506160736, 0.16489802300930023, 0.06436292827129364, -0.13682955503463745, -0.07786495238542557, 0.10905986279249191, -0.13026775419712067, -0.09814341366291046, 0.03995417803525925, 0.022594913840293884, -0.03448789194226265, 0.033213548362255096, 0.03530794009566307, 0.04888016730546951, -0.11269967257976532, -0.08717380464076996, -0.06960605829954147, -0.07718978077173233, 0.07655398547649384, 0.05951603129506111, 0.011187437921762466, -0.0517476387321949, 0.04787418618798256, -0.09445449709892273, 0.023919478058815002, 0.02675461396574974, -0.0012864851159974933, -0.12471280992031097, 0.16920500993728638, -0.1225360780954361, 0.004828430246561766, -0.16200104355812073, -0.16430464386940002, -0.014743001200258732, 0.11120526492595673, -0.10003897547721863, 0.155487060546875, 0.09221826493740082, -0.06943409889936447, -0.020867349579930305, -0.07304908335208893, 0.09973073750734329, 0.04527440667152405, -0.04937558248639107, -0.08837533742189407, 0.018714822828769684, -0.09832867980003357, -0.023040898144245148, -0.016478385776281357, -0.028023820370435715, 0.1180230975151062, 0.18013952672481537, 0.0113460011780262, 0.07434816658496857, 0.026828575879335403, 0.003172364318743348, -0.013943993486464024, 0.007238580379635096, 0.08307189494371414, -0.02722911350429058, -0.07511819899082184, 0.07381011545658112, -0.012999392114579678, 0.2905750870704651, 0.14324015378952026, -0.18253865838050842, 0.06576509028673172, -0.038538858294487, -0.06507769227027893, 0.028060175478458405, -0.012529545463621616, 0.006378467660397291, -0.015418690629303455, 0.03522055968642235, 0.06602887809276581, -0.06672795116901398, -0.03567449003458023, 0.02517091855406761, -0.05142490193247795, -0.049752093851566315, 0.07188421487808228, 0.0577591247856617, -0.2026766687631607, 0.1434018760919571, 0.26894938945770264, 0.10488484054803848, 0.09462103992700577, -0.09225933998823166, -0.03852254897356033, -0.007545087020844221, 0.016124067828059196, -0.053643498569726944, 0.12681575119495392, -0.19396904110908508, 0.05785317346453667, 0.10277166217565536, -0.0067270067520439625, 0.03997547924518585, -0.129310742020607, -0.09693165123462677, -0.02239215560257435, -0.0034864020999521017, -0.08622907102108002, 0.11690498143434525, 0.07344190031290054, 0.13759155571460724, -0.027205348014831543, -0.004937342368066311, 0.09012886881828308, -0.029617412015795708, -0.07118073105812073, 0.19593434035778046, -0.10192741453647614, -0.26307159662246704, 0.010203411802649498, -0.021244658157229424, -0.018274599686264992, -0.01833953522145748, 0.05994207784533501, -0.12843389809131622, -0.020682457834482193, 0.06390788406133652, 0.033376820385456085, -0.05979560688138008, 0.05018819868564606, -0.023878950625658035, 0.07686541974544525, -0.026482729241251945, -0.08046069741249084, -0.03409651666879654, -0.04541243240237236, -0.05069738253951073, 0.15699923038482666, -0.0589565671980381, 0.09071134030818939, 0.06680901348590851, 0.008347964845597744, 0.047977887094020844, -0.022434433922171593, 0.30281248688697815, -0.08054377883672714, 0.03031362220644951, 0.1909775584936142, -0.025805775076150894, 0.06391451507806778, 0.17913702130317688, 0.005641195457428694, -0.09936217963695526, -0.015000386163592339, -0.03579692915081978, -0.05445259064435959, -0.26967713236808777, -0.10657426714897156, -0.08851467072963715, 0.054169103503227234, -0.012644428759813309, 0.0140156839042902, -0.02494899556040764, 0.1279931664466858, -0.009068665094673634, -0.1201149970293045, -0.09361496567726135, 0.00295633333735168, 0.15393006801605225, -0.045571014285087585, 0.08091137558221817, -0.07415490597486496, -0.08895087242126465, 0.060433149337768555, 0.131666362285614, 0.14092345535755157, 0.03389580175280571, -0.08173143118619919, 0.08853712677955627, 0.25168898701667786, 0.1129520833492279, 0.13954126834869385, 0.016305308789014816, -0.0868120938539505, 0.023256439715623856, 0.0065103862434625626, -0.08129914104938507, 0.004782903473824263, 0.1218051090836525, -0.07188102602958679, -0.06137184426188469, -0.06706394255161285, 0.09715176373720169, 0.11652155220508575, 0.12644818425178528, -0.12383434176445007, -0.01768803596496582, 0.07705237716436386, 0.009752684272825718, -0.06143037974834442, 0.09223033487796783, 0.08120760321617126, -0.11621259897947311, 0.05724840983748436, -0.05875181779265404, 0.09340332448482513, 0.008224197663366795, 0.05016576871275902, -0.05752426013350487, -0.13794606924057007, 0.029765643179416656, 0.10158239305019379, -0.2330678254365921, 0.2683003842830658, 0.025093017145991325, -0.02423129230737686, -0.09841598570346832, -0.049397848546504974, -0.0514051578938961, 0.15124768018722534, 0.22280985116958618, 0.029715891927480698, 0.000447239464847371, -0.0859774649143219, -0.001609927392564714, 0.10764317214488983, 0.05715877562761307, 0.03510609641671181, 0.027576936408877373, 0.006244983524084091, 0.025439321994781494, -0.029507599771022797, 0.04815249517560005, -0.03836448863148689, -0.08976688981056213, 0.018176203593611717, 0.024698471650481224, 0.047709956765174866, -0.05009162798523903, -0.018550986424088478, -0.10106946527957916, 0.0863850861787796, -0.09881122410297394, -0.09677042067050934, -0.0879921242594719, -0.0378233902156353, 0.13439108431339264, -0.08358350396156311, 0.006850597448647022, -0.06365757435560226, -0.003618858987465501, -0.07538638263940811, -0.13167688250541687, 0.07428747415542603, -0.15530075132846832, -0.06781619787216187, -0.05205512419342995, 0.19734081625938416, -0.04290059581398964, 0.002609605435281992, 0.04947766289114952, 0.017581216990947723, -0.08161526918411255, -0.09290345013141632, 0.05578003078699112, -0.07505884766578674, 0.07288455963134766, 0.09474720060825348, -0.007397185079753399, -0.03578538820147514, 0.0032790524419397116, 0.0027422637213021517, 0.2402014434337616, 0.24260647594928741, -0.06833471357822418, 0.08805524557828903, 0.17237134277820587, 0.017166880890727043, -0.29399698972702026, -0.07954128831624985, -0.1330016553401947, -0.023019684478640556, 0.0059544919058680534, -0.032091762870550156, 0.13656221330165863, 0.02751411311328411, -0.030170336365699768, 0.060088757425546646, -0.22682544589042664, -0.02462673932313919, 0.1770145148038864, 0.05267639830708504, 0.32844990491867065, -0.12588734924793243, -0.05113549903035164, 0.006153952330350876, -0.2295975387096405, 0.14782653748989105, -0.09200385212898254, 0.03608062118291855, -0.054925188422203064, 0.06231314316391945, 0.029324043542146683, -0.0928184762597084, 0.1739533543586731, 0.018157096579670906, 0.01602868176996708, -0.06582333892583847, -0.09783593565225601, 0.11736864596605301, 0.010841294191777706, -0.010586739517748356, 0.04055476933717728, 0.09220337122678757, -0.15864616632461548, -0.0007056203321553767, -0.13584232330322266, 0.0635271668434143, -0.012776507996022701, -0.07601006329059601, -0.030330222100019455, 0.00758697371929884, 0.030146578326821327, -0.012435185723006725, 0.1590307652950287, -0.01002379972487688, 0.16945025324821472, 0.045870453119277954, 0.16175828874111176, -0.147910937666893, -0.05914851650595665, -0.037058040499687195, -0.05152076855301857, 0.07993201911449432, -0.04413484409451485, 0.07601187378168106, 0.18084578216075897, 0.009640457108616829, 0.01599925383925438, 0.080769382417202, 0.0113774249330163, -0.00041707733180373907, 0.11280416697263718, -0.23201879858970642, -0.16221685707569122, 0.010105443187057972, -0.024499885737895966, -0.030231311917304993, 0.14177580177783966, 0.09723030030727386, 0.07347021251916885, -0.03558442369103432, -0.040434304624795914, 0.011323243379592896, -0.06053883209824562, 0.10228138417005539, 0.1243540421128273, 0.06230911612510681, -0.13637979328632355, 0.07413668930530548, -0.055280402302742004, -0.19536712765693665, -0.032885048538446426, 0.005022604949772358, -0.13377448916435242, -0.1160924881696701, -0.05270592123270035, 0.03971899673342705, -0.10007085651159286, -0.07209739834070206, -0.05689384043216705, -0.13011866807937622, 0.051129747182130814, 0.20819154381752014, 0.05926172435283661, 0.10426375269889832, 0.031197911128401756, -0.09654507040977478, -0.025794867426156998, 0.030390452593564987, -0.015130961313843727, -0.020168375223875046, -0.1262364685535431, -0.06449972093105316, -0.061437301337718964, 0.21902328729629517, -0.07275716215372086, -0.03653024137020111, -0.150028258562088, 0.0660015195608139, -0.20763427019119263, -0.04991995170712471, -0.12454483658075333, -0.03149782866239548, -0.019293012097477913, -0.12969687581062317, -0.055463757365942, -0.014342594891786575, -0.08696963638067245, 0.09010349959135056, 0.04242381826043129, 0.02411225065588951, -0.10914722830057144, -0.05969623476266861, 0.10083309561014175, -0.028472641482949257, 0.1343698799610138, 0.11383717507123947, -0.10338473320007324, 0.07642106711864471, -0.12553390860557556, -0.151260107755661, 0.05558456480503082, 0.03576614707708359, 0.10847567021846771, -0.007916321977972984, 0.018986739218235016, 0.0936332419514656, -0.016202090308070183, 0.08523575961589813, 0.019657324999570847, -0.08042902499437332, 0.0258336141705513, 0.018948201090097427, -0.08329492062330246, -0.05834460258483887, -0.10080942511558533, 0.13258786499500275, -0.012055043131113052, 0.11149170249700546, -0.0030777808278799057, 0.12367518246173859, -0.11865773797035217, -0.005060338880866766, -0.014727616682648659, -0.1357611119747162, 0.015508963726460934, 0.00014298454334493726, 0.03951907530426979, -0.04377210512757301, 0.2401498556137085, -0.10152160376310349, 0.07090672850608826, 0.04580725356936455, 0.04564399644732475, -0.011190904304385185, 0.010942290537059307, 0.22797982394695282, 0.032179009169340134, -0.04708041250705719, -0.07037004828453064, 0.032539334148168564, -0.06046821177005768, 0.0034165489487349987, 0.12216435372829437, 0.11254596710205078, 0.057765472680330276, 0.032404825091362, 0.030577469617128372, 0.012841555289924145, -0.0044893440790474415, -0.17143355309963226, -0.04918116703629494, -0.007850493304431438, 0.040702782571315765, 0.011770018376410007, 0.15053726732730865, -0.052693579345941544, 0.0328369066119194, -0.0727396160364151, -0.05096670612692833, -0.12822961807250977, -0.07546044886112213, -0.07610096037387848, -0.05890192836523056, 0.046325936913490295, -0.1376650035381317, -0.04405316710472107, 0.08428079634904861, 0.06944921612739563, -0.03684712201356888, 0.1450558751821518, 0.11007855087518692, -0.02486899122595787, 0.04508959874510765, 0.03771846741437912, 0.03765738382935524, 0.05480349808931351, 0.04554876312613487, -0.045366909354925156, -0.04165013134479523, -0.06194304674863815, 0.02586442604660988, -0.10760976374149323, 0.013007928617298603, -0.12187761068344116, -0.09215198457241058, -0.06817946583032608, 0.07703454047441483, -0.03291848674416542, 0.11478238552808762, 0.020583277568221092, 0.07143659889698029, 0.04732779785990715, 0.17064765095710754, -0.028720863163471222, -0.13032446801662445, -0.09397419542074203, 0.10587315261363983, -0.023318417370319366, 0.072810098528862, 0.05613923817873001, -0.010355520993471146, -0.015552169643342495, 0.2810666263103485, 0.21261902153491974, -0.07762836664915085, 0.06498167663812637, -0.0037244970444589853, 0.02739168517291546, 0.022130802273750305, 0.028684578835964203, 0.08556321263313293, 0.24753665924072266, -0.11733094602823257, -0.029471203684806824, -0.05218052864074707, -0.01272803358733654, -0.013275100849568844, 0.056546617299318314, 0.04815012961626053, -0.01208006776869297, -0.06865083426237106, 0.13353504240512848, -0.1374807059764862, 0.0782705619931221, 0.03158813342452049, -0.1686079055070877, -0.07731468230485916, -0.049182817339897156, 0.12232659012079239, 0.013646281324326992, 0.06831567734479904, -0.05966955050826073, -0.06358086317777634, 0.07165275514125824, 0.022099658846855164, -0.17440193891525269, -0.030103323981165886, 0.11708389222621918, 0.0005214939010329545, 0.037597451359033585, 0.0007932165754027665, 0.10437068343162537, 0.09631763398647308, 0.01054539903998375, -0.09358705580234528, 0.03522908315062523, 0.08899283409118652, -0.07139622420072556, -0.0766066461801529, -0.011987163685262203, 0.05778094753623009, -0.044340334832668304, 0.08044903725385666, -0.1645490676164627, 0.04763767495751381, 0.06774910539388657, -0.0021513598039746284, -0.07841326296329498, 0.1142064556479454, -0.025293391197919846, 0.07043761014938354, 0.040907423943281174, -0.04721486195921898, -0.0006849845522083342, -0.03987003490328789, 0.05097714066505432, 0.033314239233732224, -0.05236360803246498, -0.0690678209066391, -0.09218904376029968, -0.0176872406154871, 0.07791485637426376, -0.025786682963371277, -0.04523186385631561, -0.030457448214292526, -0.03575994074344635, 0.004269633907824755, -0.06616909056901932, 0.05604591593146324, 0.06316979229450226, 0.04556821286678314, 0.01476211752742529, -0.0012431174982339144, 0.006446183193475008, 0.0692940354347229, -0.10644791275262833, -0.09960518032312393 ]
null
null
transformers
Забавное для дискордика))00)) https://discord.gg/HpeadKH Offers [email protected]
{"tags": ["ru", "4ulan"]}
text-generation
Ifromspace/GRIEFSOFT-walr
[ "transformers", "pytorch", "gpt2", "text-generation", "ru", "4ulan", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #ru #4ulan #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Забавное для дискордика))00)) URL Offers work@URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #ru #4ulan #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 52 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #ru #4ulan #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.01868395321071148, 0.012232674285769463, -0.007092975080013275, 0.011343655176460743, 0.16620121896266937, 0.03272638097405434, 0.10660213977098465, 0.11680703610181808, -0.0007264422602020204, -0.007167474366724491, 0.1825987994670868, 0.145944744348526, -0.0029746037907898426, 0.08318325132131577, -0.05205371230840683, -0.27095678448677063, 0.06822780519723892, 0.04174797981977463, -0.026375027373433113, 0.1193467378616333, 0.07956232875585556, -0.0490795373916626, 0.09354131668806076, -0.0250218715518713, -0.17696629464626312, 0.04540029168128967, 0.04417265206575394, -0.11390095949172974, 0.1104520633816719, 0.052952852100133896, 0.10238303244113922, 0.013127551414072514, -0.04378197714686394, -0.13800393044948578, 0.025221463292837143, 0.0015410147607326508, -0.08349847048521042, 0.04499974846839905, 0.10978640615940094, -0.09955161064863205, 0.14547188580036163, 0.08625780045986176, -0.058729760348796844, 0.05320761352777481, -0.15792575478553772, -0.04714640602469444, -0.0491454117000103, 0.05062076821923256, 0.0385347418487072, 0.10851031541824341, -0.025799287483096123, 0.08849714696407318, -0.09662621468305588, 0.09117905795574188, 0.15722224116325378, -0.3531816899776459, -0.010926379822194576, 0.09106422960758209, 0.045044030994176865, 0.07089018076658249, -0.02493954636156559, 0.07905109971761703, 0.04331248626112938, 0.030934542417526245, -0.02632584050297737, -0.07980265468358994, -0.08081427961587906, 0.04281148314476013, -0.08854060620069504, -0.049270980060100555, 0.25180116295814514, -0.06408766657114029, 0.073736272752285, 0.0035906455013900995, -0.09870083630084991, -0.0663738027215004, -0.010846459306776524, 0.005328000523149967, -0.07510741800069809, 0.08210386335849762, 0.04652770608663559, -0.06538346409797668, -0.1449698954820633, -0.0028649151790887117, -0.16839930415153503, 0.18406319618225098, 0.025934210047125816, 0.05909350886940956, -0.165878027677536, 0.09114628285169601, -0.0006095767021179199, -0.08739916980266571, 0.03611046448349953, -0.10083774477243423, 0.04721561819314957, 0.01819439046084881, -0.07467298209667206, -0.04463527724146843, 0.09360285103321075, 0.14348642528057098, -0.03360632807016373, 0.028455520048737526, -0.004311939235776663, 0.09808260947465897, 0.005787740461528301, 0.08793673664331436, -0.026446150615811348, -0.036952804774045944, 0.028650566935539246, -0.1416570395231247, -0.0017004598630592227, -0.06847406178712845, -0.16778472065925598, -0.04488130286335945, 0.034757938235998154, 0.07837539911270142, -0.003736516460776329, 0.08031748980283737, -0.0455581471323967, -0.01582062803208828, 0.030623942613601685, -0.06572107970714569, -0.018679318949580193, 0.004273656290024519, 0.018571244552731514, 0.15495045483112335, -0.031996842473745346, 0.01278760563582182, -0.1250688135623932, 0.04931088536977768, -0.06980621069669724, -0.004986143670976162, -0.030245477333664894, -0.054340921342372894, 0.017077503725886345, -0.125120609998703, 0.021912947297096252, -0.1629427671432495, -0.1386498510837555, 0.01079106517136097, 0.006164703983813524, -0.04841964691877365, -0.02152338996529579, -0.035689108073711395, -0.056859638541936874, 0.045961808413267136, -0.05300784111022949, -0.022057458758354187, -0.06204714998602867, 0.09152571856975555, -0.02872065268456936, 0.07538974285125732, -0.13230888545513153, 0.07525990903377533, -0.10539019107818604, -0.018777290359139442, -0.05682121962308884, 0.0546332523226738, -0.02206992544233799, 0.09861601889133453, -0.004226232413202524, -0.03893658518791199, -0.06606122851371765, 0.05274267867207527, -0.033359769731760025, 0.18633316457271576, -0.07981694489717484, -0.12352285534143448, 0.25220930576324463, -0.08580911159515381, -0.11055406183004379, 0.1107577532529831, 0.026267172768712044, 0.024562979117035866, 0.07424058765172958, 0.19464929401874542, 0.03363930061459541, 0.00844637118279934, 0.0516093447804451, 0.0876440480351448, -0.09373587369918823, -0.07191735506057739, 0.017619719728827477, -0.008509286679327488, -0.09833180904388428, 0.06118201091885567, 0.05914616584777832, 0.07097601145505905, -0.05250471085309982, -0.03546502813696861, -0.03137172758579254, -0.00377459404990077, 0.0845307856798172, 0.002878789324313402, 0.129786416888237, -0.07519279420375824, -0.04303671792149544, -0.06763216108083725, 0.00010860391921596602, -0.017533795908093452, 0.03216271847486496, -0.03789978846907616, 0.1730278879404068, -0.012420215643942356, 0.06510487198829651, -0.17989890277385712, -0.07334139198064804, -0.010463671758770943, 0.16116538643836975, 0.0002953175862785429, 0.13071514666080475, 0.06125214695930481, -0.029138702899217606, -0.023489495739340782, -0.018465455621480942, 0.11497455090284348, -0.029214104637503624, -0.048589639365673065, -0.06290604919195175, 0.06831864267587662, -0.06686446815729141, 0.0018323106924071908, -0.0812610313296318, 0.012524566613137722, 0.06399638205766678, 0.13042379915714264, -0.010281147435307503, 0.04898810386657715, -0.041331637650728226, 0.029900172725319862, -0.08535359799861908, 0.01119208987802267, 0.09915115684270859, -0.019171109423041344, -0.06539757549762726, 0.18104775249958038, -0.13202102482318878, 0.24164815247058868, 0.19296441972255707, -0.26779428124427795, -0.0031574901659041643, -0.017230043187737465, -0.035772908478975296, 0.02217922918498516, 0.07334588468074799, -0.024490300565958023, 0.10841523110866547, -0.008449056185781956, 0.15625667572021484, -0.04212810471653938, -0.04096650332212448, 0.009615153074264526, -0.06041372939944267, -0.015647437423467636, 0.08408509194850922, 0.10616118460893631, -0.12775948643684387, 0.1925729215145111, 0.21717476844787598, 0.019954610615968704, 0.18124468624591827, 0.007162830792367458, -0.026027861982584, 0.07140592485666275, -0.008938143029808998, -0.04519439488649368, -0.04917455464601517, -0.142653226852417, -0.02722950465977192, 0.07456720620393753, 0.037444498389959335, 0.10012435168027878, -0.12727288901805878, -0.054280903190374374, -0.04587816447019577, -0.011761956848204136, 0.017126739025115967, 0.11190754175186157, 0.029925648123025894, 0.1363704949617386, -0.011930149979889393, -0.029430219903588295, 0.09984882920980453, 0.021303357556462288, -0.08435465395450592, 0.19408896565437317, -0.13956257700920105, -0.36738380789756775, -0.15752868354320526, -0.15828517079353333, -0.06380631029605865, 0.05287856236100197, 0.09865156561136246, -0.1578190177679062, -0.028291702270507812, 0.02115936018526554, 0.09301948547363281, -0.10462157428264618, 0.017377180978655815, -0.05458706617355347, 0.04789203777909279, -0.07945112884044647, -0.054225292056798935, -0.06446006894111633, -0.03298979997634888, -0.06619847565889359, 0.17094668745994568, -0.1020088642835617, 0.06348739564418793, 0.16352589428424835, 0.03105960413813591, 0.05030766502022743, -0.02752423658967018, 0.17582856118679047, -0.10856328159570694, 0.0050600147806108, 0.19586648046970367, -0.038329221308231354, 0.07998449355363846, 0.12591999769210815, -0.00007092101441230625, -0.09521519392728806, 0.0132907060906291, -0.030048340559005737, -0.08061104267835617, -0.2475503832101822, -0.12119615823030472, -0.1209910660982132, 0.08408010005950928, 0.03139724209904671, 0.06149546429514885, 0.12291329354047775, 0.0862773060798645, -0.020847907289862633, 0.018325913697481155, -0.009215524420142174, 0.06356531381607056, 0.22213296592235565, -0.036492135375738144, 0.14376088976860046, -0.05947788432240486, -0.11735820770263672, 0.1073816642165184, 0.04566042497754097, 0.1599379926919937, 0.08551039546728134, 0.023914890363812447, 0.022389069199562073, 0.10266581922769547, 0.1332782357931137, 0.09338433295488358, 0.04634670540690422, -0.031155910342931747, -0.020115887746214867, -0.008141583763062954, -0.023800652474164963, 0.05347411707043648, 0.024170130491256714, -0.1654479205608368, -0.04757166653871536, -0.0842362567782402, 0.09290844947099686, 0.10238873958587646, 0.08024106919765472, -0.21913154423236847, -0.02410099096596241, 0.07756908237934113, -0.020705094560980797, -0.10755396634340286, 0.09766699373722076, -0.0005648891674354672, -0.14196157455444336, 0.0616900734603405, -0.049431364983320236, 0.10746969282627106, -0.03317217156291008, 0.09415291249752045, -0.03652692586183548, -0.05778427794575691, 0.03692898526787758, 0.12167481333017349, -0.2836107313632965, 0.23531606793403625, -0.013077646493911743, -0.061279285699129105, -0.08122091740369797, -0.0016399137675762177, 0.019796807318925858, 0.13016101717948914, 0.1071731224656105, 0.011568492278456688, -0.08865362405776978, -0.09867966920137405, 0.00205828994512558, 0.042898990213871, 0.15006430447101593, -0.05663617327809334, 0.01333234366029501, -0.053034763783216476, 0.00873078964650631, -0.03815906122326851, -0.04501291736960411, -0.019588438794016838, -0.17459820210933685, 0.09407101571559906, 0.032157350331544876, 0.0938967615365982, 0.005956204142421484, -0.036989111453294754, -0.11092722415924072, 0.24062268435955048, -0.05791039019823074, -0.0991630107164383, -0.11345638334751129, -0.04250430315732956, 0.07417726516723633, -0.07857037335634232, 0.04332248494029045, -0.0788002535700798, 0.02041591703891754, -0.05700863152742386, -0.18916599452495575, 0.10586608946323395, -0.1015319675207138, -0.06886032223701477, -0.02062956616282463, 0.18787384033203125, -0.050402671098709106, 0.008348564617335796, 0.010919496417045593, 0.043331947177648544, -0.11029147356748581, -0.10938144475221634, 0.05636093392968178, -0.02860288694500923, 0.036778099834918976, 0.023975273594260216, -0.0852242261171341, -0.0006222276715561748, -0.04002983123064041, -0.033848751336336136, 0.29883894324302673, 0.19124822318553925, -0.058480434119701385, 0.1780860871076584, 0.11249183118343353, -0.0707792416214943, -0.3302999436855316, -0.10658388584852219, -0.10547398030757904, -0.02464539185166359, -0.05141992121934891, -0.21859493851661682, 0.06467723846435547, 0.01904826983809471, -0.009966780431568623, 0.155592679977417, -0.23800599575042725, -0.06832324713468552, 0.15032806992530823, -0.02457832731306553, 0.39273375272750854, -0.11815569549798965, -0.09382230788469315, -0.04893813282251358, -0.11903540045022964, 0.10284560173749924, -0.005009561777114868, 0.10803890973329544, -0.04527020454406738, 0.12417382746934891, 0.0272609144449234, -0.032613057643175125, 0.1004134938120842, 0.010988990776240826, -0.01689201593399048, -0.11002445966005325, -0.01967739500105381, 0.05836326256394386, 0.023911666125059128, -0.0048237270675599575, -0.04006877914071083, 0.02471916563808918, -0.1222456768155098, -0.038890112191438675, -0.08050505071878433, 0.06534763425588608, 0.03672591596841812, -0.061649419367313385, -0.008779984898865223, -0.04765750840306282, -0.030030876398086548, 0.010503115132451057, 0.18740364909172058, -0.033512890338897705, 0.1591026782989502, 0.05914721637964249, 0.07839757204055786, -0.11198952049016953, 0.03754333779215813, -0.08145735412836075, -0.06542962044477463, 0.0720333606004715, -0.09723663330078125, 0.031024379655718803, 0.13467837870121002, -0.06409872323274612, 0.05460887402296066, 0.10335415601730347, 0.0004946310073137283, 0.010761558078229427, 0.14676113426685333, -0.2685166001319885, -0.01340489275753498, -0.06999395787715912, -0.060436662286520004, 0.09379155188798904, 0.0802258625626564, 0.18320243060588837, 0.007670854218304157, -0.04902983456850052, -0.005408919416368008, 0.015663109719753265, -0.05771336704492569, 0.06831062585115433, 0.015118533745408058, 0.011079132556915283, -0.13246490061283112, 0.08077069371938705, 0.00494378199800849, -0.13730615377426147, 0.02054525539278984, 0.15422959625720978, -0.15341491997241974, -0.1268688440322876, -0.04284632205963135, 0.06424929201602936, -0.15875284373760223, -0.04188576713204384, -0.0680244043469429, -0.13259895145893097, 0.09491867572069168, 0.1300411969423294, 0.07982514798641205, 0.06450777500867844, -0.04638541489839554, -0.028342729434370995, -0.006743218749761581, -0.0208368431776762, 0.02739681676030159, 0.01017814688384533, -0.09854095429182053, 0.008885242976248264, -0.011771206744015217, 0.15258601307868958, -0.08853336423635483, -0.060655612498521805, -0.15461181104183197, 0.02078402228653431, -0.16417595744132996, -0.0860912948846817, -0.07234423607587814, -0.06060412898659706, -0.024614516645669937, -0.04783358424901962, -0.05992313101887703, -0.04574671760201454, -0.1308215707540512, 0.01601349748671055, -0.0429534874856472, 0.03767932206392288, -0.0697881355881691, 0.0061508365906775, 0.0938195139169693, -0.03506375104188919, 0.14459386467933655, 0.15980558097362518, -0.07894204556941986, 0.1442265510559082, -0.11298278719186783, -0.08168313652276993, 0.10425011813640594, 0.01979503408074379, 0.0397382453083992, 0.07048963755369186, 0.023180874064564705, 0.061890896409749985, 0.020385166630148888, 0.06727942079305649, 0.006843926850706339, -0.11034265905618668, 0.04835563525557518, -0.06724796444177628, -0.14533187448978424, -0.05733462795615196, -0.037995073944330215, 0.05466851964592934, 0.029009995982050896, 0.11758910864591599, -0.06102786585688591, 0.11503875255584717, -0.03442598879337311, 0.037752676755189896, 0.0044135889038443565, -0.1809292584657669, -0.07264342159032822, -0.08579443395137787, 0.0307071041315794, 0.0050397589802742004, 0.25645098090171814, 0.0037710091564804316, 0.01161464024335146, 0.02495102398097515, 0.08229099214076996, -0.005254187621176243, 0.02005704864859581, 0.17229220271110535, 0.1258089691400528, -0.0610504224896431, -0.13706815242767334, 0.05752898380160332, 0.014674347825348377, -0.013245766051113605, 0.14901471138000488, 0.028928015381097794, 0.008418096229434013, 0.08934278041124344, -0.03398749604821205, -0.005070027895271778, -0.08181244134902954, -0.10346440970897675, -0.041911929845809937, 0.05181850865483284, -0.011683314107358456, 0.12629565596580505, 0.1773143857717514, -0.01820189133286476, 0.01585428975522518, -0.03670521453022957, -0.04049449414014816, -0.1513376533985138, -0.13642975687980652, -0.08066367357969284, -0.1423778235912323, 0.01960410363972187, -0.11027469485998154, 0.04302308335900307, 0.07852663099765778, 0.06921054422855377, -0.07099409401416779, 0.10576529800891876, 0.048771798610687256, -0.11337114870548248, 0.06733845919370651, -0.03429092466831207, 0.047708310186862946, 0.003382780123502016, -0.02766524814069271, -0.10660048574209213, -0.005296054761856794, -0.014097117818892002, 0.052419912070035934, -0.06184102222323418, 0.005366180557757616, -0.158110573887825, -0.09441159665584564, -0.04960250481963158, 0.07885439693927765, -0.0416194424033165, 0.10527309030294418, 0.0033704950474202633, -0.016266120597720146, 0.03815411776304245, 0.200557142496109, -0.05549601837992668, -0.050482962280511856, -0.04213699698448181, 0.19893327355384827, 0.03351425379514694, 0.10568388551473618, -0.030432019382715225, 0.0059446957893669605, -0.08799590170383453, 0.3881770670413971, 0.31180810928344727, -0.0688302144408226, 0.018735511228442192, 0.035773273557424545, 0.044230345636606216, 0.13090212643146515, 0.12216496467590332, 0.09469138830900192, 0.2457701861858368, -0.08962731808423996, -0.06668471544981003, -0.05582359433174133, -0.005157794803380966, -0.10330755263566971, 0.10766029357910156, 0.057600878179073334, -0.07418563216924667, -0.05278821662068367, 0.11066184192895889, -0.23363031446933746, 0.12181756645441055, -0.06314362585544586, -0.15849947929382324, -0.06696395576000214, 0.018522264435887337, 0.11709368228912354, 0.007134626619517803, 0.1019769087433815, -0.0235473420470953, -0.1165497750043869, 0.07768722623586655, 0.03811350464820862, -0.21265189349651337, 0.0017083800630643964, 0.05767899379134178, -0.058304887264966965, -0.015072895213961601, -0.03407648950815201, 0.05785056948661804, 0.07778622955083847, 0.051653921604156494, -0.031969163566827774, 0.029866723343729973, 0.013651198707520962, -0.030867453664541245, 0.001532134716399014, 0.04837888851761818, 0.02095460519194603, -0.1219414696097374, 0.0865563303232193, -0.10602779686450958, 0.0464898906648159, -0.026561975479125977, -0.032652150839567184, 0.013701927848160267, 0.02718721516430378, -0.07782252877950668, 0.053342197090387344, 0.10113342106342316, -0.006029465235769749, -0.018753351643681526, -0.07953996956348419, -0.0038166206795722246, 0.007126332726329565, -0.08185254782438278, -0.08380824327468872, -0.1391916126012802, -0.10529641807079315, 0.13000033795833588, -0.0042379689402878284, -0.1825229823589325, 0.0195928942412138, -0.09752582013607025, 0.08795446902513504, -0.1710020750761032, 0.10536401718854904, 0.05814595893025398, 0.003240753198042512, 0.0031410534866154194, -0.020751353353261948, 0.0466330386698246, 0.0650823712348938, -0.10091765969991684, -0.0859261006116867 ]
null
null
transformers
**Fork of https://huggingface.co/sberbank-ai/rugpt3large_based_on_gpt2** Забавное для дискордика))00)) ROADMAP: - Собираю датасетик из книжек про попаданцев. <------------------------- Сейчас тут. - Дообучаю. - Выбрасываю в дискордик. https://discord.gg/HpeadKH
{"language": ["ru"], "tags": ["PyTorch", "Transformers", "4ulan"]}
text-generation
Ifromspace/GRIEFSOFT
[ "transformers", "pytorch", "gpt2", "text-generation", "PyTorch", "Transformers", "4ulan", "ru", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #gpt2 #text-generation #PyTorch #Transformers #4ulan #ru #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Fork of URL Забавное для дискордика))00)) ROADMAP: - Собираю датасетик из книжек про попаданцев. <------------------------- Сейчас тут. - Дообучаю. - Выбрасываю в дискордик. URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #PyTorch #Transformers #4ulan #ru #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 61 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #PyTorch #Transformers #4ulan #ru #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.002382175996899605, -0.03027772717177868, -0.007520148530602455, 0.023596782237291336, 0.1624002605676651, 0.018098529428243637, 0.15128889679908752, 0.09332972019910812, -0.014874408021569252, -0.007321403361856937, 0.1674303263425827, 0.16333839297294617, -0.00753342779353261, 0.05619093030691147, -0.03473716229200363, -0.30655646324157715, 0.06251674145460129, 0.038910817354917526, -0.07663588225841522, 0.1316756159067154, 0.08387836813926697, -0.05567466840147972, 0.08554258942604065, -0.007929058745503426, -0.1806449294090271, 0.026907313615083694, 0.04996192455291748, -0.13550445437431335, 0.1208551898598671, 0.05974067747592926, 0.12907904386520386, 0.00892738439142704, -0.03887626528739929, -0.1258460283279419, 0.025039400905370712, -0.004345899447798729, -0.07622889429330826, 0.060403965413570404, 0.09043644368648529, -0.0721377581357956, 0.16387173533439636, 0.07153760641813278, -0.014623834751546383, 0.038548544049263, -0.14177320897579193, -0.07603298127651215, -0.02312883920967579, 0.09908092767000198, 0.01992890052497387, 0.11477839201688766, -0.019189657643437386, 0.1349831223487854, -0.11447155475616455, 0.08994367718696594, 0.17054763436317444, -0.32011017203330994, -0.026184499263763428, 0.03212495520710945, 0.06172320991754532, 0.044209010899066925, -0.04463128745555878, 0.07249611616134644, 0.02658383548259735, 0.039708979427814484, -0.00843195989727974, -0.05943210422992706, -0.08492662757635117, 0.026347031816840172, -0.10621882975101471, -0.04405376315116882, 0.21323610842227936, -0.07433006912469864, 0.06440144032239914, -0.011074499227106571, -0.11313606053590775, -0.06543143838644028, -0.010432189330458641, 0.015847431495785713, -0.07661087810993195, 0.0558214969933033, 0.005267303436994553, -0.04338321089744568, -0.14376433193683624, 0.003699522465467453, -0.14805255830287933, 0.23044158518314362, 0.032344069331884384, 0.05746171995997429, -0.17822261154651642, 0.10170435905456543, 0.06377595663070679, -0.11841162294149399, 0.06641065329313278, -0.09973059594631195, 0.058705586940050125, 0.026695504784584045, -0.05924699828028679, -0.037360161542892456, 0.08146658539772034, 0.1645909696817398, -0.018734637647867203, 0.006283984985202551, 0.01649337448179722, 0.10442566126585007, 0.0060472022742033005, 0.0947849452495575, -0.037464119493961334, 0.02222478948533535, 0.03189247474074364, -0.11748331785202026, 0.01939491182565689, -0.08238266408443451, -0.14653588831424713, -0.032129596918821335, 0.02988024242222309, 0.07407066226005554, 0.018330808728933334, 0.08324688673019409, -0.041397642344236374, -0.014690683223307133, 0.06760553270578384, -0.05779649317264557, -0.009128539822995663, 0.007294776383787394, 0.020733850076794624, 0.18674257397651672, -0.009970133192837238, 0.013257382437586784, -0.0939803496003151, 0.08966376632452011, -0.07118167728185654, -0.00899775791913271, -0.041514597833156586, -0.05722079053521156, 0.03625476360321045, -0.09006082266569138, 0.032313376665115356, -0.1768338978290558, -0.1146339699625969, 0.022180330008268356, -0.0015639896737411618, -0.03403422236442566, -0.03456725552678108, -0.00029555478249676526, -0.07923955470323563, 0.06158735603094101, -0.037139642983675, -0.012622998096048832, -0.04155467078089714, 0.11800789088010788, -0.019183967262506485, 0.08636556565761566, -0.11958788335323334, 0.0570814348757267, -0.10789166390895844, -0.022050440311431885, -0.08776669204235077, 0.02360614947974682, -0.03936738893389702, 0.11963686347007751, 0.008671123534440994, -0.043718233704566956, -0.04162570461630821, 0.05018122121691704, -0.028674302622675896, 0.17554131150245667, -0.059511639177799225, -0.1465587317943573, 0.2363242208957672, -0.1271325945854187, -0.11308510601520538, 0.11697599291801453, 0.029320187866687775, 0.0056018466129899025, 0.07314737141132355, 0.1378287971019745, 0.03880155086517334, -0.018213924020528793, 0.02006896212697029, 0.07094718515872955, -0.08875907212495804, -0.05647970736026764, 0.03792412951588631, 0.014743889681994915, -0.06653561443090439, 0.05295807495713234, 0.04285581037402153, 0.10178957134485245, -0.06863846629858017, -0.05250828340649605, -0.04089772701263428, -0.006093462463468313, 0.10774684697389603, 0.024169469252228737, 0.12983275949954987, -0.07043316215276718, -0.07321405410766602, -0.011234729550778866, 0.02399127371609211, -0.008612188510596752, 0.04172192141413689, -0.05065004527568817, 0.14784103631973267, 0.001792017719708383, 0.05471561849117279, -0.17374835908412933, -0.084191232919693, -0.014023402705788612, 0.09817011654376984, 0.009314429014921188, 0.08200053870677948, 0.07224328815937042, -0.0113683408126235, -0.03208182752132416, -0.019552284851670265, 0.07491631805896759, -0.02851186692714691, -0.0410652831196785, -0.11148037016391754, 0.052271079272031784, -0.06465162336826324, 0.017899975180625916, -0.07182516157627106, 0.027526583522558212, 0.09082283079624176, 0.15055163204669952, -0.00900945533066988, 0.05199142172932625, -0.05154360458254814, 0.03995363041758537, -0.0821363776922226, 0.007821915671229362, 0.09405059367418289, -0.015012526884675026, -0.07074800133705139, 0.1605965942144394, -0.10826613754034042, 0.2701699435710907, 0.20887324213981628, -0.2849564552307129, -0.01725347340106964, 0.02025667391717434, -0.03412724286317825, 0.013175614178180695, 0.051016468554735184, -0.04307414963841438, 0.10227052122354507, 0.009247949346899986, 0.1386779248714447, -0.03205082565546036, -0.05266081169247627, 0.016235850751399994, -0.06296546757221222, -0.006206940859556198, 0.09195724874734879, 0.12073630094528198, -0.11082056909799576, 0.19066157937049866, 0.19569209218025208, -0.0064392066560685635, 0.19714871048927307, -0.012256115674972534, -0.019662359729409218, 0.06395602971315384, -0.02241542562842369, -0.021371804177761078, -0.033791325986385345, -0.16817550361156464, -0.04164345934987068, 0.06578884273767471, -0.0005079241236671805, 0.07134418189525604, -0.14281930029392242, -0.05457264930009842, -0.04069498926401138, 0.01670132391154766, -0.020098064094781876, 0.11316099762916565, 0.02119888924062252, 0.12469388544559479, -0.015023339539766312, -0.03706726059317589, 0.09902743995189667, 0.02314741723239422, -0.07383986562490463, 0.19443607330322266, -0.11658437550067902, -0.34819674491882324, -0.1691609025001526, -0.11487855762243271, -0.05871596187353134, 0.030688583850860596, 0.0962851420044899, -0.16363075375556946, -0.022952521219849586, 0.05102841556072235, 0.13132455945014954, -0.08449947834014893, 0.03779001533985138, -0.054841604083776474, 0.042145971208810806, -0.08755894005298615, -0.06901013106107712, -0.05087190121412277, -0.03530086576938629, -0.06327956169843674, 0.16245877742767334, -0.06725751608610153, 0.07892970740795135, 0.18106012046337128, 0.03733184561133385, 0.03600231185555458, -0.018342595547437668, 0.16683809459209442, -0.11833522468805313, 0.010959681123495102, 0.1991598755121231, -0.04154052957892418, 0.08565178513526917, 0.10760260373353958, 0.03128496930003166, -0.07216054946184158, 0.025946110486984253, -0.0376252606511116, -0.08391804248094559, -0.25306200981140137, -0.1049959734082222, -0.10724811255931854, 0.07687568664550781, 0.020527565851807594, 0.06493991613388062, 0.13402065634727478, 0.0979631245136261, -0.01876961626112461, 0.0040012551471591, -0.010865699499845505, 0.06303378939628601, 0.23054802417755127, -0.017748594284057617, 0.15364886820316315, -0.06773265451192856, -0.14030547440052032, 0.0866401195526123, -0.0014016684144735336, 0.1616235375404358, 0.06811152398586273, 0.035509929060935974, 0.03351070359349251, 0.09628905355930328, 0.15035656094551086, 0.11777806282043457, 0.035745568573474884, -0.034281328320503235, -0.005707993637770414, -0.02463719993829727, -0.016798820346593857, 0.03690801188349724, 0.014700506813824177, -0.1178591251373291, -0.049205467104911804, -0.08669768273830414, 0.10423198342323303, 0.115694560110569, 0.04080863296985626, -0.21027983725070953, -0.029955869540572166, 0.07718819379806519, -0.028147269040346146, -0.08073292672634125, 0.07864844053983688, -0.008018608205020428, -0.1579926311969757, 0.05167894437909126, -0.0594073086977005, 0.09540485590696335, -0.049494288861751556, 0.08795686066150665, -0.0020426970440894365, -0.04691720008850098, 0.0361320786178112, 0.09734607487916946, -0.26833856105804443, 0.23380833864212036, -0.019198115915060043, -0.04771893844008446, -0.07015484571456909, 0.011955540627241135, 0.015890855342149734, 0.12698476016521454, 0.08707799017429352, 0.011267749592661858, -0.0499720498919487, -0.11945542693138123, -0.017414191737771034, 0.036252494901418686, 0.14001092314720154, -0.05918994918465614, 0.00902100745588541, -0.044111162424087524, 0.0031444861087948084, -0.016528557986021042, -0.043868061155080795, -0.015194949693977833, -0.1691713184118271, 0.10660596936941147, 0.01138591393828392, 0.07828286290168762, -0.015787744894623756, -0.08402853459119797, -0.08260808885097504, 0.18386515974998474, -0.06155925244092941, -0.10753247141838074, -0.11840618401765823, -0.05549473315477371, 0.09110995382070541, -0.0997714027762413, 0.05181862413883209, -0.07574521005153656, 0.026399612426757812, -0.06046190485358238, -0.17588908970355988, 0.123570017516613, -0.10306611657142639, -0.10809916257858276, -0.022574421018362045, 0.18479394912719727, -0.035351142287254333, 0.01830369606614113, -0.02199571579694748, 0.040818266570568085, -0.10986374318599701, -0.12800480425357819, 0.03862570598721504, -0.04775019735097885, -0.0003226512926630676, 0.0022803377360105515, -0.06674237549304962, 0.012788590975105762, -0.0333133190870285, -0.034435123205184937, 0.27014192938804626, 0.1839589923620224, -0.057982563972473145, 0.15317299962043762, 0.14004212617874146, -0.04930388182401657, -0.3206726312637329, -0.11099576950073242, -0.08688701689243317, -0.04423967003822327, -0.06353283673524857, -0.21885065734386444, 0.08298443257808685, 0.007153716403990984, -0.019954444840550423, 0.13474147021770477, -0.26890188455581665, -0.08011914044618607, 0.15282252430915833, -0.022185666486620903, 0.3456442356109619, -0.15189358592033386, -0.08333802968263626, -0.04920750856399536, -0.1489650309085846, 0.12376249581575394, -0.022438950836658478, 0.09997886419296265, -0.041217654943466187, 0.10469857603311539, 0.02598438784480095, -0.04145326092839241, 0.09728534519672394, 0.009090770967304707, -0.01698802411556244, -0.09759853780269623, -0.062344565987586975, 0.08625467121601105, 0.047348007559776306, -0.013970666565001011, -0.03153779357671738, 0.010291880927979946, -0.10570446401834488, -0.040989287197589874, -0.10042309761047363, 0.07379081845283508, 0.01409263163805008, -0.062189776450395584, 0.004868137650191784, -0.050444893538951874, -0.0353587344288826, -0.0014230061788111925, 0.19627660512924194, -0.006060972809791565, 0.15491768717765808, 0.04748440161347389, 0.07696221768856049, -0.08115407079458237, -0.014660939574241638, -0.07788112014532089, -0.07271641492843628, 0.08206668496131897, -0.09597925841808319, 0.01254934910684824, 0.12975303828716278, -0.0300978422164917, 0.031617701053619385, 0.11444536596536636, -0.007102005183696747, 0.0019615967757999897, 0.14600110054016113, -0.2539529800415039, -0.0012205219827592373, -0.06988059729337692, -0.02361174114048481, 0.0778738483786583, 0.0949164479970932, 0.17118248343467712, -0.012748009525239468, -0.04679493606090546, 0.008862432092428207, 0.0023129829205572605, -0.06180471181869507, 0.07910443097352982, 0.0373215489089489, 0.02039335109293461, -0.14199216663837433, 0.06065076217055321, 0.012053383514285088, -0.13928352296352386, -0.0013184540439397097, 0.17261135578155518, -0.13506023585796356, -0.12259159237146378, -0.034845080226659775, 0.04440636187791824, -0.19873255491256714, -0.041895244270563126, -0.07149647921323776, -0.16027294099330902, 0.07784529775381088, 0.15088044106960297, 0.0829346552491188, 0.06090952083468437, -0.06270739436149597, 0.0018203906947746873, -0.024878397583961487, -0.004318063147366047, 0.02559749037027359, 0.02604956179857254, -0.10581056028604507, 0.037317633628845215, 0.0162254236638546, 0.1265781968832016, -0.09076773375272751, -0.03604451194405556, -0.1667502373456955, 0.032018031924963, -0.1210370883345604, -0.11268120259046555, -0.06654810905456543, -0.06646637618541718, -0.018212497234344482, -0.0673924908041954, -0.04620959609746933, -0.04459575191140175, -0.11638706177473068, 0.014202889055013657, -0.02565554901957512, 0.023198088631033897, -0.09515070170164108, 0.004577431362122297, 0.11122123897075653, -0.05934026464819908, 0.14241211116313934, 0.16697533428668976, -0.06099220737814903, 0.1405353546142578, -0.0995587408542633, -0.061351992189884186, 0.0963544175028801, 0.005307024344801903, 0.028836390003561974, 0.05174591764807701, 0.02644859440624714, 0.034617289900779724, 0.04671185836195946, 0.07477343082427979, 0.020229753106832504, -0.11523351818323135, 0.08171804249286652, -0.020601361989974976, -0.15165570378303528, -0.05496843531727791, -0.036521319299936295, 0.06513667106628418, 0.008887730538845062, 0.12769347429275513, -0.054402243345975876, 0.11387176811695099, -0.04068382829427719, 0.04610301926732063, 0.0032921559177339077, -0.17628026008605957, -0.05570179596543312, -0.06446553021669388, 0.020536717027425766, -0.013634973205626011, 0.23029068112373352, -0.00911309290677309, 0.013098625466227531, 0.038267266005277634, 0.10514054447412491, -0.019787738099694252, 0.03847070783376694, 0.16053737699985504, 0.13308559358119965, -0.04767221212387085, -0.12179366499185562, 0.04149020463228226, 0.020764319226145744, -0.051585569977760315, 0.15124104917049408, 0.014785737730562687, 0.025445623323321342, 0.07600348442792892, 0.011230220086872578, 0.027834152802824974, -0.1214512288570404, -0.1399710327386856, -0.03845542296767235, 0.04287580028176308, -0.03038511984050274, 0.12589363753795624, 0.1748620569705963, 0.00605431292206049, 0.010153244249522686, -0.03097453899681568, -0.03699489310383797, -0.14576198160648346, -0.09156040847301483, -0.05890438333153725, -0.1378481686115265, 0.020616373047232628, -0.09168216586112976, 0.020920714363455772, 0.07512357831001282, 0.058863863348960876, -0.07161354273557663, 0.11779822409152985, 0.09310222417116165, -0.07081886380910873, 0.06951059401035309, -0.015273824334144592, 0.021119292825460434, -0.007493352983146906, -0.007810719311237335, -0.13149134814739227, 0.009498268365859985, -0.030299687758088112, 0.04741259664297104, -0.10963323712348938, 0.011762968264520168, -0.13152921199798584, -0.10471900552511215, -0.03994898870587349, 0.05785323679447174, -0.023199062794446945, 0.10517743229866028, -0.011737545020878315, -0.006676726974546909, 0.022227684035897255, 0.19246318936347961, -0.06862565129995346, -0.0824706181883812, -0.04788348823785782, 0.1745435744524002, 0.0036900965496897697, 0.09750190377235413, -0.017857613041996956, 0.00021488621132448316, -0.11989018321037292, 0.3664216995239258, 0.3031442165374756, -0.04883450269699097, 0.03374599665403366, 0.05583888664841652, 0.040635764598846436, 0.09101249277591705, 0.12310916930437088, 0.10237964987754822, 0.2808351516723633, -0.10555683821439743, -0.05085349828004837, -0.05718902498483658, -0.014700328931212425, -0.0988360047340393, 0.09675445407629013, 0.059903983026742935, -0.062127694487571716, -0.0635223314166069, 0.09491188079118729, -0.23979489505290985, 0.09960374981164932, -0.06722906976938248, -0.17381593585014343, -0.053444840013980865, 0.006275469437241554, 0.13467609882354736, 0.020179644227027893, 0.11050896346569061, -0.008802431635558605, -0.11865667998790741, 0.0838477611541748, 0.05150461569428444, -0.20969119668006897, 0.0017382582882419229, 0.09028571099042892, -0.06985057890415192, -0.008370679803192616, -0.044366396963596344, 0.06560036540031433, 0.09033387154340744, 0.04813673347234726, -0.040998127311468124, -0.003461032873019576, 0.025748388841748238, -0.06764086335897446, -0.027754472568631172, 0.04516514763236046, 0.03282596915960312, -0.1205720603466034, 0.06524834036827087, -0.10908952355384827, 0.05015905201435089, -0.023357708007097244, 0.004925687797367573, -0.00376703729853034, 0.036316171288490295, -0.07474474608898163, 0.048153627663850784, 0.10824277997016907, -0.012236174196004868, -0.03221118450164795, -0.06731736660003662, -0.011150648817420006, 0.01829637959599495, -0.07184100151062012, -0.0975157767534256, -0.14962238073349, -0.09325086325407028, 0.11529474705457687, 0.01627066731452942, -0.18035884201526642, -0.003319898620247841, -0.08792448788881302, 0.0654941275715828, -0.1833636313676834, 0.0619688481092453, 0.06630627810955048, 0.00003170044510625303, 0.0173652246594429, -0.018530527129769325, 0.032394759356975555, 0.06570779532194138, -0.12701813876628876, -0.07311398535966873 ]
null
null
transformers
# MBARTRuSumGazeta ## Model description This is a ported version of [fairseq model](https://www.dropbox.com/s/fijtntnifbt9h0k/gazeta_mbart_v2_fairseq.tar.gz). For more details, please see [Dataset for Automatic Summarization of Russian News](https://arxiv.org/abs/2006.11063). ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1wdo_nPZPk6dWAn1J8nGx4Z5Ef82jCCob) ```python from transformers import MBartTokenizer, MBartForConditionalGeneration model_name = "IlyaGusev/mbart_ru_sum_gazeta" tokenizer = MBartTokenizer.from_pretrained(model_name) model = MBartForConditionalGeneration.from_pretrained(model_name) article_text = "..." input_ids = tokenizer( [article_text], max_length=600, padding="max_length", truncation=True, return_tensors="pt", )["input_ids"] output_ids = model.generate( input_ids=input_ids, no_repeat_ngram_size=4 )[0] summary = tokenizer.decode(output_ids, skip_special_tokens=True) print(summary) ``` #### Limitations and bias - The model should work well with Gazeta.ru articles, but for any other agencies it can suffer from domain shift ## Training data - Dataset: [Gazeta](https://huggingface.co/datasets/IlyaGusev/gazeta) ## Training procedure - Fairseq training script: [train.sh](https://github.com/IlyaGusev/summarus/blob/master/external/bart_scripts/train.sh) - Porting: [Colab link](https://colab.research.google.com/drive/13jXOlCpArV-lm4jZQ0VgOpj6nFBYrLAr) ## Eval results * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v1 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **32.4** | 14.3 | 28.0 | 39.7 | **26.4** | 12.1 | 371 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 32.2 | **14.4** | **28.1** | **39.8** | 25.7 | **12.3** | 330 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 26.2 | 7.7 | 21.7 | 33.8 | 18.2 | 4.3 | 244 | * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v2 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **28.7** | **11.1** | 24.4 | **37.3** | **22.7** | **9.4** | 373 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 28.6 | **11.1** | **24.5** | 37.2 | 22.0 | **9.4** | 331 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 24.1 | 6.5 | 19.8 | 32.1 | 16.3 | 3.6 | 242 | Predicting all summaries: ```python import json import torch from transformers import MBartTokenizer, MBartForConditionalGeneration from datasets import load_dataset def gen_batch(inputs, batch_size): batch_start = 0 while batch_start < len(inputs): yield inputs[batch_start: batch_start + batch_size] batch_start += batch_size def predict( model_name, input_records, output_file, max_source_tokens_count=600, batch_size=4 ): device = "cuda" if torch.cuda.is_available() else "cpu" tokenizer = MBartTokenizer.from_pretrained(model_name) model = MBartForConditionalGeneration.from_pretrained(model_name).to(device) predictions = [] for batch in gen_batch(inputs, batch_size): texts = [r["text"] for r in batch] input_ids = tokenizer( batch, return_tensors="pt", padding="max_length", truncation=True, max_length=max_source_tokens_count )["input_ids"].to(device) output_ids = model.generate( input_ids=input_ids, no_repeat_ngram_size=4 ) summaries = tokenizer.batch_decode(output_ids, skip_special_tokens=True) for s in summaries: print(s) predictions.extend(summaries) with open(output_file, "w") as w: for p in predictions: w.write(p.strip().replace("\n", " ") + "\n") gazeta_test = load_dataset('IlyaGusev/gazeta', script_version="v1.0")["test"] predict("IlyaGusev/mbart_ru_sum_gazeta", list(gazeta_test), "mbart_predictions.txt") ``` Evaluation: https://github.com/IlyaGusev/summarus/blob/master/evaluate.py Flags: --language ru --tokenize-after --lower ### BibTeX entry and citation info ```bibtex @InProceedings{10.1007/978-3-030-59082-6_9, author="Gusev, Ilya", editor="Filchenkov, Andrey and Kauttonen, Janne and Pivovarova, Lidia", title="Dataset for Automatic Summarization of Russian News", booktitle="Artificial Intelligence and Natural Language", year="2020", publisher="Springer International Publishing", address="Cham", pages="122--134", isbn="978-3-030-59082-6" } ```
{"language": ["ru"], "license": "apache-2.0", "tags": ["summarization", "mbart"], "datasets": ["IlyaGusev/gazeta"], "inference": {"parameters": {"no_repeat_ngram_size": 4}}, "widget": [{"text": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0431\u0430\u0448\u043d\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 324 \u043c\u0435\u0442\u0440\u0430 (1063 \u0444\u0443\u0442\u0430), \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0442\u0430\u043a\u0430\u044f \u0436\u0435 \u0432\u044b\u0441\u043e\u0442\u0430, \u043a\u0430\u043a \u0443 81-\u044d\u0442\u0430\u0436\u043d\u043e\u0433\u043e \u0437\u0434\u0430\u043d\u0438\u044f, \u0438 \u0441\u0430\u043c\u043e\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u0432 \u041f\u0430\u0440\u0438\u0436\u0435. \u0415\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u043d\u043e, \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u043c 125 \u043c\u0435\u0442\u0440\u043e\u0432 (410 \u0444\u0443\u0442\u043e\u0432) \u0441 \u043b\u044e\u0431\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b. \u0412\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u043f\u0440\u0435\u0432\u0437\u043e\u0448\u043b\u0430 \u043c\u043e\u043d\u0443\u043c\u0435\u043d\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0430, \u0441\u0442\u0430\u0432 \u0441\u0430\u043c\u044b\u043c \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u0438\u0440\u0435, \u0438 \u044d\u0442\u043e\u0442 \u0442\u0438\u0442\u0443\u043b \u043e\u043d\u0430 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0430 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 41 \u0433\u043e\u0434\u0430 \u0434\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u0432 \u041d\u044c\u044e-\u0419\u043e\u0440\u043a\u0435 \u0432 1930 \u0433\u043e\u0434\u0443. \u042d\u0442\u043e \u043f\u0435\u0440\u0432\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u043e \u0432\u044b\u0441\u043e\u0442\u044b 300 \u043c\u0435\u0442\u0440\u043e\u0432. \u0418\u0437-\u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0430\u043d\u0442\u0435\u043d\u043d\u044b \u043d\u0430 \u0432\u0435\u0440\u0448\u0438\u043d\u0435 \u0431\u0430\u0448\u043d\u0438 \u0432 1957 \u0433\u043e\u0434\u0443 \u043e\u043d\u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u0448\u0435 \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u043d\u0430 5,2 \u043c\u0435\u0442\u0440\u0430 (17 \u0444\u0443\u0442\u043e\u0432). \u0417\u0430 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u0447\u0438\u043a\u043e\u0432, \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0442\u043e\u0440\u043e\u0439 \u0441\u0430\u043c\u043e\u0439 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u043e\u0439 \u0432\u043e \u0424\u0440\u0430\u043d\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435 \u0432\u0438\u0430\u0434\u0443\u043a\u0430 \u041c\u0438\u0439\u043e.", "example_title": "\u0412\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u044f"}, {"text": "\u0421 1 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0432\u0441\u0442\u0443\u043f\u0430\u044e\u0442 \u0432 \u0441\u0438\u043b\u0443 \u043f\u043e\u043f\u0440\u0430\u0432\u043a\u0438 \u0432 \u0437\u0430\u043a\u043e\u043d \u00ab\u041e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0435\u00bb \u2014 \u0442\u0435\u043f\u0435\u0440\u044c \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0438 \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u043d\u0435\u043f\u043e\u0441\u0438\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432 \u0432\u043e \u0432\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u043c \u043f\u043e\u0440\u044f\u0434\u043a\u0435, \u0435\u0441\u043b\u0438 \u0441\u0443\u043c\u043c\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 50 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0438 \u043d\u0435 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 500 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0431\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u0448\u0442\u0440\u0430\u0444\u043e\u0432, \u043f\u0435\u043d\u0438, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432 \u0437\u0430 \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u043a\u0443 \u043f\u043b\u0430\u0442\u0435\u0436\u0430 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0438\u043b\u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439. \u0423 \u0444\u0438\u0437\u043b\u0438\u0446 \u0438 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u044f\u0432\u0438\u043b\u0430\u0441\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0443 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0430 \u0431\u0435\u0437 \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0441\u0443\u0434\u0430 \u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u2014 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u043e\u0434\u0430\u0442\u044c \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0447\u0435\u0440\u0435\u0437 \u041c\u0424\u0426. \u0421\u0443\u043c\u043c\u0443 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044e \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432 \u043d\u0443\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e. \u0415\u0441\u043b\u0438 \u0432\u0441\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0441\u043e\u0431\u043b\u044e\u0434\u0435\u043d\u044b, \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u043d\u0435\u0441\u0443\u0442 \u0432 \u0415\u0434\u0438\u043d\u044b\u0439 \u0444\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0435\u0441\u0442\u0440 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0445 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0434\u043d\u0435\u0439. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u0434\u0430\u0447\u0438 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043e\u043a\u043e\u043d\u0447\u0435\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0441 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435\u043c \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u0435\u043b\u044e. \u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0438\u0442, \u0447\u0442\u043e \u0443 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043c\u043e\u0436\u043d\u043e \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u044c. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043e\u0437\u0431\u0443\u0436\u0434\u0435\u043d\u043e \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e. \u0412 \u043f\u0435\u0440\u0438\u043e\u0434 \u0432\u0441\u0435\u0439 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044c \u043d\u0435 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u0440\u0430\u0442\u044c \u0437\u0430\u0439\u043c\u044b, \u043a\u0440\u0435\u0434\u0438\u0442\u044b, \u0432\u044b\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0440\u0443\u0447\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430, \u0441\u043e\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0438\u043d\u044b\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0434\u0435\u043b\u043a\u0438. \u0412\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u0435 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u043e \u0431\u0443\u0434\u0435\u0442 \u0434\u043b\u0438\u0442\u044c\u0441\u044f \u0448\u0435\u0441\u0442\u044c \u043c\u0435\u0441\u044f\u0446\u0435\u0432, \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043d\u0430 \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0430, \u0438 \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043e\u0431 \u0443\u043f\u043b\u0430\u0442\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0443\u0441\u0442\u043e\u0435\u043a \u0438 \u0438\u043d\u044b\u0445 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439; \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0432\u0437\u044b\u0441\u043a\u0430\u043d\u0438\u044f (\u043a\u0440\u043e\u043c\u0435 \u0430\u043b\u0438\u043c\u0435\u043d\u0442\u043e\u0432) \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b. \u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u044f\u0442 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u043e \u043f\u0440\u0438\u0437\u043d\u0430\u043d\u0438\u0438 \u0435\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043e\u043c, \u0430 \u044d\u0442\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0437\u043d\u0430\u0435\u0442\u0441\u044f \u0431\u0435\u0437\u043d\u0430\u0434\u0435\u0436\u043d\u043e\u0439. \u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u043c \u043c\u0435\u0441\u044f\u0446\u0435 \u0441\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0437\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u043f\u043e\u043b\u0443\u0433\u043e\u0434\u0438\u0435 2020 \u0433\u043e\u0434\u0430 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u0441\u0443\u0434\u044b \u043f\u0440\u0438\u0437\u043d\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430\u043c\u0438 42,7 \u0442\u044b\u0441. \u0433\u0440\u0430\u0436\u0434\u0430\u043d (\u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439) \u2014 \u043f\u043e \u0434\u0430\u043d\u043d\u044b\u043c \u0435\u0434\u0438\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb, \u044d\u0442\u043e \u043d\u0430 47,2% \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 2019 \u0433\u043e\u0434\u0430. \u0420\u043e\u0441\u0442 \u0447\u0438\u0441\u043b\u0430 \u043e\u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0438\u0432\u0448\u0438\u0445\u0441\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u043c \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0435 \u043f\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044e \u0441 \u043f\u0435\u0440\u0432\u044b\u043c \u0437\u0430\u043c\u0435\u0434\u043b\u0438\u043b\u0441\u044f \u2014 \u0442\u0430\u043a\u0430\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430 \u043e\u0431\u0443\u0441\u043b\u043e\u0432\u043b\u0435\u043d\u0430 \u0442\u0435\u043c, \u0447\u0442\u043e \u0432 \u043f\u0435\u0440\u0438\u043e\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u0441 19 \u043c\u0430\u0440\u0442\u0430 \u043f\u043e 11 \u043c\u0430\u044f \u0441\u0443\u0434\u044b \u0440\u0435\u0434\u043a\u043e \u0440\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043d\u044b\u0435 \u0434\u0435\u043b\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0438 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u043e\u0431\u044b\u0447\u043d\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u043b \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u042e\u0445\u043d\u0438\u043d. \u041e\u043d \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u0442, \u0447\u0442\u043e \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u0443\u0433\u043e\u0434\u0438\u0438 \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0440\u043e\u0441\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0433\u0434\u0430 \u0441\u0443\u0434\u044b \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u044f\u0442 \u0432\u0441\u0435 \u0434\u0435\u043b\u0430, \u0447\u0442\u043e \u043d\u0435 \u0441\u043c\u043e\u0433\u043b\u0438 \u0440\u0430\u043d\u0435\u0435 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439. \u041f\u043e \u0435\u0433\u043e \u0434\u0430\u043d\u043d\u044b\u043c, \u0443\u0436\u0435 \u0432 \u0438\u044e\u043d\u0435 \u0447\u0438\u0441\u043b\u043e \u043b\u0438\u0447\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432 \u0432\u044b\u0440\u043e\u0441\u043b\u043e \u0434\u043e 11,5 \u0442\u044b\u0441., \u0447\u0442\u043e \u0432 \u0434\u0432\u0430 \u0440\u0430\u0437\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 2019 \u0433\u043e\u0434\u0430.", "example_title": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438"}, {"text": "\u0410\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b. \u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438\u0433\u0440\u0430\u0435\u0442 \u0432\u0441\u0435 \u0431\u043e\u043b\u044c\u0448\u0443\u044e \u0440\u043e\u043b\u044c \u0432\u043e \u0432\u0441\u0435\u0445 \u0441\u0444\u0435\u0440\u0430\u0445 \u0436\u0438\u0437\u043d\u0438 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430. \u0412 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0433\u043e\u0434\u044b \u043e\u0431\u044a\u0435\u043c \u043d\u0430\u0443\u0447\u043d\u043e-\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u043c \u0432\u0438\u0434\u0435 \u0432\u043e\u0437\u0440\u043e\u0441 \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043a\u043e, \u0447\u0442\u043e \u0432\u043e\u0437\u043d\u0438\u043a\u0430\u0435\u0442 \u0443\u0433\u0440\u043e\u0437\u0430 \u043e\u0431\u0435\u0441\u0446\u0435\u043d\u0438\u0432\u0430\u043d\u0438\u044f \u044d\u0442\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u0432\u044f\u0437\u0438 \u0441 \u0442\u0440\u0443\u0434\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0441\u0440\u0435\u0434\u0438 \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0442\u0435\u043a\u0441\u0442\u043e\u0432. \u0420\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u043c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u043e \u0443\u0441\u0443\u0433\u0443\u0431\u0438\u043b\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u0435\u0440\u0435\u0433\u0440\u0443\u0437\u043a\u0438. \u0412 \u044d\u0442\u043e\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043c\u0435\u0442\u043e\u0434\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u0442\u043e \u0435\u0441\u0442\u044c \u043c\u0435\u0442\u043e\u0434\u044b \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0436\u0430\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432\u2013\u0440\u0435\u0444\u0435\u0440\u0430\u0442\u043e\u0432 (\u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u0439). \u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u0430 \u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0435\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043c\u043d\u043e\u0433\u0438\u043c\u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0442\u0435\u0445\u043d\u0438\u043a\u0438 \u0434\u043b\u044f \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0430\u0441\u0447\u0438\u0442\u044b\u0432\u0430\u0435\u0442 \u0443\u0436\u0435 \u0431\u043e\u043b\u0435\u0435 50 \u043b\u0435\u0442 \u0438 \u0441\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 \u0438\u043c\u0435\u043d\u0430\u043c\u0438 \u0442\u0430\u043a\u0438\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u0430\u043a \u0413.\u041f. \u041b\u0443\u043d, \u0412.\u0415. \u0411\u0435\u0440\u0437\u043e\u043d, \u0418.\u041f. C\u0435\u0432\u0431\u043e, \u042d.\u0424. \u0421\u043a\u043e\u0440\u043e\u0445\u043e\u0434\u044c\u043a\u043e, \u0414.\u0413. \u041b\u0430\u0445\u0443\u0442\u0438, \u0420.\u0413. \u041f\u0438\u043e\u0442\u0440\u043e\u0432\u0441\u043a\u0438\u0439 \u0438 \u0434\u0440. \u0417\u0430 \u044d\u0442\u0438 \u0433\u043e\u0434\u044b \u0432\u044b\u0440\u0430\u0431\u043e\u0442\u0430\u043d\u044b \u043c\u043d\u043e\u0433\u043e\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044b \u043a \u0440\u0435\u0448\u0435\u043d\u0438\u044e \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0447\u0435\u0442\u043a\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 \u0434\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f: \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u044d\u043a\u0441\u0442\u0440\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0438\u0437 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u043e\u0432 \u00ab\u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0445\u00bb \u0444\u0440\u0430\u0437 (\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u043e\u0432), \u0441\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u044d\u043a\u0441\u0442\u0440\u0430\u043a\u0442; \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u0438\u0437 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u044f\u0437\u044b\u043a\u043e\u0432 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438 \u043f\u043e\u0440\u043e\u0436\u0434\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 (\u0440\u0435\u0444\u0435\u0440\u0430\u0442\u043e\u0432), \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0431\u043e\u0431\u0449\u0430\u044e\u0449\u0438\u0445 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b.", "example_title": "\u041d\u0430\u0443\u0447\u043d\u0430\u044f \u0441\u0442\u0430\u0442\u044c\u044f"}]}
summarization
IlyaGusev/mbart_ru_sum_gazeta
[ "transformers", "pytorch", "safetensors", "mbart", "text2text-generation", "summarization", "ru", "dataset:IlyaGusev/gazeta", "arxiv:2006.11063", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2006.11063" ]
[ "ru" ]
TAGS #transformers #pytorch #safetensors #mbart #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #arxiv-2006.11063 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
MBARTRuSumGazeta ================ Model description ----------------- This is a ported version of fairseq model. For more details, please see Dataset for Automatic Summarization of Russian News. Intended uses & limitations --------------------------- #### How to use Colab: link #### Limitations and bias * The model should work well with URL articles, but for any other agencies it can suffer from domain shift Training data ------------- * Dataset: Gazeta Training procedure ------------------ * Fairseq training script: URL * Porting: Colab link Eval results ------------ * Train dataset: Gazeta v1 train * Test dataset: Gazeta v1 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 * Train dataset: Gazeta v1 train * Test dataset: Gazeta v2 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 Predicting all summaries: Evaluation: URL Flags: --language ru --tokenize-after --lower ### BibTeX entry and citation info
[ "#### How to use\n\n\nColab: link", "#### Limitations and bias\n\n\n* The model should work well with URL articles, but for any other agencies it can suffer from domain shift\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Fairseq training script: URL\n* Porting: Colab link\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation: URL\n\n\nFlags: --language ru --tokenize-after --lower", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #safetensors #mbart #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #arxiv-2006.11063 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "#### How to use\n\n\nColab: link", "#### Limitations and bias\n\n\n* The model should work well with URL articles, but for any other agencies it can suffer from domain shift\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Fairseq training script: URL\n* Porting: Colab link\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation: URL\n\n\nFlags: --language ru --tokenize-after --lower", "### BibTeX entry and citation info" ]
[ 82, 9, 208, 11 ]
[ "passage: TAGS\n#transformers #pytorch #safetensors #mbart #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #arxiv-2006.11063 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n#### How to use\n\n\nColab: link#### Limitations and bias\n\n\n* The model should work well with URL articles, but for any other agencies it can suffer from domain shift\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Fairseq training script: URL\n* Porting: Colab link\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation: URL\n\n\nFlags: --language ru --tokenize-after --lower### BibTeX entry and citation info" ]
[ -0.10598663240671158, 0.17051684856414795, -0.0037427390925586224, 0.04194866865873337, 0.09131497144699097, 0.07079058885574341, 0.1262010633945465, 0.12941545248031616, -0.005679802503436804, 0.07654305547475815, 0.0906638652086258, -0.009361001662909985, 0.07351446896791458, 0.22331194579601288, -0.01115430612117052, -0.18791013956069946, -0.00005021472316002473, -0.07036366313695908, -0.1443454772233963, 0.1283450573682785, 0.13117803633213043, -0.07786843180656433, 0.04580242931842804, -0.008543792180716991, -0.0693928673863411, 0.06787174195051193, 0.005074367392808199, -0.0850946381688118, 0.06281208246946335, 0.06295369565486908, 0.08403725177049637, 0.029837094247341156, 0.032329823821783066, -0.23249590396881104, 0.014857114292681217, 0.04485604912042618, -0.005734276957809925, 0.04937627911567688, 0.14722409844398499, -0.02921009436249733, 0.16676926612854004, -0.07419593632221222, 0.05774526670575142, 0.054581914097070694, -0.09681255370378494, -0.18892976641654968, -0.12659049034118652, 0.0783090889453888, 0.12279748171567917, 0.1294543743133545, -0.05668455362319946, 0.1191881075501442, -0.15895593166351318, 0.052959173917770386, 0.152754008769989, -0.2937082350254059, -0.08317578583955765, 0.05656693875789642, 0.0007718238630332053, 0.04475831612944603, -0.12886835634708405, -0.017389358952641487, 0.04589978605508804, -0.01114084105938673, -0.03533771261572838, -0.045459210872650146, -0.027867959812283516, 0.022598890587687492, -0.12804590165615082, -0.05395371466875076, 0.26715031266212463, 0.044403307139873505, -0.03669225424528122, -0.07686469703912735, 0.024176765233278275, -0.074471615254879, -0.008234412409365177, -0.010907851159572601, 0.017765240743756294, -0.03298231586813927, 0.0018696964252740145, 0.08313678205013275, -0.09024753421545029, -0.059693343937397, 0.043731942772865295, -0.015857530757784843, 0.06750674545764923, -0.00019755959510803223, -0.002267590258270502, 0.11144936829805374, 0.01010530348867178, -0.1496702879667282, -0.01350464392453432, -0.07828003913164139, -0.10731910914182663, -0.04976177588105202, 0.016596898436546326, -0.0871640294790268, 0.107826367020607, 0.2083137184381485, -0.02256242372095585, 0.07632435858249664, -0.027101818472146988, 0.0018613963620737195, -0.0017362985527142882, 0.10962952673435211, -0.11784958839416504, -0.15688404440879822, -0.0165709238499403, 0.07751632481813431, -0.018899057060480118, 0.03595973923802376, 0.030501987785100937, -0.008018658496439457, 0.015011630952358246, 0.1168726235628128, 0.02518211118876934, 0.0013532718876376748, -0.09094218909740448, -0.0013225333532318473, -0.004788123071193695, -0.12878412008285522, 0.030939532443881035, 0.02475113607943058, -0.05711619555950165, 0.06590691208839417, -0.01728753373026848, -0.020729657262563705, -0.02886970154941082, 0.08665167540311813, -0.07666107267141342, -0.0379532165825367, -0.07076516002416611, -0.054831959307193756, 0.039471935480833054, 0.040814634412527084, -0.05148021876811981, -0.07279648631811142, -0.1168799102306366, -0.08634493499994278, 0.04447707161307335, -0.1044980138540268, -0.029622508212924004, 0.004392361268401146, -0.0729915052652359, 0.046841561794281006, 0.0005814713658764958, 0.09623385220766068, -0.0772349163889885, 0.028580153360962868, 0.004356259945780039, 0.055952224880456924, 0.15746165812015533, 0.0071419887244701385, -0.08524492383003235, 0.06742150336503983, -0.136858731508255, 0.033022090792655945, -0.17225892841815948, 0.09294524788856506, -0.1484300196170807, -0.07036425918340683, 0.019667312502861023, -0.014540787786245346, 0.070102758705616, 0.16534316539764404, -0.2084958553314209, -0.015157709829509258, 0.1975868195295334, -0.14800339937210083, -0.12637755274772644, 0.11512234807014465, -0.002889391966164112, 0.014643280766904354, 0.07068917155265808, 0.0978994369506836, 0.14918622374534607, -0.08118607848882675, -0.04670043662190437, -0.05785631388425827, 0.040414854884147644, 0.07734494656324387, 0.12304244935512543, -0.01796516217291355, -0.011723427101969719, 0.01951153762638569, 0.0040160659700632095, 0.018507525324821472, -0.05793819576501846, -0.0714663416147232, -0.009324009530246258, -0.05226633697748184, -0.004091309383511543, 0.02487330697476864, -0.021153545007109642, -0.08804041892290115, -0.12333303689956665, -0.1579524576663971, 0.12236989289522171, -0.005214896984398365, -0.009172040037810802, -0.08364714682102203, 0.06983805447816849, -0.006289811804890633, 0.02120194211602211, -0.10799609124660492, -0.0415620394051075, 0.014302387833595276, 0.06851048767566681, 0.004094176460057497, 0.0888591855764389, 0.035713259130716324, -0.025798846036195755, -0.0647253468632698, -0.058624036610126495, -0.01083851046860218, 0.007284093648195267, -0.04252474755048752, -0.25705868005752563, 0.02740308828651905, -0.011620314791798592, 0.16994112730026245, -0.2286064773797989, -0.005754231940954924, 0.07418205589056015, 0.13386256992816925, 0.030639927834272385, 0.0010301974834874272, 0.03220426291227341, -0.0012026617769151926, -0.039308369159698486, -0.048918429762125015, -0.03569769114255905, -0.023088788613677025, -0.0038021989166736603, 0.018766220659017563, -0.019602004438638687, 0.07515310496091843, 0.07178883999586105, 0.036545559763908386, -0.15531904995441437, 0.05131636932492256, -0.06702029705047607, -0.02453821338713169, -0.051941510289907455, -0.02156096138060093, 0.016379503533244133, 0.024405166506767273, 0.07601963728666306, -0.0634191483259201, -0.02204735390841961, -0.010129224509000778, -0.03306625783443451, -0.017878899350762367, 0.16427016258239746, -0.008737161755561829, -0.1092328429222107, 0.08807232975959778, 0.06431957334280014, -0.07553507387638092, 0.11185858398675919, -0.04763219133019447, -0.11384705454111099, -0.03761184588074684, 0.04317677021026611, 0.036427903920412064, 0.1339835822582245, -0.02804359421133995, 0.03079836629331112, 0.053894225507974625, 0.007066369988024235, 0.0012676311889663339, -0.09296395629644394, -0.040881313383579254, -0.011394796893000603, -0.047621142119169235, -0.0027467983309179544, 0.02576489746570587, 0.005701858550310135, 0.12738297879695892, -0.001221126294694841, -0.002421093173325062, -0.05003778636455536, -0.056154076009988785, -0.11608373373746872, 0.1891942322254181, -0.0704583153128624, -0.19453498721122742, -0.09981977194547653, 0.08445637673139572, -0.005738893523812294, -0.04333295673131943, 0.05406720191240311, -0.1429886519908905, -0.11296984553337097, -0.11551156640052795, -0.06131022796034813, 0.03949753940105438, -0.016512591391801834, -0.06430140137672424, 0.059554457664489746, 0.07354652881622314, -0.09506750851869583, 0.034608714282512665, 0.015737775713205338, 0.014889765530824661, 0.03293390944600105, 0.012994589284062386, 0.10976826399564743, 0.09211689233779907, 0.030258333310484886, 0.044304683804512024, -0.028871584683656693, 0.20503826439380646, -0.1047445759177208, 0.036874935030937195, 0.12017630785703659, 0.02184888906776905, 0.025772305205464363, 0.20401805639266968, 0.004226597025990486, -0.07720356434583664, 0.020199570804834366, 0.04839213937520981, -0.010073257610201836, -0.33412793278694153, -0.03262314945459366, -0.10173148661851883, 0.03172364458441734, 0.06401515007019043, 0.06200714781880379, -0.04042790085077286, 0.05648459866642952, -0.07380422204732895, -0.029352879151701927, 0.05083797872066498, 0.05257498472929001, 0.07579982280731201, 0.0410383976995945, 0.09595538675785065, -0.1038302555680275, -0.015593402087688446, 0.06713803112506866, 0.01646125316619873, 0.2576187252998352, -0.026310289278626442, 0.12300616502761841, 0.11640077084302902, 0.0876752957701683, -0.007212970871478319, 0.003504705848172307, 0.008837553672492504, -0.019583530724048615, 0.028874335810542107, -0.06222062557935715, 0.027917832136154175, 0.06895986944437027, 0.017313404008746147, 0.016901861876249313, -0.05196139216423035, -0.029349634423851967, 0.06398589164018631, 0.1244555190205574, 0.06362803280353546, -0.20152465999126434, -0.00042712059803307056, 0.026698898524045944, -0.03897688165307045, -0.01737368479371071, 0.028123408555984497, 0.02642902359366417, -0.12438803911209106, 0.11424790322780609, -0.05260573700070381, 0.09686645865440369, -0.0031905367504805326, -0.026219824329018593, 0.04596280679106712, 0.018473761156201363, -0.03115239553153515, 0.1354377567768097, -0.24598000943660736, 0.22872810065746307, -0.022640462964773178, 0.06218000501394272, -0.02712104469537735, 0.02768583595752716, 0.04368295893073082, 0.022134942933917046, 0.12132711708545685, -0.021008461713790894, -0.03248205408453941, -0.10879059880971909, -0.0378841795027256, 0.014034842140972614, 0.017270734533667564, -0.018395528197288513, 0.12418505549430847, -0.06284588575363159, -0.034982480108737946, 0.0025081539060920477, -0.02935010939836502, -0.223691925406456, -0.1296757161617279, 0.0709906592965126, 0.012474264949560165, 0.028913777321577072, -0.08400526642799377, -0.0642680749297142, -0.05994405969977379, 0.17312124371528625, -0.05643783509731293, -0.053637318313121796, -0.1426292210817337, 0.08877535164356232, 0.19721627235412598, -0.07323028892278671, 0.02501288242638111, -0.006454117596149445, 0.11402983218431473, 0.06758695095777512, 0.005740442778915167, 0.023229924961924553, -0.07223167270421982, -0.1913965940475464, -0.06538282334804535, 0.14447800815105438, -0.006399708334356546, 0.0509333498775959, 0.034922461956739426, 0.03914601355791092, -0.03942515328526497, -0.10498654842376709, 0.016090432181954384, 0.0065477327443659306, 0.026894474402070045, 0.06968488544225693, -0.032290149480104446, -0.09907275438308716, -0.06893163919448853, -0.08985579013824463, 0.11765749007463455, 0.239057257771492, -0.0756312757730484, 0.07569752633571625, -0.01588025502860546, -0.0612105056643486, -0.19492177665233612, 0.04729583486914635, 0.05269526690244675, 0.022466247901320457, 0.04082362353801727, -0.09832246601581573, 0.05642029270529747, 0.08400405943393707, -0.015933651477098465, 0.07137142866849899, -0.28134140372276306, -0.11034538596868515, 0.07862616330385208, 0.041937101632356644, -0.08438821882009506, -0.17808014154434204, -0.054497458040714264, -0.06172838434576988, -0.0864434689283371, 0.01486458070576191, -0.0959896370768547, 0.06122882664203644, -0.042854130268096924, -0.04312941059470177, 0.015466452576220036, -0.07397782802581787, 0.1731964647769928, -0.010657266713678837, 0.041075002402067184, -0.03322857245802879, 0.05014711618423462, 0.1187874898314476, -0.05214342474937439, 0.10003340244293213, -0.07733752578496933, 0.04312099888920784, -0.1381818950176239, -0.019678786396980286, -0.05870737507939339, 0.02847316861152649, -0.07721457630395889, -0.009480712004005909, -0.08358629047870636, 0.0933864638209343, 0.09097892045974731, -0.025754721835255623, 0.0319172628223896, -0.037844229489564896, 0.10496757179498672, 0.07335548102855682, 0.12011345475912094, 0.03318583220243454, -0.13070227205753326, 0.04039141163229942, 0.004006864037364721, 0.021677538752555847, -0.1705860048532486, 0.043984219431877136, 0.12502127885818481, 0.0030592530965805054, 0.10187224298715591, 0.014994362369179726, -0.10796006768941879, -0.011726009659469128, 0.1255587488412857, -0.0853361114859581, -0.044694967567920685, -0.018636683002114296, 0.010620717890560627, -0.16083520650863647, -0.04972362518310547, 0.08504937589168549, -0.05131706967949867, -0.002035889308899641, 0.044990748167037964, 0.019694477319717407, -0.0060036443173885345, 0.23954278230667114, 0.05873943865299225, 0.06353133171796799, -0.08752699941396713, 0.040291678160429, 0.0849413052201271, -0.08971507102251053, 0.0191432423889637, 0.12186736613512039, -0.08317545056343079, -0.08290736377239227, 0.04040668159723282, 0.14756228029727936, -0.007329308427870274, -0.04130707308650017, -0.11795233190059662, -0.13892674446105957, 0.04981294274330139, 0.03229117766022682, 0.03900383040308952, 0.02918311394751072, 0.047982070595026016, -0.05590129271149635, -0.07199238240718842, 0.18851350247859955, 0.15223915874958038, 0.05173279717564583, -0.13474778831005096, 0.021736567839980125, -0.005205853842198849, -0.020344430580735207, -0.011219996958971024, 0.022384408861398697, -0.1349606066942215, 0.027875930070877075, -0.16891109943389893, 0.049668088555336, -0.05130767077207565, -0.007168699987232685, -0.021846067160367966, -0.05472426861524582, -0.07515034824609756, 0.0030217245221138, -0.07154656946659088, -0.039160214364528656, -0.02296983264386654, 0.11604052037000656, -0.15662223100662231, -0.009375172667205334, 0.04498058557510376, -0.07628721743822098, 0.05261727795004845, -0.01849537342786789, -0.009544252417981625, -0.025872748345136642, -0.09340585023164749, 0.0051953294314444065, -0.02435818500816822, 0.002047872170805931, 0.02849593572318554, -0.17033164203166962, 0.05633600801229477, -0.0014902419643476605, -0.04327025264501572, 0.061633698642253876, -0.045928601175546646, -0.1158086359500885, -0.001427212031558156, -0.0591416209936142, -0.09956300258636475, -0.01217297650873661, 0.048584528267383575, 0.13960380852222443, -0.005392228718847036, 0.20978692173957825, -0.10071780532598495, 0.05775235965847969, -0.19724710285663605, -0.02082824520766735, -0.01840374805033207, 0.0027978895232081413, -0.08472742140293121, -0.021111760288476944, 0.07663790881633759, -0.08518926054239273, 0.1342240571975708, 0.01763230562210083, 0.027813024818897247, 0.07767811417579651, -0.04749193787574768, 0.06147562712430954, 0.08923371881246567, 0.10435600578784943, 0.017452634871006012, -0.00594951631501317, -0.03474632278084755, -0.0662481039762497, 0.016589079052209854, -0.06693962961435318, 0.11586203426122665, 0.17547985911369324, 0.07486642152070999, 0.039974283427000046, -0.0282042995095253, -0.1313958764076233, -0.0014540349366143346, 0.09496703743934631, -0.09171222150325775, 0.06018733233213425, 0.014175279065966606, 0.0740184634923935, 0.20742954313755035, -0.18158785998821259, 0.03938315436244011, -0.08776978403329849, -0.067491315305233, -0.042546678334474564, -0.09025533497333527, -0.09335702657699585, -0.15232163667678833, 0.030171148478984833, -0.11436032503843307, 0.03679065778851509, 0.11405720561742783, 0.043316349387168884, -0.013484296388924122, 0.13379237055778503, 0.024625159800052643, -0.05535106360912323, 0.08257275074720383, 0.03746878355741501, -0.0023313756100833416, 0.005642283707857132, 0.029737092554569244, 0.00530806602910161, -0.04126819595694542, 0.0004445241647772491, 0.034863971173763275, -0.037013664841651917, 0.015003286302089691, -0.03318497911095619, -0.08163009583950043, 0.031511835753917694, 0.019160443916916847, 0.08817101269960403, 0.08108977228403091, 0.040052808821201324, 0.027517026290297508, -0.00643180450424552, 0.19022423028945923, -0.026265891268849373, -0.0755113884806633, -0.14874432981014252, 0.1150762066245079, 0.042859356850385666, 0.001146696973592043, -0.014854270033538342, -0.10993003100156784, 0.03289252147078514, 0.19053298234939575, 0.21017314493656158, -0.006963687017560005, -0.03377893567085266, -0.004829955752938986, -0.005365041550248861, 0.010380594059824944, 0.10211799293756485, 0.056800562888383865, 0.12950894236564636, -0.06305621564388275, 0.02322518453001976, -0.05322505533695221, -0.04501524195075035, -0.05458822473883629, 0.14630337059497833, 0.047294531017541885, -0.0365312397480011, -0.026707027107477188, 0.17609769105911255, -0.026524227112531662, -0.07385098934173584, 0.07635647803544998, -0.15422584116458893, -0.1931266486644745, -0.04721388593316078, 0.10300922393798828, -0.00480987410992384, 0.008766315877437592, -0.01791675016283989, -0.03362412005662918, 0.09379757195711136, 0.006995316129177809, -0.003502924693748355, -0.1725872904062271, 0.07252391427755356, -0.03178156539797783, 0.18847931921482086, -0.015415182337164879, 0.08907994627952576, 0.14297166466712952, -0.035846512764692307, -0.14356647431850433, -0.015133286826312542, 0.12091773748397827, -0.10233090817928314, 0.07463672757148743, 0.07797682285308838, -0.020709747448563576, 0.13376964628696442, 0.08985818177461624, 0.0015460854629054666, -0.00006258687790250406, -0.05104099586606026, 0.03203018382191658, -0.11736586689949036, 0.10820946842432022, -0.08115309476852417, 0.13606061041355133, 0.1718975156545639, -0.1002921611070633, 0.018213462084531784, -0.040828052908182144, 0.05248405411839485, 0.03867894783616066, 0.10376337170600891, 0.04603632539510727, -0.24017851054668427, 0.030339421704411507, 0.027382276952266693, 0.0811205729842186, -0.2346343994140625, -0.04236645996570587, -0.013797318562865257, -0.019644353538751602, -0.07375841587781906, 0.1671159714460373, 0.06778964400291443, 0.047112759202718735, -0.024083610624074936, -0.14254170656204224, 0.00460844999179244, 0.130130335688591, -0.12401372194290161, -0.0469459630548954 ]
null
null
transformers
# NewsTgRuBERT Training script: https://github.com/dialogue-evaluation/Russian-News-Clustering-and-Headline-Generation/blob/main/train_mlm.py
{"language": ["ru"], "license": "apache-2.0"}
null
IlyaGusev/news_tg_rubert
[ "transformers", "pytorch", "ru", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #ru #license-apache-2.0 #endpoints_compatible #region-us
# NewsTgRuBERT Training script: URL
[ "# NewsTgRuBERT\n\nTraining script: URL" ]
[ "TAGS\n#transformers #pytorch #ru #license-apache-2.0 #endpoints_compatible #region-us \n", "# NewsTgRuBERT\n\nTraining script: URL" ]
[ 31, 11 ]
[ "passage: TAGS\n#transformers #pytorch #ru #license-apache-2.0 #endpoints_compatible #region-us \n# NewsTgRuBERT\n\nTraining script: URL" ]
[ -0.051444925367832184, 0.09465666115283966, -0.0044098407961428165, 0.011484785936772823, 0.09885992109775543, 0.028867140412330627, 0.11195389926433563, 0.10879141092300415, -0.05459866300225258, -0.07187438756227493, 0.18556712567806244, 0.11083827912807465, -0.02430851012468338, 0.025791166350245476, 0.000763062562327832, -0.2023923695087433, 0.11363569647073746, 0.05648823827505112, -0.01919207163155079, 0.11020401120185852, 0.10117549449205399, -0.008184738457202911, 0.014964912086725235, -0.005405631847679615, -0.09202563017606735, 0.05576515197753906, 0.021579638123512268, -0.07764322310686111, 0.12766015529632568, 0.02214912138879299, 0.0717398151755333, 0.01578197069466114, -0.007206073496490717, -0.18641862273216248, 0.04436332359910011, 0.029030930250883102, -0.07518156617879868, 0.05400505289435387, 0.0016464805230498314, -0.03132442384958267, 0.08983058482408524, -0.06608474999666214, -0.07238218188285828, 0.02828998863697052, -0.10531991720199585, -0.13269710540771484, -0.08789048343896866, 0.16862928867340088, 0.05956880375742912, 0.20299243927001953, 0.03950590640306473, 0.13038763403892517, -0.18247848749160767, 0.04133488982915878, 0.1698949784040451, -0.33017557859420776, -0.03299230709671974, 0.08068028092384338, -0.0039170850068330765, 0.005446446128189564, -0.023217620328068733, 0.037634801119565964, 0.055934179574251175, 0.024377791211009026, -0.07639899104833603, -0.04091155156493187, -0.07807052880525589, 0.034440506249666214, -0.0686214342713356, -0.0941648930311203, 0.15793196856975555, 0.02218136563897133, 0.014538595452904701, 0.05022206902503967, -0.016282156109809875, 0.04689572751522064, -0.037164684385061264, 0.09033992886543274, -0.013981534168124199, 0.11417146027088165, 0.00090644636657089, -0.10627110302448273, -0.159494549036026, -0.020546285435557365, -0.08902475237846375, 0.13294066488742828, 0.04130474478006363, 0.1036909744143486, -0.14684976637363434, 0.1203303262591362, 0.05062146857380867, -0.1030944362282753, -0.03296655789017677, -0.08218168467283249, 0.14677105844020844, 0.06406491249799728, -0.08507396280765533, 0.06443817913532257, 0.10510368645191193, 0.16521967947483063, -0.06869404017925262, -0.020977934822440147, 0.02932109497487545, 0.15510019659996033, -0.12026434391736984, 0.002721741795539856, -0.0353122241795063, 0.05983169004321098, 0.10692469775676727, -0.056229524314403534, 0.04660667106509209, 0.02868914045393467, -0.09389644861221313, -0.08761707693338394, -0.06843205541372299, 0.08129667490720749, 0.05759304389357567, 0.06367088109254837, -0.03923637419939041, 0.04270955175161362, 0.11552277952432632, -0.04925160855054855, -0.05446656420826912, -0.01541859656572342, -0.011020972393453121, 0.14680632948875427, 0.09262080490589142, 0.020276088267564774, -0.07673978805541992, 0.05278884992003441, -0.04672623798251152, 0.0019055054290220141, -0.06046184152364731, 0.05246954783797264, 0.06281273066997528, -0.05378143861889839, 0.03664487227797508, -0.1437884122133255, -0.18681907653808594, 0.006614971440285444, 0.06813304871320724, 0.04086437076330185, -0.025452373549342155, -0.024410096928477287, -0.07876069843769073, 0.02449209801852703, -0.042029283940792084, 0.006205863319337368, -0.07625087350606918, 0.07387654483318329, -0.11210103332996368, 0.016034698113799095, -0.146224707365036, 0.030524829402565956, -0.12902389466762543, -0.03654059022665024, 0.023386847227811813, 0.016219059005379677, -0.07974553853273392, 0.18107521533966064, -0.05807416886091232, -0.054003000259399414, -0.08653634786605835, 0.020574117079377174, -0.008970261551439762, 0.13752751052379608, -0.05868556722998619, -0.03271440044045448, 0.2737836539745331, -0.06193632259964943, -0.06988110393285751, 0.036925915628671646, -0.0315709114074707, 0.06883882731199265, 0.1058056429028511, 0.0786043182015419, 0.11806736141443253, -0.07572431117296219, 0.0711403489112854, 0.11367909610271454, -0.12394730746746063, -0.18966923654079437, 0.04240667447447777, -0.00045736783067695796, -0.11387837678194046, 0.04457510635256767, -0.1544334590435028, 0.13094857335090637, -0.0184074304997921, -0.04585781693458557, -0.05110282078385353, -0.0704115703701973, -0.011940352618694305, -0.013855643570423126, 0.06924978643655777, -0.07561565190553665, -0.12053674459457397, -0.060956649482250214, 0.09166941791772842, 0.03933149203658104, 0.0774034857749939, -0.0561295747756958, -0.01142187975347042, 0.06200391799211502, 0.036894362419843674, -0.09047466516494751, 0.05618282034993172, -0.06584029644727707, 0.0855962336063385, 0.03245866298675537, 0.1262127310037613, 0.05054545775055885, -0.10043266415596008, -0.03677714988589287, -0.0535544827580452, -0.03513597324490547, 0.007242074701935053, 0.030608337372541428, -0.10658545792102814, 0.05900822579860687, -0.028318338096141815, 0.024736465886235237, -0.06309634447097778, 0.04900982230901718, 0.007677293382585049, 0.07004006206989288, -0.05852523446083069, 0.07844661921262741, -0.016587290912866592, -0.015529363416135311, -0.026467012241482735, -0.014612028375267982, 0.09897555410861969, 0.06302691996097565, -0.08316316455602646, 0.1462906301021576, 0.07227743417024612, 0.10584916919469833, 0.135527566075325, -0.17971289157867432, 0.016336070373654366, 0.11957313865423203, -0.0748114287853241, 0.00411271583288908, 0.03227045387029648, 0.01077683363109827, 0.11533511430025101, 0.0037045395001769066, 0.10121345520019531, -0.025810226798057556, -0.047352831810712814, -0.04458409175276756, -0.06485580652952194, 0.041632603853940964, 0.016921119764447212, 0.08200936019420624, -0.17704035341739655, 0.12401662021875381, 0.22040791809558868, -0.06904850900173187, 0.11729521304368973, -0.06192272529006004, -0.05441605672240257, 0.05930807814002037, 0.015336708165705204, -0.0368061363697052, 0.002111867070198059, -0.05861971154808998, 0.03786551579833031, 0.042734622955322266, 0.031071776524186134, 0.08113689720630646, -0.16458244621753693, -0.11721038818359375, -0.03431395813822746, -0.04924395680427551, -0.13950377702713013, 0.06653453409671783, -0.06251369416713715, 0.06553813815116882, -0.00838913582265377, -0.07432874292135239, 0.12277140468358994, -0.005283244885504246, -0.06379812210798264, 0.1417464315891266, -0.10216066986322403, -0.2813069224357605, -0.1633622795343399, 0.006468644831329584, 0.06444839388132095, -0.04010145738720894, 0.12473710626363754, -0.12273073196411133, -0.01339589525014162, 0.010625557042658329, -0.11378439515829086, 0.030966637656092644, 0.010738137178122997, 0.06308974325656891, 0.11047551780939102, 0.04014534503221512, -0.12529891729354858, -0.03313359618186951, -0.021324051544070244, -0.06360543519258499, 0.03750215843319893, -0.1127382144331932, 0.032843608409166336, 0.028810204938054085, 0.07386093586683273, 0.03624238818883896, -0.021974651142954826, 0.13008534908294678, -0.06228220835328102, 0.024303769692778587, 0.21195611357688904, -0.01990240067243576, 0.08624830096960068, 0.09254173934459686, 0.04741252586245537, -0.023287340998649597, 0.01721748523414135, -0.040890127420425415, -0.05197516828775406, -0.318291574716568, -0.04393725469708443, -0.08802482485771179, -0.021667346358299255, -0.010443954728543758, 0.07749305665493011, 0.07564260810613632, 0.07786493748426437, -0.04495340958237648, -0.049404121935367584, 0.0065208724699914455, 0.043013013899326324, 0.1047414094209671, 0.0006852253573015332, 0.05106808990240097, -0.16266252100467682, -0.011102953925728798, 0.10989201813936234, 0.06613165140151978, 0.16108736395835876, 0.06183890253305435, 0.0417509600520134, 0.11292295902967453, 0.1670590192079544, 0.09298144280910492, 0.10386409610509872, 0.008688288740813732, -0.0422809012234211, -0.0332929790019989, -0.007726275362074375, -0.019938649609684944, 0.04429608955979347, -0.08276346325874329, -0.0954207107424736, 0.02951250597834587, -0.10733005404472351, 0.06098770722746849, 0.29889604449272156, 0.04623829200863838, -0.18251053988933563, -0.057925768196582794, 0.007426794618368149, -0.012499736621975899, 0.012658098712563515, 0.06435196846723557, -0.017227228730916977, -0.08410295099020004, 0.10666866600513458, 0.010006248950958252, 0.13582265377044678, 0.05778813362121582, 0.042285580188035965, 0.026959015056490898, -0.1280679851770401, 0.044120050966739655, 0.17383481562137604, -0.2902490496635437, 0.23869185149669647, -0.029068071395158768, 0.08005764335393906, -0.024663999676704407, -0.03393629193305969, 0.06701446324586868, 0.20595745742321014, 0.09582772105932236, 0.04366692155599594, -0.06478118896484375, -0.018891770392656326, -0.10758726298809052, 0.03581121191382408, 0.009019944816827774, -0.0063550109043717384, -0.016068758442997932, -0.04622671753168106, -0.03374837711453438, 0.03241145238280296, -0.07042588293552399, -0.1360204666852951, -0.12216275930404663, 0.008261732757091522, 0.12312428653240204, 0.08406437188386917, -0.12045842409133911, -0.04135773330926895, 0.06341127306222916, 0.15650595724582672, -0.09441328048706055, -0.04573234170675278, -0.07554194331169128, -0.04655398055911064, 0.010533224791288376, -0.07139886170625687, 0.05728333815932274, -0.03622715175151825, -0.016869259998202324, -0.035392485558986664, -0.15920552611351013, 0.060463424772024155, -0.13316607475280762, -0.06341520696878433, -0.0140190115198493, 0.17867396771907806, 0.013772107660770416, 0.022299377247691154, 0.028842221945524216, -0.01048158947378397, -0.0738959014415741, -0.12035975605249405, 0.0017096378142014146, 0.028707565739750862, 0.016463935375213623, -0.00528294499963522, -0.07421302795410156, -0.06602887064218521, -0.03692474961280823, -0.03815774247050285, 0.2574867606163025, 0.17449221014976501, -0.10584426671266556, 0.08730295300483704, 0.17525796592235565, -0.04314736649394035, -0.3011527359485626, -0.09313631802797318, -0.0542006641626358, -0.07831837981939316, -0.04400838911533356, -0.17023000121116638, 0.10126863420009613, 0.053208209574222565, -0.05782666057348251, 0.12373959273099899, -0.30375155806541443, -0.045549746602773666, 0.1070098802447319, -0.07673994451761246, 0.36206597089767456, -0.09251999109983444, -0.01597205363214016, -0.029750868678092957, -0.16854774951934814, 0.10443859547376633, -0.11762859672307968, 0.08811575174331665, -0.0067703090608119965, 0.06702256947755814, -0.05233954265713692, -0.07559758424758911, 0.07384972274303436, 0.017387861385941505, -0.005317666567862034, -0.10442900657653809, 0.036209966987371445, 0.15349093079566956, -0.0075225564651191235, 0.06799575686454773, -0.10602515935897827, 0.054813407361507416, -0.12096187472343445, -0.011346485465765, -0.09857874363660812, 0.07008343935012817, 0.0008831711020320654, -0.01825139857828617, -0.04140520468354225, 0.0020998145919293165, 0.025436032563447952, 0.0387125127017498, 0.19078074395656586, 0.026782769709825516, 0.04288944974541664, -0.0051093148067593575, 0.024118920788168907, -0.08338968455791473, -0.05404059961438179, -0.10045269131660461, -0.06498097628355026, 0.07353923469781876, -0.19181859493255615, -0.03573114424943924, 0.0586165226995945, -0.018722331151366234, 0.016451995819807053, 0.07123208045959473, -0.058962490409612656, 0.01863972283899784, 0.1116555705666542, -0.2235458642244339, -0.023333894088864326, -0.03333146870136261, 0.13550198078155518, 0.060176968574523926, 0.07963503152132034, 0.1343332827091217, -0.06403741985559464, -0.02242373861372471, 0.03850090503692627, 0.03325250744819641, -0.1400265395641327, 0.00037203534157015383, 0.10091208666563034, 0.0014061551773920655, -0.0895576924085617, 0.11889325082302094, -0.008206072263419628, -0.12364228814840317, -0.01290135271847248, 0.10889466106891632, -0.16420046985149384, -0.13246546685695648, 0.02108181081712246, 0.028856884688138962, -0.11671596765518188, -0.1330621838569641, -0.08037503063678741, -0.045759931206703186, 0.10454705357551575, 0.06346974521875381, 0.08594200760126114, 0.062178634107112885, -0.03143388777971268, -0.04068947210907936, 0.04228266701102257, -0.03340361267328262, -0.013625056482851505, 0.023066654801368713, -0.07300665974617004, -0.0903647243976593, 0.05466605722904205, 0.11895320564508438, -0.05861836299300194, -0.01254288386553526, -0.0527980700135231, 0.09688340872526169, -0.15032044053077698, 0.009261272847652435, -0.05549329146742821, -0.0159989595413208, -0.04690100997686386, -0.13324858248233795, -0.044290054589509964, 0.05597682669758797, -0.09803228080272675, -0.01160921435803175, -0.013208342716097832, 0.03480994328856468, -0.11598288267850876, -0.01082620769739151, 0.08272844552993774, -0.009434197098016739, 0.09988494217395782, 0.10692090541124344, -0.08570460230112076, 0.13137923181056976, -0.15458796918392181, -0.09023305773735046, 0.08444279432296753, -0.009813196025788784, -0.007904790341854095, 0.08916201442480087, 0.029437417164444923, 0.07035020738840103, -0.009665415622293949, 0.01709754765033722, 0.006049003452062607, -0.1245405375957489, -0.013711118139326572, 0.014918798580765724, -0.06839070469141006, -0.04956996440887451, -0.0926363542675972, 0.15538650751113892, 0.08194226026535034, 0.22796684503555298, -0.07110815495252609, 0.06562972068786621, -0.015132914297282696, 0.024128412827849388, -0.011246250942349434, -0.12570908665657043, -0.11251930892467499, -0.03875896707177162, -0.02164066582918167, -0.050207071006298065, 0.17333196103572845, -0.10786914825439453, -0.08948272466659546, 0.0560804046690464, -0.005843792110681534, -0.036878544837236404, 0.009021379984915257, 0.24095021188259125, 0.053986433893442154, -0.014330863021314144, -0.14050866663455963, -0.048032309859991074, 0.020693717524409294, -0.15338049829006195, 0.12753228843212128, 0.17851507663726807, 0.16781184077262878, 0.1087549701333046, 0.034918416291475296, 0.0671897679567337, -0.08931458741426468, -0.14498160779476166, -0.021219566464424133, 0.01819027028977871, -0.03170229122042656, 0.21527618169784546, 0.20928217470645905, -0.017861848697066307, -0.008194818161427975, -0.004122618585824966, 0.01165318489074707, -0.08135585486888885, -0.12109211087226868, -0.03340059891343117, -0.15657150745391846, 0.03479483351111412, -0.03705151006579399, 0.004810520447790623, 0.16471847891807556, 0.05164391174912453, -0.08656035363674164, 0.1032128781080246, 0.108318991959095, -0.07797982543706894, 0.11576502025127411, -0.04556718468666077, 0.000396104616811499, -0.022065022960305214, -0.03701665997505188, -0.017167342826724052, -0.009740296751260757, -0.00004313950921641663, 0.0445391982793808, -0.02305491641163826, 0.055252283811569214, -0.10730540007352829, -0.061640094965696335, -0.029193824157118797, 0.10690318048000336, 0.0145507100969553, 0.08329187333583832, 0.05290830507874489, 0.024090906605124474, 0.08976947516202927, 0.15165042877197266, -0.038912583142519, -0.2045588344335556, -0.04619300737977028, 0.0620555505156517, 0.043816130608320236, 0.050640739500522614, -0.047120556235313416, -0.013144249096512794, -0.034635864198207855, 0.28552624583244324, 0.26443642377853394, -0.05449611321091652, 0.05866654962301254, -0.026998069137334824, 0.04753577336668968, 0.06058972701430321, 0.1483250856399536, 0.14328786730766296, 0.16236506402492523, -0.12049788981676102, -0.13302552700042725, -0.03991824761033058, 0.007721339352428913, -0.18092499673366547, -0.02072703279554844, -0.050954218953847885, -0.0708128958940506, -0.050214219838380814, 0.15288753807544708, -0.14036619663238525, 0.0176920834928751, -0.05176829919219017, -0.07264363020658493, -0.054589759558439255, -0.026681160554289818, 0.17303600907325745, 0.03454160317778587, 0.07119539380073547, -0.04836389794945717, -0.0329214371740818, 0.11962953954935074, -0.011032531969249249, -0.11789960414171219, -0.11482951790094376, 0.07846491038799286, 0.005792337469756603, 0.09840669482946396, -0.026430679485201836, 0.06585515290498734, 0.0785592645406723, 0.03544273599982262, -0.10343822091817856, 0.09775698930025101, 0.020384423434734344, 0.0058773718774318695, -0.03388293832540512, -0.0956479161977768, -0.04612699896097183, -0.08204328268766403, 0.07829975336790085, -0.10104712098836899, 0.06360102444887161, -0.03297694772481918, -0.04229724034667015, -0.10635220259428024, 0.05295104533433914, -0.029703762382268906, 0.07159347832202911, 0.06147988885641098, -0.07627852261066437, -0.06997869163751602, -0.05067465081810951, -0.0036001568660140038, 0.07682985812425613, -0.1747315376996994, -0.04340376704931259, -0.031065449118614197, -0.009877197444438934, 0.01581740193068981, 0.07842336595058441, -0.0684061348438263, -0.013873630203306675, -0.11052820086479187, 0.025189166888594627, -0.07823653519153595, 0.03654485195875168, 0.06437002867460251, 0.031638167798519135, 0.023683739826083183, -0.10089217126369476, 0.014452282339334488, 0.01462663896381855, -0.10218292474746704, -0.11012458801269531 ]
null
null
transformers
# RuBERTExtSumGazeta ## Model description Model for extractive summarization based on [rubert-base-cased](DeepPavlov/rubert-base-cased) ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1Q8_v3H-kxdJhZIiyLYat7Kj02qDq7M1L) ```python import razdel from transformers import AutoTokenizer, BertForTokenClassification model_name = "IlyaGusev/rubert_ext_sum_gazeta" tokenizer = AutoTokenizer.from_pretrained(model_name) sep_token = tokenizer.sep_token sep_token_id = tokenizer.sep_token_id model = BertForTokenClassification.from_pretrained(model_name) article_text = "..." sentences = [s.text for s in razdel.sentenize(article_text)] article_text = sep_token.join(sentences) inputs = tokenizer( [article_text], max_length=500, padding="max_length", truncation=True, return_tensors="pt", ) sep_mask = inputs["input_ids"][0] == sep_token_id # Fix token_type_ids current_token_type_id = 0 for pos, input_id in enumerate(inputs["input_ids"][0]): inputs["token_type_ids"][0][pos] = current_token_type_id if input_id == sep_token_id: current_token_type_id = 1 - current_token_type_id # Infer model with torch.no_grad(): outputs = model(**inputs) logits = outputs.logits[0, :, 1] # Choose sentences logits = logits[sep_mask] logits, indices = logits.sort(descending=True) logits, indices = logits.cpu().tolist(), indices.cpu().tolist() pairs = list(zip(logits, indices)) pairs = pairs[:3] indices = list(sorted([idx for _, idx in pairs])) summary = " ".join([sentences[idx] for idx in indices]) print(summary) ``` #### Limitations and bias - The model should work well with Gazeta.ru articles, but for any other agencies it can suffer from domain shift ## Training data - Dataset: [Gazeta](https://huggingface.co/datasets/IlyaGusev/gazeta) ## Training procedure TBD ## Eval results TBD Evaluation: https://github.com/IlyaGusev/summarus/blob/master/evaluate.py Flags: --language ru --tokenize-after --lower
{"language": ["ru"], "license": "apache-2.0", "tags": ["summarization", "token-classification", "t5"], "datasets": ["IlyaGusev/gazeta"], "inference": false, "widget": [{"text": "\u0421 1 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0432\u0441\u0442\u0443\u043f\u0430\u044e\u0442 \u0432 \u0441\u0438\u043b\u0443 \u043f\u043e\u043f\u0440\u0430\u0432\u043a\u0438 \u0432 \u0437\u0430\u043a\u043e\u043d \u00ab\u041e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0435\u00bb \u2014 \u0442\u0435\u043f\u0435\u0440\u044c \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0438 \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u043d\u0435\u043f\u043e\u0441\u0438\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432 \u0432\u043e \u0432\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u043c \u043f\u043e\u0440\u044f\u0434\u043a\u0435, \u0435\u0441\u043b\u0438 \u0441\u0443\u043c\u043c\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 50 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0438 \u043d\u0435 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 500 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0431\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u0448\u0442\u0440\u0430\u0444\u043e\u0432, \u043f\u0435\u043d\u0438, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432 \u0437\u0430 \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u043a\u0443 \u043f\u043b\u0430\u0442\u0435\u0436\u0430 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0438\u043b\u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439.[SEP]\u0423 \u0444\u0438\u0437\u043b\u0438\u0446 \u0438 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u044f\u0432\u0438\u043b\u0430\u0441\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0443 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0430 \u0431\u0435\u0437 \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0441\u0443\u0434\u0430 \u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u2014 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u043e\u0434\u0430\u0442\u044c \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0447\u0435\u0440\u0435\u0437 \u041c\u0424\u0426.[SEP]\u0421\u0443\u043c\u043c\u0443 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044e \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432 \u043d\u0443\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e.[SEP]\u0415\u0441\u043b\u0438 \u0432\u0441\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0441\u043e\u0431\u043b\u044e\u0434\u0435\u043d\u044b, \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u043d\u0435\u0441\u0443\u0442 \u0432 \u0415\u0434\u0438\u043d\u044b\u0439 \u0444\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0435\u0441\u0442\u0440 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0445 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0434\u043d\u0435\u0439.[SEP]\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u0434\u0430\u0447\u0438 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043e\u043a\u043e\u043d\u0447\u0435\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0441 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435\u043c \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u0435\u043b\u044e.[SEP]\u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0438\u0442, \u0447\u0442\u043e \u0443 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043c\u043e\u0436\u043d\u043e \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u044c.[SEP]\u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043e\u0437\u0431\u0443\u0436\u0434\u0435\u043d\u043e \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e.[SEP]\u0412 \u043f\u0435\u0440\u0438\u043e\u0434 \u0432\u0441\u0435\u0439 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044c \u043d\u0435 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u0440\u0430\u0442\u044c \u0437\u0430\u0439\u043c\u044b, \u043a\u0440\u0435\u0434\u0438\u0442\u044b, \u0432\u044b\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0440\u0443\u0447\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430, \u0441\u043e\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0438\u043d\u044b\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0434\u0435\u043b\u043a\u0438.[SEP]\u0412\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u0435 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u043e \u0431\u0443\u0434\u0435\u0442 \u0434\u043b\u0438\u0442\u044c\u0441\u044f \u0448\u0435\u0441\u0442\u044c \u043c\u0435\u0441\u044f\u0446\u0435\u0432, \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043d\u0430 \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0430, \u0438 \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043e\u0431 \u0443\u043f\u043b\u0430\u0442\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439.[SEP]\u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0443\u0441\u0442\u043e\u0435\u043a \u0438 \u0438\u043d\u044b\u0445 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439; \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0432\u0437\u044b\u0441\u043a\u0430\u043d\u0438\u044f (\u043a\u0440\u043e\u043c\u0435 \u0430\u043b\u0438\u043c\u0435\u043d\u0442\u043e\u0432) \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b.[SEP]\u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u044f\u0442 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u043e \u043f\u0440\u0438\u0437\u043d\u0430\u043d\u0438\u0438 \u0435\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043e\u043c, \u0430 \u044d\u0442\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0437\u043d\u0430\u0435\u0442\u0441\u044f \u0431\u0435\u0437\u043d\u0430\u0434\u0435\u0436\u043d\u043e\u0439.[SEP]\u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u043c \u043c\u0435\u0441\u044f\u0446\u0435 \u0441\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0437\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u043f\u043e\u043b\u0443\u0433\u043e\u0434\u0438\u0435 2020 \u0433\u043e\u0434\u0430 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u0441\u0443\u0434\u044b \u043f\u0440\u0438\u0437\u043d\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430\u043c\u0438 42,7 \u0442\u044b\u0441. \u0433\u0440\u0430\u0436\u0434\u0430\u043d (\u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439) \u2014 \u043f\u043e \u0434\u0430\u043d\u043d\u044b\u043c \u0435\u0434\u0438\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb, \u044d\u0442\u043e \u043d\u0430 47,2% \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 2019 \u0433\u043e\u0434\u0430.[SEP]\u0420\u043e\u0441\u0442 \u0447\u0438\u0441\u043b\u0430 \u043e\u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0438\u0432\u0448\u0438\u0445\u0441\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u043c \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0435 \u043f\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044e \u0441 \u043f\u0435\u0440\u0432\u044b\u043c \u0437\u0430\u043c\u0435\u0434\u043b\u0438\u043b\u0441\u044f \u2014 \u0442\u0430\u043a\u0430\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430 \u043e\u0431\u0443\u0441\u043b\u043e\u0432\u043b\u0435\u043d\u0430 \u0442\u0435\u043c, \u0447\u0442\u043e \u0432 \u043f\u0435\u0440\u0438\u043e\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u0441 19 \u043c\u0430\u0440\u0442\u0430 \u043f\u043e 11 \u043c\u0430\u044f \u0441\u0443\u0434\u044b \u0440\u0435\u0434\u043a\u043e \u0440\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043d\u044b\u0435 \u0434\u0435\u043b\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0438 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u043e\u0431\u044b\u0447\u043d\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u043b \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u042e\u0445\u043d\u0438\u043d.[SEP]", "example_title": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438"}]}
token-classification
IlyaGusev/rubert_ext_sum_gazeta
[ "transformers", "pytorch", "bert", "token-classification", "summarization", "t5", "ru", "dataset:IlyaGusev/gazeta", "license:apache-2.0", "autotrain_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #bert #token-classification #summarization #t5 #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #region-us
# RuBERTExtSumGazeta ## Model description Model for extractive summarization based on rubert-base-cased ## Intended uses & limitations #### How to use Colab: link #### Limitations and bias - The model should work well with URL articles, but for any other agencies it can suffer from domain shift ## Training data - Dataset: Gazeta ## Training procedure TBD ## Eval results TBD Evaluation: URL Flags: --language ru --tokenize-after --lower
[ "# RuBERTExtSumGazeta", "## Model description\n\nModel for extractive summarization based on rubert-base-cased", "## Intended uses & limitations", "#### How to use\n\nColab: link", "#### Limitations and bias\n\n- The model should work well with URL articles, but for any other agencies it can suffer from domain shift", "## Training data\n\n- Dataset: Gazeta", "## Training procedure\n\nTBD", "## Eval results\n\nTBD\n\nEvaluation: URL\n\nFlags: --language ru --tokenize-after --lower" ]
[ "TAGS\n#transformers #pytorch #bert #token-classification #summarization #t5 #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #region-us \n", "# RuBERTExtSumGazeta", "## Model description\n\nModel for extractive summarization based on rubert-base-cased", "## Intended uses & limitations", "#### How to use\n\nColab: link", "#### Limitations and bias\n\n- The model should work well with URL articles, but for any other agencies it can suffer from domain shift", "## Training data\n\n- Dataset: Gazeta", "## Training procedure\n\nTBD", "## Eval results\n\nTBD\n\nEvaluation: URL\n\nFlags: --language ru --tokenize-after --lower" ]
[ 57, 10, 19, 9, 9, 28, 8, 5, 26 ]
[ "passage: TAGS\n#transformers #pytorch #bert #token-classification #summarization #t5 #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #region-us \n# RuBERTExtSumGazeta## Model description\n\nModel for extractive summarization based on rubert-base-cased## Intended uses & limitations#### How to use\n\nColab: link#### Limitations and bias\n\n- The model should work well with URL articles, but for any other agencies it can suffer from domain shift## Training data\n\n- Dataset: Gazeta## Training procedure\n\nTBD## Eval results\n\nTBD\n\nEvaluation: URL\n\nFlags: --language ru --tokenize-after --lower" ]
[ -0.006325070746243, 0.19307652115821838, -0.0023815641179680824, 0.07151832431554794, 0.1124335378408432, 0.018662821501493454, 0.16449032723903656, 0.05471857264637947, -0.009927099570631981, -0.06162893399596214, 0.07850902527570724, 0.03059552051126957, 0.012886728160083294, 0.1357753574848175, -0.0935148373246193, -0.23223179578781128, 0.03489863872528076, -0.024988558143377304, -0.06203655153512955, 0.10616704821586609, 0.15342392027378082, -0.06413878500461578, 0.07289707660675049, 0.04090237244963646, -0.04366055503487587, 0.052707549184560776, 0.03349156677722931, -0.09573846310377121, 0.09573683142662048, 0.0927521362900734, 0.10266085714101791, 0.052067823708057404, 0.07815929502248764, -0.20162367820739746, 0.02614223212003708, -0.016480131074786186, -0.053668562322854996, 0.09268833696842194, 0.09693612158298492, -0.042343441396951675, 0.0954502746462822, 0.004484474193304777, 0.00527293561026454, 0.024244705215096474, -0.10120703279972076, -0.025514425709843636, -0.07842626422643661, 0.0565679594874382, 0.09436801075935364, 0.07341796159744263, -0.018184136599302292, 0.15800321102142334, -0.22248432040214539, 0.03541368991136551, 0.004193442407995462, -0.3287796676158905, -0.042109325528144836, 0.10322137176990509, -0.0705975815653801, -0.012165478430688381, -0.055504318326711655, 0.08096630126237869, 0.05333174765110016, -0.0017451518215239048, 0.0009210385615006089, -0.06719885766506195, -0.1498013138771057, 0.004575686529278755, -0.08771169185638428, -0.047197721898555756, 0.3465035855770111, 0.1067599207162857, -0.024185948073863983, -0.005745061207562685, -0.0461607500910759, 0.09992481768131256, -0.02745484746992588, -0.013119211420416832, 0.02570849284529686, 0.06175070255994797, -0.018175868317484856, 0.011307137086987495, -0.10212704539299011, -0.008596024475991726, -0.11657890677452087, 0.07197780162096024, 0.026997346431016922, 0.03714963421225548, -0.048120737075805664, 0.11943485587835312, 0.03560749068856239, -0.09311394393444061, 0.04873872920870781, -0.08858949691057205, -0.03526781499385834, -0.0401281900703907, -0.03798193484544754, -0.026064127683639526, 0.08052866160869598, 0.20567594468593597, 0.018397001549601555, 0.01721935346722603, -0.03646308183670044, 0.07221515476703644, 0.032414451241493225, 0.1407252699136734, -0.1360790729522705, -0.10317234694957733, 0.0582086555659771, -0.02170441299676895, -0.0040192147716879845, 0.021222716197371483, -0.08790945261716843, -0.02697180025279522, 0.003929030150175095, 0.08435813337564468, -0.0037975443992763758, 0.11359202116727829, -0.10256222635507584, -0.02406804822385311, 0.006061072926968336, -0.0716768205165863, -0.00732952356338501, -0.017856549471616745, -0.08424333482980728, 0.029327159747481346, 0.023817051202058792, 0.0527847483754158, -0.02316191792488098, 0.03872209042310715, -0.09551671147346497, -0.032066844403743744, -0.00908293854445219, -0.1350773572921753, 0.02362676151096821, -0.01748204044997692, 0.042523954063653946, -0.15439178049564362, -0.1272198110818863, -0.012616124004125595, 0.08834054321050644, -0.046847883611917496, 0.0034935602452605963, -0.047819819301366806, -0.013931102119386196, 0.0018093804828822613, -0.026535233482718468, -0.035123035311698914, -0.11404512077569962, -0.014851316809654236, -0.10588483512401581, 0.027136731892824173, -0.07924697548151016, 0.042506784200668335, -0.1693558394908905, 0.024117738008499146, -0.08218836039304733, 0.0789102241396904, -0.10539723187685013, 0.13247890770435333, -0.14898338913917542, -0.02200278267264366, -0.0173481572419405, 0.00148649828042835, 0.006982816383242607, 0.1583949774503708, -0.16626697778701782, -0.01595458947122097, 0.06849905848503113, -0.07210981845855713, -0.05018659681081772, 0.12599429488182068, -0.07364154607057571, 0.12915843725204468, 0.12027986347675323, 0.1562170684337616, 0.08310531079769135, -0.00032377539901062846, 0.019305996596813202, 0.03501756116747856, -0.05422374978661537, 0.03243846818804741, 0.06461397558450699, -0.011737174354493618, -0.12547868490219116, 0.036449555307626724, -0.03296403959393501, 0.05617677420377731, -0.051570843905210495, -0.09020364284515381, 0.030715804547071457, -0.04051230847835541, 0.06631657481193542, -0.003296565730124712, 0.05798644945025444, -0.012745188549160957, -0.06699404120445251, -0.10291129350662231, 0.09771992266178131, 0.01771460846066475, 0.003804548876360059, -0.1491260975599289, 0.05910174176096916, -0.06844828277826309, 0.04915767163038254, -0.15741091966629028, -0.011271962895989418, 0.0003664675750769675, 0.09044481068849564, 0.09404399991035461, 0.1370701789855957, 0.00028811022639274597, -0.05480309948325157, -0.05416082218289375, -0.019361376762390137, 0.04459753632545471, 0.003090520389378071, -0.04135836288332939, -0.18941853940486908, 0.022747008129954338, -0.02980956993997097, 0.14437389373779297, -0.13170209527015686, -0.010983826592564583, 0.04859701171517372, 0.1057029440999031, 0.03023136779665947, 0.10258134454488754, 0.01877358928322792, 0.01417459361255169, -0.07686630636453629, -0.018089530989527702, 0.056937966495752335, -0.022600242868065834, -0.1251721978187561, 0.02986433543264866, 0.06132350116968155, 0.12909653782844543, 0.12110667675733566, -0.06273359805345535, -0.04464196041226387, 0.0026846169494092464, -0.04133288562297821, 0.020043499767780304, 0.03005182556807995, 0.023598482832312584, 0.10341160744428635, 0.030692746862769127, 0.10406092554330826, -0.06254570186138153, 0.019971080124378204, -0.03783918917179108, -0.07689982652664185, -0.042085569351911545, 0.08719971776008606, 0.1118316575884819, -0.2633868455886841, 0.07595303654670715, 0.18447886407375336, -0.04133294150233269, 0.1003260537981987, -0.025266479700803757, -0.038195736706256866, 0.011769583448767662, -0.030362319201231003, -0.01054907776415348, 0.0797698050737381, 0.020894447341561317, 0.025281738489866257, 0.06832665205001831, 0.020279359072446823, 0.01841481775045395, -0.12289965897798538, -0.02732241153717041, -0.008544794283807278, -0.02717769891023636, -0.09151458740234375, 0.017887335270643234, -0.007443061098456383, 0.10614906996488571, 0.030497869476675987, -0.17655503749847412, 0.048171624541282654, -0.04258409142494202, -0.07218307256698608, 0.18040676414966583, -0.10768473893404007, -0.2684214413166046, -0.13173317909240723, -0.018580680713057518, -0.10795314610004425, 0.024800144135951996, 0.03213683143258095, -0.10093500465154648, -0.11129672825336456, -0.08199991285800934, -0.02621988207101822, -0.007672024425119162, -0.037998419255018234, -0.0739767774939537, 0.06967519223690033, 0.05385850369930267, -0.1188897043466568, -0.0018000862328335643, -0.038213614374399185, -0.012756457552313805, 0.06603889912366867, -0.09088583290576935, 0.1156153753399849, 0.13917408883571625, -0.016956541687250137, 0.01956215687096119, -0.03951270133256912, 0.20092026889324188, -0.0657997727394104, 0.0141903730109334, 0.06880483031272888, -0.05154462531208992, 0.03554787486791611, 0.23549427092075348, 0.027363073080778122, -0.08427102863788605, 0.05561671406030655, 0.010722441598773003, -0.013243387453258038, -0.26224368810653687, -0.12953370809555054, -0.0816224068403244, 0.016219614073634148, 0.06817793101072311, 0.042103275656700134, 0.032605595886707306, 0.10835360735654831, -0.041090112179517746, 0.05217232182621956, 0.04955531284213066, 0.058125924319028854, 0.21279743313789368, 0.0153757743537426, 0.09241233766078949, -0.07058461755514145, -0.10773615539073944, 0.08454911410808563, 0.04755789041519165, 0.2211904674768448, 0.1076640859246254, 0.0770113542675972, 0.10598161816596985, 0.09607884287834167, 0.03763263300061226, 0.08795639872550964, 0.043074995279312134, -0.0013467719545587897, -0.08850698918104172, -0.02907976508140564, -0.018510954454541206, 0.06950618326663971, 0.01935727149248123, -0.049294862896203995, -0.04433649033308029, -0.03151824325323105, 0.08405788242816925, 0.1622985601425171, 0.052260033786296844, -0.2450956404209137, -0.02275320142507553, 0.04337349906563759, -0.06948123872280121, -0.004097591619938612, 0.04372674226760864, -0.031467899680137634, -0.12228187918663025, 0.081424281001091, -0.005587582476437092, 0.15480193495750427, -0.04927826300263405, 0.025640882551670074, -0.04562417045235634, -0.03774666413664818, -0.024866744875907898, 0.12703123688697815, -0.18886370956897736, 0.2827668786048889, 0.01447704341262579, 0.006914203055202961, -0.02056971564888954, -0.0030545764602720737, 0.09120329469442368, 0.16258077323436737, 0.09709734469652176, -0.017251677811145782, 0.05184723436832428, -0.10024886578321457, -0.06287577748298645, 0.061485156416893005, -0.0056492541916668415, -0.056795813143253326, 0.07847975939512253, -0.05589953437447548, 0.0153049910441041, 0.05542084947228432, 0.0020794435404241085, -0.2380153387784958, -0.1269114762544632, -0.018562622368335724, 0.07411330938339233, 0.06277646124362946, -0.042610395699739456, -0.06241459771990776, -0.06115690991282463, 0.1567707657814026, 0.019498566165566444, -0.06139657273888588, -0.10355989634990692, 0.03529197722673416, 0.1077989712357521, -0.06327462196350098, 0.020114993676543236, -0.03800271824002266, 0.04952249675989151, 0.028227748349308968, -0.09924125671386719, 0.04653427377343178, -0.07026199996471405, -0.07602780312299728, -0.06280342489480972, 0.05432199314236641, -0.02829931303858757, 0.06745894998311996, 0.05878182500600815, 0.0036395033821463585, -0.026573266834020615, -0.11808063834905624, -0.052308179438114166, -0.011184567585587502, -0.03864113613963127, 0.11082162708044052, -0.07052947580814362, -0.10756038129329681, -0.07902650535106659, 0.0028599074576050043, 0.17665959894657135, 0.1990710198879242, -0.08841516822576523, 0.08169066905975342, 0.11241325736045837, -0.06943192332983017, -0.26131439208984375, -0.006793970707803965, -0.05338382348418236, 0.006959875579923391, 0.05950623005628586, -0.13888555765151978, 0.08182431012392044, 0.0018775115022435784, -0.03933298587799072, -0.0059066819958388805, -0.14864829182624817, -0.09087315946817398, 0.20966434478759766, -0.00891218800097704, 0.16331855952739716, -0.02448255941271782, -0.0344853401184082, -0.11078500747680664, -0.10706833750009537, 0.11544520407915115, -0.07622073590755463, 0.062069740146398544, 0.012306385673582554, 0.057220056653022766, 0.0033119255676865578, 0.015596349723637104, 0.15143010020256042, 0.06934182345867157, 0.10861273854970932, -0.050626326352357864, -0.06134182959794998, 0.13459403812885284, 0.0070161521434783936, 0.06786645203828812, -0.008754069916903973, 0.03720901161432266, -0.1003752276301384, -0.05033380538225174, -0.015020078979432583, 0.08439117670059204, -0.0011145147727802396, -0.07651286572217941, -0.1146051436662674, 0.07690715044736862, 0.06339602917432785, -0.0002527217147871852, 0.1652946025133133, -0.001848715590313077, -0.007202662993222475, 0.06685660779476166, 0.1519879400730133, -0.05947054922580719, 0.04517218843102455, -0.002814175095409155, -0.04719569534063339, 0.1048714816570282, -0.158940851688385, 0.05043342337012291, 0.12591099739074707, -0.05310007557272911, 0.1213243380188942, 0.04821822792291641, -0.024957530200481415, 0.025481002405285835, 0.12266156822443008, -0.10622724145650864, -0.06146034225821495, -0.02515389584004879, -0.13762784004211426, -0.03742866963148117, 0.008283884264528751, 0.1520145982503891, -0.06343846768140793, 0.010701588355004787, 0.07214384526014328, -0.014448389410972595, -0.0337967686355114, 0.1287454068660736, 0.08285052329301834, -0.022636305540800095, -0.12259963154792786, 0.1285884976387024, 0.09736292064189911, 0.03421909362077713, -0.03532528132200241, -0.06859457492828369, -0.16801369190216064, -0.09857700020074844, -0.10294342041015625, 0.16494028270244598, -0.09951752424240112, -0.08109626173973083, -0.11878892034292221, -0.11824759095907211, 0.005755032878369093, -0.033977217972278595, 0.09246920794248581, 0.04465588927268982, -0.09439101815223694, -0.07830680161714554, 0.003645597491413355, 0.09151782095432281, 0.14858168363571167, -0.02354266121983528, -0.17311912775039673, -0.014174875803291798, -0.008866505697369576, 0.04867072030901909, -0.06181129440665245, -0.028049733489751816, -0.07405738532543182, 0.027173511683940887, -0.22863122820854187, 0.03940939903259277, -0.058234039694070816, 0.03166387602686882, -0.0045505547896027565, -0.07063817232847214, -0.10734571516513824, -0.011901206336915493, -0.12522786855697632, -0.013634640723466873, 0.03583882004022598, 0.139240100979805, -0.05815171077847481, -0.02803751826286316, 0.0567571222782135, -0.006081314291805029, 0.08190809190273285, -0.011671869084239006, -0.02754349447786808, 0.07818498462438583, -0.20781204104423523, -0.07567718625068665, 0.056722864508628845, 0.040857989341020584, 0.06364177912473679, -0.009750502184033394, 0.04208292067050934, 0.033981066197156906, -0.012266848236322403, 0.01875758357346058, 0.0224478617310524, -0.10544126480817795, -0.06928781419992447, -0.08433610200881958, -0.06622139364480972, -0.019145922735333443, 0.01019319798797369, 0.13434606790542603, 0.08160410821437836, 0.23344701528549194, -0.052712541073560715, 0.012204094789922237, -0.1122438982129097, 0.01631784997880459, -0.04756324738264084, -0.09890277683734894, -0.2094091773033142, -0.10865159332752228, 0.018291842192411423, -0.0429905541241169, 0.20939631760120392, 0.08234111964702606, 0.002921645063906908, 0.03491140156984329, 0.07454603910446167, 0.013478022068738937, 0.021422624588012695, 0.12944498658180237, 0.09260065108537674, 0.012435514479875565, -0.07915987074375153, -0.045009057968854904, 0.07906794548034668, -0.09429755806922913, 0.05964314565062523, 0.12650232017040253, 0.050547823309898376, 0.060794126242399216, 0.00004488726335694082, -0.03781731799244881, -0.02438509650528431, 0.03887107968330383, 0.018015099689364433, 0.0690905973315239, 0.0014149044873192906, 0.059277672320604324, 0.14381591975688934, -0.07544279098510742, 0.017272362485527992, -0.013866221532225609, -0.015380997210741043, -0.10013511776924133, -0.1304856240749359, -0.10066045075654984, -0.13654890656471252, 0.02298792265355587, -0.1123940497636795, -0.06217591464519501, 0.1485610008239746, 0.0059450287371873856, -0.08566753566265106, 0.03782033920288086, -0.12056984007358551, -0.111359603703022, 0.0833374485373497, -0.019659968093037605, -0.04774151369929314, -0.06949915736913681, -0.04876470938324928, -0.02314615435898304, 0.04602242633700371, -0.04056902602314949, 0.023853642866015434, 0.0002811949234455824, 0.01072653103619814, -0.07940153777599335, -0.07355709373950958, -0.04708871245384216, 0.05901229754090309, 0.018608825281262398, 0.06539909541606903, 0.05742287263274193, 0.012597278691828251, 0.03970009833574295, 0.20397797226905823, -0.014234364032745361, -0.06954368203878403, -0.15904010832309723, 0.2214738428592682, 0.02319597639143467, 0.06380004435777664, 0.02346242591738701, -0.10625842213630676, 0.024227460846304893, 0.21827681362628937, 0.3078376054763794, -0.12934425473213196, -0.012434102594852448, -0.056178104132413864, 0.000060520280385389924, 0.009947257116436958, 0.11718956381082535, -0.004983619321137667, 0.10381276160478592, -0.06728990375995636, 0.008590081706643105, -0.06756700575351715, -0.01300201378762722, -0.034860868006944656, 0.062177546322345734, 0.05997045338153839, -0.06790736317634583, -0.11509837955236435, 0.17432339489459991, -0.1334356814622879, -0.07437296956777573, 0.015351512469351292, -0.09786269813776016, -0.12544305622577667, -0.05252485349774361, -0.011821516789495945, 0.045154549181461334, 0.06298959255218506, -0.09237554669380188, -0.0012376871891319752, 0.06333396583795547, 0.0039047279860824347, -0.07055969536304474, -0.09426862001419067, 0.12030996382236481, 0.035674743354320526, 0.17887495458126068, -0.01635977253317833, 0.060536231845617294, 0.10974670201539993, 0.03715888038277626, -0.0680699422955513, 0.03823557868599892, 0.04895852506160736, -0.0016512001166120172, 0.05646736919879913, -0.09528064727783203, 0.0021719459909945726, 0.11648228764533997, 0.09744442999362946, -0.05689530819654465, 0.07180376350879669, -0.003058785805478692, -0.0431148037314415, -0.10360556840896606, 0.06783120334148407, -0.10030248761177063, 0.07337304949760437, 0.14675360918045044, -0.07253361493349075, 0.0009164905641227961, -0.0503518208861351, 0.050028182566165924, 0.05090535432100296, -0.10602990537881851, -0.01680568791925907, -0.06759869307279587, 0.0013914677547290921, 0.014720678329467773, 0.0018608298851177096, -0.16454891860485077, -0.009349619038403034, -0.11166626960039139, 0.01802748441696167, -0.05877776816487312, 0.12769095599651337, 0.09011916071176529, 0.015945661813020706, 0.0025603172834962606, -0.16131053864955902, -0.005879987496882677, 0.015919391065835953, -0.07068411260843277, -0.052791986614465714 ]
null
null
transformers
# RuBertTelegramHeadlines ## Model description Example model for [Headline generation competition](https://competitions.codalab.org/competitions/29905) Based on [RuBERT](http://docs.deeppavlov.ai/en/master/features/models/bert.html) model ## Intended uses & limitations #### How to use ```python from transformers import AutoTokenizer, EncoderDecoderModel model_name = "IlyaGusev/rubert_telegram_headlines" tokenizer = AutoTokenizer.from_pretrained(model_name, do_lower_case=False, do_basic_tokenize=False, strip_accents=False) model = EncoderDecoderModel.from_pretrained(model_name) article_text = "..." input_ids = tokenizer( [article_text], add_special_tokens=True, max_length=256, padding="max_length", truncation=True, return_tensors="pt", )["input_ids"] output_ids = model.generate( input_ids=input_ids, max_length=64, no_repeat_ngram_size=3, num_beams=10, top_p=0.95 )[0] headline = tokenizer.decode(output_ids, skip_special_tokens=True, clean_up_tokenization_spaces=True) print(headline) ``` ## Training data - Dataset: [ru_all_split.tar.gz](https://www.dropbox.com/s/ykqk49a8avlmnaf/ru_all_split.tar.gz) ## Training procedure ```python import random import torch from torch.utils.data import Dataset from tqdm.notebook import tqdm from transformers import BertTokenizer, EncoderDecoderModel, Trainer, TrainingArguments, logging def convert_to_tensors( tokenizer, text, max_text_tokens_count, max_title_tokens_count = None, title = None ): inputs = tokenizer( text, add_special_tokens=True, max_length=max_text_tokens_count, padding="max_length", truncation=True ) result = { "input_ids": torch.tensor(inputs["input_ids"]), "attention_mask": torch.tensor(inputs["attention_mask"]), } if title is not None: outputs = tokenizer( title, add_special_tokens=True, max_length=max_title_tokens_count, padding="max_length", truncation=True ) decoder_input_ids = torch.tensor(outputs["input_ids"]) decoder_attention_mask = torch.tensor(outputs["attention_mask"]) labels = decoder_input_ids.clone() labels[decoder_attention_mask == 0] = -100 result.update({ "labels": labels, "decoder_input_ids": decoder_input_ids, "decoder_attention_mask": decoder_attention_mask }) return result class GetTitleDataset(Dataset): def __init__( self, original_records, sample_rate, tokenizer, max_text_tokens_count, max_title_tokens_count ): self.original_records = original_records self.sample_rate = sample_rate self.tokenizer = tokenizer self.max_text_tokens_count = max_text_tokens_count self.max_title_tokens_count = max_title_tokens_count self.records = [] for record in tqdm(original_records): if random.random() > self.sample_rate: continue tensors = convert_to_tensors( tokenizer=tokenizer, title=record["title"], text=record["text"], max_title_tokens_count=self.max_title_tokens_count, max_text_tokens_count=self.max_text_tokens_count ) self.records.append(tensors) def __len__(self): return len(self.records) def __getitem__(self, index): return self.records[index] def train( train_records, val_records, pretrained_model_path, train_sample_rate=1.0, val_sample_rate=1.0, output_model_path="models", checkpoint=None, max_text_tokens_count=256, max_title_tokens_count=64, batch_size=8, logging_steps=1000, eval_steps=10000, save_steps=10000, learning_rate=0.00003, warmup_steps=2000, num_train_epochs=3 ): logging.set_verbosity_info() tokenizer = BertTokenizer.from_pretrained( pretrained_model_path, do_lower_case=False, do_basic_tokenize=False, strip_accents=False ) train_dataset = GetTitleDataset( train_records, train_sample_rate, tokenizer, max_text_tokens_count=max_text_tokens_count, max_title_tokens_count=max_title_tokens_count ) val_dataset = GetTitleDataset( val_records, val_sample_rate, tokenizer, max_text_tokens_count=max_text_tokens_count, max_title_tokens_count=max_title_tokens_count ) model = EncoderDecoderModel.from_encoder_decoder_pretrained(pretrained_model_path, pretrained_model_path) training_args = TrainingArguments( output_dir=output_model_path, per_device_train_batch_size=batch_size, per_device_eval_batch_size=batch_size, do_train=True, do_eval=True, overwrite_output_dir=False, logging_steps=logging_steps, eval_steps=eval_steps, evaluation_strategy="steps", save_steps=save_steps, learning_rate=learning_rate, warmup_steps=warmup_steps, num_train_epochs=num_train_epochs, max_steps=-1, save_total_limit=1, ) trainer = Trainer( model=model, args=training_args, train_dataset=train_dataset, eval_dataset=val_dataset ) trainer.train(checkpoint) model.save_pretrained(output_model_path) ```
{"language": ["ru"], "license": "apache-2.0", "tags": ["summarization"], "inference": {"parameters": {"no_repeat_ngram_size": 4}}}
summarization
IlyaGusev/rubert_telegram_headlines
[ "transformers", "pytorch", "encoder-decoder", "text2text-generation", "summarization", "ru", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #encoder-decoder #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
# RuBertTelegramHeadlines ## Model description Example model for Headline generation competition Based on RuBERT model ## Intended uses & limitations #### How to use ## Training data - Dataset: ru_all_split.URL ## Training procedure
[ "# RuBertTelegramHeadlines", "## Model description\n\nExample model for Headline generation competition\n\nBased on RuBERT model", "## Intended uses & limitations", "#### How to use", "## Training data\n\n- Dataset: ru_all_split.URL", "## Training procedure" ]
[ "TAGS\n#transformers #pytorch #encoder-decoder #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "# RuBertTelegramHeadlines", "## Model description\n\nExample model for Headline generation competition\n\nBased on RuBERT model", "## Intended uses & limitations", "#### How to use", "## Training data\n\n- Dataset: ru_all_split.URL", "## Training procedure" ]
[ 60, 9, 18, 9, 5, 15, 3 ]
[ "passage: TAGS\n#transformers #pytorch #encoder-decoder #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n# RuBertTelegramHeadlines## Model description\n\nExample model for Headline generation competition\n\nBased on RuBERT model## Intended uses & limitations#### How to use## Training data\n\n- Dataset: ru_all_split.URL## Training procedure" ]
[ -0.0012075999984517694, 0.12460914254188538, -0.001365180709399283, 0.08217024803161621, 0.11121687293052673, -0.002667743247002363, 0.1060275062918663, 0.09833584725856781, -0.1021660789847374, -0.024516403675079346, 0.168054461479187, 0.05795234441757202, 0.014898933470249176, 0.09659691154956818, -0.07085184007883072, -0.2844957113265991, 0.0256298016756773, 0.024356013163924217, 0.02592228353023529, 0.11728625744581223, 0.18199142813682556, -0.0787702277302742, 0.09123806655406952, 0.02514173649251461, -0.1558920443058014, 0.05561068654060364, -0.034502796828746796, -0.06470882892608643, 0.06628548353910446, 0.002626280300319195, 0.11711182445287704, 0.04509862884879112, 0.06101690232753754, -0.14820604026317596, 0.02117103338241577, 0.005193895660340786, -0.06115572154521942, 0.08474922925233841, 0.06179717183113098, -0.02806180715560913, 0.23382478952407837, 0.003967756871134043, -0.017940562218427658, 0.05238765850663185, -0.10914935916662216, 0.0032029426656663418, -0.08507075160741806, 0.0916733592748642, 0.1376652717590332, 0.10403166711330414, -0.0367702953517437, 0.05501886084675789, -0.14095938205718994, 0.05152742937207222, 0.09694560617208481, -0.3380369544029236, -0.07648258656263351, 0.04856410250067711, 0.07970529794692993, -0.05114568769931793, -0.0883597806096077, 0.04611712321639061, 0.07298094034194946, 0.06537575274705887, -0.022303683683276176, -0.0617704838514328, -0.24110214412212372, 0.04687442630529404, -0.1392640471458435, -0.04579528421163559, 0.1973496377468109, 0.030385052785277367, -0.0013026604428887367, -0.11469866335391998, -0.026443928480148315, -0.10340508818626404, -0.062136050313711166, 0.05217078700661659, 0.005456879269331694, 0.07534699141979218, -0.02429136633872986, 0.017154743894934654, -0.12983448803424835, -0.06367142498493195, -0.06645945459604263, 0.008379755541682243, 0.01822194829583168, 0.04044788330793381, -0.09873368591070175, 0.12470492720603943, 0.05942991375923157, -0.12118895351886749, 0.005259210243821144, -0.11127674579620361, 0.01617862470448017, -0.005438409745693207, -0.10743681341409683, -0.0935087725520134, 0.07973662763834, 0.06981536000967026, -0.03681223839521408, -0.01829485408961773, 0.04605752229690552, 0.10734755545854568, 0.00811175350099802, 0.09543247520923615, -0.05765639618039131, -0.07608337700366974, 0.013244175352156162, -0.006637862417846918, 0.0104598980396986, 0.014360079541802406, -0.11978019773960114, -0.04620510712265968, 0.02279125712811947, 0.015492049045860767, 0.015328198671340942, 0.08816787600517273, -0.09904132038354874, 0.037556473165750504, 0.01678680069744587, -0.03794655576348305, 0.01687043346464634, -0.02728661708533764, -0.03328268229961395, -0.04583216831088066, 0.07157234102487564, 0.05294987931847572, -0.06512239575386047, 0.020178193226456642, -0.05662022531032562, -0.013953755609691143, -0.09345133602619171, -0.10541602969169617, 0.041528910398483276, -0.08339716494083405, 0.022344572469592094, -0.08825802057981491, -0.19137874245643616, -0.00942207407206297, 0.059152472764253616, -0.015514452010393143, -0.08752880990505219, -0.08450490236282349, -0.05665401741862297, 0.014503063634037971, 0.005701998248696327, 0.11327021569013596, -0.05689937621355057, 0.02301803044974804, -0.07815103977918625, 0.05025753006339073, -0.07291992753744125, 0.06377620249986649, -0.11751822382211685, 0.003724506590515375, -0.02829422429203987, 0.11376246809959412, -0.06010845676064491, 0.10383439809083939, -0.054013561457395554, -0.05295690521597862, -0.0792379304766655, 0.04177597165107727, 0.020803626626729965, 0.1971510648727417, -0.17091554403305054, -0.022385092452168465, 0.18527618050575256, -0.026738973334431648, -0.09979872405529022, 0.08672779053449631, -0.09067171066999435, 0.07992676645517349, 0.0816287249326706, 0.14594429731369019, 0.07801171392202377, -0.03628202900290489, -0.023933788761496544, 0.07913316786289215, -0.06052681431174278, -0.045115500688552856, 0.07615626603364944, -0.012574605643749237, -0.04832698777318001, 0.04754824936389923, 0.014538072980940342, 0.011806824244558811, -0.05287729203701019, -0.08198972046375275, -0.010004861280322075, -0.05123334750533104, 0.06868167221546173, 0.049896858632564545, 0.0779171735048294, -0.07317102700471878, -0.13015004992485046, -0.04025299474596977, 0.03869757801294327, -0.0017832213779911399, 0.035705260932445526, -0.09967895597219467, 0.010091489180922508, -0.03396673873066902, 0.04238021746277809, -0.1659262478351593, 0.09215839952230453, -0.017392504960298538, 0.1527562141418457, 0.024129148572683334, 0.1151438057422638, 0.0427059642970562, -0.05461779981851578, -0.03922996297478676, -0.040061771869659424, 0.012547953054308891, -0.011386188678443432, -0.11122419685125351, -0.15635885298252106, -0.04204913601279259, -0.07456425577402115, 0.13955657184123993, -0.1891116052865982, 0.028598662465810776, 0.032737910747528076, 0.08618348836898804, -0.01024671271443367, 0.04086937755346298, 0.012843555770814419, 0.05144384503364563, -0.08538582921028137, -0.016600659117102623, 0.07733453065156937, 0.021166576072573662, -0.09187371283769608, 0.07920856028795242, 0.048214271664619446, 0.06949541717767715, 0.1302901655435562, -0.15549488365650177, -0.02933570370078087, 0.040436189621686935, -0.08861059695482254, 0.04171355441212654, -0.04185150936245918, -0.011141050606966019, 0.1649957150220871, -0.015373988077044487, 0.12747862935066223, -0.050393909215927124, -0.04621158540248871, -0.025619294494390488, -0.03189084306359291, 0.036501750349998474, 0.11867064982652664, 0.08572136610746384, -0.1629430055618286, 0.1292724907398224, 0.11358519643545151, -0.05052522197365761, 0.13441413640975952, -0.0012249709106981754, -0.011093582957983017, 0.031185515224933624, -0.010044283233582973, -0.00765776913613081, 0.03418838977813721, -0.11828377097845078, -0.001624098396860063, 0.06300072371959686, -0.006709787994623184, 0.07642349600791931, -0.16079722344875336, -0.03941960260272026, 0.012762034311890602, -0.016318710520863533, -0.13835780322551727, 0.06448155641555786, -0.020026592537760735, 0.09887991845607758, -0.002183332107961178, -0.08176638185977936, 0.08679159730672836, -0.03881429135799408, -0.09821436554193497, 0.1981123834848404, -0.08264483511447906, -0.18584126234054565, -0.14687176048755646, -0.09321630001068115, -0.0328960083425045, 0.048664640635252, 0.09465817362070084, -0.0768093392252922, -0.02721761353313923, -0.08248013257980347, -0.05816497653722763, -0.04523463174700737, -0.007599884178489447, -0.03908770903944969, 0.0812322124838829, -0.0075928447768092155, -0.12162740528583527, -0.017939941957592964, -0.020882155746221542, -0.043598879128694534, 0.05361727625131607, -0.07584366202354431, 0.11514779180288315, 0.11392280459403992, 0.0018105701310560107, 0.020071309059858322, -0.06247860938310623, 0.18444578349590302, -0.07738257199525833, 0.003270094282925129, 0.11291259527206421, -0.008072691969573498, 0.05412951484322548, 0.15931762754917145, 0.003668006742373109, -0.02243203856050968, 0.0430404432117939, -0.055489253252744675, -0.045056235045194626, -0.25128766894340515, -0.09596137702465057, -0.13154369592666626, 0.032434217631816864, 0.04655634984374046, 0.0562715120613575, 0.00011332474241498858, 0.09149162471294403, 0.0023423742968589067, 0.05015339329838753, 0.05545969307422638, 0.05811985582113266, 0.05287103354930878, -0.001526035601273179, 0.12107418477535248, -0.12353616207838058, -0.07960716634988785, 0.07169342786073685, -0.016505638137459755, 0.2032417207956314, 0.014424463734030724, 0.013203536160290241, 0.10285679250955582, 0.09524834901094437, 0.08838742226362228, 0.13871881365776062, 0.021926244720816612, -0.009399828501045704, -0.029660891741514206, -0.01625487208366394, -0.017502186819911003, 0.10361049324274063, -0.02624003402888775, -0.06346108764410019, -0.06253644078969955, -0.04251577705144882, 0.06347554177045822, 0.33790627121925354, 0.1071910709142685, -0.26617008447647095, -0.006244581192731857, 0.05734504759311676, -0.07177332788705826, -0.024892153218388557, 0.042516596615314484, 0.03638969734311104, -0.1187451183795929, 0.10735996067523956, -0.008464198559522629, 0.1564284712076187, 0.0851903110742569, 0.036202821880578995, -0.019547855481505394, -0.03511698171496391, -0.004934434778988361, 0.1574660837650299, -0.23851194977760315, 0.24783861637115479, -0.026375342160463333, 0.0652511939406395, -0.06015644967556, 0.02595234289765358, 0.059032734483480453, 0.12287997454404831, 0.16290855407714844, -0.024867335334420204, -0.09029877930879593, -0.010399829596281052, 0.006132121663540602, 0.037489764392375946, 0.013933486305177212, -0.005662642419338226, 0.0542994886636734, -0.03459472954273224, 0.005244503263384104, 0.04436589404940605, 0.08519851416349411, -0.09520987421274185, -0.17073209583759308, -0.03828399255871773, 0.04812425374984741, 0.04277285560965538, -0.07251230627298355, -0.019684134051203728, -0.012588074430823326, 0.09123510122299194, -0.0824694111943245, -0.06460778415203094, -0.11416503041982651, 0.014182526618242264, 0.028054334223270416, -0.04825920984148979, 0.005627046804875135, -0.023500852286815643, 0.11889974772930145, -0.024735309183597565, -0.08494798839092255, 0.044790446758270264, -0.0887073427438736, -0.10375566780567169, -0.046227749437093735, 0.06570842117071152, -0.00936795026063919, 0.07000761479139328, 0.0573851615190506, 0.03667232394218445, -0.14195959270000458, -0.10201077163219452, 0.0035457133781164885, -0.04087822884321213, 0.029114119708538055, 0.03525099903345108, -0.09038324654102325, -0.12043502181768417, -0.0010335489641875029, 0.028727523982524872, 0.2172216773033142, 0.2065812349319458, -0.11988642066717148, 0.13676995038986206, 0.05867616459727287, -0.0872335433959961, -0.34259897470474243, -0.0641336739063263, 0.0006148308166302741, 0.026650099083781242, 0.03608261048793793, -0.0971490740776062, 0.10235957056283951, -0.008708791807293892, -0.048412125557661057, 0.042448490858078, -0.22776487469673157, -0.0785137340426445, 0.11755527555942535, -0.03723228722810745, 0.16450488567352295, -0.07136691361665726, 0.005845207255333662, -0.12325733155012131, -0.16638201475143433, 0.05416344478726387, -0.09587722271680832, 0.0830162838101387, -0.015246516093611717, 0.04997383803129196, -0.025768229737877846, -0.02923624776303768, 0.0817561000585556, 0.00702066021040082, 0.04605485498905182, -0.03312937915325165, -0.06232645735144615, 0.1592341959476471, -0.03426162526011467, 0.046444233506917953, -0.1925874799489975, 0.043928731232881546, -0.245179682970047, -0.018724538385868073, -0.0464143380522728, 0.08111554384231567, -0.030393363907933235, -0.04144124314188957, -0.0836915597319603, -0.004970050882548094, 0.09057764708995819, 0.030163463205099106, 0.16683238744735718, -0.0397411584854126, 0.10343626141548157, 0.12176373600959778, 0.16415640711784363, -0.009923414327204227, 0.04636538773775101, -0.05316074937582016, -0.047214142978191376, 0.05901346355676651, -0.18715204298496246, -0.00017431167361792177, 0.09368336945772171, 0.004536383785307407, 0.07504720240831375, 0.10010976344347, 0.010859770700335503, 0.0688382163643837, 0.1258022040128708, -0.13103710114955902, -0.08844256401062012, -0.048173222690820694, 0.07406461238861084, -0.0973278135061264, 0.030831875279545784, 0.08156461268663406, -0.059772949665784836, -0.01990230567753315, 0.030234208330512047, 0.03794302046298981, -0.14100947976112366, 0.07426218688488007, 0.02802453376352787, 0.05105483531951904, -0.10332871228456497, 0.06141682714223862, 0.04799271002411842, 0.010442709550261497, 0.017011400312185287, 0.046019189059734344, -0.11337241530418396, -0.08364090323448181, -0.003036134410649538, 0.21914388239383698, -0.031082002446055412, -0.07753708958625793, -0.08986346423625946, -0.1431523710489273, 0.0871887132525444, 0.026245279237627983, 0.10747922211885452, 0.05227629095315933, -0.03764921799302101, -0.02349381521344185, -0.04781700670719147, 0.04661763086915016, 0.09956814348697662, 0.018831612542271614, -0.08754748106002808, -0.019472738727927208, -0.03323974832892418, 0.08011915534734726, -0.07248470187187195, 0.030788607895374298, -0.07135611772537231, 0.036541517823934555, -0.20753848552703857, -0.019478073343634605, -0.05503154546022415, -0.028593575581908226, -0.0510847344994545, -0.03501066938042641, -0.11775830388069153, -0.0007919499184936285, -0.11427538096904755, -0.0020537166856229305, -0.031926121562719345, 0.10635852813720703, -0.08953939378261566, -0.013513167388737202, 0.06997212022542953, -0.042987994849681854, 0.050981856882572174, 0.02775503695011139, -0.05810265988111496, 0.022246597334742546, -0.10260103642940521, -0.08665575832128525, 0.04410848394036293, -0.001685436349362135, 0.04475199058651924, 0.025246508419513702, 0.03086286038160324, 0.04855776205658913, -0.009096513502299786, 0.013093454763293266, 0.011412964202463627, -0.10118242353200912, 0.03269059956073761, -0.0626739114522934, -0.07282228767871857, -0.05206271633505821, 0.04166574776172638, 0.14466390013694763, 0.1288273185491562, 0.24688898026943207, -0.0640021562576294, 0.0812092199921608, -0.12598071992397308, 0.03738931193947792, -0.012401777319610119, -0.09585799276828766, -0.1333262175321579, -0.06062034144997597, 0.03583008423447609, -0.03186606615781784, 0.23656399548053741, 0.09907472878694534, -0.08909886330366135, 0.06080945208668709, 0.07257214188575745, -0.00010038067557616159, 0.037068936973810196, 0.24315522611141205, 0.030105382204055786, -0.017699958756566048, -0.0486830472946167, -0.022564437240362167, 0.071923166513443, -0.02127719484269619, 0.09484610706567764, 0.21707361936569214, 0.06809580326080322, 0.09755256026983261, 0.02370867319405079, 0.053645405918359756, -0.07658890634775162, 0.03055724874138832, 0.04272004961967468, 0.0610644556581974, -0.06381675601005554, 0.1828574389219284, 0.09844877570867538, -0.13795161247253418, 0.03172188624739647, -0.027922166511416435, -0.025418268516659737, -0.07178513705730438, -0.0802685096859932, -0.07529570907354355, -0.11954234540462494, 0.0423397421836853, -0.11490310728549957, -0.02231835015118122, 0.12349595129489899, -0.013723820447921753, -0.05369242653250694, 0.03553592786192894, -0.07180086523294449, -0.014395268633961678, 0.13926942646503448, -0.06883220374584198, -0.006625299341976643, -0.02471618540585041, -0.050282206386327744, -0.011686107143759727, 0.02560998685657978, 0.0030528597999364138, -0.00420093908905983, -0.06337879598140717, 0.014413062483072281, -0.053594641387462616, -0.07251875102519989, -0.002316381549462676, 0.056455593556165695, 0.049978479743003845, 0.08748187124729156, 0.026622870936989784, -0.002069843001663685, 0.034263625741004944, 0.17996230721473694, -0.08939632028341293, -0.1219506710767746, -0.14608998596668243, 0.17054663598537445, 0.0264565609395504, 0.032611675560474396, 0.023166636005043983, -0.07258057594299316, -0.034232184290885925, 0.27679353952407837, 0.3001020848751068, -0.0953935906291008, -0.015032516792416573, -0.035790059715509415, 0.010507178492844105, 0.03520827367901802, 0.07902143150568008, 0.04119088128209114, 0.15758582949638367, -0.11873913556337357, 0.016311997547745705, -0.052248913794755936, -0.033880237489938736, -0.08366873860359192, 0.07404222339391708, 0.04806792736053467, -0.10567720979452133, -0.03275180980563164, 0.13293983042240143, -0.19597521424293518, -0.08990699797868729, -0.036319535225629807, -0.1134352907538414, -0.10707395523786545, -0.024791285395622253, 0.1415344774723053, 0.024029728025197983, 0.10804850608110428, -0.04221927374601364, 0.015551001764833927, 0.06756342947483063, -0.02631095051765442, -0.03639170154929161, -0.0031941726338118315, 0.10018374025821686, -0.11353066563606262, 0.11854910850524902, -0.06116009131073952, 0.021190373227000237, 0.12715815007686615, 0.03722299635410309, -0.07194898277521133, 0.0477822870016098, -0.001787999994121492, 0.02309226058423519, 0.03510467708110809, 0.005436873994767666, -0.04278029501438141, -0.027445610612630844, 0.036112166941165924, -0.12156718969345093, 0.07468777149915695, -0.0763612687587738, -0.0379483662545681, -0.12390252947807312, 0.06501146405935287, -0.04642525315284729, 0.07523711770772934, 0.12123538553714752, -0.062429070472717285, -0.009076946415007114, -0.056240011006593704, 0.04160302132368088, 0.03594864532351494, -0.03696810081601143, -0.04404040798544884, -0.0821552500128746, -0.04462609067559242, 0.09169405698776245, -0.029631512239575386, -0.2516765594482422, -0.02402392588555813, -0.10738058388233185, -0.019124044105410576, -0.05791742354631424, 0.0992441475391388, 0.14215154945850372, -0.003391525475308299, 0.002378232777118683, -0.03856468200683594, -0.006006293464452028, 0.06821645796298981, -0.032308392226696014, -0.07594118267297745 ]
null
null
transformers
# RuBERTConv Toxic Classifier ## Model description Based on [rubert-base-cased-conversational](https://huggingface.co/DeepPavlov/rubert-base-cased-conversational) model ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1veKO9hke7myxKigZtZho_F-UM2fD9kp8) ```python from transformers import pipeline model_name = "IlyaGusev/rubertconv_toxic_clf" pipe = pipeline("text-classification", model=model_name, tokenizer=model_name, framework="pt") text = "Ты придурок из интернета" pipe([text]) ``` ## Training data Datasets: - [2ch]( https://www.kaggle.com/blackmoon/russian-language-toxic-comments) - [Odnoklassniki](https://www.kaggle.com/alexandersemiletov/toxic-russian-comments) - [Toloka Persona Chat Rus](https://toloka.ai/ru/datasets) - [Koziev's Conversations](https://github.com/Koziev/NLP_Datasets/blob/master/Conversations/Data) with [toxic words vocabulary](https://www.dropbox.com/s/ou6lx03b10yhrfl/bad_vocab.txt.tar.gz) Augmentations: - ё -> е - Remove or add "?" or "!" - Fix CAPS - Concatenate toxic and non-toxic texts - Concatenate two non-toxic texts - Add toxic words from vocabulary - Add typos - Mask toxic words with "*", "@", "$" ## Training procedure TBA
{"language": ["ru"], "license": "apache-2.0", "tags": ["text-classification"]}
text-classification
IlyaGusev/rubertconv_toxic_clf
[ "transformers", "pytorch", "bert", "text-classification", "ru", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #bert #text-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# RuBERTConv Toxic Classifier ## Model description Based on rubert-base-cased-conversational model ## Intended uses & limitations #### How to use Colab: link ## Training data Datasets: - 2ch - Odnoklassniki - Toloka Persona Chat Rus - Koziev's Conversations with toxic words vocabulary Augmentations: - ё -> е - Remove or add "?" or "!" - Fix CAPS - Concatenate toxic and non-toxic texts - Concatenate two non-toxic texts - Add toxic words from vocabulary - Add typos - Mask toxic words with "*", "@", "$" ## Training procedure TBA
[ "# RuBERTConv Toxic Classifier", "## Model description\n\nBased on rubert-base-cased-conversational model", "## Intended uses & limitations", "#### How to use\n\nColab: link", "## Training data\n\nDatasets:\n- 2ch\n- Odnoklassniki\n- Toloka Persona Chat Rus\n- Koziev's Conversations with toxic words vocabulary\n\nAugmentations:\n- ё -> е\n- Remove or add \"?\" or \"!\"\n- Fix CAPS\n- Concatenate toxic and non-toxic texts\n- Concatenate two non-toxic texts\n- Add toxic words from vocabulary\n- Add typos\n- Mask toxic words with \"*\", \"@\", \"$\"", "## Training procedure\n\nTBA" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# RuBERTConv Toxic Classifier", "## Model description\n\nBased on rubert-base-cased-conversational model", "## Intended uses & limitations", "#### How to use\n\nColab: link", "## Training data\n\nDatasets:\n- 2ch\n- Odnoklassniki\n- Toloka Persona Chat Rus\n- Koziev's Conversations with toxic words vocabulary\n\nAugmentations:\n- ё -> е\n- Remove or add \"?\" or \"!\"\n- Fix CAPS\n- Concatenate toxic and non-toxic texts\n- Concatenate two non-toxic texts\n- Add toxic words from vocabulary\n- Add typos\n- Mask toxic words with \"*\", \"@\", \"$\"", "## Training procedure\n\nTBA" ]
[ 46, 11, 18, 9, 9, 109, 5 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# RuBERTConv Toxic Classifier## Model description\n\nBased on rubert-base-cased-conversational model## Intended uses & limitations#### How to use\n\nColab: link## Training data\n\nDatasets:\n- 2ch\n- Odnoklassniki\n- Toloka Persona Chat Rus\n- Koziev's Conversations with toxic words vocabulary\n\nAugmentations:\n- ё -> е\n- Remove or add \"?\" or \"!\"\n- Fix CAPS\n- Concatenate toxic and non-toxic texts\n- Concatenate two non-toxic texts\n- Add toxic words from vocabulary\n- Add typos\n- Mask toxic words with \"*\", \"@\", \"$\"## Training procedure\n\nTBA" ]
[ -0.018180394545197487, 0.018008600920438766, -0.00531100993975997, 0.027098236605525017, 0.12404359877109528, 0.016501372680068016, 0.1477121114730835, 0.135733962059021, 0.06885620206594467, 0.029844140633940697, 0.05238344147801399, 0.15655536949634552, 0.02407229132950306, 0.14541855454444885, -0.0797123834490776, -0.21166761219501495, 0.056910764425992966, -0.012761307880282402, -0.07386906445026398, 0.12613242864608765, 0.1564866155385971, -0.03829372674226761, 0.0609382800757885, 0.007022075355052948, -0.03765714913606644, 0.00803240854293108, 0.06058827042579651, -0.13667429983615875, 0.1303684264421463, 0.04321927949786186, 0.08081569522619247, 0.05168629065155983, -0.03610306978225708, -0.2287490963935852, 0.04180654510855675, 0.021387802436947823, -0.07553791999816895, 0.05263407155871391, 0.060556914657354355, -0.10656418651342392, 0.1801230013370514, -0.1411987692117691, 0.020676439628005028, 0.08709103614091873, -0.12727832794189453, -0.09429208934307098, -0.07048337161540985, 0.09265091270208359, 0.16757990419864655, 0.06434912979602814, -0.04072752222418785, 0.19234280288219452, -0.06713435053825378, 0.07676947861909866, 0.22771897912025452, -0.2723839581012726, -0.04737258702516556, 0.08122114092111588, 0.0658971294760704, -0.0064259790815413, -0.10472608357667923, 0.03753484785556793, 0.0011634667171165347, -0.003126013558357954, -0.02235184609889984, -0.05882111191749573, 0.07147283852100372, -0.032698262482881546, -0.11748866736888885, 0.01703760214149952, 0.12428299337625504, 0.029109366238117218, -0.037562914192676544, -0.06209580600261688, -0.054275233298540115, -0.06010385602712631, -0.011191589757800102, -0.04708671197295189, -0.04249381646513939, -0.032650791108608246, -0.002894055563956499, -0.06751148402690887, -0.12187926471233368, -0.019567597657442093, -0.018050268292427063, 0.17574049532413483, 0.03797680884599686, 0.044451914727687836, -0.007977054454386234, 0.025120655074715614, -0.08089226484298706, -0.08168396353721619, 0.015965070575475693, -0.08425815403461456, -0.06911200284957886, -0.005245649721473455, -0.06671112030744553, -0.1292676478624344, 0.08368133753538132, 0.057764932513237, -0.0019475648878142238, 0.0025458873715251684, -0.023280613124370575, 0.050143033266067505, -0.010156420059502125, 0.038414519280195236, -0.00025782285956665874, -0.04346366226673126, 0.037657782435417175, 0.0295646283775568, 0.02051951177418232, -0.021010838449001312, -0.11939988285303116, -0.08114536851644516, 0.016821522265672684, 0.06773928552865982, 0.01253651175647974, 0.09953279048204422, -0.05249600112438202, -0.042072124779224396, 0.019627969712018967, -0.08022540807723999, 0.01938175968825817, 0.07209901511669159, -0.04044131189584732, -0.0055223796516656876, 0.028631756082177162, 0.056963544338941574, -0.037034932523965836, 0.11274882405996323, -0.010480456985533237, 0.0453965999186039, -0.10206246376037598, -0.09118547290563583, 0.04073246195912361, 0.022166242823004723, -0.06292441487312317, -0.12984253466129303, -0.058226678520441055, 0.013826046139001846, 0.03801972419023514, 0.006835253909230232, -0.04576528072357178, -0.04302408918738365, -0.032542675733566284, -0.002604147419333458, -0.000007329707841563504, -0.15916357934474945, -0.03145799785852432, 0.05403965711593628, -0.054579369723796844, 0.08471084386110306, -0.03366386890411377, 0.016775591298937798, -0.0766047015786171, -0.001377814682200551, -0.15200386941432953, 0.04022759571671486, -0.07545170187950134, 0.0623234324157238, -0.13334356248378754, -0.06833922863006592, 0.01534136850386858, -0.018456948921084404, 0.00823672953993082, 0.18253357708454132, -0.20864619314670563, -0.031926773488521576, 0.24829675257205963, -0.09055441617965698, -0.09947271645069122, 0.1533069908618927, -0.054690923541784286, 0.033304572105407715, 0.15104873478412628, 0.0659126341342926, -0.00013323135499376804, -0.12125617265701294, 0.030231617391109467, -0.027744239196181297, -0.054480329155921936, 0.09319959580898285, 0.09044366329908371, -0.025192128494381905, -0.08859769999980927, -0.008140472695231438, 0.023008501157164574, -0.00023090954346116632, -0.01701636053621769, -0.12900036573410034, 0.0004355131823103875, -0.0042680841870605946, 0.23249629139900208, -0.08077635616064072, -0.006920020096004009, -0.07646124809980392, -0.13783609867095947, -0.13456426560878754, 0.09502914547920227, 0.011109751649200916, 0.05742954462766647, -0.11983170360326767, 0.06346485018730164, 0.07053657621145248, 0.01521444320678711, -0.11087588220834732, -0.038839563727378845, -0.01710636168718338, 0.08555326610803604, 0.072671078145504, 0.05023138225078583, 0.03172764554619789, -0.02399875596165657, -0.04814041778445244, 0.03922067955136299, 0.0023041628301143646, -0.006068448070436716, -0.05329328402876854, -0.1942598521709442, 0.043244682252407074, -0.04848074913024902, 0.13251502811908722, -0.13914403319358826, 0.05692736431956291, 0.09015358984470367, 0.03376290947198868, -0.023532167077064514, 0.05445665866136551, -0.0058339484967291355, -0.0036887063179165125, -0.030582543462514877, -0.004193622153252363, 0.08009356260299683, -0.026264257729053497, -0.2011553943157196, 0.033688805997371674, -0.0791841447353363, -0.013698620721697807, 0.12221714854240417, -0.0022003960330039263, -0.07133637368679047, -0.08831572532653809, -0.035948749631643295, 0.003233236027881503, 0.03423255309462547, -0.04045024514198303, 0.1400596797466278, 0.04972705990076065, 0.04811979830265045, -0.047559868544340134, 0.019328871741890907, -0.0413195863366127, -0.09979154169559479, -0.05222601071000099, 0.06845179945230484, -0.034281015396118164, -0.23005323112010956, 0.10629864782094955, 0.12916114926338196, -0.11348117887973785, 0.1158667802810669, 0.057775359600782394, -0.02365868352353573, -0.054860491305589676, 0.057877518236637115, 0.03268574923276901, 0.0460556298494339, -0.08832257986068726, 0.047247499227523804, 0.05025123432278633, -0.04904956370592117, 0.00017305882647633553, -0.09551482647657394, -0.039833471179008484, -0.0027742949314415455, -0.03707031160593033, -0.06046785041689873, 0.06521710008382797, 0.06824740022420883, 0.13910715281963348, 0.02946678176522255, -0.08384905755519867, 0.0725584626197815, -0.027663826942443848, -0.08005134761333466, 0.16513724625110626, -0.16436271369457245, -0.27881982922554016, -0.05313703045248985, -0.1224449872970581, -0.0647459328174591, 0.0505707748234272, 0.08127640187740326, -0.15000829100608826, -0.03566303476691246, 0.031097879633307457, 0.11768855899572372, 0.007413469720631838, -0.03761056810617447, -0.020972970873117447, 0.07987374812364578, 0.02456759475171566, -0.06638793647289276, -0.04697536677122116, -0.01678064651787281, -0.09550218284130096, 0.10636807233095169, -0.05819176509976387, 0.046636566519737244, 0.13290555775165558, -0.041811276227235794, -0.02667189948260784, -0.08093809336423874, 0.18453237414360046, -0.09846067428588867, 0.004064945504069328, 0.14071989059448242, -0.14466728270053864, 0.09339790046215057, 0.1531653255224228, 0.04687827453017235, -0.01311352290213108, 0.04874347895383835, 0.03430432453751564, -0.014075541868805885, -0.3190227150917053, -0.11887187510728836, -0.05426313355565071, 0.03440510109066963, -0.009645074605941772, 0.04024237394332886, 0.1867406964302063, 0.0789249837398529, -0.05894816294312477, -0.06284113228321075, 0.09978293627500534, 0.1250649094581604, 0.09810986369848251, -0.00006920327723491937, 0.0954473465681076, 0.009600600227713585, -0.09269335865974426, 0.0446980819106102, 0.0312050748616457, 0.21794810891151428, 0.11330289393663406, 0.16423484683036804, 0.09238576143980026, 0.07080194354057312, 0.02751958929002285, 0.016902776435017586, -0.007572517730295658, -0.006789936684072018, -0.03776077926158905, -0.06649436801671982, -0.03579169511795044, 0.0931265652179718, 0.07565024495124817, 0.014993294142186642, -0.023137694224715233, 0.03842137008905411, 0.17025494575500488, 0.17226289212703705, -0.02223440445959568, -0.1601032316684723, -0.026861658319830894, 0.04718992859125137, -0.0051259431056678295, -0.012717359699308872, 0.014994696713984013, -0.04182252287864685, -0.17647449672222137, 0.09681795537471771, -0.12974540889263153, 0.09575844556093216, 0.06303740292787552, 0.052766650915145874, -0.03127354383468628, -0.002262105466797948, -0.048116110265254974, 0.14487497508525848, -0.2972557544708252, 0.24767443537712097, 0.005999050568789244, -0.018247533589601517, -0.10934119671583176, 0.0013864595675840974, 0.07269363850355148, 0.08961135149002075, 0.17133578658103943, -0.032455649226903915, -0.03633301332592964, -0.060607749968767166, -0.0902012437582016, -0.03152008354663849, 0.07011473923921585, -0.030263785272836685, 0.05427068844437599, -0.04207966476678848, -0.01806330308318138, 0.004538220353424549, 0.1050843596458435, -0.13883304595947266, -0.1258840709924698, 0.10819614678621292, 0.026356719434261322, 0.001433991827070713, -0.06945852190256119, -0.0701659694314003, -0.005399804562330246, 0.23902997374534607, -0.055523183196783066, -0.08734747767448425, -0.12259598821401596, -0.006138947326689959, 0.0668698400259018, -0.1096576601266861, 0.002589000156149268, -0.005022812634706497, 0.1517014056444168, -0.08983808010816574, -0.07935228198766708, 0.11500148475170135, -0.08726870268583298, -0.12169075757265091, -0.05157243087887764, 0.22467921674251556, 0.09367558360099792, 0.10744369029998779, 0.05043141543865204, -0.03982933238148689, -0.017788607627153397, -0.07584437727928162, -0.03593911603093147, -0.04656042531132698, 0.020451264455914497, 0.036035872995853424, -0.1697675734758377, -0.2011914998292923, -0.21581687033176422, -0.023248959332704544, 0.3002244234085083, 0.229002445936203, -0.059579845517873764, 0.12785425782203674, 0.05353715643286705, -0.044303085654973984, -0.18422655761241913, 0.019881779327988625, 0.08319050073623657, 0.004866782575845718, 0.02700570970773697, -0.12065623700618744, -0.0015687259146943688, 0.045908793807029724, -0.04754266142845154, 0.07129480689764023, -0.158793643116951, -0.11983144283294678, 0.17067819833755493, -0.0034134078305214643, 0.13474208116531372, -0.15046781301498413, -0.055999793112277985, -0.13980132341384888, -0.0600561760365963, 0.17032836377620697, -0.09939364343881607, 0.06992006301879883, 0.042162101715803146, 0.16102385520935059, 0.061900585889816284, -0.004039023537188768, 0.17280757427215576, 0.016785908490419388, 0.01902909390628338, -0.07920133322477341, -0.23994334042072296, 0.11183720082044601, -0.03924785554409027, 0.0022568178828805685, -0.04635684937238693, -0.049474652856588364, -0.08745937049388885, -0.04174591228365898, -0.09555035084486008, 0.10237504541873932, -0.06276581436395645, -0.07442869246006012, -0.059433840215206146, 0.08418259024620056, 0.08525433391332626, -0.020547494292259216, 0.1941973865032196, -0.07062415778636932, 0.14441631734371185, 0.08140800893306732, 0.12970900535583496, 0.11281075328588486, -0.08438608795404434, 0.06787945330142975, -0.010692371986806393, 0.04339359700679779, -0.07653091847896576, 0.0773192048072815, 0.06768198311328888, -0.03963594138622284, 0.13160935044288635, 0.04264884814620018, -0.07014905661344528, 0.011467051692306995, 0.0845155343413353, -0.11557108163833618, -0.04681333526968956, -0.028112860396504402, 0.12612825632095337, -0.10641780495643616, 0.0037039429880678654, 0.13734816014766693, -0.04608063027262688, -0.041135434061288834, 0.018271399661898613, 0.034637633711099625, -0.11585614085197449, 0.0630018413066864, 0.05869218707084656, 0.04766466096043587, -0.05900256708264351, 0.002896768506616354, 0.053567495197057724, -0.05021730065345764, -0.0023305003996938467, 0.03966760262846947, -0.07852104306221008, -0.08311941474676132, 0.004468193743377924, 0.08749695122241974, 0.013811599463224411, -0.047692786902189255, -0.03886057063937187, -0.1106363981962204, -0.0016129023861140013, 0.10776887089014053, 0.07938512414693832, -0.030388379469513893, -0.011483965441584587, -0.01580112800002098, -0.04043874144554138, 0.08316309005022049, 0.041998010128736496, 0.008390464819967747, -0.03317536413669586, 0.13019055128097534, -0.030679207295179367, 0.10545963048934937, -0.04159998521208763, -0.003699549473822117, -0.12937724590301514, 0.01744966022670269, -0.06395238637924194, 0.03586380183696747, -0.11514900624752045, -0.029854699969291687, 0.008594528771936893, -0.032554298639297485, -0.021648235619068146, 0.01349096093326807, -0.10268586874008179, -0.002160349627956748, -0.0032210403587669134, 0.06333977729082108, -0.08012748509645462, -0.05109196901321411, 0.08365662395954132, -0.047299694269895554, 0.09624183923006058, 0.12306631356477737, -0.058318279683589935, 0.03174939006567001, -0.23056654632091522, 0.013411324471235275, 0.051697175949811935, 0.029291395097970963, 0.032444149255752563, -0.14609295129776, 0.03140563145279884, -0.03590083494782448, 0.0307326540350914, 0.017102209851145744, 0.08201123028993607, -0.10688124597072601, -0.012588035315275192, -0.016370942816138268, -0.15407364070415497, 0.032576948404312134, -0.03659534826874733, 0.05264465883374214, -0.00490575423464179, 0.20029638707637787, -0.050516631454229355, 0.15045861899852753, -0.061612874269485474, 0.044489845633506775, 0.006894073449075222, -0.05435942858457565, -0.0906766876578331, -0.0864088162779808, 0.05713751167058945, -0.04549456760287285, 0.08924441784620285, 0.006886002607643604, 0.03674864023923874, 0.0573846697807312, -0.05154982581734657, 0.014789051376283169, 0.008110081776976585, 0.06775329262018204, 0.01773872971534729, -0.013626891188323498, 0.006307187955826521, -0.08116346597671509, 0.016505250707268715, -0.11372869461774826, 0.18004481494426727, 0.12129059433937073, 0.16833974421024323, 0.03443875163793564, 0.06314554065465927, -0.01391397975385189, -0.07005920261144638, -0.10389068722724915, -0.006101476959884167, 0.013985707424581051, -0.025446884334087372, 0.14447231590747833, 0.17096199095249176, -0.16723763942718506, 0.0796455591917038, -0.05366449058055878, -0.08664300292730331, -0.15519584715366364, -0.11034256964921951, -0.08901917189359665, -0.08570052683353424, 0.059743691235780716, -0.08611413836479187, -0.03598770871758461, 0.05660814791917801, 0.015136560425162315, -0.05328710377216339, 0.17754797637462616, -0.11114101111888885, -0.10131769627332687, 0.12138009071350098, 0.0112129095941782, 0.044667936861515045, 0.01095679122954607, -0.00986451469361782, -0.024430492892861366, -0.057814355939626694, 0.01464194618165493, 0.012417210265994072, 0.026850558817386627, 0.01776781678199768, -0.11845061928033829, -0.09828286617994308, 0.02026265114545822, 0.03998937830328941, 0.08532105386257172, 0.20764553546905518, 0.008884533308446407, 0.014157058671116829, 0.0013926215469837189, 0.1420053243637085, -0.03979090601205826, -0.05344707891345024, -0.1288587898015976, 0.09421119093894958, 0.0370725579559803, 0.006412315182387829, -0.012335947714745998, -0.08335285633802414, -0.020819829776883125, 0.16349922120571136, 0.28457728028297424, -0.08054911345243454, 0.03383362293243408, -0.019831757992506027, 0.047703858464956284, 0.054760586470365524, 0.04914548993110657, 0.053443554788827896, 0.10303788632154465, -0.08855704963207245, 0.03688233345746994, -0.016900207847356796, 0.014680099673569202, -0.092942975461483, 0.06715147942304611, 0.013640446588397026, -0.03905976936221123, 0.004814360290765762, 0.14785270392894745, -0.06181424483656883, -0.11541155725717545, -0.042863622307777405, -0.15828019380569458, -0.13429678976535797, 0.006774285342544317, 0.07902760803699493, 0.0611145943403244, 0.1217007115483284, 0.018718861043453217, -0.09278503805398941, 0.09408558160066605, 0.0150457127019763, -0.09261754155158997, -0.04751182720065117, 0.1534227877855301, 0.0022063106298446655, 0.14135706424713135, 0.000792093516793102, 0.1325390338897705, 0.09181104600429535, -0.0025896038860082626, -0.008921531960368156, 0.07077164202928543, 0.06688398867845535, -0.06001409888267517, 0.02835340052843094, 0.03330550342798233, -0.036312319338321686, 0.07119980454444885, 0.10950770974159241, -0.11573194712400436, 0.04819365218281746, 0.04748065397143364, -0.0425327904522419, -0.076223224401474, 0.1972101628780365, -0.15722471475601196, 0.057896003127098083, 0.20868369936943054, -0.06306825578212738, -0.02265366166830063, -0.035215526819229126, -0.002967806765809655, 0.07006292790174484, 0.001697890809737146, -0.10002578794956207, -0.173119455575943, -0.0016749358037486672, 0.05036940798163414, 0.07481234520673752, -0.22552284598350525, -0.09237827360630035, -0.0806560218334198, -0.008055472746491432, -0.1426077038049698, 0.061753273010253906, -0.03296133130788803, -0.037835005670785904, 0.01720874197781086, -0.08862138539552689, -0.011728666722774506, 0.07185778766870499, -0.16657079756259918, -0.038948237895965576 ]
null
null
transformers
# RuBERTConv Toxic Editor ## Model description Tagging model for detoxification based on [rubert-base-cased-conversational](https://huggingface.co/DeepPavlov/rubert-base-cased-conversational). 4 possible classes: - Equal = save tokens - Replace = replace tokens with mask - Delete = remove tokens - Insert = insert mask before tokens Use in pair with [mask filler](https://huggingface.co/IlyaGusev/sber_rut5_filler). ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1NUSO1QGlDgD-IWXa2SpeND089eVxrCJW) ```python import torch from transformers import AutoTokenizer, pipeline tagger_model_name = "IlyaGusev/rubertconv_toxic_editor" device = "cuda" if torch.cuda.is_available() else "cpu" device_num = 0 if device == "cuda" else -1 tagger_pipe = pipeline( "token-classification", model=tagger_model_name, tokenizer=tagger_model_name, framework="pt", device=device_num, aggregation_strategy="max" ) text = "..." tagger_predictions = tagger_pipe([text], batch_size=1) sample_predictions = tagger_predictions[0] print(sample_predictions) ``` ## Training data - Dataset: [russe_detox_2022](https://github.com/skoltech-nlp/russe_detox_2022/tree/main/data) ## Training procedure - Parallel corpus convertion: [compute_tags.py](https://github.com/IlyaGusev/rudetox/blob/main/rudetox/marker/compute_tags.py) - Training script: [train.py](https://github.com/IlyaGusev/rudetox/blob/main/rudetox/marker/train.py) - Pipeline step: [dvc.yaml, train_marker](https://github.com/IlyaGusev/rudetox/blob/main/dvc.yaml#L367) ## Eval results TBA
{"language": ["ru"], "license": "apache-2.0", "tags": ["token-classification"], "widget": [{"text": "\u0401\u043f\u0442\u0430, \u043c\u0435\u043d\u044f \u0437\u043e\u0432\u0443\u0442 \u043f\u0440\u0438\u0434\u0443\u0440\u043e\u043a \u0438 \u044f \u0436\u0438\u0432\u0443 \u0432 \u0436\u043e\u043f\u0435"}]}
token-classification
IlyaGusev/rubertconv_toxic_editor
[ "transformers", "pytorch", "bert", "token-classification", "ru", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #bert #token-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# RuBERTConv Toxic Editor ## Model description Tagging model for detoxification based on rubert-base-cased-conversational. 4 possible classes: - Equal = save tokens - Replace = replace tokens with mask - Delete = remove tokens - Insert = insert mask before tokens Use in pair with mask filler. ## Intended uses & limitations #### How to use Colab: link ## Training data - Dataset: russe_detox_2022 ## Training procedure - Parallel corpus convertion: compute_tags.py - Training script: URL - Pipeline step: URL, train_marker ## Eval results TBA
[ "# RuBERTConv Toxic Editor", "## Model description\n\nTagging model for detoxification based on rubert-base-cased-conversational.\n\n4 possible classes:\n- Equal = save tokens\n- Replace = replace tokens with mask\n- Delete = remove tokens\n- Insert = insert mask before tokens\n\nUse in pair with mask filler.", "## Intended uses & limitations", "#### How to use\n\nColab: link", "## Training data\n\n- Dataset: russe_detox_2022", "## Training procedure\n\n- Parallel corpus convertion: compute_tags.py\n- Training script: URL\n- Pipeline step: URL, train_marker", "## Eval results\n\nTBA" ]
[ "TAGS\n#transformers #pytorch #bert #token-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# RuBERTConv Toxic Editor", "## Model description\n\nTagging model for detoxification based on rubert-base-cased-conversational.\n\n4 possible classes:\n- Equal = save tokens\n- Replace = replace tokens with mask\n- Delete = remove tokens\n- Insert = insert mask before tokens\n\nUse in pair with mask filler.", "## Intended uses & limitations", "#### How to use\n\nColab: link", "## Training data\n\n- Dataset: russe_detox_2022", "## Training procedure\n\n- Parallel corpus convertion: compute_tags.py\n- Training script: URL\n- Pipeline step: URL, train_marker", "## Eval results\n\nTBA" ]
[ 47, 10, 67, 9, 9, 13, 31, 6 ]
[ "passage: TAGS\n#transformers #pytorch #bert #token-classification #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# RuBERTConv Toxic Editor## Model description\n\nTagging model for detoxification based on rubert-base-cased-conversational.\n\n4 possible classes:\n- Equal = save tokens\n- Replace = replace tokens with mask\n- Delete = remove tokens\n- Insert = insert mask before tokens\n\nUse in pair with mask filler.## Intended uses & limitations#### How to use\n\nColab: link## Training data\n\n- Dataset: russe_detox_2022## Training procedure\n\n- Parallel corpus convertion: compute_tags.py\n- Training script: URL\n- Pipeline step: URL, train_marker## Eval results\n\nTBA" ]
[ -0.09532883018255234, 0.14129488170146942, -0.0034985009115189314, 0.08835941553115845, 0.10823138058185577, 0.06451014429330826, 0.124193474650383, 0.14194345474243164, 0.05245336517691612, 0.01918172836303711, 0.06105494499206543, 0.13683190941810608, 0.011103542521595955, 0.23315748572349548, -0.05329757556319237, -0.15915116667747498, 0.06078881397843361, 0.019293198361992836, -0.040575165301561356, 0.0801415741443634, 0.09327372163534164, -0.05773235857486725, 0.060409508645534515, 0.018279658630490303, -0.09242630004882812, -0.016306627541780472, -0.0006929452065378428, -0.0643010288476944, 0.11727268248796463, 0.021159369498491287, 0.14018402993679047, 0.01213826984167099, 0.03691919893026352, -0.12888653576374054, 0.03872353583574295, 0.04232921823859215, -0.06499837338924408, 0.08839166164398193, 0.0022608248982578516, -0.14315950870513916, 0.04091581702232361, -0.06173102930188179, 0.08874616771936417, 0.06398340314626694, -0.14673911035060883, -0.1278752237558365, -0.11026448011398315, 0.059461891651153564, 0.1463577300310135, 0.04926343262195587, 0.02748878113925457, 0.14760352671146393, -0.09113553911447525, 0.1012682169675827, 0.1918729543685913, -0.29965126514434814, -0.018913844600319862, 0.14025291800498962, 0.08180773258209229, -0.04692449793219566, -0.07222744822502136, 0.013726042583584785, 0.01195445004850626, 0.02686334028840065, 0.10227704048156738, -0.09132853150367737, -0.1061229333281517, -0.052444763481616974, -0.12046307325363159, -0.022445809096097946, 0.13468876481056213, -0.011690330691635609, -0.07534099370241165, -0.019108911976218224, -0.08877737075090408, -0.11299888044595718, -0.0425524041056633, -0.02223202958703041, 0.029068268835544586, 0.02288886532187462, 0.019174467772245407, -0.06761447340250015, -0.05735012888908386, -0.07140016555786133, -0.008864245377480984, 0.14520594477653503, 0.0649552270770073, 0.033711258322000504, -0.014879186637699604, 0.0910215899348259, -0.0569162555038929, -0.03821679204702377, -0.03290880471467972, -0.051323868334293365, -0.08855966478586197, -0.03933459520339966, -0.06926500052213669, -0.15197166800498962, 0.048685356974601746, 0.24234972894191742, -0.05701355263590813, 0.04773353785276413, 0.003393211169168353, 0.06779569387435913, -0.019718125462532043, 0.0611964650452137, -0.004559292457997799, -0.035318147391080856, 0.08245624601840973, 0.004751383792608976, 0.006690824870020151, -0.006456481292843819, -0.11103875190019608, -0.06176155060529709, 0.029979629442095757, 0.0971049964427948, -0.03785078972578049, 0.08010944724082947, -0.0877290889620781, -0.01809646375477314, 0.039570484310388565, -0.10193508863449097, 0.03746587410569191, 0.0030014177318662405, -0.026438476517796516, -0.014424922876060009, 0.15554256737232208, -0.020955128595232964, -0.030183782801032066, 0.020618092268705368, -0.07812376320362091, 0.03345852345228195, -0.13459397852420807, -0.1697605550289154, 0.020103812217712402, -0.1112150102853775, -0.045861706137657166, -0.13084746897220612, -0.184498593211174, 0.007453650236129761, 0.12158497422933578, 0.013945172540843487, 0.0379781574010849, -0.014393777586519718, -0.008672035299241543, -0.012494867667555809, 0.0024570380337536335, -0.11961647868156433, -0.06489890068769455, -0.014601756818592548, -0.03344311565160751, 0.10924535989761353, -0.1220196858048439, 0.034517623484134674, -0.05172932147979736, 0.08044326305389404, -0.24114136397838593, 0.048493970185518265, -0.06711377948522568, 0.06749139726161957, -0.14192551374435425, -0.04511087015271187, 0.008570808917284012, -0.050560347735881805, 0.04135742411017418, 0.1257336586713791, -0.16790556907653809, -0.002018572296947241, 0.28064557909965515, -0.07185662537813187, -0.09043363481760025, 0.12664911150932312, -0.08643732964992523, 0.05909038335084915, 0.10789486020803452, 0.07723049819469452, 0.12858305871486664, -0.16187578439712524, -0.011596783995628357, 0.02633618377149105, -0.0570686049759388, -0.06318369507789612, 0.06827091425657272, 0.02460235357284546, 0.032573483884334564, 0.008901236578822136, 0.015523452311754227, 0.07194960117340088, -0.020855123177170753, -0.09056229144334793, 0.008761566132307053, -0.08639678359031677, 0.11467083543539047, -0.0668669268488884, 0.03964252397418022, -0.02050156705081463, -0.07982198148965836, -0.005456740036606789, 0.09342442452907562, -0.06253276020288467, 0.07676185667514801, -0.13004690408706665, 0.08700007200241089, -0.047230057418346405, 0.012139545753598213, -0.1679437905550003, -0.09085387736558914, 0.007452671881765127, 0.017509840428829193, 0.028645772486925125, 0.042421676218509674, 0.02997312881052494, 0.061507392674684525, -0.025693343952298164, -0.006993749178946018, 0.008799285627901554, -0.0037032831460237503, -0.1035127118229866, -0.16715797781944275, -0.0768190324306488, -0.0828743427991867, 0.15123094618320465, -0.08313637971878052, 0.09141683578491211, -0.008239546790719032, 0.04666471108794212, 0.01852181926369667, 0.010211817920207977, 0.036000967025756836, 0.030585670843720436, -0.038163792341947556, -0.06733384728431702, 0.06438540667295456, 0.0058906180784106255, -0.14617113769054413, -0.006788693834096193, -0.07376895099878311, -0.021908188238739967, 0.09509672969579697, 0.021465351805090904, -0.0970715582370758, -0.02902729995548725, -0.039565421640872955, -0.0036073096562176943, 0.01855221390724182, -0.01966089941561222, 0.17954379320144653, 0.02570403553545475, 0.13422706723213196, -0.025418585166335106, 0.015266457572579384, -0.02507927082479, -0.05393392592668533, 0.027087591588497162, 0.014201847836375237, 0.02130555547773838, -0.11458076536655426, 0.08158669620752335, 0.048780880868434906, -0.14632520079612732, 0.04036646708846092, 0.06322707235813141, -0.03490821272134781, -0.05252283811569214, 0.07668448239564896, 0.07416251301765442, 0.07376940548419952, -0.062415335327386856, -0.004826362244784832, 0.04822289198637009, -0.0015436421381309628, 0.02510879933834076, -0.1058046966791153, 0.01974056474864483, -0.006192758213728666, -0.04551834985613823, -0.027592649683356285, 0.02042148821055889, 0.00338927935808897, 0.04888473451137543, 0.0420207753777504, -0.09525705873966217, 0.06610311567783356, -0.008361095562577248, -0.07210656255483627, 0.2108115255832672, -0.14619886875152588, -0.2829170823097229, -0.09356296807527542, -0.1734262853860855, 0.0024727799464017153, 0.045281995087862015, 0.07951613515615463, -0.028573917225003242, -0.08368172496557236, -0.017802922055125237, 0.009032094851136208, -0.0034360450226813555, -0.012392937205731869, -0.05322714149951935, 0.022860122844576836, 0.024181026965379715, -0.14714856445789337, -0.016663221642374992, 0.033972080796957016, -0.0674423798918724, 0.12331081926822662, -0.0746222585439682, 0.0722045823931694, 0.10461936891078949, -0.07476575672626495, 0.016141729429364204, -0.03418419882655144, 0.19091558456420898, -0.0330263189971447, 0.05193227156996727, 0.13270318508148193, -0.05603568255901337, 0.07755754142999649, 0.0620708242058754, -0.00029098097002133727, -0.08036714047193527, 0.02067955955862999, -0.014020035974681377, -0.07402653992176056, -0.25739723443984985, -0.08286964893341064, -0.12261415272951126, 0.026821693405508995, 0.07374698668718338, 0.04578886926174164, 0.09882944077253342, 0.0992480218410492, -0.025303006172180176, 0.12526744604110718, 0.026283375918865204, 0.14145083725452423, 0.036685511469841, 0.012887359596788883, 0.1017647385597229, -0.03604384884238243, -0.0147599121555686, 0.04995549097657204, 0.1185498982667923, 0.25519806146621704, 0.03494201600551605, 0.16050468385219574, 0.10884308815002441, 0.10559917986392975, 0.019393527880311012, 0.13079945743083954, -0.04229721799492836, 0.023618048056960106, -0.015106471255421638, -0.028753723949193954, -0.06634937971830368, 0.03463123366236687, -0.004305414389818907, 0.004029663745313883, -0.008855104446411133, 0.06963668018579483, 0.0869048461318016, 0.2028699815273285, 0.06255552917718887, -0.33683496713638306, -0.059428419917821884, 0.013761715032160282, 0.013614020310342312, -0.05740341916680336, -0.01510834600776434, 0.011898531578481197, -0.11937076598405838, 0.03517283871769905, -0.08591806888580322, 0.12216564267873764, -0.02466508373618126, -0.009641495533287525, -0.006725831888616085, 0.026648886501789093, -0.008068136870861053, 0.0759885162115097, -0.2054947018623352, 0.11851055175065994, 0.02421908639371395, 0.0558696873486042, -0.041990648955106735, 0.07733924686908722, 0.08493345975875854, 0.16149070858955383, 0.1135825514793396, 0.00006013561869622208, 0.045219115912914276, -0.09525533765554428, -0.1092655211687088, 0.0034945448860526085, 0.013696124777197838, -0.013756955973803997, 0.0838279277086258, -0.00700493436306715, -0.013296118006110191, 0.015203578397631645, 0.11819839477539062, -0.14419324696063995, -0.138828843832016, 0.04217171669006348, 0.06867117434740067, 0.04099953547120094, -0.04947958514094353, -0.0370204858481884, -0.03852386027574539, 0.28515276312828064, -0.02957693301141262, -0.08409383147954941, -0.14095570147037506, 0.0021338765509426594, 0.08593299239873886, -0.0770801231265068, 0.06828369945287704, -0.028544286265969276, 0.08579951524734497, -0.0950883999466896, -0.11478570103645325, 0.11030333489179611, -0.09390584379434586, -0.025880489498376846, -0.08486741036176682, 0.07690352946519852, 0.03179498389363289, 0.06996066868305206, 0.07060880959033966, -0.00737029267475009, -0.028149433434009552, -0.08117035031318665, -0.0326874777674675, 0.014108874835073948, 0.11406580358743668, 0.09949324280023575, -0.18466728925704956, -0.12636606395244598, -0.009256638586521149, 0.09102169424295425, 0.2131170630455017, 0.24228036403656006, -0.07681412994861603, 0.11372364312410355, 0.06981399655342102, -0.07629182189702988, -0.2123003751039505, 0.04285382479429245, -0.016820255666971207, 0.03909798339009285, -0.0029792687855660915, -0.20618098974227905, 0.0621783509850502, 0.0831117331981659, -0.026753999292850494, 0.13923871517181396, -0.21340233087539673, -0.0825592651963234, 0.13777415454387665, 0.07395491003990173, 0.10503546893596649, -0.12590692937374115, -0.016549155116081238, -0.12780322134494781, -0.21788085997104645, 0.06327305734157562, -0.1830204874277115, 0.13172882795333862, -0.021193431690335274, 0.05429168790578842, -0.01993340440094471, -0.04661507532000542, 0.11955579370260239, 0.05147730931639671, 0.06692346185445786, -0.007625270169228315, -0.05650128424167633, 0.2661406397819519, -0.09123608469963074, 0.10563475638628006, -0.10592949390411377, 0.018306022509932518, -0.07080894708633423, -0.02143767848610878, -0.013748189434409142, 0.10524097084999084, -0.02551584132015705, -0.08369525521993637, -0.08387172967195511, 0.061126384884119034, 0.10002102702856064, 0.03653820604085922, 0.11198090016841888, 0.016934221610426903, 0.11228218674659729, 0.10236075520515442, 0.05692965164780617, 0.003910216037184, -0.08974990248680115, 0.048672012984752655, -0.028200767934322357, 0.07766973227262497, -0.11963281780481339, 0.07697786390781403, 0.07319308817386627, -0.0313754640519619, 0.15375898778438568, 0.1009630411863327, -0.04796765744686127, 0.05626785382628441, 0.06237348914146423, -0.11863353848457336, -0.016004620119929314, 0.07088501751422882, -0.011924860998988152, -0.11145918816328049, 0.08513505011796951, 0.16074149310588837, -0.061819080263376236, -0.034080855548381805, 0.024500207975506783, 0.001354442909359932, -0.11199375987052917, 0.09376619011163712, 0.011485476978123188, 0.05247068777680397, -0.07465343922376633, 0.020073095336556435, 0.05934007838368416, -0.017418188974261284, -0.026417378336191177, 0.06332754343748093, -0.16900399327278137, -0.09804090112447739, -0.0025330616626888514, 0.1656489372253418, 0.012751223519444466, -0.02378147467970848, -0.11084280163049698, -0.04317422956228256, 0.007658867631107569, 0.13201233744621277, 0.07346931099891663, 0.021261829882860184, -0.011583303101360798, -0.0017767021199688315, -0.08471964299678802, 0.0588686540722847, -0.013231039978563786, 0.059940651059150696, -0.05070722475647926, 0.15971560776233673, -0.05565233528614044, 0.04841689392924309, -0.0457855761051178, 0.0067287408746778965, -0.13429595530033112, 0.0029297012370079756, -0.16509954631328583, 0.05369769036769867, -0.09343095123767853, -0.017913464456796646, -0.023814408108592033, 0.04705383628606796, -0.02641534060239792, 0.051339343190193176, -0.08429174870252609, -0.04250694066286087, -0.006471685133874416, 0.05582008138298988, -0.08713147789239883, -0.04307073727250099, 0.007889616303145885, -0.06238401681184769, 0.09493498504161835, 0.05562083050608635, -0.04491608589887619, -0.003089028410613537, -0.1215607076883316, -0.031464993953704834, 0.07456808537244797, 0.018092408776283264, 0.08659569919109344, -0.09534347057342529, -0.005180424079298973, -0.037257466465234756, 0.018334975466132164, 0.005713983438909054, 0.10741008818149567, -0.0928371399641037, 0.002638478297740221, -0.1070851981639862, -0.06404345482587814, -0.0324203260242939, 0.02800588496029377, 0.12351080775260925, 0.08211226761341095, 0.15270961821079254, -0.03863753750920296, 0.0725446566939354, -0.09801077097654343, -0.012405104003846645, 0.016964485868811607, -0.03325970098376274, -0.06760717183351517, -0.04874314367771149, 0.02787444368004799, -0.051746804267168045, 0.13808955252170563, -0.01964142732322216, 0.0004702591395471245, 0.007247441913932562, -0.019593430683016777, -0.012369501404464245, 0.00015635481395293027, 0.08245343714952469, 0.03787282854318619, -0.03042197786271572, 0.014804705046117306, 0.051362015306949615, 0.08718746155500412, -0.038635753095149994, 0.1514560580253601, 0.14229989051818848, 0.12347166985273361, 0.10512708872556686, -0.03956793248653412, -0.03971010819077492, -0.13256272673606873, -0.03447671979665756, 0.03348103165626526, 0.059064168483018875, 0.000553408928681165, 0.0805598646402359, 0.15416520833969116, -0.12618228793144226, 0.09070947766304016, 0.03446071594953537, -0.09076495468616486, -0.10313484072685242, -0.11572811007499695, -0.046069227159023285, -0.053833480924367905, -0.02103964425623417, -0.08973044902086258, -0.06750509887933731, 0.07766221463680267, 0.027003591880202293, 0.014925691299140453, 0.1675027757883072, -0.14274835586547852, -0.015044862404465675, 0.023416146636009216, -0.0054068854078650475, 0.03171209618449211, 0.008133449591696262, -0.051634687930345535, 0.006499099545180798, -0.021580655127763748, 0.0550762303173542, -0.008672243915498257, 0.09321771562099457, 0.07936717569828033, -0.05264836549758911, -0.09587410092353821, -0.012510442174971104, 0.06031372770667076, 0.004432195331901312, 0.1300424188375473, 0.03434617817401886, -0.03062170371413231, 0.0012896422995254397, 0.09313584119081497, -0.06704102456569672, -0.03388737514615059, -0.1523028016090393, 0.08529062569141388, 0.06186060607433319, -0.013750475831329823, -0.01672590710222721, -0.08267023414373398, -0.01101882103830576, 0.1628890037536621, 0.260330468416214, -0.06682921946048737, 0.035649172961711884, 0.017972951754927635, -0.0014832350425422192, 0.03201710432767868, 0.05652466416358948, 0.07240274548530579, 0.04951480031013489, -0.05771312862634659, -0.006552964448928833, -0.009980607777833939, -0.044502295553684235, -0.14169050753116608, -0.04269261658191681, -0.04360091686248779, -0.019181232899427414, -0.009886489249765873, 0.07836880534887314, -0.11578484624624252, -0.12071137875318527, 0.08093694597482681, -0.09856424480676651, -0.11423473805189133, -0.04235711321234703, 0.025609685108065605, -0.018694013357162476, 0.10350141674280167, -0.03923146799206734, -0.026531409472227097, 0.16200681030750275, -0.027945611625909805, -0.08472567051649094, -0.10737985372543335, 0.09265542030334473, -0.0005227034562267363, 0.1547040194272995, 0.00045052621862851083, 0.04550514742732048, 0.11979984492063522, 0.02109465003013611, -0.07549747824668884, 0.03498661145567894, 0.019441399723291397, -0.054020605981349945, 0.025965115055441856, 0.04419012367725372, -0.07866409420967102, 0.10903417319059372, 0.013516291044652462, -0.09883773326873779, 0.008840514346957207, -0.023497970774769783, -0.048945941030979156, -0.08904168009757996, 0.03238401189446449, -0.08553168177604675, 0.06807319819927216, 0.19520050287246704, -0.04894532635807991, -0.009606093168258667, -0.047891635447740555, 0.02807668037712574, 0.11886828392744064, -0.10785990953445435, -0.14771988987922668, -0.14188489317893982, 0.018480263650417328, -0.007897389121353626, 0.03866935521364212, -0.2252437025308609, -0.08785205334424973, -0.12494554370641708, -0.0399799644947052, -0.12345892935991287, 0.0965573787689209, 0.05448151007294655, 0.03417029231786728, -0.0050529916770756245, -0.19169610738754272, -0.013457839377224445, 0.05682159587740898, -0.1375882625579834, -0.09999566525220871 ]
null
null
transformers
# RuGPT3MediumSumGazeta ## Model description This is the model for abstractive summarization for Russian based on [rugpt3medium_based_on_gpt2](https://huggingface.co/sberbank-ai/rugpt3medium_based_on_gpt2). ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1eR-ev0Y5ISWIwGnzYYoHyGMaSIUz8GTN) ```python import torch from transformers import AutoTokenizer, AutoModelForCausalLM model_name = "IlyaGusev/rugpt3medium_sum_gazeta" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained(model_name) article_text = "..." text_tokens = tokenizer( article_text, max_length=600, add_special_tokens=False, padding=False, truncation=True )["input_ids"] input_ids = text_tokens + [tokenizer.sep_token_id] input_ids = torch.LongTensor([input_ids]) output_ids = model.generate( input_ids=input_ids, no_repeat_ngram_size=4 ) summary = tokenizer.decode(output_ids[0], skip_special_tokens=False) summary = summary.split(tokenizer.sep_token)[1] summary = summary.split(tokenizer.eos_token)[0] print(summary) ``` ## Training data - Dataset: [Gazeta](https://huggingface.co/datasets/IlyaGusev/gazeta) ## Training procedure - Training script: [train.py](https://github.com/IlyaGusev/summarus/blob/master/external/hf_scripts/train.py) - Config: [gpt_training_config.json](https://github.com/IlyaGusev/summarus/blob/master/external/hf_scripts/configs/gpt_training_config.json) ## Eval results * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v1 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **32.4** | 14.3 | 28.0 | 39.7 | **26.4** | 12.1 | 371 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 32.2 | **14.4** | **28.1** | **39.8** | 25.7 | **12.3** | 330 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 26.2 | 7.7 | 21.7 | 33.8 | 18.2 | 4.3 | 244 | * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v2 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **28.7** | **11.1** | 24.4 | **37.3** | **22.7** | **9.4** | 373 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 28.6 | **11.1** | **24.5** | 37.2 | 22.0 | **9.4** | 331 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 24.1 | 6.5 | 19.8 | 32.1 | 16.3 | 3.6 | 242 | Evaluation script: [evaluate.py](https://github.com/IlyaGusev/summarus/blob/master/evaluate.py) Flags: --language ru --tokenize-after --lower
{"language": ["ru"], "license": ["apache-2.0"], "tags": ["causal-lm", "summarization"], "datasets": ["IlyaGusev/gazeta"], "inference": false, "widget": [{"text": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0431\u0430\u0448\u043d\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 324 \u043c\u0435\u0442\u0440\u0430 (1063 \u0444\u0443\u0442\u0430), \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0442\u0430\u043a\u0430\u044f \u0436\u0435 \u0432\u044b\u0441\u043e\u0442\u0430, \u043a\u0430\u043a \u0443 81-\u044d\u0442\u0430\u0436\u043d\u043e\u0433\u043e \u0437\u0434\u0430\u043d\u0438\u044f, \u0438 \u0441\u0430\u043c\u043e\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u0432 \u041f\u0430\u0440\u0438\u0436\u0435. \u0415\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u043d\u043e, \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u043c 125 \u043c\u0435\u0442\u0440\u043e\u0432 (410 \u0444\u0443\u0442\u043e\u0432) \u0441 \u043b\u044e\u0431\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b. \u0412\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u043f\u0440\u0435\u0432\u0437\u043e\u0448\u043b\u0430 \u043c\u043e\u043d\u0443\u043c\u0435\u043d\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0430, \u0441\u0442\u0430\u0432 \u0441\u0430\u043c\u044b\u043c \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u0438\u0440\u0435, \u0438 \u044d\u0442\u043e\u0442 \u0442\u0438\u0442\u0443\u043b \u043e\u043d\u0430 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0430 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 41 \u0433\u043e\u0434\u0430 \u0434\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u0432 \u041d\u044c\u044e-\u0419\u043e\u0440\u043a\u0435 \u0432 1930 \u0433\u043e\u0434\u0443. \u042d\u0442\u043e \u043f\u0435\u0440\u0432\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u043e \u0432\u044b\u0441\u043e\u0442\u044b 300 \u043c\u0435\u0442\u0440\u043e\u0432. \u0418\u0437-\u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0430\u043d\u0442\u0435\u043d\u043d\u044b \u043d\u0430 \u0432\u0435\u0440\u0448\u0438\u043d\u0435 \u0431\u0430\u0448\u043d\u0438 \u0432 1957 \u0433\u043e\u0434\u0443 \u043e\u043d\u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u0448\u0435 \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u043d\u0430 5,2 \u043c\u0435\u0442\u0440\u0430 (17 \u0444\u0443\u0442\u043e\u0432). \u0417\u0430 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u0447\u0438\u043a\u043e\u0432, \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0442\u043e\u0440\u043e\u0439 \u0441\u0430\u043c\u043e\u0439 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u043e\u0439 \u0432\u043e \u0424\u0440\u0430\u043d\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435 \u0432\u0438\u0430\u0434\u0443\u043a\u0430 \u041c\u0438\u0439\u043e.<s>", "example_title": "\u0412\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u044f"}]}
summarization
IlyaGusev/rugpt3medium_sum_gazeta
[ "transformers", "pytorch", "gpt2", "text-generation", "causal-lm", "summarization", "ru", "dataset:IlyaGusev/gazeta", "license:apache-2.0", "autotrain_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #gpt2 #text-generation #causal-lm #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us
RuGPT3MediumSumGazeta ===================== Model description ----------------- This is the model for abstractive summarization for Russian based on rugpt3medium\_based\_on\_gpt2. Intended uses & limitations --------------------------- #### How to use Colab: link Training data ------------- * Dataset: Gazeta Training procedure ------------------ * Training script: URL * Config: gpt\_training\_config.json Eval results ------------ * Train dataset: Gazeta v1 train * Test dataset: Gazeta v1 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 * Train dataset: Gazeta v1 train * Test dataset: Gazeta v2 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 Evaluation script: URL Flags: --language ru --tokenize-after --lower
[ "#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: gpt\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #causal-lm #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n", "#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: gpt\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ 70, 188 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #causal-lm #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #text-generation-inference #region-us \n#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: gpt\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ -0.09073565155267715, 0.11748497188091278, -0.004591652192175388, 0.046358898282051086, 0.08858153969049454, 0.05195655673742294, 0.09708724170923233, 0.16622458398342133, -0.01792297326028347, 0.08958771079778671, 0.12663333117961884, 0.002123309066519141, 0.07569772005081177, 0.22217415273189545, 0.0025088260881602764, -0.22042234241962433, -0.02397025004029274, -0.02582642249763012, -0.12266125530004501, 0.1380469799041748, 0.1138479933142662, -0.09383220970630646, 0.05626779794692993, -0.05037666857242584, -0.07428739964962006, 0.027927281334996223, -0.008816358633339405, -0.0883118137717247, 0.08885867893695831, 0.03776775300502777, 0.04249725118279457, 0.02322465553879738, 0.024774907156825066, -0.2338094860315323, 0.0031922946218401194, 0.028906239196658134, 0.008917692117393017, 0.05236683785915375, 0.10830160975456238, 0.011669950559735298, 0.22147811949253082, -0.09630587697029114, 0.020879657939076424, 0.05718616768717766, -0.1016044095158577, -0.2134663313627243, -0.11009147763252258, 0.06273919343948364, 0.1243533343076706, 0.14042264223098755, -0.04313596338033676, 0.07814885675907135, -0.15971487760543823, 0.047848548740148544, 0.21754783391952515, -0.26153525710105896, -0.08862313628196716, 0.09661802649497986, 0.03410171717405319, 0.08525802940130234, -0.1418372392654419, 0.002018330618739128, 0.05499899014830589, 0.015206887386739254, 0.024284040555357933, -0.04470052197575569, -0.00777331180870533, 0.07958636432886124, -0.1313524693250656, -0.06137925013899803, 0.2699030339717865, 0.03995412960648537, -0.002686131978407502, -0.06389910727739334, 0.002130812034010887, -0.13874834775924683, -0.022486887872219086, -0.01737513579428196, 0.025337282568216324, -0.05912364274263382, -0.03405053913593292, 0.021993953734636307, -0.07167722284793854, -0.11436357349157333, 0.04695874825119972, -0.038599442690610886, 0.048150744289159775, 0.0027601681649684906, -0.0009985530050471425, 0.1128748431801796, -0.029344147071242332, -0.15402540564537048, -0.03274376690387726, -0.04215832054615021, -0.08490351587533951, -0.017318477854132652, 0.018071729689836502, -0.044538408517837524, 0.0925787091255188, 0.17945027351379395, -0.005257101729512215, 0.0551898293197155, 0.028492171317338943, 0.013532173819839954, -0.07191277295351028, 0.14651422202587128, -0.1136186346411705, -0.1505843847990036, -0.05618305504322052, 0.08799035102128983, -0.03751051053404808, 0.015658460557460785, -0.011940974742174149, -0.04354575648903847, 0.06015653535723686, 0.09934987127780914, 0.023638105019927025, 0.008829695172607899, -0.05788666382431984, -0.011937533505260944, -0.051279619336128235, -0.12650901079177856, 0.03143678978085518, 0.017594899982213974, -0.07751253992319107, 0.07124439626932144, -0.022752545773983, -0.06204571574926376, -0.03562174737453461, 0.07576368004083633, -0.06302731484174728, -0.03613635152578354, -0.09441108256578445, -0.07589095830917358, 0.05121085047721863, 0.0061843604780733585, -0.05707249790430069, -0.06211644783616066, -0.1452999860048294, -0.06893376260995865, 0.045960452407598495, -0.10433536022901535, -0.04246734827756882, -0.034885067492723465, -0.08985524624586105, 0.037807535380125046, -0.009279992431402206, 0.10520598292350769, -0.06938759982585907, 0.0799451395869255, 0.039479877799749374, 0.11623702943325043, 0.19661523401737213, 0.02514384314417839, -0.07859832048416138, 0.06343226134777069, -0.13599127531051636, 0.023458734154701233, -0.1337844580411911, 0.0922311395406723, -0.13568256795406342, -0.10398535430431366, 0.020407794043421745, -0.03158833086490631, 0.07028646767139435, 0.1747860461473465, -0.20283547043800354, -0.05849045515060425, 0.18548567593097687, -0.08308316022157669, -0.1359454244375229, 0.12495123594999313, 0.014952772296965122, -0.0019517495529726148, 0.07158061861991882, 0.11273707449436188, 0.14766263961791992, -0.08843854814767838, -0.02311091497540474, -0.022258084267377853, 0.019160237163305283, 0.04885726794600487, 0.1217414140701294, -0.010059398598968983, 0.013580548577010632, 0.031068500131368637, -0.024938728660345078, 0.03295983001589775, -0.08613133430480957, -0.09173654019832611, -0.014713387005031109, -0.06165378540754318, 0.0560879111289978, 0.021325111389160156, -0.018467631191015244, -0.10064089298248291, -0.11305307596921921, -0.12030783295631409, 0.0984748974442482, -0.005700637120753527, 0.002509923418983817, -0.04114098474383354, 0.0883752629160881, -0.03301139920949936, 0.04566533491015434, -0.07895965129137039, -0.022152962163090706, 0.009294533170759678, 0.09110180288553238, -0.006281574722379446, 0.08278048038482666, 0.05659949779510498, -0.01886500045657158, -0.08060327172279358, -0.05537847429513931, -0.05309300497174263, -0.012578492052853107, -0.04642447456717491, -0.20812995731830597, -0.002296881750226021, 0.011933759786188602, 0.12608885765075684, -0.24752819538116455, 0.007481318432837725, 0.061699945479631424, 0.08310715854167938, 0.004091612994670868, 0.014897502027451992, 0.027760136872529984, 0.006444198545068502, -0.03536660969257355, -0.04639793187379837, -0.006677986588329077, -0.043708059936761856, -0.040843673050403595, 0.009199107997119427, -0.023373916745185852, 0.09261912852525711, 0.08257152885198593, -0.031819507479667664, -0.11487539857625961, 0.04248370975255966, -0.06777181476354599, -0.043895233422517776, -0.027538688853383064, -0.039087824523448944, 0.019567187875509262, 0.027043672278523445, 0.09306605905294418, -0.07703707367181778, -0.02151884324848652, 0.012774520553648472, -0.044097043573856354, 0.005092428997159004, 0.17345118522644043, 0.03320601209998131, -0.021247411146759987, 0.11783495545387268, 0.08984259516000748, -0.07727207988500595, 0.18162783980369568, -0.04005591571331024, -0.128812775015831, -0.0495031401515007, 0.0458834283053875, 0.021383292973041534, 0.10051888227462769, -0.0738595649600029, 0.010164511390030384, 0.06309330463409424, 0.008258464746177197, 0.002277340739965439, -0.12610726058483124, -0.05270319804549217, 0.026232972741127014, -0.08640843629837036, 0.017674239352345467, 0.02579549141228199, -0.0009357316885143518, 0.12790371477603912, 0.03279770165681839, -0.024718815460801125, -0.02214709296822548, -0.04263095557689667, -0.09826471656560898, 0.19870628416538239, -0.0682172104716301, -0.19506366550922394, -0.11060398817062378, 0.02188735641539097, -0.02779684215784073, -0.01994139887392521, 0.030387863516807556, -0.1715010702610016, -0.0506381094455719, -0.05673029646277428, 0.027782337740063667, -0.004497979301959276, -0.0056360037997365, -0.07080825418233871, 0.06119293347001076, 0.04249131307005882, -0.07889409363269806, 0.021737653762102127, 0.0035896145273, -0.03704795613884926, 0.062333282083272934, -0.012125569395720959, 0.1361405998468399, 0.12954208254814148, -0.0035205234307795763, 0.035857513546943665, -0.02858222834765911, 0.1840307116508484, -0.13077522814273834, 0.05700187385082245, 0.13471108675003052, 0.08572924882173538, 0.029096238315105438, 0.1626713126897812, 0.02087935246527195, -0.05681196227669716, 0.014593941159546375, 0.047996435314416885, -0.026707923039793968, -0.3118179738521576, -0.03788192570209503, -0.11380477994680405, 0.11089817434549332, 0.08498672395944595, 0.04705071821808815, 0.03751615062355995, 0.049774013459682465, -0.042211588472127914, 0.0017389843706041574, 0.04761991277337074, 0.06998994201421738, 0.10876575857400894, 0.03221817687153816, 0.09967708587646484, -0.070712611079216, -0.03685028851032257, 0.058078583329916, 0.021150117740035057, 0.28640779852867126, -0.01887517049908638, 0.1659238636493683, 0.09607835859060287, 0.08422461897134781, -0.010743171907961369, 0.03853515535593033, 0.008392594754695892, -0.03970063477754593, 0.032411299645900726, -0.08355600386857986, 0.03306698799133301, 0.05783042311668396, 0.004276250954717398, 0.030330413952469826, -0.06471950560808182, -0.03818216919898987, 0.08227681368589401, 0.11708548665046692, 0.08508729934692383, -0.2274048924446106, -0.03828840330243111, 0.030569465830922127, -0.02130183018743992, -0.03408574312925339, 0.051162783056497574, 0.08560630679130554, -0.13638125360012054, 0.09514620155096054, -0.059645846486091614, 0.11584347486495972, 0.02110556699335575, 0.01886715181171894, 0.05412992462515831, 0.04635748639702797, -0.011153014376759529, 0.15582038462162018, -0.27921736240386963, 0.2692393362522125, -0.003545127809047699, 0.03477782383561134, -0.05061586573719978, 0.014494933187961578, 0.02610752359032631, 0.020382162183523178, 0.1323411613702774, -0.014807323925197124, -0.0073686204850673676, -0.13069544732570648, -0.030368100851774216, -0.004464571364223957, 0.04826733469963074, -0.04015662521123886, 0.13446350395679474, -0.04531749337911606, -0.04202874377369881, -0.004401298705488443, -0.024321293458342552, -0.14341890811920166, -0.10630937665700912, 0.06833932548761368, 0.02360956184566021, 0.015818484127521515, -0.0737868919968605, -0.062315527349710464, -0.0627991259098053, 0.20704488456249237, -0.06489568203687668, -0.06480027735233307, -0.1135793998837471, 0.08895808458328247, 0.21307113766670227, -0.07286489754915237, 0.014687320217490196, 0.0168868787586689, 0.0923675149679184, 0.027696924284100533, 0.006046190392225981, 0.05156485736370087, -0.054524216800928116, -0.19211922585964203, -0.036286361515522, 0.17186717689037323, -0.023413488641381264, 0.08539871126413345, -0.012001481838524342, 0.043370265513658524, -0.06178552284836769, -0.1055208072066307, 0.031069161370396614, -0.015683313831686974, -0.0013353271642699838, 0.04757292941212654, -0.051179513335227966, -0.024356117472052574, -0.07045978307723999, -0.09267953783273697, 0.1472962349653244, 0.2511126399040222, -0.0884852409362793, 0.07957552373409271, 0.007727081421762705, -0.0570068284869194, -0.20403610169887543, 0.03176426514983177, 0.018191788345575333, 0.04044003784656525, 0.010489464737474918, -0.1431690901517868, 0.013409256935119629, 0.09074185788631439, -0.0069559491239488125, 0.14486445486545563, -0.32844486832618713, -0.09995652735233307, 0.040763504803180695, 0.002129855565726757, -0.06739774346351624, -0.16268998384475708, -0.06284426152706146, -0.0571463480591774, -0.10014301538467407, -0.037451326847076416, -0.07014670968055725, 0.10167667269706726, -0.07831255346536636, 0.01923978328704834, 0.038125403225421906, -0.08125786483287811, 0.18205739557743073, -0.02130776084959507, 0.04061894863843918, -0.045974474400281906, 0.011796094477176666, 0.15788619220256805, -0.06163349002599716, 0.11705685406923294, -0.1367463618516922, 0.020414793863892555, -0.14409863948822021, -0.03951473906636238, -0.09524701535701752, 0.003972608596086502, -0.06595449149608612, -0.037319622933864594, -0.09464818239212036, 0.06869257241487503, 0.06267574429512024, -0.01109185442328453, 0.019405540078878403, -0.05590733140707016, 0.1372770518064499, 0.06668228656053543, 0.0997745618224144, -0.012973235920071602, -0.1628124713897705, 0.05087411031126976, 0.023492328822612762, 0.032805196940898895, -0.2095271646976471, 0.017222771421074867, 0.16646596789360046, 0.032588742673397064, 0.10190809518098831, 0.04605565592646599, -0.10793663561344147, -0.02759329229593277, 0.10745079815387726, -0.09838850051164627, -0.07016360014677048, -0.05966188386082649, -0.01683434657752514, -0.1546858549118042, -0.036372002214193344, 0.05846831202507019, -0.09061191976070404, 0.009075446985661983, 0.028569672256708145, 0.037065912038087845, -0.04795374721288681, 0.25237181782722473, 0.05829159915447235, 0.1044565737247467, -0.08887771517038345, 0.024123523384332657, 0.08213534951210022, -0.08504951000213623, 0.01248476654291153, 0.16032002866268158, -0.07558707892894745, -0.07315865159034729, 0.07720352709293365, 0.11775277554988861, 0.0027455429080873728, -0.029335325583815575, -0.12331843376159668, -0.14181466400623322, 0.08715418726205826, 0.015597114339470863, 0.03853193297982216, 0.01889905147254467, 0.017835550010204315, -0.029690086841583252, -0.08979029953479767, 0.17640428245067596, 0.12017790228128433, 0.0444369874894619, -0.10865531116724014, 0.07243907451629639, -0.02205411158502102, 0.04865994304418564, -0.02734650857746601, 0.020973965525627136, -0.1159612163901329, 0.04995157569646835, -0.15288543701171875, -0.01999748684465885, -0.015385566279292107, -0.02317364141345024, -0.03039419651031494, -0.011375431902706623, -0.060430459678173065, 0.0013051830464974046, -0.09228208661079407, -0.04655541107058525, -0.03736313804984093, 0.07935889810323715, -0.13190026581287384, -0.03302871808409691, 0.036175306886434555, -0.07193823903799057, 0.0503593273460865, -0.013805008493363857, 0.00696673383936286, -0.008977347053587437, -0.07580593973398209, -0.0006300843670032918, -0.008402951993048191, 0.020406950265169144, 0.038417186588048935, -0.13359062373638153, 0.040240827947854996, -0.0320901982486248, -0.008407065644860268, 0.06354831159114838, -0.1332121640443802, -0.13590611517429352, 0.000976327050011605, -0.08468375355005264, -0.12231117486953735, -0.02285614423453808, 0.0710621327161789, 0.07753515243530273, -0.009890624321997166, 0.16157342493534088, -0.11033383756875992, 0.08538087457418442, -0.22258873283863068, -0.016490867361426353, -0.02298591658473015, -0.04103846848011017, -0.05448712036013603, -0.0266072079539299, 0.09519414603710175, -0.09002545475959778, 0.10529589653015137, 0.01519709825515747, 0.03359128534793854, 0.05526183545589447, -0.0530136302113533, 0.039210498332977295, 0.04393036663532257, 0.16083258390426636, 0.050576839596033096, -0.026246413588523865, -0.004452913999557495, -0.006391451228410006, 0.04354851692914963, 0.01352321170270443, 0.1346592754125595, 0.15287207067012787, 0.07338499277830124, 0.059440113604068756, 0.0018106269417330623, -0.12354882806539536, -0.0649690330028534, 0.08553128689527512, -0.06058759614825249, 0.08479868620634079, -0.007561146281659603, 0.09867042303085327, 0.23000672459602356, -0.18125930428504944, 0.06949304044246674, -0.07853775471448898, -0.08699735254049301, -0.061605650931596756, -0.09342452138662338, -0.09753718972206116, -0.1788463592529297, 0.021584127098321915, -0.11222712695598602, 0.04915556684136391, 0.07485127449035645, 0.054721031337976456, -0.02678598277270794, 0.163405179977417, 0.07035437971353531, -0.048539575189352036, 0.1000693291425705, 0.019774574786424637, -0.00018108704534824938, -0.011743192560970783, 0.03396867960691452, 0.025344373658299446, -0.08488184213638306, 0.010343339294195175, 0.0044820732437074184, -0.05303766205906868, 0.04012612998485565, -0.013980685733258724, -0.08641643077135086, 0.014772511087357998, 0.015448736026883125, 0.09082140773534775, 0.07214824110269547, 0.016839470714330673, -0.003561684163287282, -0.025483889505267143, 0.19676287472248077, -0.06079722195863724, -0.11997798085212708, -0.09590218961238861, 0.18535099923610687, 0.056629478931427, 0.0064657945185899734, -0.037380293011665344, -0.0750783383846283, -0.020829403772950172, 0.2317812144756317, 0.24355347454547882, 0.00894197914749384, -0.045239340513944626, 0.002126657869666815, 0.0011337479809299111, 0.007466173730790615, 0.0843416303396225, 0.08529549092054367, 0.1326824277639389, -0.055260416120290756, 0.01770111545920372, -0.0469164103269577, -0.03983651474118233, -0.07532627880573273, 0.12533703446388245, 0.06896062195301056, -0.013921737670898438, -0.016852227970957756, 0.14332984387874603, -0.018660953268408775, -0.005068746395409107, 0.06735046952962875, -0.18913255631923676, -0.16743485629558563, -0.04975234717130661, 0.09056869894266129, 0.0021166340447962284, 0.04273117333650589, -0.02189042419195175, -0.025875035673379898, 0.07233315706253052, 0.004371917340904474, -0.07302337139844894, -0.16529230773448944, 0.09707696735858917, 0.020810680463910103, 0.17988573014736176, -0.0318218395113945, 0.07024027407169342, 0.14036762714385986, -0.046185608953237534, -0.12358608841896057, 0.05354328453540802, 0.12927772104740143, -0.11345183849334717, 0.06096990033984184, 0.09081656485795975, -0.019316572695970535, 0.09161534905433655, 0.08091878890991211, -0.02290438488125801, -0.041159678250551224, -0.002163441851735115, 0.03506218641996384, -0.11290987581014633, 0.07858135551214218, -0.051831625401973724, 0.11733633279800415, 0.2101942002773285, -0.09851735085248947, -0.007459244225174189, -0.07139655947685242, 0.06609363853931427, 0.04704292118549347, 0.09999285638332367, 0.01176199596375227, -0.192769393324852, 0.001994139514863491, -0.002356932731345296, 0.053825315088033676, -0.2597399353981018, -0.04912235960364342, -0.00908765196800232, -0.01922067068517208, -0.07906512171030045, 0.1482948511838913, 0.05317780002951622, 0.04173033684492111, -0.01777801476418972, -0.1635618358850479, 0.0019041181076318026, 0.15290598571300507, -0.17596487700939178, -0.05494872108101845 ]
null
null
transformers
# RuT5TelegramHeadlines ## Model description Based on [rut5-base](https://huggingface.co/cointegrated/rut5-base) model ## Intended uses & limitations #### How to use ```python from transformers import AutoTokenizer, T5ForConditionalGeneration model_name = "IlyaGusev/rut5_base_headline_gen_telegram" tokenizer = AutoTokenizer.from_pretrained(model_name) model = T5ForConditionalGeneration.from_pretrained(model_name) article_text = "..." input_ids = tokenizer( [article_text], max_length=600, add_special_tokens=True, padding="max_length", truncation=True, return_tensors="pt" )["input_ids"] output_ids = model.generate( input_ids=input_ids )[0] headline = tokenizer.decode(output_ids, skip_special_tokens=True) print(headline) ``` ## Training data - Dataset: [ru_all_split.tar.gz](https://www.dropbox.com/s/ykqk49a8avlmnaf/ru_all_split.tar.gz) ## Training procedure - Training script: [train.py](https://github.com/IlyaGusev/summarus/blob/master/external/hf_scripts/train.py)
{"language": ["ru"], "license": "apache-2.0", "tags": ["summarization"], "widget": [{"text": "\u041a\u043e\u043c\u0438\u0441\u0441\u0438\u044f \u0421\u043e\u0432\u0435\u0442\u0430 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0435 \u0438 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044e \u0441\u043e \u0421\u041c\u0418 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e \u0441 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438 \u0432\u0435\u0434\u043e\u043c\u0441\u0442\u0432\u0430\u043c\u0438 \u0434\u0443\u043c\u0430\u0435\u0442 \u043d\u0430\u0434 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a Google \u0438 Facebook. \u041e\u0431 \u044d\u0442\u043e\u043c \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u0422\u0410\u0421\u0421 \u043f\u0440\u0435\u0434\u0441\u0435\u0434\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u0438\u0441\u0441\u0438\u0438 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041f\u0443\u0448\u043a\u043e\u0432. \u00ab\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u043e \u043b\u0438\u043d\u0438\u0438 \u041e\u042d\u0421\u0420 [\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0438 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f] \u0432\u0435\u0434\u0435\u0442\u0441\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0439 \u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438, \u043e\u0434\u043d\u0430\u043a\u043e \u0440\u0430\u0431\u043e\u0442\u0430 \u043d\u0430\u0434 \u043d\u0435\u0439 \u0435\u0449\u0435 \u043d\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430. \u0412 \u044d\u0442\u0438\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u043c\u044b \u0438\u0441\u0445\u043e\u0434\u0438\u043c \u0438\u0437 \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u0441\u0430\u043c\u0430\u044f \u0440\u0430\u0437\u0443\u043c\u043d\u0430\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u044f - \u043d\u0430\u0447\u0430\u0442\u044c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430, \u043d\u0435 \u0434\u043e\u0436\u0438\u0434\u0430\u044f\u0441\u044c \u043a\u043e\u043d\u0432\u0435\u043d\u0446\u0438\u0438\u00bb, \u2014 \u043f\u043e\u044f\u0441\u043d\u0438\u043b \u0441\u0435\u043d\u0430\u0442\u043e\u0440. \u041f\u0443\u0448\u043a\u043e\u0432 \u043e\u0442\u043c\u0435\u0442\u0438\u043b, \u0447\u0442\u043e \u043f\u043e \u0442\u0430\u043a\u043e\u043c\u0443 \u043f\u0443\u0442\u0438 \u043f\u043e\u0448\u043b\u0438 \u0435\u0449\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0430\u043d, \u0432 \u0447\u0438\u0441\u043b\u0435 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0424\u0440\u0430\u043d\u0446\u0438\u044f, \u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f \u0438 \u0422\u0443\u0440\u0446\u0438\u044f. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0432\u0430\u0436\u043d\u043e \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0432 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u0435 \u041c\u0438\u043d\u0444\u0438\u043d, \u0424\u041d\u0421, \u041c\u0418\u0414 \u0420\u0424 \u0438 \u0420\u043e\u0441\u043a\u043e\u043c\u043d\u0430\u0434\u0437\u043e\u0440. \u00ab\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u043d\u0435 \u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0443\u044e\u0442 \u0443 \u043d\u0430\u0441 \u0441\u0435\u0439\u0447\u0430\u0441 \u043a\u0430\u043a \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u043e\u0442\u043a\u0440\u043e\u044e\u0442 \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0441\u0432\u043e\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u00ab\u043f\u0440\u0438\u0437\u0435\u043c\u043b\u0435\u043d\u0438\u0438\u00bb, \u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0435\u0442 \u0432\u043e\u043f\u0440\u043e\u0441: \u043a\u0430\u043a \u0438\u0445 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043d\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438 \u0420\u043e\u0441\u0441\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0441\u0435\u0439\u0447\u0430\u0441 \u043d\u0435\u0442, \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u0430\u0448\u0438\u043c \u043d\u0430\u043b\u043e\u0433\u043e\u0432\u044b\u043c \u0440\u0435\u0436\u0438\u043c\u043e\u043c. \u041c\u044b \u0441\u0435\u0439\u0447\u0430\u0441 \u043f\u0440\u043e\u0434\u0443\u043c\u044b\u0432\u0430\u0435\u043c, \u043a\u0430\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u044d\u0442\u0443 \u0432\u0437\u0430\u0438\u043c\u043e\u0441\u0432\u044f\u0437\u044c\u00bb, \u2014 \u0441\u043a\u0430\u0437\u0430\u043b \u041f\u0443\u0448\u043a\u043e\u0432, \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044f, \u0447\u0442\u043e \u0432\u043e\u043f\u0440\u043e\u0441 \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0435 \u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0432 \u0447\u0430\u0441\u0442\u0438 \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043a\u0440\u0443\u043f\u043d\u044b\u0445 IT-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u00ab\u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u0439 \u0441\u0442\u0430\u0434\u0438\u0438 \u0438\u0437\u0443\u0447\u0435\u043d\u0438\u044f\u00bb. \u0421\u0430\u043c \u0441\u0435\u043d\u0430\u0442\u043e\u0440 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u0437\u0430 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u043d\u043e\u0439 \u0441\u0442\u0430\u0432\u043a\u0438 \u043d\u0430\u043b\u043e\u0433\u0430 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u043f\u0440\u0438\u0431\u044b\u043b\u0438 IT-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u043d\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438 \u0441\u0442\u0440\u0430\u043d\u044b. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c, \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u043b \u043e\u043d, \u043e\u0434\u043d\u0430 \u0438\u0437 \u0437\u0430\u0434\u0430\u0447 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043a\u043b\u044e\u0447\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u043e\u0434\u0441\u0447\u0435\u0442\u0435 \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0439 \u0431\u0430\u0437\u044b. \u0421\u0435\u0439\u0447\u0430\u0441 \u043a\u0440\u0443\u043f\u043d\u044b\u0435 \u0418\u0422-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0442\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043e \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0431\u044b\u043b\u0438. \u041e\u0434\u043d\u0430\u043a\u043e \u0420\u043e\u0441\u0441\u0438\u0438 \u043d\u0443\u0436\u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u043e\u0434\u0441\u0447\u0435\u0442\u0430 \u0438\u0445 \u0434\u043e\u0445\u043e\u0434\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0438\u0445 \u00ab\u0440\u0435\u0430\u043b\u044c\u043d\u0443\u044e \u043d\u0430\u043b\u043e\u0433\u043e\u043e\u0431\u043b\u0430\u0433\u0430\u0435\u043c\u0443\u044e \u0431\u0430\u0437\u0443\u00bb, \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u041f\u0443\u0448\u043a\u043e\u0432. (https://www.gazeta.ru/tech/news/2021/12/17/n_17024239.shtml)", "example_title": "\u041d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u043e \u043d\u0430\u043b\u043e\u0433\u0438 \u0432 IT"}, {"text": "\u041f\u0435\u0440\u0432\u0443\u044e \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0443, \u0443 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0431\u043e\u043b\u0435\u0435 \u0442\u044b\u0441\u044f\u0447\u0438 \u043d\u043e\u0433, \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043b\u0438 \u0432 \u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u0438\u0445 \u043f\u0435\u0449\u0435\u0440\u0430\u0445 \u0431\u0438\u043e\u043b\u043e\u0433\u0438, \u0438\u0437\u0443\u0447\u0430\u0432\u0448\u0438\u0435 \u0442\u0430\u043c \u043f\u043e\u0434\u0437\u0435\u043c\u043d\u044b\u0435 \u0432\u043e\u0434\u044b. \u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0439 \u0440\u0435\u043a\u043e\u0440\u0434\u0441\u043c\u0435\u043d\u043a\u043e\u0439 \u043f\u043e \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u043d\u043e\u0433 \u0431\u044b\u043b\u0430 700-\u043d\u043e\u0433\u0430\u044f \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0430. \u041d\u043e\u0432\u044b\u0439 \u0432\u0438\u0434 \u0438\u043c\u0435\u0435\u0442 \u0434\u043b\u0438\u043d\u043d\u043e\u0435 \u0442\u043e\u043d\u043a\u043e\u0435 \u0442\u0435\u043b\u043e, \u043f\u043e\u0445\u043e\u0436\u0435\u0435 \u043d\u0430 \u043d\u0438\u0442\u044c, \u0438 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0441\u0442\u0435\u0439, \u043f\u043e-\u0432\u0438\u0434\u0438\u043c\u043e\u043c\u0443, \u0434\u0430\u0435\u0442 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0432 \u0442\u0440\u0443\u0434\u043d\u043e\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u0430 \u2014 \u0443\u0447\u0435\u043d\u044b\u0435 \u043f\u043e\u043b\u0430\u0433\u0430\u044e\u0442, \u0442\u0430\u043a\u0430\u044f \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0430 \u043c\u043e\u0436\u0435\u0442 \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f \u043f\u043e \u0442\u0440\u0435\u0449\u0438\u043d\u0430\u043c \u0432 \u043a\u0430\u043c\u043d\u044f\u0445. \u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 \u0441\u0432\u043e\u0438\u043c\u0438 \u043e\u0433\u0440\u043e\u043c\u043d\u044b\u043c\u0438 \u0438 \u0436\u0443\u0442\u043a\u043e\u0432\u0430\u0442\u044b\u043c\u0438 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u043c\u0438 \u0432\u0440\u043e\u0434\u0435 25-\u0441\u0430\u043d\u0442\u0438\u043c\u0435\u0442\u0440\u043e\u0432\u044b\u0445 \u043f\u0430\u0443\u043a\u043e\u0432. \u0422\u0435\u043f\u0435\u0440\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u043f\u0443\u0433\u0430\u044e\u0449\u0438\u0445 \u0447\u043b\u0435\u043d\u0438\u0441\u0442\u043e\u043d\u043e\u0433\u0438\u0445 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0441\u044f \u0441\u0430\u043c\u043e\u0439 \u00ab\u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0433\u043e\u0439\u00bb \u0432 \u043c\u0438\u0440\u0435 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u043e\u0439, \u0443 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0431\u043e\u043b\u0435\u0435 \u0442\u044b\u0441\u044f\u0447\u0438 \u043d\u043e\u0433. \u041d\u0435\u043e\u0431\u044b\u0447\u043d\u043e\u0435 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043b\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438\u0437 \u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0438 \u0438 \u0421\u0428\u0410 \u0432 \u043f\u0435\u0449\u0435\u0440\u0430\u0445 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434\u0435 \u0441\u0442\u0440\u0430\u043d\u044b. \u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0443 \u0443\u0447\u0435\u043d\u044b\u0435 \u043e\u043f\u0438\u0441\u0430\u043b\u0438 \u0432 \u0441\u0442\u0430\u0442\u044c\u0435 \u0432 \u0436\u0443\u0440\u043d\u0430\u043b\u0435 Scientific Reports. \u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043e\u0446\u0435\u043d\u043a\u043e\u0439 \u0432\u043e\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u0434\u0437\u0435\u043c\u043d\u044b\u0445 \u0432\u043e\u0434 \u043d\u0430 \u043e\u043a\u0440\u0443\u0436\u0430\u044e\u0449\u0443\u044e \u0441\u0440\u0435\u0434\u0443 \u0432 \u0437\u043e\u043d\u0435 \u0434\u043e\u0431\u044b\u0447\u0438 \u043f\u043e\u043b\u0435\u0437\u043d\u044b\u0445 \u0438\u0441\u043a\u043e\u043f\u0430\u0435\u043c\u044b\u0445 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434\u0435 \u0441\u0442\u0440\u0430\u043d\u044b, \u043a\u043e\u0433\u0434\u0430 \u043d\u0430\u0442\u043a\u043d\u0443\u043b\u0438\u0441\u044c \u043d\u0430 \u043d\u043e\u0432\u044b\u0439 \u0432\u0438\u0434 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u0435\u043a. \u0412 \u043e\u0442\u043b\u0438\u0447\u0438\u0435 \u043e\u0442 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u0430 \u0441\u043e\u0440\u043e\u0434\u0438\u0447\u0435\u0439, \u0436\u0438\u0432\u0443\u0449\u0438\u0445 \u043d\u0430 \u043f\u043e\u0432\u0435\u0440\u0445\u043d\u043e\u0441\u0442\u0438, \u044d\u0442\u0438 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0438 \u043e\u0431\u0438\u0442\u0430\u043b\u0438 \u0432 \u043f\u0435\u0449\u0435\u0440\u0430\u0445 \u043d\u0430 \u0433\u043b\u0443\u0431\u0438\u043d\u0435 \u0434\u043e 60 \u043c\u0435\u0442\u0440\u043e\u0432. \u041d\u043e\u0432\u044b\u0439 \u0432\u0438\u0434 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u043d\u0430\u0437\u0432\u0430\u043b\u0438 Eumillipes persephone, \u0432 \u0447\u0435\u0441\u0442\u044c \u041f\u0435\u0440\u0441\u0435\u0444\u043e\u043d\u044b \u2014 \u0434\u0440\u0435\u0432\u043d\u0435\u0433\u0440\u0435\u0447\u0435\u0441\u043a\u043e\u0439 \u0431\u043e\u0433\u0438\u043d\u0438 \u043f\u043e\u0434\u0437\u0435\u043c\u043d\u043e\u0433\u043e \u043c\u0438\u0440\u0430. \u0423 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0438 \u043e\u043a\u0430\u0437\u0430\u043b\u043e\u0441\u044c 1306 \u043d\u043e\u0433 \u2014 \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c \u0443 \u043b\u044e\u0431\u043e\u0433\u043e \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0432\u0438\u0434\u0430. \u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0439 \u0440\u0435\u043a\u043e\u0440\u0434\u0441\u043c\u0435\u043d\u043a\u043e\u0439 \u0431\u044b\u043b\u0430 \u043a\u0430\u043b\u0438\u0444\u043e\u0440\u043d\u0438\u0439\u0441\u043a\u0430\u044f Illacme plenipes, \u0443 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043d\u0430\u0441\u0447\u0438\u0442\u044b\u0432\u0430\u043b\u043e\u0441\u044c \u0434\u043e 750 \u043d\u043e\u0433. \u00ab\u042d\u0442\u0438 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0435 \u0431\u044b\u043b\u0438 \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043a\u043e \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b, \u2014 \u0433\u043e\u0432\u043e\u0440\u0438\u0442 \u0431\u0438\u043e\u043b\u043e\u0433 \u0411\u0440\u0443\u043d\u043e \u0411\u0443\u0437\u0430\u0442\u0442\u043e. \u2014 \u041a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u044f \u043f\u043e\u043d\u044f\u043b, \u043a\u0430\u043a\u043e\u0439 \u0434\u043b\u0438\u043d\u044b \u043e\u043d\u0438 \u0431\u044b\u043b\u0438... \u0421\u0442\u0430\u043b\u043e \u044f\u0441\u043d\u043e, \u0447\u0442\u043e \u044d\u0442\u043e \u0447\u0442\u043e-\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u043d\u043e\u0432\u043e\u0435\u00bb. \u0423 \u0415. persephone \u043d\u0438\u0442\u0435\u0432\u0438\u0434\u043d\u043e\u0435 \u0442\u0435\u043b\u043e \u0434\u043b\u0438\u043d\u043e\u0439 \u043e\u043a\u043e\u043b\u043e 9,5 \u0441\u043c \u0438 \u0448\u0438\u0440\u0438\u043d\u043e\u0439 \u0432\u0441\u0435\u0433\u043e \u043c\u0438\u043b\u043b\u0438\u043c\u0435\u0442\u0440, \u0441\u043e\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0438\u0437 330 \u0441\u0435\u0433\u043c\u0435\u043d\u0442\u043e\u0432, \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0435 \u043d\u043e\u0433\u0438 \u0438 \u043a\u043e\u043d\u0443\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u0430\u044f \u0433\u043e\u043b\u043e\u0432\u0430. \u041a\u0430\u043a \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0435, \u0436\u0438\u0432\u0443\u0449\u0438\u0435 \u0432 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0439 \u0442\u0435\u043c\u043d\u043e\u0442\u0435, \u044d\u0442\u0438 \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0438 \u0431\u043b\u0435\u0434\u043d\u044b \u0438 \u0441\u043b\u0435\u043f\u044b. \u042d\u043d\u0442\u043e\u043c\u043e\u043b\u043e\u0433 \u041f\u043e\u043b \u041c\u0430\u0440\u0435\u043a \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0435\u0442 \u0435\u0435 \u0441 \u0431\u0435\u043b\u043e\u0439 \u043d\u0438\u0442\u044c\u044e, \u0432\u044b\u0434\u0435\u0440\u043d\u0443\u0442\u043e\u0439 \u0438\u0437 \u0440\u0443\u0431\u0430\u0448\u043a\u0438. \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043d\u043e\u0433, \u0443\u0447\u0435\u043d\u044b\u043c \u043f\u0440\u0438\u0448\u043b\u043e\u0441\u044c \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u043d\u044f\u0442\u044c \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0443 \u0432 \u0432\u044b\u0441\u043e\u043a\u043e\u043c \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u0437\u0430\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c \u043d\u0430 \u0444\u043e\u0442\u043e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u0441\u044f\u0442\u043e\u043a \u043d\u043e\u0433 \u0434\u0440\u0443\u0433\u0438\u043c \u0446\u0432\u0435\u0442\u043e\u043c. (https://www.gazeta.ru/science/2021/12/17_a_14325355.shtml)", "example_title": "\u041d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u043e \u043c\u043d\u043e\u0433\u043e\u043d\u043e\u0436\u043a\u0443"}, {"text": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0431\u0430\u0448\u043d\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 324 \u043c\u0435\u0442\u0440\u0430 (1063 \u0444\u0443\u0442\u0430), \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0442\u0430\u043a\u0430\u044f \u0436\u0435 \u0432\u044b\u0441\u043e\u0442\u0430, \u043a\u0430\u043a \u0443 81-\u044d\u0442\u0430\u0436\u043d\u043e\u0433\u043e \u0437\u0434\u0430\u043d\u0438\u044f, \u0438 \u0441\u0430\u043c\u043e\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u0432 \u041f\u0430\u0440\u0438\u0436\u0435. \u0415\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u043d\u043e, \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u043c 125 \u043c\u0435\u0442\u0440\u043e\u0432 (410 \u0444\u0443\u0442\u043e\u0432) \u0441 \u043b\u044e\u0431\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b. \u0412\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u043f\u0440\u0435\u0432\u0437\u043e\u0448\u043b\u0430 \u043c\u043e\u043d\u0443\u043c\u0435\u043d\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0430, \u0441\u0442\u0430\u0432 \u0441\u0430\u043c\u044b\u043c \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u0438\u0440\u0435, \u0438 \u044d\u0442\u043e\u0442 \u0442\u0438\u0442\u0443\u043b \u043e\u043d\u0430 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0430 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 41 \u0433\u043e\u0434\u0430 \u0434\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u0432 \u041d\u044c\u044e-\u0419\u043e\u0440\u043a\u0435 \u0432 1930 \u0433\u043e\u0434\u0443. \u042d\u0442\u043e \u043f\u0435\u0440\u0432\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u043e \u0432\u044b\u0441\u043e\u0442\u044b 300 \u043c\u0435\u0442\u0440\u043e\u0432. \u0418\u0437-\u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0430\u043d\u0442\u0435\u043d\u043d\u044b \u043d\u0430 \u0432\u0435\u0440\u0448\u0438\u043d\u0435 \u0431\u0430\u0448\u043d\u0438 \u0432 1957 \u0433\u043e\u0434\u0443 \u043e\u043d\u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u0448\u0435 \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u043d\u0430 5,2 \u043c\u0435\u0442\u0440\u0430 (17 \u0444\u0443\u0442\u043e\u0432). \u0417\u0430 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u0447\u0438\u043a\u043e\u0432, \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0442\u043e\u0440\u043e\u0439 \u0441\u0430\u043c\u043e\u0439 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u043e\u0439 \u0432\u043e \u0424\u0440\u0430\u043d\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435 \u0432\u0438\u0430\u0434\u0443\u043a\u0430 \u041c\u0438\u0439\u043e.", "example_title": "\u0412\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u044f"}]}
summarization
IlyaGusev/rut5_base_headline_gen_telegram
[ "transformers", "pytorch", "t5", "text2text-generation", "summarization", "ru", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #t5 #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# RuT5TelegramHeadlines ## Model description Based on rut5-base model ## Intended uses & limitations #### How to use ## Training data - Dataset: ru_all_split.URL ## Training procedure - Training script: URL
[ "# RuT5TelegramHeadlines", "## Model description\n\nBased on rut5-base model", "## Intended uses & limitations", "#### How to use", "## Training data\n\n- Dataset: ru_all_split.URL", "## Training procedure\n\n- Training script: URL" ]
[ "TAGS\n#transformers #pytorch #t5 #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# RuT5TelegramHeadlines", "## Model description\n\nBased on rut5-base model", "## Intended uses & limitations", "#### How to use", "## Training data\n\n- Dataset: ru_all_split.URL", "## Training procedure\n\n- Training script: URL" ]
[ 62, 9, 11, 9, 5, 15, 8 ]
[ "passage: TAGS\n#transformers #pytorch #t5 #text2text-generation #summarization #ru #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# RuT5TelegramHeadlines## Model description\n\nBased on rut5-base model## Intended uses & limitations#### How to use## Training data\n\n- Dataset: ru_all_split.URL## Training procedure\n\n- Training script: URL" ]
[ -0.02060420624911785, 0.04053904861211777, -0.0017695092828944325, 0.07286142557859421, 0.15548820793628693, 0.03976593166589737, 0.09921891987323761, 0.11977134644985199, -0.15424825251102448, -0.03839875012636185, 0.15894699096679688, 0.05371185764670372, 0.054310284554958344, 0.15271838009357452, -0.056481000036001205, -0.28546470403671265, 0.028464673087000847, 0.008593428879976273, -0.013791313394904137, 0.14317739009857178, 0.1699329912662506, -0.015857385471463203, 0.10261774808168411, -0.011524978093802929, -0.1705584079027176, 0.043794550001621246, 0.00586345512419939, -0.09263557940721512, 0.10882191359996796, 0.04961268976330757, 0.11393730342388153, 0.02921159192919731, 0.10189547389745712, -0.19529837369918823, 0.03373341262340546, 0.06925348192453384, -0.07090635597705841, 0.09344104677438736, 0.05370716378092766, -0.03741123154759407, 0.2660898268222809, 0.014756346121430397, -0.0004914748133160174, 0.07752543687820435, -0.12014086544513702, 0.025554178282618523, -0.081160768866539, 0.15227827429771423, 0.13124766945838928, 0.13501301407814026, -0.010602018795907497, 0.05063910782337189, -0.14396555721759796, 0.07600484788417816, 0.14828909933567047, -0.3205340504646301, -0.06321649253368378, 0.11488176137208939, 0.04961182922124863, 0.04515758901834488, -0.08419468253850937, 0.009119651280343533, 0.0754847303032875, 0.07052789628505707, 0.013637141324579716, -0.054986223578453064, -0.1609744429588318, 0.003862757468596101, -0.12476181983947754, -0.017506463453173637, 0.2671957314014435, 0.01750972494482994, -0.009456558153033257, -0.0019746357575058937, -0.06918418407440186, -0.08008386194705963, -0.02632768079638481, -0.02273249439895153, -0.03109966218471527, 0.062082674354314804, 0.011355981230735779, -0.04483558610081673, -0.14856211841106415, -0.044972099363803864, -0.05898529291152954, -0.07826409488916397, 0.04363662376999855, 0.03883863240480423, -0.13398432731628418, 0.13890495896339417, 0.032542940229177475, -0.08754267543554306, 0.017665758728981018, -0.11284750699996948, 0.00474806921556592, -0.034828756004571915, -0.06683394312858582, -0.10823188722133636, 0.07311270385980606, 0.16003558039665222, 0.012048501521348953, 0.03147215396165848, 0.017722127959132195, 0.0936940535902977, -0.05317128449678421, 0.05383647233247757, -0.09523136168718338, -0.0564652681350708, 0.03569158539175987, -0.009657063521444798, -0.034490860998630524, -0.0032107059378176928, -0.12607067823410034, -0.08028445392847061, 0.0008306444506160915, 0.055886659771203995, -0.0034810458309948444, 0.07937374711036682, -0.06481757760047913, -0.03448816016316414, -0.027956241741776466, -0.0662592276930809, -0.049512289464473724, -0.012496188282966614, -0.04085077345371246, 0.019656959921121597, 0.08849453181028366, 0.04364430159330368, -0.09668175131082535, 0.027677487581968307, -0.06258781254291534, -0.026631640270352364, -0.0905628353357315, -0.0544852651655674, 0.018112050369381905, -0.11606091260910034, 0.01576234959065914, -0.13287241756916046, -0.20732589066028595, -0.03561168909072876, 0.08184679597616196, -0.044664543122053146, -0.022135097533464432, -0.05386997014284134, -0.06241538003087044, -0.00073827343294397, -0.002094738418236375, 0.10091791301965714, -0.0385013222694397, 0.03626861795783043, -0.07792195677757263, 0.05546090006828308, -0.09656388312578201, 0.06882155686616898, -0.11313358694314957, -0.023509228602051735, 0.014135366305708885, 0.06375700980424881, -0.03064279817044735, 0.10377849638462067, -0.12639449536800385, -0.07796914130449295, -0.053478725254535675, -0.010067485272884369, 0.030158206820487976, 0.16160881519317627, -0.18540632724761963, -0.00011903258564416319, 0.23136278986930847, -0.09191368520259857, -0.12033087015151978, 0.1068253219127655, -0.044453442096710205, 0.18240253627300262, 0.05576849356293678, 0.15572579205036163, 0.12329378724098206, -0.0428091399371624, 0.05138878524303436, 0.07104477286338806, -0.05568249896168709, -0.06286438554525375, 0.04651947319507599, 0.014366066083312035, -0.050637900829315186, 0.045907698571681976, 0.013335625641047955, 0.05160706490278244, -0.05785784497857094, -0.09019604325294495, -0.03949274122714996, -0.08820661157369614, 0.059980861842632294, -0.004688989836722612, 0.08728209137916565, -0.03509680554270744, -0.08377881348133087, -0.06183669716119766, 0.09373055398464203, 0.007703554350882769, 0.030423108488321304, -0.08198100328445435, 0.03591300547122955, 0.06439224630594254, 0.03268410265445709, -0.15742753446102142, 0.009044046513736248, -0.050730150192976, 0.18797414004802704, 0.05769253522157669, 0.09711706638336182, 0.050463929772377014, -0.020151272416114807, -0.09460868686437607, -0.04246889799833298, 0.007240853272378445, 0.00804996956139803, -0.07521285116672516, -0.1539289951324463, -0.03471510484814644, -0.050743162631988525, 0.05062171071767807, -0.20445430278778076, 0.06517253071069717, -0.014630869030952454, 0.13929308950901031, -0.01070576161146164, 0.06281697750091553, 0.0005183581379242241, 0.03807809203863144, -0.06044589355587959, -0.04870709031820297, 0.0803651437163353, 0.025890249758958817, -0.09036856144666672, 0.008004049770534039, 0.0006594780134037137, 0.13979513943195343, 0.10409408062696457, -0.05561988800764084, -0.08949390798807144, 0.062688447535038, -0.06675063073635101, -0.026196571066975594, -0.039872825145721436, 0.03562893345952034, 0.13873067498207092, -0.00007017109601292759, 0.1179615706205368, -0.026321090757846832, -0.01204010657966137, -0.006104504689574242, -0.08243831992149353, 0.037087999284267426, 0.06314484030008316, 0.06968233734369278, -0.23410820960998535, 0.11060614138841629, 0.1485799103975296, -0.0875333845615387, 0.1139722540974617, -0.024296777322888374, -0.07603606581687927, 0.03724188730120659, 0.03525508567690849, -0.009752264246344566, 0.013275175355374813, -0.037302643060684204, 0.0067721265368163586, 0.04665057361125946, 0.030976617708802223, 0.06398060917854309, -0.13596564531326294, -0.04067828133702278, -0.02695702388882637, -0.014942927286028862, -0.09410887211561203, 0.07624867558479309, -0.042664024978876114, 0.11781886219978333, -0.007689130958169699, -0.08811236172914505, 0.09876280277967453, -0.008091568946838379, -0.10818639397621155, 0.20981119573116302, -0.11120068281888962, -0.2620428204536438, -0.1321684569120407, -0.02632548287510872, 0.0026119849644601345, -0.0035754258278757334, 0.08993876725435257, -0.14858324825763702, -0.03247009962797165, -0.03141797333955765, -0.0326479896903038, -0.055047132074832916, -0.021098535507917404, -0.059685323387384415, 0.10104113072156906, 0.03779240697622299, -0.10128428041934967, -0.0030876134987920523, 0.024477196857333183, -0.05541466176509857, 0.09066931903362274, -0.10766509920358658, 0.05472941696643829, 0.11821254342794418, -0.02646026946604252, 0.031445976346731186, -0.06203814595937729, 0.12030819058418274, -0.05043415725231171, 0.05739818885922432, 0.2037937045097351, -0.02155594527721405, 0.053604427725076675, 0.16127677261829376, -0.01962847076356411, -0.055259209126234055, 0.06768108159303665, -0.026688475161790848, -0.04591016098856926, -0.319077730178833, -0.06116094812750816, -0.11373279988765717, 0.052022166550159454, 0.058735255151987076, 0.06999688595533371, 0.10170720517635345, 0.10135764628648758, 0.005800089333206415, 0.03222880885004997, 0.0162472203373909, 0.0754506066441536, 0.047677043825387955, -0.012308803386986256, 0.12724928557872772, -0.12102947384119034, -0.011859324760735035, 0.08480240404605865, 0.007969233207404613, 0.21849411725997925, 0.015696415677666664, 0.024930624291300774, 0.0876738652586937, 0.22168876230716705, 0.0575254000723362, 0.12143149226903915, 0.022546863183379173, -0.01777789369225502, -0.022658448666334152, -0.005569080356508493, -0.07140962034463882, 0.09543343633413315, -0.07967869937419891, -0.07543762773275375, -0.0778307318687439, 0.04895370081067085, 0.03758859634399414, 0.2688812017440796, 0.095056913793087, -0.2864747643470764, -0.08504777401685715, 0.01736305095255375, -0.0297161266207695, -0.07299630343914032, 0.09033650904893875, 0.04060181975364685, -0.1558752954006195, 0.05214851722121239, -0.04027349129319191, 0.15905430912971497, 0.0753999575972557, 0.03404739499092102, 0.055681437253952026, 0.002998952055349946, 0.0015207839896902442, 0.15689817070960999, -0.34519436955451965, 0.23750163614749908, -0.04167426377534866, 0.0617053285241127, -0.03434142470359802, 0.013606551103293896, 0.0548725500702858, 0.17813818156719208, 0.13339391350746155, 0.0036564182955771685, -0.12612201273441315, -0.010327339172363281, 0.007641581818461418, 0.037690069526433945, 0.05526265129446983, -0.016634158790111542, 0.025238443166017532, -0.08056861907243729, 0.029516572132706642, 0.06674756109714508, -0.00575493648648262, -0.17085695266723633, -0.1449056714773178, 0.009766854345798492, 0.04254908487200737, 0.12369738519191742, -0.08541683852672577, -0.04877125099301338, 0.0958871990442276, 0.21005995571613312, 0.031542811542749405, -0.04331478103995323, -0.14931124448776245, 0.03201783448457718, 0.07028310745954514, -0.07962388545274734, 0.049236975610256195, -0.01984763890504837, 0.033697422593832016, 0.01594090647995472, -0.13218989968299866, 0.08788558095693588, -0.11682547628879547, -0.09213514626026154, -0.04443639516830444, 0.1004297137260437, 0.014516452327370644, 0.02887306734919548, 0.03690144419670105, -0.010402141138911247, -0.07715339213609695, -0.08600600808858871, 0.01686747744679451, -0.005161707755178213, 0.08266530185937881, 0.014270124956965446, -0.1206744834780693, -0.11794167757034302, -0.039028093218803406, -0.04726588726043701, 0.23746860027313232, 0.11355572193861008, -0.0943361446261406, 0.1428135186433792, 0.07804182916879654, -0.08835000544786453, -0.2732338011264801, -0.06054510176181793, 0.0022486415691673756, 0.03934367373585701, 0.01796828955411911, -0.19280074536800385, 0.047684166580438614, -0.010875049978494644, -0.01580955646932125, 0.017911799252033234, -0.29199591279029846, -0.08093823492527008, 0.17839008569717407, 0.012251495383679867, 0.12387772649526596, -0.07915651798248291, -0.004787500947713852, -0.08832904696464539, -0.12734948098659515, 0.032045621424913406, -0.1918470412492752, 0.09972669929265976, -0.028597917407751083, 0.1019570529460907, -0.0276948232203722, -0.03334704041481018, 0.058641981333494186, 0.02281980775296688, -0.000370197172742337, -0.08672640472650528, 0.004583860747516155, 0.1497177928686142, -0.024237779900431633, 0.07780850678682327, -0.11201831698417664, 0.09726680815219879, -0.11704273521900177, -0.009609783999621868, -0.04922133684158325, 0.07797838747501373, -0.024237671867012978, -0.0853077843785286, -0.04811936616897583, 0.029020024463534355, 0.07443881034851074, 0.0022109858691692352, 0.07256725430488586, -0.0041075279004871845, 0.1371193826198578, 0.14771518111228943, 0.11333610117435455, 0.024564340710639954, 0.010647092014551163, -0.07867081463336945, -0.06050483509898186, 0.05934247002005577, -0.17568615078926086, 0.001221996732056141, 0.10455883294343948, -0.03930361941456795, 0.1217954009771347, 0.08134312927722931, -0.008008581586182117, 0.03176875412464142, 0.12498991936445236, -0.13998815417289734, -0.10041274130344391, -0.044468093663454056, 0.02490437589585781, -0.1219974160194397, 0.0686296671628952, 0.13147900998592377, -0.09432219713926315, -0.042833246290683746, -0.00812999065965414, 0.06087334454059601, -0.1558268666267395, 0.10572924464941025, 0.06291860342025757, 0.03538808226585388, -0.0697934478521347, 0.09905143827199936, 0.039011720567941666, -0.02540511265397072, 0.033177006989717484, 0.10176204890012741, -0.18677937984466553, -0.10529854148626328, 0.10086845606565475, 0.06464774906635284, -0.10098059475421906, -0.07925685495138168, -0.07263537496328354, -0.10412165522575378, 0.06572673469781876, 0.10246790945529938, 0.06894951313734055, 0.030752582475543022, -0.08061549812555313, -0.04482360556721687, -0.058153413236141205, 0.03678907826542854, 0.0969853475689888, 0.021112656220793724, -0.1559939980506897, 0.03407544270157814, 0.002241613809019327, 0.08321718126535416, -0.06313913315534592, 0.01905575767159462, -0.11384022980928421, 0.0355646014213562, -0.2540246844291687, -0.018644163385033607, -0.025604281574487686, -0.027142338454723358, -0.031115829944610596, -0.05873402580618858, -0.0568329282104969, 0.04249981790781021, -0.07789315283298492, -0.020295187830924988, -0.029514167457818985, 0.09564891457557678, -0.08905483782291412, 0.023011960089206696, 0.05749000608921051, -0.0174480639398098, 0.07836058735847473, 0.08313416689634323, -0.06850990653038025, 0.09189412742853165, -0.14657500386238098, -0.01268624048680067, 0.05804307013750076, 0.0031607854180037975, 0.024798331782221794, -0.03448479250073433, 0.029171830043196678, 0.019134901463985443, -0.030064944177865982, 0.02145766280591488, 0.034828707575798035, -0.10561563074588776, -0.006263160612434149, -0.09374158084392548, -0.059632472693920135, -0.08558953553438187, 0.021944405511021614, 0.08288171887397766, 0.0931130051612854, 0.17794659733772278, -0.09505145996809006, 0.09038878977298737, -0.09810240566730499, 0.025294611230492592, -0.013473979197442532, -0.05268963426351547, -0.1195487231016159, -0.09013529121875763, 0.03467920422554016, -0.06692277640104294, 0.09663528203964233, -0.010727042332291603, -0.04129461199045181, 0.03661647066473961, -0.012635532766580582, 0.009241072461009026, 0.02509341575205326, 0.22375763952732086, 0.024139247834682465, -0.039420709013938904, -0.08061197400093079, 0.0003520053287502378, 0.010212738998234272, -0.04169917851686478, 0.16045084595680237, 0.11928945034742355, -0.03423740342259407, 0.06882160156965256, -0.039589330554008484, -0.02731727436184883, -0.09163352847099304, -0.018986394628882408, 0.0068429987877607346, 0.019862953573465347, -0.06866122782230377, 0.13733850419521332, 0.22376027703285217, -0.10204355418682098, 0.005968155805021524, -0.07577968388795853, -0.0743061751127243, -0.09390734136104584, -0.12682534754276276, -0.07017645984888077, -0.14438611268997192, 0.01317273173481226, -0.10273117572069168, -0.012670482508838177, 0.10114229470491409, 0.029554149135947227, -0.05371854454278946, 0.12854789197444916, -0.022809496149420738, -0.08166612684726715, 0.07072331756353378, -0.042236071079969406, 0.009176261723041534, -0.04966139420866966, -0.020462308079004288, -0.019151777029037476, -0.022473717108368874, 0.00865285936743021, -0.027723191305994987, -0.017541073262691498, 0.03196753188967705, -0.06988988071680069, -0.04574140906333923, -0.0005327946273609996, 0.06446836143732071, 0.029074301943182945, 0.08736687153577805, 0.05448940396308899, -0.02623004838824272, 0.04351455718278885, 0.2670808434486389, -0.09714272618293762, -0.15949858725070953, -0.16846582293510437, 0.2081272155046463, 0.05510178953409195, -0.01114589348435402, 0.00035040912916883826, -0.04842984303832054, -0.012759477831423283, 0.26817086338996887, 0.3190670311450958, -0.05924646928906441, -0.01702137663960457, -0.0027781836688518524, 0.017722036689519882, 0.03333234041929245, 0.13868534564971924, 0.09760501235723495, 0.0760965421795845, -0.12568321824073792, 0.008946250192821026, -0.025505075231194496, -0.03954537585377693, -0.08451282978057861, 0.08503655344247818, 0.022550931200385094, -0.049293287098407745, -0.016947221010923386, 0.16046547889709473, -0.17602157592773438, -0.07638899236917496, -0.05249730125069618, -0.06725521385669708, -0.1236715167760849, -0.020809629932045937, 0.08293624967336655, 0.028200607746839523, 0.08697327971458435, -0.03212909772992134, -0.007659256923943758, 0.14264844357967377, 0.016559282317757607, -0.07360666990280151, -0.033834170550107956, 0.09155141562223434, -0.09854672849178314, 0.07595672458410263, -0.04950366169214249, 0.01675613597035408, 0.11899159848690033, 0.05056852102279663, -0.0849430039525032, 0.04813399910926819, -0.00263433950021863, 0.08523301035165787, 0.04817310720682144, 0.02280152216553688, -0.029423093423247337, 0.022184208035469055, 0.038667820394039154, -0.1386006474494934, 0.0305525753647089, -0.06506424397230148, 0.008559901267290115, -0.07248006016016006, 0.08839797228574753, -0.03613788262009621, 0.11898104846477509, 0.15580424666404724, -0.09803642332553864, -0.0068683745339512825, -0.09803441911935806, 0.022094424813985825, 0.07748627662658691, -0.07197777926921844, 0.0017134499503299594, -0.08126319199800491, -0.057306159287691116, 0.05071435123682022, 0.011837166734039783, -0.20528116822242737, -0.029692960903048515, -0.09101622551679611, -0.005144560243934393, -0.13541612029075623, 0.1420547515153885, 0.11473825573921204, 0.011663532815873623, 0.015703070908784866, -0.04385411739349365, -0.02420906163752079, 0.07204870134592056, -0.09989900141954422, -0.0923839882016182 ]
null
null
transformers
# RuT5SumGazeta ## Model description This is the model for abstractive summarization for Russian based on [rut5-base](https://huggingface.co/cointegrated/rut5-base). ## Intended uses & limitations #### How to use Colab: [link](https://colab.research.google.com/drive/1re5E26ZIDUpAx1gOCZkbF3hcwjozmgG0) ```python from transformers import AutoTokenizer, T5ForConditionalGeneration model_name = "IlyaGusev/rut5_base_sum_gazeta" tokenizer = AutoTokenizer.from_pretrained(model_name) model = T5ForConditionalGeneration.from_pretrained(model_name) article_text = "..." input_ids = tokenizer( [article_text], max_length=600, add_special_tokens=True, padding="max_length", truncation=True, return_tensors="pt" )["input_ids"] output_ids = model.generate( input_ids=input_ids, no_repeat_ngram_size=4 )[0] summary = tokenizer.decode(output_ids, skip_special_tokens=True) print(summary) ``` ## Training data - Dataset: [Gazeta](https://huggingface.co/datasets/IlyaGusev/gazeta) ## Training procedure - Training script: [train.py](https://github.com/IlyaGusev/summarus/blob/master/external/hf_scripts/train.py) - Config: [t5_training_config.json](https://github.com/IlyaGusev/summarus/blob/master/external/hf_scripts/configs/t5_training_config.json) ## Eval results * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v1 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **32.4** | 14.3 | 28.0 | 39.7 | **26.4** | 12.1 | 371 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 32.2 | **14.4** | **28.1** | **39.8** | 25.7 | **12.3** | 330 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 26.2 | 7.7 | 21.7 | 33.8 | 18.2 | 4.3 | 244 | * Train dataset: **Gazeta v1 train** * Test dataset: **Gazeta v2 test** * Source max_length: **600** * Target max_length: **200** * no_repeat_ngram_size: **4** * num_beams: **5** | Model | R-1-f | R-2-f | R-L-f | chrF | METEOR | BLEU | Avg char length | |:--------------------------|:------|:------|:------|:-------|:-------|:-----|:-----| | [mbart_ru_sum_gazeta](https://huggingface.co/IlyaGusev/mbart_ru_sum_gazeta) | **28.7** | **11.1** | 24.4 | **37.3** | **22.7** | **9.4** | 373 | | [rut5_base_sum_gazeta](https://huggingface.co/IlyaGusev/rut5_base_sum_gazeta) | 28.6 | **11.1** | **24.5** | 37.2 | 22.0 | **9.4** | 331 | | [rugpt3medium_sum_gazeta](https://huggingface.co/IlyaGusev/rugpt3medium_sum_gazeta) | 24.1 | 6.5 | 19.8 | 32.1 | 16.3 | 3.6 | 242 | Predicting all summaries: ```python import json import torch from transformers import AutoTokenizer, T5ForConditionalGeneration from datasets import load_dataset def gen_batch(inputs, batch_size): batch_start = 0 while batch_start < len(inputs): yield inputs[batch_start: batch_start + batch_size] batch_start += batch_size def predict( model_name, input_records, output_file, max_source_tokens_count=600, batch_size=8 ): device = "cuda" if torch.cuda.is_available() else "cpu" tokenizer = AutoTokenizer.from_pretrained(model_name) model = T5ForConditionalGeneration.from_pretrained(model_name).to(device) predictions = [] for batch in gen_batch(input_records, batch_size): texts = [r["text"] for r in batch] input_ids = tokenizer( texts, add_special_tokens=True, max_length=max_source_tokens_count, padding="max_length", truncation=True, return_tensors="pt" )["input_ids"].to(device) output_ids = model.generate( input_ids=input_ids, no_repeat_ngram_size=4 ) summaries = tokenizer.batch_decode(output_ids, skip_special_tokens=True) for s in summaries: print(s) predictions.extend(summaries) with open(output_file, "w") as w: for p in predictions: w.write(p.strip().replace("\n", " ") + "\n") gazeta_test = load_dataset('IlyaGusev/gazeta', script_version="v1.0")["test"] predict("IlyaGusev/rut5_base_sum_gazeta", list(gazeta_test), "t5_predictions.txt") ``` Evaluation script: [evaluate.py](https://github.com/IlyaGusev/summarus/blob/master/evaluate.py) Flags: --language ru --tokenize-after --lower
{"language": ["ru"], "license": ["apache-2.0"], "tags": ["summarization", "t5"], "datasets": ["IlyaGusev/gazeta"], "inference": {"parameters": {"no_repeat_ngram_size": 4}}, "widget": [{"text": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0431\u0430\u0448\u043d\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 324 \u043c\u0435\u0442\u0440\u0430 (1063 \u0444\u0443\u0442\u0430), \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0442\u0430\u043a\u0430\u044f \u0436\u0435 \u0432\u044b\u0441\u043e\u0442\u0430, \u043a\u0430\u043a \u0443 81-\u044d\u0442\u0430\u0436\u043d\u043e\u0433\u043e \u0437\u0434\u0430\u043d\u0438\u044f, \u0438 \u0441\u0430\u043c\u043e\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u0432 \u041f\u0430\u0440\u0438\u0436\u0435. \u0415\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u043d\u043e, \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u043c 125 \u043c\u0435\u0442\u0440\u043e\u0432 (410 \u0444\u0443\u0442\u043e\u0432) \u0441 \u043b\u044e\u0431\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b. \u0412\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u043f\u0440\u0435\u0432\u0437\u043e\u0448\u043b\u0430 \u043c\u043e\u043d\u0443\u043c\u0435\u043d\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0430, \u0441\u0442\u0430\u0432 \u0441\u0430\u043c\u044b\u043c \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u0438\u0440\u0435, \u0438 \u044d\u0442\u043e\u0442 \u0442\u0438\u0442\u0443\u043b \u043e\u043d\u0430 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0430 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 41 \u0433\u043e\u0434\u0430 \u0434\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u0432 \u041d\u044c\u044e-\u0419\u043e\u0440\u043a\u0435 \u0432 1930 \u0433\u043e\u0434\u0443. \u042d\u0442\u043e \u043f\u0435\u0440\u0432\u043e\u0435 \u0441\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u043e \u0432\u044b\u0441\u043e\u0442\u044b 300 \u043c\u0435\u0442\u0440\u043e\u0432. \u0418\u0437-\u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0430\u043d\u0442\u0435\u043d\u043d\u044b \u043d\u0430 \u0432\u0435\u0440\u0448\u0438\u043d\u0435 \u0431\u0430\u0448\u043d\u0438 \u0432 1957 \u0433\u043e\u0434\u0443 \u043e\u043d\u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u0448\u0435 \u0437\u0434\u0430\u043d\u0438\u044f \u041a\u0440\u0430\u0439\u0441\u043b\u0435\u0440 \u043d\u0430 5,2 \u043c\u0435\u0442\u0440\u0430 (17 \u0444\u0443\u0442\u043e\u0432). \u0417\u0430 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u0447\u0438\u043a\u043e\u0432, \u042d\u0439\u0444\u0435\u043b\u0435\u0432\u0430 \u0431\u0430\u0448\u043d\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0442\u043e\u0440\u043e\u0439 \u0441\u0430\u043c\u043e\u0439 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u043e\u0439 \u0432\u043e \u0424\u0440\u0430\u043d\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435 \u0432\u0438\u0430\u0434\u0443\u043a\u0430 \u041c\u0438\u0439\u043e.", "example_title": "\u0412\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u044f"}, {"text": "\u0421 1 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0432\u0441\u0442\u0443\u043f\u0430\u044e\u0442 \u0432 \u0441\u0438\u043b\u0443 \u043f\u043e\u043f\u0440\u0430\u0432\u043a\u0438 \u0432 \u0437\u0430\u043a\u043e\u043d \u00ab\u041e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0435\u00bb \u2014 \u0442\u0435\u043f\u0435\u0440\u044c \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0438 \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u043d\u0435\u043f\u043e\u0441\u0438\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432 \u0432\u043e \u0432\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u043c \u043f\u043e\u0440\u044f\u0434\u043a\u0435, \u0435\u0441\u043b\u0438 \u0441\u0443\u043c\u043c\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 50 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0438 \u043d\u0435 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 500 \u0442\u044b\u0441. \u0440\u0443\u0431\u043b\u0435\u0439 \u0431\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u0448\u0442\u0440\u0430\u0444\u043e\u0432, \u043f\u0435\u043d\u0438, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432 \u0437\u0430 \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u043a\u0443 \u043f\u043b\u0430\u0442\u0435\u0436\u0430 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0438\u043b\u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439. \u0423 \u0444\u0438\u0437\u043b\u0438\u0446 \u0438 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u044f\u0432\u0438\u043b\u0430\u0441\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0443 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u0430 \u0431\u0435\u0437 \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0441\u0443\u0434\u0430 \u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u2014 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u043e\u0434\u0430\u0442\u044c \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0447\u0435\u0440\u0435\u0437 \u041c\u0424\u0426. \u0421\u0443\u043c\u043c\u0443 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044e \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432 \u043d\u0443\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e. \u0415\u0441\u043b\u0438 \u0432\u0441\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0441\u043e\u0431\u043b\u044e\u0434\u0435\u043d\u044b, \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u043d\u0435\u0441\u0443\u0442 \u0432 \u0415\u0434\u0438\u043d\u044b\u0439 \u0444\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0435\u0441\u0442\u0440 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0445 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0434\u043d\u0435\u0439. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u0434\u0430\u0447\u0438 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043e\u043a\u043e\u043d\u0447\u0435\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0441 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435\u043c \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u0435\u043b\u044e. \u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0438\u0442, \u0447\u0442\u043e \u0443 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043c\u043e\u0436\u043d\u043e \u0432\u0437\u044b\u0441\u043a\u0430\u0442\u044c. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043e\u0437\u0431\u0443\u0436\u0434\u0435\u043d\u043e \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u043e. \u0412 \u043f\u0435\u0440\u0438\u043e\u0434 \u0432\u0441\u0435\u0439 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044c \u043d\u0435 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u0440\u0430\u0442\u044c \u0437\u0430\u0439\u043c\u044b, \u043a\u0440\u0435\u0434\u0438\u0442\u044b, \u0432\u044b\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0440\u0443\u0447\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430, \u0441\u043e\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0438\u043d\u044b\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0434\u0435\u043b\u043a\u0438. \u0412\u043d\u0435\u0441\u0443\u0434\u0435\u0431\u043d\u043e\u0435 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432\u043e \u0431\u0443\u0434\u0435\u0442 \u0434\u043b\u0438\u0442\u044c\u0441\u044f \u0448\u0435\u0441\u0442\u044c \u043c\u0435\u0441\u044f\u0446\u0435\u0432, \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043d\u0430 \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u043e\u043b\u0436\u043d\u0438\u043a\u0430, \u0438 \u043c\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0439 \u043e\u0431 \u0443\u043f\u043b\u0430\u0442\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0443\u0441\u0442\u043e\u0435\u043a \u0438 \u0438\u043d\u044b\u0445 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0441\u0430\u043d\u043a\u0446\u0438\u0439; \u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0432\u0437\u044b\u0441\u043a\u0430\u043d\u0438\u044f (\u043a\u0440\u043e\u043c\u0435 \u0430\u043b\u0438\u043c\u0435\u043d\u0442\u043e\u0432) \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b. \u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u0437\u0430\u044f\u0432\u0438\u0442\u0435\u043b\u044f \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u044f\u0442 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0440\u043e\u0432, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0445 \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 \u043e \u043f\u0440\u0438\u0437\u043d\u0430\u043d\u0438\u0438 \u0435\u0433\u043e \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043e\u043c, \u0430 \u044d\u0442\u0430 \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0437\u043d\u0430\u0435\u0442\u0441\u044f \u0431\u0435\u0437\u043d\u0430\u0434\u0435\u0436\u043d\u043e\u0439. \u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u043c \u043c\u0435\u0441\u044f\u0446\u0435 \u0441\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0437\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u043f\u043e\u043b\u0443\u0433\u043e\u0434\u0438\u0435 2020 \u0433\u043e\u0434\u0430 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u0441\u0443\u0434\u044b \u043f\u0440\u0438\u0437\u043d\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0430\u043c\u0438 42,7 \u0442\u044b\u0441. \u0433\u0440\u0430\u0436\u0434\u0430\u043d (\u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u0435\u0439) \u2014 \u043f\u043e \u0434\u0430\u043d\u043d\u044b\u043c \u0435\u0434\u0438\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb, \u044d\u0442\u043e \u043d\u0430 47,2% \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 2019 \u0433\u043e\u0434\u0430. \u0420\u043e\u0441\u0442 \u0447\u0438\u0441\u043b\u0430 \u043e\u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0438\u0432\u0448\u0438\u0445\u0441\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u043c \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0435 \u043f\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044e \u0441 \u043f\u0435\u0440\u0432\u044b\u043c \u0437\u0430\u043c\u0435\u0434\u043b\u0438\u043b\u0441\u044f \u2014 \u0442\u0430\u043a\u0430\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430 \u043e\u0431\u0443\u0441\u043b\u043e\u0432\u043b\u0435\u043d\u0430 \u0442\u0435\u043c, \u0447\u0442\u043e \u0432 \u043f\u0435\u0440\u0438\u043e\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u0441 19 \u043c\u0430\u0440\u0442\u0430 \u043f\u043e 11 \u043c\u0430\u044f \u0441\u0443\u0434\u044b \u0440\u0435\u0434\u043a\u043e \u0440\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b\u0438 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u043d\u044b\u0435 \u0434\u0435\u043b\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0438 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u043e\u0431\u044b\u0447\u043d\u043e, \u0432 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u043b \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u00ab\u0424\u0435\u0434\u0440\u0435\u0441\u0443\u0440\u0441\u00bb \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u042e\u0445\u043d\u0438\u043d. \u041e\u043d \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u0442, \u0447\u0442\u043e \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u0443\u0433\u043e\u0434\u0438\u0438 \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0440\u043e\u0441\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0433\u0434\u0430 \u0441\u0443\u0434\u044b \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u044f\u0442 \u0432\u0441\u0435 \u0434\u0435\u043b\u0430, \u0447\u0442\u043e \u043d\u0435 \u0441\u043c\u043e\u0433\u043b\u0438 \u0440\u0430\u043d\u0435\u0435 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439. \u041f\u043e \u0435\u0433\u043e \u0434\u0430\u043d\u043d\u044b\u043c, \u0443\u0436\u0435 \u0432 \u0438\u044e\u043d\u0435 \u0447\u0438\u0441\u043b\u043e \u043b\u0438\u0447\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u0440\u043e\u0442\u0441\u0442\u0432 \u0432\u044b\u0440\u043e\u0441\u043b\u043e \u0434\u043e 11,5 \u0442\u044b\u0441., \u0447\u0442\u043e \u0432 \u0434\u0432\u0430 \u0440\u0430\u0437\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 2019 \u0433\u043e\u0434\u0430.", "example_title": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438"}, {"text": "\u0410\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b. \u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438\u0433\u0440\u0430\u0435\u0442 \u0432\u0441\u0435 \u0431\u043e\u043b\u044c\u0448\u0443\u044e \u0440\u043e\u043b\u044c \u0432\u043e \u0432\u0441\u0435\u0445 \u0441\u0444\u0435\u0440\u0430\u0445 \u0436\u0438\u0437\u043d\u0438 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430. \u0412 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0433\u043e\u0434\u044b \u043e\u0431\u044a\u0435\u043c \u043d\u0430\u0443\u0447\u043d\u043e-\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u043c \u0432\u0438\u0434\u0435 \u0432\u043e\u0437\u0440\u043e\u0441 \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043a\u043e, \u0447\u0442\u043e \u0432\u043e\u0437\u043d\u0438\u043a\u0430\u0435\u0442 \u0443\u0433\u0440\u043e\u0437\u0430 \u043e\u0431\u0435\u0441\u0446\u0435\u043d\u0438\u0432\u0430\u043d\u0438\u044f \u044d\u0442\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u0432\u044f\u0437\u0438 \u0441 \u0442\u0440\u0443\u0434\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0441\u0440\u0435\u0434\u0438 \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0442\u0435\u043a\u0441\u0442\u043e\u0432. \u0420\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u043c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u043e \u0443\u0441\u0443\u0433\u0443\u0431\u0438\u043b\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u0435\u0440\u0435\u0433\u0440\u0443\u0437\u043a\u0438. \u0412 \u044d\u0442\u043e\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043c\u0435\u0442\u043e\u0434\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u0442\u043e \u0435\u0441\u0442\u044c \u043c\u0435\u0442\u043e\u0434\u044b \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0436\u0430\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432\u2013\u0440\u0435\u0444\u0435\u0440\u0430\u0442\u043e\u0432 (\u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u0439). \u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u0430 \u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0435\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043c\u043d\u043e\u0433\u0438\u043c\u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0442\u0435\u0445\u043d\u0438\u043a\u0438 \u0434\u043b\u044f \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0430\u0441\u0447\u0438\u0442\u044b\u0432\u0430\u0435\u0442 \u0443\u0436\u0435 \u0431\u043e\u043b\u0435\u0435 50 \u043b\u0435\u0442 \u0438 \u0441\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 \u0438\u043c\u0435\u043d\u0430\u043c\u0438 \u0442\u0430\u043a\u0438\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u0430\u043a \u0413.\u041f. \u041b\u0443\u043d, \u0412.\u0415. \u0411\u0435\u0440\u0437\u043e\u043d, \u0418.\u041f. C\u0435\u0432\u0431\u043e, \u042d.\u0424. \u0421\u043a\u043e\u0440\u043e\u0445\u043e\u0434\u044c\u043a\u043e, \u0414.\u0413. \u041b\u0430\u0445\u0443\u0442\u0438, \u0420.\u0413. \u041f\u0438\u043e\u0442\u0440\u043e\u0432\u0441\u043a\u0438\u0439 \u0438 \u0434\u0440. \u0417\u0430 \u044d\u0442\u0438 \u0433\u043e\u0434\u044b \u0432\u044b\u0440\u0430\u0431\u043e\u0442\u0430\u043d\u044b \u043c\u043d\u043e\u0433\u043e\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044b \u043a \u0440\u0435\u0448\u0435\u043d\u0438\u044e \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0447\u0435\u0442\u043a\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 \u0434\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f: \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u044d\u043a\u0441\u0442\u0440\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0438\u0437 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u043e\u0432 \u00ab\u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u044b\u0445\u00bb \u0444\u0440\u0430\u0437 (\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u043e\u0432), \u0441\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u044d\u043a\u0441\u0442\u0440\u0430\u043a\u0442; \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0440\u0435\u0444\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u0438\u0437 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u044f\u0437\u044b\u043a\u043e\u0432 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438 \u043f\u043e\u0440\u043e\u0436\u0434\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 (\u0440\u0435\u0444\u0435\u0440\u0430\u0442\u043e\u0432), \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0431\u043e\u0431\u0449\u0430\u044e\u0449\u0438\u0445 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b.", "example_title": "\u041d\u0430\u0443\u0447\u043d\u0430\u044f \u0441\u0442\u0430\u0442\u044c\u044f"}]}
summarization
IlyaGusev/rut5_base_sum_gazeta
[ "transformers", "pytorch", "t5", "text2text-generation", "summarization", "ru", "dataset:IlyaGusev/gazeta", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "has_space", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ru" ]
TAGS #transformers #pytorch #t5 #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
RuT5SumGazeta ============= Model description ----------------- This is the model for abstractive summarization for Russian based on rut5-base. Intended uses & limitations --------------------------- #### How to use Colab: link Training data ------------- * Dataset: Gazeta Training procedure ------------------ * Training script: URL * Config: t5\_training\_config.json Eval results ------------ * Train dataset: Gazeta v1 train * Test dataset: Gazeta v1 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 * Train dataset: Gazeta v1 train * Test dataset: Gazeta v2 test * Source max\_length: 600 * Target max\_length: 200 * no\_repeat\_ngram\_size: 4 * num\_beams: 5 Predicting all summaries: Evaluation script: URL Flags: --language ru --tokenize-after --lower
[ "#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: t5\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ "TAGS\n#transformers #pytorch #t5 #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n", "#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: t5\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ 77, 195 ]
[ "passage: TAGS\n#transformers #pytorch #t5 #text2text-generation #summarization #ru #dataset-IlyaGusev/gazeta #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n#### How to use\n\n\nColab: link\n\n\nTraining data\n-------------\n\n\n* Dataset: Gazeta\n\n\nTraining procedure\n------------------\n\n\n* Training script: URL\n* Config: t5\\_training\\_config.json\n\n\nEval results\n------------\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v1 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\n* Train dataset: Gazeta v1 train\n* Test dataset: Gazeta v2 test\n* Source max\\_length: 600\n* Target max\\_length: 200\n* no\\_repeat\\_ngram\\_size: 4\n* num\\_beams: 5\n\n\n\nPredicting all summaries:\n\n\nEvaluation script: URL\n\n\nFlags: --language ru --tokenize-after --lower" ]
[ -0.0946706011891365, 0.11109413206577301, -0.00425725756213069, 0.03741257265210152, 0.09082405269145966, 0.04817720875144005, 0.08288158476352692, 0.18134431540966034, -0.012352474965155125, 0.08692993968725204, 0.10921500623226166, -0.003729622345417738, 0.06824909895658493, 0.22352205216884613, -0.002467620884999633, -0.22702285647392273, -0.02732270024716854, -0.035099178552627563, -0.13793694972991943, 0.13048721849918365, 0.13682231307029724, -0.09324663132429123, 0.04926297068595886, -0.046657830476760864, -0.05493786185979843, 0.035745542496442795, -0.009582050144672394, -0.1047007218003273, 0.08583798259496689, 0.03356268256902695, 0.04307173565030098, 0.025806980207562447, 0.01886092685163021, -0.19933894276618958, 0.0032464030664414167, 0.04506445303559303, 0.011355253867805004, 0.041392937302589417, 0.11209052056074142, -0.003561062039807439, 0.21270132064819336, -0.10655466467142105, 0.04249797388911247, 0.05292521044611931, -0.09419312328100204, -0.21679547429084778, -0.10837569087743759, 0.045372556895017624, 0.12466957420110703, 0.14711026847362518, -0.04553426802158356, 0.08968938142061234, -0.13493260741233826, 0.0576290488243103, 0.20098692178726196, -0.2788844108581543, -0.09260288625955582, 0.051497578620910645, 0.032277435064315796, 0.07455877214670181, -0.12274790555238724, -0.009087203070521355, 0.03199199587106705, 0.018244152888655663, 0.013354859314858913, -0.03931105136871338, -0.024161016568541527, 0.07200546562671661, -0.13705936074256897, -0.06836960464715958, 0.2760792076587677, 0.0292456466704607, -0.019160553812980652, -0.06335906684398651, -0.0016100588254630566, -0.13325586915016174, -0.01624017395079136, -0.02755861170589924, 0.01916210539638996, -0.06280341744422913, -0.021557867527008057, 0.031493064016103745, -0.0921582505106926, -0.08854574710130692, 0.03848902881145477, -0.034652918577194214, 0.05890258029103279, 0.002104650717228651, -0.02131301909685135, 0.09690145403146744, -0.03165278211236, -0.1624768227338791, -0.026531970128417015, -0.05557451769709587, -0.11143247783184052, -0.030797885730862617, -0.006751055363565683, -0.10394460707902908, 0.08683693408966064, 0.211085706949234, 0.023149996995925903, 0.06581222265958786, 0.02345864661037922, -0.008365372195839882, -0.05596638470888138, 0.142383873462677, -0.10812291502952576, -0.14432600140571594, -0.055924199521541595, 0.0641857385635376, -0.036866843700408936, 0.009917938150465488, -0.0022987648844718933, -0.04268486052751541, 0.054648470133543015, 0.09163427352905273, 0.03268280625343323, -0.008620008826255798, -0.04465172439813614, -0.018394069746136665, -0.0693821907043457, -0.13027116656303406, 0.025172576308250427, 0.003850185312330723, -0.06487470865249634, 0.07707002758979797, -0.022926533594727516, -0.0700395405292511, -0.046605128794908524, 0.07542522251605988, -0.04241237789392471, -0.04674627631902695, -0.09003151953220367, -0.0759410634636879, 0.04967115819454193, -0.01223287545144558, -0.05188138410449028, -0.07780956476926804, -0.12396017462015152, -0.06960471719503403, 0.06375400722026825, -0.1026519387960434, -0.041548535227775574, -0.0010438518365845084, -0.09538476914167404, 0.05536814406514168, -0.012889119796454906, 0.11311154067516327, -0.0646282210946083, 0.06908505409955978, 0.03903546184301376, 0.10274159908294678, 0.22010377049446106, 0.030350567772984505, -0.07188046723604202, 0.05429816618561745, -0.1261284500360489, 0.0046497671864926815, -0.12780483067035675, 0.09090500324964523, -0.1445084810256958, -0.0929589569568634, 0.04892518371343613, -0.02795720100402832, 0.07735615968704224, 0.15664130449295044, -0.2463173270225525, -0.018681220710277557, 0.161605566740036, -0.09553202986717224, -0.1321420520544052, 0.119596466422081, 0.015684138983488083, 0.01410232950001955, 0.06273137778043747, 0.1234951987862587, 0.16294197738170624, -0.1033645048737526, -0.029259810224175453, -0.02191130816936493, 0.029636379331350327, 0.06141827628016472, 0.13094867765903473, -0.0021284918766468763, 0.013780257664620876, 0.019133133813738823, -0.033148981630802155, 0.020130889490246773, -0.07447933405637741, -0.0865132063627243, -0.022946607321500778, -0.05606323480606079, 0.0683189406991005, 0.030072661116719246, -0.010101178660988808, -0.11183848232030869, -0.12163095921278, -0.1236138790845871, 0.1071891263127327, -0.00469889584928751, 0.011338337324559689, -0.06782997399568558, 0.07713759690523148, -0.012099462561309338, 0.03425632044672966, -0.09893062710762024, -0.00830712541937828, 0.010096341371536255, 0.10935644060373306, -0.014837143942713737, 0.08230908215045929, 0.06259477138519287, -0.03312469646334648, -0.06855279952287674, -0.04954500123858452, -0.04510439559817314, 0.006447805557399988, -0.04007129371166229, -0.2139047086238861, -0.024505609646439552, 0.0034347143955528736, 0.14129017293453217, -0.2038554847240448, 0.0017088360618799925, 0.05646742880344391, 0.100607730448246, 0.007192918565124273, 0.030978741124272346, 0.021413911134004593, -0.0025971545837819576, -0.03390907496213913, -0.05191738158464432, -0.01614578254520893, -0.025255313143134117, -0.02092115208506584, 0.0023404411040246487, -0.002172458916902542, 0.07931733131408691, 0.07624754309654236, -0.008125387132167816, -0.1285800337791443, 0.08991988748311996, -0.05738382041454315, -0.034936197102069855, -0.03608705475926399, -0.035657819360494614, 0.009873305447399616, 0.032182324677705765, 0.08806823939085007, -0.0736444815993309, -0.02442873641848564, 0.01568610593676567, -0.04428262636065483, -0.0013530764263123274, 0.17044882476329803, -0.0010543506359681487, -0.04370938614010811, 0.09578061103820801, 0.06897184252738953, -0.0717749372124672, 0.15616333484649658, -0.056543223559856415, -0.13217072188854218, -0.04228273779153824, 0.04806842282414436, 0.037393324077129364, 0.11063075065612793, -0.0787571519613266, 0.013764149509370327, 0.07456152886152267, 0.0073919580318033695, -0.013228774070739746, -0.10323187708854675, -0.04539287090301514, 0.036329567432403564, -0.072576142847538, 0.02779136411845684, 0.03963899984955788, -0.01188498456031084, 0.12120744585990906, 0.04203089699149132, 0.0008322797366417944, -0.03459233045578003, -0.03807283565402031, -0.09353126585483551, 0.18498148024082184, -0.07255247980356216, -0.19294726848602295, -0.0779232606291771, 0.03188913315534592, -0.012252911925315857, -0.026724636554718018, 0.050226662307977676, -0.17338228225708008, -0.06637664139270782, -0.062172964215278625, -0.009036273695528507, -0.006996395532041788, 0.010427613742649555, -0.07830365747213364, 0.05813010409474373, 0.04519973695278168, -0.06911636143922806, 0.026106281206011772, 0.01866314187645912, -0.013007105328142643, 0.062470316886901855, 0.004298456944525242, 0.13102254271507263, 0.0985996425151825, -0.0034925660584121943, 0.044876858592033386, -0.03460538387298584, 0.18369269371032715, -0.12513022124767303, 0.06846104562282562, 0.17559783160686493, 0.06964849680662155, 0.017480263486504555, 0.16380809247493744, 0.00043894306872971356, -0.04104548692703247, 0.02235814370214939, 0.046746689826250076, -0.027164997532963753, -0.3081948757171631, -0.03118167072534561, -0.11410533636808395, 0.08870529383420944, 0.09736403822898865, 0.04909636452794075, 0.011174620129168034, 0.04183543846011162, -0.055611059069633484, -0.011056390590965748, 0.034889839589595795, 0.07207842916250229, 0.10045488178730011, 0.03840434551239014, 0.0950014516711235, -0.0805438980460167, -0.027712596580386162, 0.06939402967691422, 0.025007154792547226, 0.27451539039611816, -0.02983415313065052, 0.17589141428470612, 0.09525837749242783, 0.088107630610466, -0.015948133543133736, 0.034580014646053314, 0.011128555983304977, -0.025727389380335808, 0.03534851595759392, -0.0806984081864357, 0.037775345146656036, 0.05152682960033417, -0.0071467929519712925, 0.016702717170119286, -0.07164450734853745, -0.03493128716945648, 0.07498429715633392, 0.1550920009613037, 0.08655513823032379, -0.20103810727596283, -0.05654394254088402, 0.026909245178103447, -0.045613545924425125, -0.05678868666291237, 0.039412956684827805, 0.0629754438996315, -0.13766032457351685, 0.11620751023292542, -0.06412944942712784, 0.1008325070142746, 0.03738752752542496, 0.007414226885885, 0.07766100764274597, 0.022196806967258453, 0.002386990934610367, 0.15544982254505157, -0.29652729630470276, 0.24556250870227814, -0.015447329729795456, 0.0480198971927166, -0.06972357630729675, 0.017728058621287346, 0.024785101413726807, -0.00005185258487472311, 0.13593852519989014, -0.019313989207148552, -0.010798629373311996, -0.07677388191223145, -0.021576790139079094, -0.013993818312883377, 0.03617050498723984, -0.03255605325102806, 0.139837846159935, -0.07223215699195862, -0.0543648824095726, -0.008611847646534443, -0.003148447722196579, -0.13957253098487854, -0.11214233189821243, 0.08345108479261398, -0.006955750752240419, 0.009155604988336563, -0.07137486338615417, -0.06478545814752579, -0.025112129747867584, 0.1699734479188919, -0.05865871161222458, -0.0673828199505806, -0.1356016993522644, 0.08367754518985748, 0.21419531106948853, -0.07138362526893616, 0.02548110857605934, 0.009411939419806004, 0.12373670190572739, 0.03103313222527504, -0.016199378296732903, 0.029265956953167915, -0.06264982372522354, -0.19051732122898102, -0.03405521437525749, 0.1563262641429901, -0.024172917008399963, 0.07619799673557281, -0.009626290760934353, 0.05037976801395416, -0.06754869222640991, -0.08467480540275574, 0.03588879108428955, -0.015305070206522942, 0.00820163544267416, 0.008268311619758606, -0.0349716916680336, -0.03681275621056557, -0.06464236974716187, -0.09264974296092987, 0.15206225216388702, 0.22417378425598145, -0.09588248282670975, 0.09358150511980057, -0.03212912380695343, -0.047759365290403366, -0.19728577136993408, 0.036022063344717026, 0.04211924970149994, 0.04755198210477829, 0.007831617258489132, -0.14016933739185333, 0.015681887045502663, 0.06126537173986435, -0.011043569073081017, 0.09828300774097443, -0.3171670734882355, -0.10593472421169281, 0.0443858802318573, 0.012586979195475578, -0.07179084420204163, -0.16518694162368774, -0.044825296849012375, -0.058363500982522964, -0.07013464719057083, -0.024409063160419464, -0.0962391272187233, 0.09321177005767822, -0.0704520046710968, -0.006927277892827988, 0.039468925446271896, -0.0685696080327034, 0.17030440270900726, -0.03327588364481926, 0.027931489050388336, -0.045003488659858704, 0.0364534817636013, 0.16019053757190704, -0.07251055538654327, 0.12349437177181244, -0.10432358086109161, 0.027910331264138222, -0.15730418264865875, -0.032016631215810776, -0.09451332688331604, 0.0032912285532802343, -0.06990939378738403, -0.03248165175318718, -0.08777409791946411, 0.07896304875612259, 0.08132512867450714, -0.029356515035033226, 0.0340270921587944, -0.051240224391222, 0.11382436752319336, 0.05179769918322563, 0.10224512964487076, 0.010847867466509342, -0.16418197751045227, 0.06732040643692017, 0.02224344201385975, 0.01380383875221014, -0.21327605843544006, 0.020924579352140427, 0.15341322124004364, 0.03417646884918213, 0.06857193261384964, 0.031401555985212326, -0.11079209297895432, -0.03738340735435486, 0.10740628093481064, -0.10809092968702316, -0.05861788988113403, -0.055490024387836456, 0.018187766894698143, -0.15933014452457428, -0.047262370586395264, 0.08153840154409409, -0.08434707671403885, -0.00018739071674644947, 0.02477826550602913, 0.024192411452531815, -0.040559567511081696, 0.2325420379638672, 0.06326323002576828, 0.09873425215482712, -0.07845991849899292, 0.02238014154136181, 0.08784457296133041, -0.10322955995798111, 0.035197000950574875, 0.17596012353897095, -0.08209779858589172, -0.08701887726783752, 0.09089167416095734, 0.11344221979379654, -0.010477203875780106, -0.026703564450144768, -0.11701058596372604, -0.13371679186820984, 0.08943478763103485, 0.058708176016807556, 0.037413980811834335, -0.0019292313372716308, 0.018956145271658897, -0.035914886742830276, -0.09314488619565964, 0.1885993480682373, 0.13071545958518982, 0.045939851552248, -0.1233532503247261, 0.06428609788417816, -0.032927464693784714, 0.04372166842222214, -0.0220931489020586, 0.014962071552872658, -0.10896458476781845, 0.048377443104982376, -0.1713111698627472, -0.009139671921730042, -0.018526408821344376, -0.021877776831388474, -0.023195335641503334, -0.012931185774505138, -0.04975415766239166, 0.0020513993222266436, -0.08330701291561127, -0.051880184561014175, -0.04659274220466614, 0.07045318186283112, -0.12764176726341248, -0.02242192067205906, 0.024892186746001244, -0.08422551304101944, 0.04957818612456322, -0.0076088570058345795, 0.0003219754435122013, -0.023227762430906296, -0.027276702225208282, -0.022694697603583336, -0.03945723921060562, 0.022414015606045723, 0.05256881192326546, -0.15420939028263092, 0.04747772961854935, -0.029424037784337997, -0.036635302007198334, 0.058611828833818436, -0.07605672627687454, -0.12195158749818802, 0.0038665577303618193, -0.06571375578641891, -0.0922832265496254, -0.03154079616069794, 0.07753235101699829, 0.10042214393615723, -0.0066350349225103855, 0.16977088153362274, -0.101882204413414, 0.0900571271777153, -0.2127845734357834, -0.023840414360165596, -0.03557325154542923, -0.03513668105006218, -0.04391561448574066, -0.03452632576227188, 0.08923227339982986, -0.09701651334762573, 0.06622470170259476, 0.03427669778466225, 0.08325538039207458, 0.06416849792003632, -0.08489663153886795, 0.04919828847050667, 0.0651606097817421, 0.15970906615257263, 0.024317897856235504, -0.02349478006362915, -0.007994767278432846, -0.0054467725567519665, 0.020658627152442932, 0.0325755774974823, 0.121909499168396, 0.17210601270198822, 0.07087378203868866, 0.05410335958003998, -0.02355900965631008, -0.1320914477109909, -0.08100695163011551, 0.0808182880282402, -0.06558290123939514, 0.10081321746110916, -0.0032244997564703226, 0.07770578563213348, 0.2191539853811264, -0.20148926973342896, 0.06500636041164398, -0.10710971057415009, -0.07411129027605057, -0.049076300114393234, -0.10629354417324066, -0.10062966495752335, -0.17261479794979095, 0.014865640550851822, -0.10878115892410278, 0.05548311769962311, 0.06965149939060211, 0.055998485535383224, -0.0174232367426157, 0.14337162673473358, 0.06454575806856155, -0.05490225926041603, 0.11532382667064667, 0.02388557232916355, 0.014128011651337147, 0.021093420684337616, 0.0377398282289505, 0.014891570433974266, -0.08895976841449738, -0.009895982220768929, 0.0015998005401343107, -0.05117783322930336, 0.043869417160749435, -0.006671871058642864, -0.08844847232103348, 0.036103662103414536, 0.008368466980755329, 0.10258324444293976, 0.08794218301773071, 0.02519512176513672, 0.002249546116217971, -0.017406797036528587, 0.22087374329566956, -0.06513390690088272, -0.13268327713012695, -0.11494477838277817, 0.15561151504516602, 0.07943921536207199, -0.008935237303376198, -0.019980402663350105, -0.08072547614574432, -0.024722330272197723, 0.22189156711101532, 0.2005392462015152, 0.03177318349480629, -0.0484415628015995, 0.00866771675646305, -0.00139771425165236, 0.005527092143893242, 0.10318154841661453, 0.07929769903421402, 0.14693352580070496, -0.07006315141916275, 0.009543012827634811, -0.046161096543073654, -0.05362153798341751, -0.084017813205719, 0.1708800047636032, 0.05907890945672989, -0.029328135773539543, 0.014980494044721127, 0.1480090469121933, 0.00838963221758604, -0.03675840049982071, 0.08029912412166595, -0.1986074298620224, -0.18086640536785126, -0.048031289130449295, 0.10882049053907394, -0.012115061283111572, 0.03330954909324646, -0.011955644935369492, -0.021039331331849098, 0.09234852343797684, 0.02372310869395733, -0.031769316643476486, -0.15438242256641388, 0.11717033386230469, -0.004116757307201624, 0.15465861558914185, -0.031204786151647568, 0.06608577072620392, 0.14930008351802826, -0.030772795900702477, -0.14015798270702362, 0.04195098951458931, 0.1359655261039734, -0.10572555661201477, 0.07916782796382904, 0.110741525888443, -0.024671610444784164, 0.10967826843261719, 0.07815580070018768, -0.041447144001722336, -0.034343790262937546, -0.0032977438531816006, 0.05048523098230362, -0.12165111303329468, 0.09248209744691849, -0.07387989014387131, 0.13283059000968933, 0.20355431735515594, -0.10401894897222519, -0.003088603727519512, -0.07408519089221954, 0.06598284840583801, 0.05173664540052414, 0.10070080310106277, 0.008354319259524345, -0.18688088655471802, 0.001139043248258531, 0.013817708007991314, 0.06791461259126663, -0.22923846542835236, -0.053929902613162994, 0.0028764824382960796, -0.029871193692088127, -0.07669510692358017, 0.1411583125591278, 0.05658587068319321, 0.036946650594472885, -0.029580362141132355, -0.08525986969470978, 0.0007934649474918842, 0.15488693118095398, -0.18378999829292297, -0.05452851951122284 ]
null
null
transformers
# XLM-RoBERTa HeadlineCause Full ## Model description This model was trained to predict the presence of causal relations between two headlines. This model is for the Full task with 7 possible labels: titles are almost the same, A causes B, B causes A, A refutes B, B refutes A, A linked with B in another way, A is not linked to B. English and Russian languages are supported. You can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with ```</s>``` token. For example: ``` Песков опроверг свой перевод на удаленку</s>Дмитрий Песков перешел на удаленку ``` ## Intended uses & limitations #### How to use ```python from tqdm.notebook import tqdm from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline def get_batch(data, batch_size): start_index = 0 while start_index < len(data): end_index = start_index + batch_size batch = data[start_index:end_index] yield batch start_index = end_index def pipe_predict(data, pipe, batch_size=64): raw_preds = [] for batch in tqdm(get_batch(data, batch_size)): raw_preds += pipe(batch) return raw_preds MODEL_NAME = TOKENIZER_NAME = "IlyaGusev/xlm_roberta_large_headline_cause_full" tokenizer = AutoTokenizer.from_pretrained(TOKENIZER_NAME, do_lower_case=False) model = AutoModelForSequenceClassification.from_pretrained(MODEL_NAME) model.eval() pipe = pipeline("text-classification", model=model, tokenizer=tokenizer, framework="pt", return_all_scores=True) texts = [ ( "Judge issues order to allow indoor worship in NC churches", "Some local churches resume indoor services after judge lifted NC governor’s restriction" ), ( "Gov. Kevin Stitt defends $2 million purchase of malaria drug touted by Trump", "Oklahoma spent $2 million on malaria drug touted by Trump" ), ( "Песков опроверг свой перевод на удаленку", "Дмитрий Песков перешел на удаленку" ) ] pipe_predict(texts, pipe) ``` #### Limitations and bias The models are intended to be used on news headlines. No other limitations are known. ## Training data * HuggingFace dataset: [IlyaGusev/headline_cause](https://huggingface.co/datasets/IlyaGusev/headline_cause) * GitHub: [IlyaGusev/HeadlineCause](https://github.com/IlyaGusev/HeadlineCause) ## Training procedure * Notebook: [HeadlineCause](https://colab.research.google.com/drive/1NAnD0OJ0TnYCJRsHpYUyYkjr_yi8ObcA) * Stand-alone script: [train.py](https://github.com/IlyaGusev/HeadlineCause/blob/main/headline_cause/train.py) ## Eval results Evaluation results can be found in the [arxiv paper](https://arxiv.org/pdf/2108.12626.pdf). ### BibTeX entry and citation info ```bibtex @misc{gusev2021headlinecause, title={HeadlineCause: A Dataset of News Headlines for Detecting Causalities}, author={Ilya Gusev and Alexey Tikhonov}, year={2021}, eprint={2108.12626}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
{"language": ["ru", "en"], "license": "apache-2.0", "tags": ["xlm-roberta-large"], "datasets": ["IlyaGusev/headline_cause"], "widget": [{"text": "\u041f\u0435\u0441\u043a\u043e\u0432 \u043e\u043f\u0440\u043e\u0432\u0435\u0440\u0433 \u0441\u0432\u043e\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434 \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043a\u0443</s>\u0414\u043c\u0438\u0442\u0440\u0438\u0439 \u041f\u0435\u0441\u043a\u043e\u0432 \u043f\u0435\u0440\u0435\u0448\u0435\u043b \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043a\u0443"}]}
text-classification
IlyaGusev/xlm_roberta_large_headline_cause_full
[ "transformers", "pytorch", "xlm-roberta", "text-classification", "xlm-roberta-large", "ru", "en", "dataset:IlyaGusev/headline_cause", "arxiv:2108.12626", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2108.12626" ]
[ "ru", "en" ]
TAGS #transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# XLM-RoBERTa HeadlineCause Full ## Model description This model was trained to predict the presence of causal relations between two headlines. This model is for the Full task with 7 possible labels: titles are almost the same, A causes B, B causes A, A refutes B, B refutes A, A linked with B in another way, A is not linked to B. English and Russian languages are supported. You can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token. For example: ## Intended uses & limitations #### How to use #### Limitations and bias The models are intended to be used on news headlines. No other limitations are known. ## Training data * HuggingFace dataset: IlyaGusev/headline_cause * GitHub: IlyaGusev/HeadlineCause ## Training procedure * Notebook: HeadlineCause * Stand-alone script: URL ## Eval results Evaluation results can be found in the arxiv paper. ### BibTeX entry and citation info
[ "# XLM-RoBERTa HeadlineCause Full", "## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Full task with 7 possible labels: titles are almost the same, A causes B, B causes A, A refutes B, B refutes A, A linked with B in another way, A is not linked to B. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:", "## Intended uses & limitations", "#### How to use", "#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.", "## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause", "## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL", "## Eval results\n\nEvaluation results can be found in the arxiv paper.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# XLM-RoBERTa HeadlineCause Full", "## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Full task with 7 possible labels: titles are almost the same, A causes B, B causes A, A refutes B, B refutes A, A linked with B in another way, A is not linked to B. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:", "## Intended uses & limitations", "#### How to use", "#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.", "## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause", "## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL", "## Eval results\n\nEvaluation results can be found in the arxiv paper.", "### BibTeX entry and citation info" ]
[ 83, 12, 122, 9, 5, 26, 36, 18, 15, 11 ]
[ "passage: TAGS\n#transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# XLM-RoBERTa HeadlineCause Full## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Full task with 7 possible labels: titles are almost the same, A causes B, B causes A, A refutes B, B refutes A, A linked with B in another way, A is not linked to B. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:## Intended uses & limitations#### How to use#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL## Eval results\n\nEvaluation results can be found in the arxiv paper.### BibTeX entry and citation info" ]
[ -0.050686489790678024, 0.11470957100391388, -0.007132134400308132, 0.031015435233712196, 0.08970755338668823, -0.00131335633341223, 0.24930578470230103, 0.10615971684455872, 0.134908065199852, 0.11446116119623184, 0.03279201686382294, -0.004193321336060762, 0.08824863284826279, 0.06538619101047516, 0.028922436758875847, -0.18115010857582092, 0.07333693653345108, -0.08538402616977692, 0.08811787515878677, 0.0544368177652359, 0.1242738589644432, -0.05677224323153496, 0.04439171403646469, 0.016184795647859573, -0.10523228347301483, 0.07205270975828171, 0.013088983483612537, -0.024909188970923424, 0.058865200728178024, 0.08484815806150436, 0.05726538226008415, 0.01714519038796425, 0.040409885346889496, -0.19135557115077972, 0.006537306122481823, 0.06206129863858223, -0.040825095027685165, 0.033965688198804855, 0.09912294149398804, -0.05047983303666115, 0.10589905083179474, -0.11454702168703079, 0.03938554599881172, 0.01789667271077633, -0.1057475209236145, -0.06240787357091904, -0.10800524801015854, 0.18962399661540985, 0.06095416843891144, 0.10817824304103851, -0.048142027109861374, 0.044716812670230865, 0.0006342437700368464, 0.05079535394906998, 0.20362071692943573, -0.18717984855175018, -0.030495399609208107, 0.05501510947942734, -0.006646071095019579, -0.033239539712667465, -0.055822066962718964, 0.02395416982471943, 0.008723538368940353, -0.0206852238625288, -0.014405084773898125, -0.005168074741959572, -0.06707274168729782, 0.008288292214274406, -0.09731987863779068, -0.05686340481042862, 0.09615809470415115, -0.021468210965394974, -0.014723083935678005, -0.16770610213279724, -0.019869979470968246, 0.08376141637563705, -0.007743379566818476, 0.010701015591621399, -0.001585461781360209, 0.01817098632454872, 0.12843458354473114, -0.08059223741292953, -0.09312675893306732, -0.0050828889943659306, 0.010562284849584103, 0.11299483478069305, 0.03952474519610405, 0.035643406212329865, -0.040802307426929474, 0.09922002255916595, -0.024424439296126366, -0.14457392692565918, -0.01812545582652092, -0.0583612285554409, -0.1153123751282692, -0.0028442793991416693, -0.05342298746109009, -0.048617154359817505, 0.06135508790612221, 0.12937024235725403, -0.017364071682095528, 0.03284186124801636, -0.022994322702288628, 0.0608457587659359, 0.036496348679065704, 0.14027878642082214, -0.09423708915710449, -0.007055189460515976, 0.035986561328172684, 0.06010880321264267, 0.009817073121666908, -0.025044139474630356, -0.0792912170290947, -0.08629819005727768, 0.061946552246809006, 0.055494215339422226, 0.020548025146126747, 0.005724947899580002, -0.06242084130644798, -0.0027344010304659605, 0.017398683354258537, -0.16184014081954956, 0.027237530797719955, 0.024992790073156357, -0.02020411752164364, 0.037616949528455734, 0.032935526221990585, 0.008773553185164928, -0.09734979271888733, 0.04144194349646568, -0.03560549020767212, 0.04032156616449356, -0.07514629513025284, -0.08626522868871689, 0.026764709502458572, -0.06345032155513763, -0.036404479295015335, -0.04438623785972595, -0.1674225777387619, -0.09742461144924164, 0.04562295973300934, -0.09498146921396255, 0.03882238641381264, -0.049270618706941605, -0.011773955076932907, 0.009574484080076218, 0.029908541589975357, -0.044307641685009, -0.011509066447615623, -0.0026533659547567368, -0.08475251495838165, 0.07050959020853043, 0.09042340517044067, -0.008477241732180119, -0.08742213249206543, 0.04599326476454735, -0.09546729177236557, 0.15829889476299286, -0.08228354156017303, 0.003213744144886732, -0.06262412667274475, 0.00896642915904522, 0.025263162329792976, 0.04399698227643967, 0.07913588732481003, 0.1667192578315735, -0.17827816307544708, -0.035456135869026184, 0.21405979990959167, -0.11713350564241409, -0.07844030857086182, 0.1034451350569725, -0.0726834088563919, 0.13982421159744263, 0.08400607109069824, 0.1137072890996933, -0.019447360187768936, -0.07839784771203995, -0.08577598631381989, -0.07436119765043259, 0.008060446940362453, 0.1773180365562439, 0.007884171791374683, -0.03003048524260521, 0.06846144050359726, 0.025755226612091064, 0.03926680237054825, -0.06298134475946426, -0.008951954543590546, -0.07505429536104202, -0.011099283583462238, 0.004866603296250105, -0.033648449927568436, -0.01591317169368267, -0.019059007987380028, -0.011937062256038189, -0.10896769911050797, -0.018671300262212753, 0.05320315808057785, -0.04665537178516388, 0.04371565580368042, -0.05563241243362427, 0.04801919311285019, -0.0038496614433825016, 0.022073697298765182, -0.17386938631534576, -0.07541205734014511, 0.022890903055667877, 0.01896962895989418, 0.06946077942848206, -0.030159689486026764, 0.02706332504749298, 0.004455902613699436, -0.026404570788145065, -0.0072746966034173965, -0.0153920603916049, -0.006875860504806042, -0.04784384369850159, -0.21435312926769257, -0.0047600530087947845, -0.055946968495845795, 0.09912420064210892, -0.16516226530075073, 0.03411421179771423, 0.035396527498960495, 0.1300097554922104, 0.03127612546086311, -0.007911048829555511, 0.020718196406960487, -0.0021967238280922174, -0.058987509459257126, -0.03964150324463844, -0.000272473378572613, -0.029793886467814445, -0.08720193803310394, 0.09571843594312668, -0.07988259196281433, -0.1064668595790863, 0.04097598046064377, 0.03343215212225914, -0.13107329607009888, -0.060410723090171814, -0.03533434495329857, -0.03410586342215538, -0.038990043103694916, -0.054509103298187256, 0.11750786751508713, 0.054622408002614975, 0.02517915889620781, -0.06310795247554779, -0.022631989791989326, -0.013040976598858833, -0.06691202521324158, -0.034629590809345245, 0.059528373181819916, 0.06002357602119446, -0.1651782989501953, 0.10377467423677444, -0.038667310029268265, -0.017782729119062424, 0.18664860725402832, -0.0076403203420341015, -0.09323418885469437, -0.012377684004604816, 0.042076196521520615, 0.0384327694773674, 0.12732359766960144, -0.07050680369138718, -0.0006847753538750112, 0.03959600627422333, -0.007869239896535873, 0.03515073284506798, -0.12036813795566559, 0.01696043089032173, -0.011961177922785282, -0.04284508898854256, -0.042189259082078934, 0.04043091461062431, 0.019328733906149864, 0.10050790011882782, -0.004172764718532562, 0.03351747989654541, -0.022495098412036896, -0.0687984824180603, -0.1427210569381714, 0.13422098755836487, -0.06669441610574722, -0.19343462586402893, -0.13379840552806854, -0.03467901423573494, -0.03429105132818222, 0.02030177228152752, 0.029545841738581657, -0.0481383241713047, -0.056515004485845566, -0.07603494077920914, -0.008535887114703655, 0.08706250041723251, -0.07328162342309952, -0.020152492448687553, 0.06032818928360939, -0.0008627760107629001, -0.07759968936443329, -0.028214430436491966, -0.011819680221378803, -0.008988674730062485, 0.0147940618917346, -0.029280655086040497, 0.06273110210895538, 0.08045312762260437, 0.05087363347411156, 0.0003100968897342682, -0.04865561053156853, 0.20835058391094208, -0.10703971982002258, 0.09053342789411545, 0.10401635617017746, -0.07755546271800995, 0.09082911163568497, 0.19045376777648926, 0.0063591646030545235, -0.07109986990690231, -0.009222446009516716, 0.01650087721645832, -0.013517675921320915, -0.23134170472621918, -0.046556830406188965, -0.09228849411010742, -0.05658872798085213, 0.03954955190420151, 0.03181392326951027, -0.013326296582818031, 0.05096264183521271, -0.08953522145748138, 0.017438769340515137, 0.07140956073999405, 0.11858637630939484, 0.10327224433422089, 0.0459025576710701, 0.07666445523500443, -0.041478388011455536, 0.018278904259204865, 0.05129615589976311, 0.022912075743079185, 0.21374748647212982, -0.04703325033187866, 0.10643026232719421, 0.07686600834131241, 0.00564087089151144, -0.01595136895775795, 0.07142918556928635, -0.025734057649970055, 0.017940020188689232, -0.0026754660066217184, -0.10045080631971359, -0.004517402965575457, 0.11342137306928635, -0.0788661390542984, -0.04084302484989166, 0.024543916806578636, 0.019641948863863945, 0.09076667577028275, 0.13614694774150848, 0.10105116665363312, -0.12549029290676117, -0.06491360813379288, 0.055105723440647125, -0.004332659766077995, -0.09536821395158768, -0.04154780134558678, 0.04266373813152313, -0.14365778863430023, 0.054778940975666046, 0.003243804909288883, 0.10150942951440811, -0.024925673380494118, -0.012472392059862614, -0.05525925010442734, 0.0723002552986145, -0.05819861218333244, 0.12309350073337555, -0.20739595592021942, 0.13425153493881226, 0.017524126917123795, 0.0700366273522377, -0.09144702553749084, 0.06764499843120575, 0.03527896851301193, 0.02562662400305271, 0.14642147719860077, 0.010152994655072689, -0.07628606259822845, -0.016802698373794556, -0.08022792637348175, -0.00648028077557683, 0.053267985582351685, -0.06010003387928009, 0.10897204279899597, 0.002381535479798913, -0.005273007787764072, -0.017981577664613724, 0.0005909864557906985, -0.1307288408279419, -0.23133887350559235, 0.08446979522705078, -0.04519836977124214, 0.011217625811696053, -0.03663124516606331, -0.04297433793544769, 0.01957414299249649, 0.14094401895999908, -0.07020203769207001, -0.10847190022468567, -0.09700633585453033, 0.026496754959225655, 0.15174657106399536, -0.06209758296608925, 0.009894304908812046, 0.013080662116408348, 0.1284346729516983, -0.061792124062776566, -0.04553326591849327, 0.05921445041894913, -0.09896324574947357, -0.15814760327339172, -0.06463479995727539, 0.12988901138305664, 0.040975745767354965, 0.019982336089015007, 0.016283812001347542, 0.06404620409011841, -0.02471739798784256, -0.07742755860090256, 0.01674879901111126, 0.12008986622095108, 0.035754360258579254, 0.08998575061559677, -0.11630669236183167, -0.11186401546001434, -0.14287059009075165, -0.05830417573451996, 0.07384059578180313, 0.21654875576496124, -0.05937351658940315, 0.17134934663772583, 0.0665961503982544, -0.130548357963562, -0.16626480221748352, -0.006451790686696768, 0.06525982916355133, 0.04959750920534134, -0.008019751869142056, -0.19678930938243866, -0.00256189308129251, -0.018913866952061653, 0.003810072550550103, 0.1302928477525711, -0.19925014674663544, -0.1384909749031067, 0.028379689902067184, -0.00416130805388093, 0.009866743348538876, -0.07898379117250443, -0.02236255444586277, -0.03266420587897301, -0.09489328414201736, 0.05226981267333031, 0.023441815748810768, 0.05232245475053787, 0.016286533325910568, 0.02226242981851101, 0.04828319326043129, -0.04287474974989891, 0.10700216889381409, 0.005692622624337673, 0.05533909425139427, -0.07439380884170532, -0.057934947311878204, 0.1201980784535408, -0.04639424756169319, 0.10608046501874924, -0.01080387458205223, 0.008087280206382275, -0.10139721632003784, -0.06660149991512299, -0.02903495542705059, 0.0025185898412019014, -0.07996764034032822, -0.05094984918832779, -0.07075811177492142, 0.08020614087581635, 0.11033467948436737, -0.010927077382802963, 0.04452786222100258, -0.08329122513532639, 0.021319162100553513, 0.12028021365404129, 0.1040194183588028, 0.06689637899398804, -0.044614192098379135, 0.013877948746085167, -0.007335708476603031, 0.05423244461417198, -0.10828851908445358, 0.034494344145059586, 0.08256451040506363, 0.006704600062221289, 0.1156710535287857, 0.018228041008114815, -0.1670583188533783, 0.0006249804282560945, 0.05447607859969139, -0.16365297138690948, -0.07008297741413116, -0.004585494287312031, 0.05219953879714012, -0.06136992573738098, -0.06963682919740677, 0.10426509380340576, -0.0556684173643589, -0.026465998962521553, 0.03776056692004204, 0.07341432571411133, 0.021601490676403046, 0.07103492319583893, 0.017157193273305893, 0.02976742386817932, -0.04462255537509918, 0.06902816146612167, 0.06546205282211304, -0.014221077784895897, 0.07382332533597946, 0.10707569122314453, -0.0868709534406662, -0.021871738135814667, -0.08435732871294022, 0.16520629823207855, -0.04890753701329231, -0.07258334755897522, -0.0790150910615921, -0.07151486724615097, 0.009633195586502552, 0.09257319569587708, 0.02565670758485794, 0.006886214949190617, 0.011594070121645927, -0.02713351882994175, -0.07557264715433121, 0.11479507386684418, 0.10080250352621078, 0.009160991758108139, -0.030053185299038887, -0.043816227465867996, -0.011989857070147991, -0.005482167471200228, -0.01932172290980816, -0.01372567843645811, -0.11034021526575089, 0.0057387687265872955, -0.2026808112859726, 0.03964307904243469, -0.07597281783819199, -0.027442818507552147, -0.0032760081812739372, -0.04024926573038101, 0.025616532191634178, 0.022600026801228523, -0.04763345047831535, -0.008111119270324707, -0.05877134948968887, 0.0703485831618309, -0.16923093795776367, -0.01592528074979782, 0.06336994469165802, -0.12470629066228867, 0.1286519169807434, 0.07411495596170425, -0.03156869485974312, 0.0036692824214696884, -0.11241360753774643, 0.0067568994127213955, -0.03266284614801407, 0.011885973624885082, 0.02199620194733143, -0.132309228181839, 0.006069628521800041, -0.0460783913731575, -0.027105161920189857, 0.005833848845213652, 0.029743874445557594, -0.05385538563132286, 0.06848719716072083, 0.044689279049634933, -0.05052768439054489, -0.0255265049636364, 0.11732587218284607, 0.04534130543470383, 0.05481722578406334, 0.10975176095962524, -0.08435789495706558, 0.1141836941242218, -0.10806584358215332, -0.005822320003062487, 0.017792239785194397, 0.01614009402692318, 0.023694301024079323, -0.08048330992460251, 0.07025721669197083, -0.027770457789301872, 0.18828359246253967, 0.0015021220315247774, 0.03571392968297005, 0.01896643452346325, -0.047902800142765045, 0.0044055720791220665, 0.03723744675517082, 0.027481772005558014, -0.010051760822534561, -0.0026401120703667402, -0.08264435827732086, -0.03982047364115715, -0.006303193047642708, -0.032332275062799454, 0.161610409617424, 0.0499098114669323, 0.10370524227619171, 0.054087452590465546, 0.06828342378139496, -0.058397818356752396, -0.04808472841978073, -0.002337720477953553, -0.03569049388170242, 0.004927115980535746, -0.07459535449743271, 0.10418616980314255, 0.1953461617231369, -0.14096714556217194, 0.10973141342401505, -0.03367767482995987, -0.06757969409227371, -0.07207506895065308, -0.1824386864900589, -0.04045430198311806, -0.018344983458518982, 0.019281748682260513, -0.11466497927904129, 0.06462188065052032, 0.01792481355369091, 0.023489484563469887, -0.01858512870967388, 0.11937794089317322, 0.06681077182292938, -0.05543418973684311, 0.05300002172589302, 0.031401216983795166, 0.022777967154979706, 0.04848393425345421, -0.0007654293440282345, 0.011209785006940365, 0.005052147898823023, 0.020890939980745316, 0.08706916868686676, 0.10870731621980667, -0.03622104972600937, -0.035515882074832916, -0.06639520823955536, 0.01705114357173443, 0.0193218681961298, 0.01568841189146042, 0.097434863448143, 0.052950575947761536, 0.023584257811307907, -0.03032519668340683, 0.1799875646829605, -0.034470271319150925, -0.10202372819185257, -0.12733881175518036, 0.14148730039596558, -0.03810020536184311, 0.03289322182536125, -0.022956840693950653, -0.13571713864803314, 0.020265882834792137, 0.16864170134067535, 0.16011902689933777, -0.06584770232439041, 0.015409164130687714, -0.008368683978915215, 0.02177479863166809, -0.0016290470957756042, 0.06179847568273544, -0.01468402985483408, 0.2358805537223816, -0.04829093813896179, 0.06055169552564621, -0.04545383155345917, -0.03343789651989937, -0.10874137282371521, 0.11583205312490463, -0.00450522918254137, -0.0424141027033329, -0.06372170150279999, 0.09693735837936401, -0.08343075215816498, -0.22380508482456207, 0.022889697924256325, -0.10353753715753555, -0.10233253985643387, -0.012376014143228531, 0.05085182562470436, 0.013706683181226254, 0.09369488805532455, 0.007876750081777573, -0.008976224809885025, 0.12978017330169678, 0.03239016979932785, 0.02052486315369606, 0.0038422183133661747, 0.0579645000398159, -0.03876207768917084, 0.14985844492912292, 0.004667275119572878, 0.1287730634212494, 0.08704092353582382, 0.00810313131660223, -0.09737522155046463, 0.005149262025952339, 0.06333183497190475, -0.012848702259361744, -0.015047913417220116, 0.10808505862951279, -0.015601144172251225, -0.020524753257632256, 0.11405722796916962, -0.04914199560880661, 0.04270043969154358, -0.03135255351662636, -0.035028837621212006, -0.087225541472435, 0.07955223321914673, -0.105018250644207, 0.10959174484014511, 0.16172368824481964, -0.05267073214054108, 0.006066237110644579, -0.010797646827995777, 0.044750671833753586, 0.015773730352520943, 0.07039052248001099, -0.017524780705571175, -0.09728428721427917, 0.03725971654057503, 0.07809881120920181, 0.05893929675221443, -0.1682778000831604, -0.060758497565984726, 0.025706974789500237, -0.021014265716075897, -0.027404680848121643, 0.11221430450677872, 0.0778784304857254, 0.036128681153059006, -0.030776025727391243, -0.19219176471233368, 0.033343832939863205, 0.11058042198419571, -0.047056760638952255, -0.04342511668801308 ]
null
null
transformers
# XLM-RoBERTa HeadlineCause Simple ## Model description This model was trained to predict the presence of causal relations between two headlines. This model is for the Simple task with 3 possible labels: A causes B, B causes A, no causal relation. English and Russian languages are supported. You can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with ```</s>``` token. For example: ``` Песков опроверг свой перевод на удаленку</s>Дмитрий Песков перешел на удаленку ``` ## Intended uses & limitations #### How to use ```python from tqdm.notebook import tqdm from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline def get_batch(data, batch_size): start_index = 0 while start_index < len(data): end_index = start_index + batch_size batch = data[start_index:end_index] yield batch start_index = end_index def pipe_predict(data, pipe, batch_size=64): raw_preds = [] for batch in tqdm(get_batch(data, batch_size)): raw_preds += pipe(batch) return raw_preds MODEL_NAME = TOKENIZER_NAME = "IlyaGusev/xlm_roberta_large_headline_cause_simple" tokenizer = AutoTokenizer.from_pretrained(TOKENIZER_NAME, do_lower_case=False) model = AutoModelForSequenceClassification.from_pretrained(MODEL_NAME) model.eval() pipe = pipeline("text-classification", model=model, tokenizer=tokenizer, framework="pt", return_all_scores=True) texts = [ ( "Judge issues order to allow indoor worship in NC churches", "Some local churches resume indoor services after judge lifted NC governor’s restriction" ), ( "Gov. Kevin Stitt defends $2 million purchase of malaria drug touted by Trump", "Oklahoma spent $2 million on malaria drug touted by Trump" ), ( "Песков опроверг свой перевод на удаленку", "Дмитрий Песков перешел на удаленку" ) ] pipe_predict(texts, pipe) ``` #### Limitations and bias The models are intended to be used on news headlines. No other limitations are known. ## Training data * HuggingFace dataset: [IlyaGusev/headline_cause](https://huggingface.co/datasets/IlyaGusev/headline_cause) * GitHub: [IlyaGusev/HeadlineCause](https://github.com/IlyaGusev/HeadlineCause) ## Training procedure * Notebook: [HeadlineCause](https://colab.research.google.com/drive/1NAnD0OJ0TnYCJRsHpYUyYkjr_yi8ObcA) * Stand-alone script: [train.py](https://github.com/IlyaGusev/HeadlineCause/blob/main/headline_cause/train.py) ## Eval results Evaluation results can be found in the [arxiv paper](https://arxiv.org/pdf/2108.12626.pdf). ### BibTeX entry and citation info ```bibtex @misc{gusev2021headlinecause, title={HeadlineCause: A Dataset of News Headlines for Detecting Causalities}, author={Ilya Gusev and Alexey Tikhonov}, year={2021}, eprint={2108.12626}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
{"language": ["ru", "en"], "license": "apache-2.0", "tags": ["xlm-roberta-large"], "datasets": ["IlyaGusev/headline_cause"], "widget": [{"text": "\u041f\u0435\u0441\u043a\u043e\u0432 \u043e\u043f\u0440\u043e\u0432\u0435\u0440\u0433 \u0441\u0432\u043e\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434 \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043a\u0443</s>\u0414\u043c\u0438\u0442\u0440\u0438\u0439 \u041f\u0435\u0441\u043a\u043e\u0432 \u043f\u0435\u0440\u0435\u0448\u0435\u043b \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043a\u0443"}]}
text-classification
IlyaGusev/xlm_roberta_large_headline_cause_simple
[ "transformers", "pytorch", "xlm-roberta", "text-classification", "xlm-roberta-large", "ru", "en", "dataset:IlyaGusev/headline_cause", "arxiv:2108.12626", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2108.12626" ]
[ "ru", "en" ]
TAGS #transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
# XLM-RoBERTa HeadlineCause Simple ## Model description This model was trained to predict the presence of causal relations between two headlines. This model is for the Simple task with 3 possible labels: A causes B, B causes A, no causal relation. English and Russian languages are supported. You can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token. For example: ## Intended uses & limitations #### How to use #### Limitations and bias The models are intended to be used on news headlines. No other limitations are known. ## Training data * HuggingFace dataset: IlyaGusev/headline_cause * GitHub: IlyaGusev/HeadlineCause ## Training procedure * Notebook: HeadlineCause * Stand-alone script: URL ## Eval results Evaluation results can be found in the arxiv paper. ### BibTeX entry and citation info
[ "# XLM-RoBERTa HeadlineCause Simple", "## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Simple task with 3 possible labels: A causes B, B causes A, no causal relation. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:", "## Intended uses & limitations", "#### How to use", "#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.", "## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause", "## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL", "## Eval results\n\nEvaluation results can be found in the arxiv paper.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# XLM-RoBERTa HeadlineCause Simple", "## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Simple task with 3 possible labels: A causes B, B causes A, no causal relation. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:", "## Intended uses & limitations", "#### How to use", "#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.", "## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause", "## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL", "## Eval results\n\nEvaluation results can be found in the arxiv paper.", "### BibTeX entry and citation info" ]
[ 83, 12, 93, 9, 5, 26, 36, 18, 15, 11 ]
[ "passage: TAGS\n#transformers #pytorch #xlm-roberta #text-classification #xlm-roberta-large #ru #en #dataset-IlyaGusev/headline_cause #arxiv-2108.12626 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# XLM-RoBERTa HeadlineCause Simple## Model description\n\nThis model was trained to predict the presence of causal relations between two headlines. This model is for the Simple task with 3 possible labels: A causes B, B causes A, no causal relation. English and Russian languages are supported.\n\nYou can use hosted inference API to infer a label for a headline pair. To do this, you shoud seperate headlines with token.\nFor example:## Intended uses & limitations#### How to use#### Limitations and bias\n\nThe models are intended to be used on news headlines. No other limitations are known.## Training data\n\n* HuggingFace dataset: IlyaGusev/headline_cause\n* GitHub: IlyaGusev/HeadlineCause## Training procedure\n\n* Notebook: HeadlineCause\n* Stand-alone script: URL## Eval results\n\nEvaluation results can be found in the arxiv paper.### BibTeX entry and citation info" ]
[ -0.06559142470359802, 0.12409330904483795, -0.004736669361591339, 0.01258858386427164, 0.1024930477142334, -0.009730619378387928, 0.2541933059692383, 0.10473453998565674, 0.09829641133546829, 0.11251704394817352, 0.019058819860219955, 0.04459993913769722, 0.059718601405620575, 0.1207197904586792, 0.027326617389917374, -0.1685541421175003, 0.04621453210711479, -0.0320458859205246, 0.12373984605073929, 0.06152605637907982, 0.12417816370725632, -0.03459414094686508, 0.017005467787384987, 0.03080069273710251, -0.08371367305517197, 0.10237113386392593, -0.0028406018391251564, -0.03710825741291046, 0.05529459938406944, 0.09118533134460449, 0.050086989998817444, 0.04837304726243019, 0.03528250753879547, -0.22915688157081604, 0.007279682904481888, 0.04853357747197151, -0.07589651644229889, -0.0000061432392612914555, 0.11944204568862915, -0.11150060594081879, 0.1217898577451706, -0.14926721155643463, 0.03679969534277916, 0.025785943493247032, -0.0540250763297081, -0.1055329218506813, -0.09106611460447311, 0.12620744109153748, 0.05928599834442139, 0.15152503550052643, -0.05736839398741722, 0.09049808233976364, 0.00555464718490839, 0.03015242889523506, 0.1549454629421234, -0.16737523674964905, -0.016719823703169823, 0.016247129067778587, -0.03681835159659386, -0.05940042436122894, -0.04275717958807945, -0.006501692812889814, 0.0560053251683712, -0.01471721101552248, -0.02698337286710739, 0.030875639989972115, -0.11511363089084625, -0.03192927688360214, -0.0829392597079277, -0.06107987463474274, 0.15666896104812622, -0.008257431909441948, -0.04196537658572197, -0.13441218435764313, -0.011965849436819553, 0.11769390106201172, 0.026813210919499397, 0.047450341284275055, 0.03234078735113144, 0.018022088333964348, 0.10115581005811691, -0.07506276667118073, -0.1460968405008316, -0.04078023135662079, -0.029976222664117813, 0.15760935842990875, 0.04810040444135666, 0.03390014171600342, -0.06303410232067108, 0.1159539520740509, -0.08558819442987442, -0.10852284729480743, -0.015420989133417606, -0.021067555993795395, -0.10528039187192917, 0.031923554837703705, -0.03415298834443092, -0.11589232832193375, 0.03492472320795059, 0.134735569357872, -0.025153042748570442, 0.0070150140672922134, -0.009798628278076649, 0.05808848515152931, 0.013301701284945011, 0.14421841502189636, -0.025808898732066154, -0.00795274879783392, 0.0630873516201973, 0.05275480076670647, 0.06079481914639473, 0.002698500407859683, -0.040879327803850174, -0.07680803537368774, 0.0002379251382080838, 0.04746069014072418, 0.03517002984881401, 0.028538359329104424, -0.06818574666976929, 0.02953844517469406, 0.08355960249900818, -0.1843627542257309, -0.0026876621413975954, 0.012418859638273716, -0.0027057144325226545, 0.020054934546351433, 0.09385555237531662, -0.01154286228120327, -0.07781855016946793, 0.010944467037916183, -0.032895300537347794, 0.03902072459459305, -0.08598669618368149, -0.09013231098651886, 0.047317035496234894, 0.0033167721703648567, -0.020417580381035805, -0.05136879161000252, -0.20530377328395844, -0.08056767284870148, -0.004775987472385168, -0.053190991282463074, 0.001355978543870151, -0.06489390879869461, 0.006334072444587946, -0.006930133793503046, 0.014473226852715015, -0.03753142058849335, -0.04160969704389572, 0.0024197862949222326, -0.022413158789277077, 0.046079833060503006, 0.08165982365608215, 0.011879215948283672, -0.07991144806146622, -0.0013207379961386323, -0.05685556307435036, 0.14730143547058105, -0.09678900986909866, 0.021203741431236267, -0.05066431686282158, 0.02952084317803383, 0.009700249880552292, 0.08157993853092194, 0.056312259286642075, 0.1322629451751709, -0.20538638532161713, -0.07733827829360962, 0.24897582828998566, -0.14116977155208588, -0.06417906284332275, 0.07542077451944351, -0.04270630329847336, 0.13583463430404663, 0.07578208297491074, 0.12199220806360245, -0.023593071848154068, -0.06645963340997696, -0.09540807455778122, -0.10044960677623749, 0.0004898788756690919, 0.09947740286588669, 0.035843998193740845, -0.07275845855474472, 0.06227327138185501, 0.04368594288825989, -0.00639557559043169, -0.08475241810083389, 0.0003580805496312678, -0.04463837295770645, -0.005680369213223457, -0.007895225659012794, -0.06217021122574806, -0.028332840651273727, 0.017042752355337143, -0.0482998862862587, -0.1437085121870041, 0.01735100708901882, 0.0683184564113617, -0.03541857749223709, 0.050632983446121216, -0.038805317133665085, 0.009237363934516907, -0.03954701125621796, 0.02717648819088936, -0.1664983481168747, -0.03697375953197479, 0.023169951513409615, -0.025427112355828285, 0.07722122222185135, 0.0019250399200245738, -0.007094068452715874, -0.0005368053680285811, -0.023677991703152657, -0.008599485270678997, -0.05990421399474144, -0.03024480678141117, -0.04895088076591492, -0.15849734842777252, 0.037075985223054886, -0.06454002112150192, 0.10592564195394516, -0.18077638745307922, 0.058299947530031204, 0.02204415202140808, 0.07254865765571594, 0.020547032356262207, -0.02269568108022213, 0.03209685534238815, 0.0013831439428031445, -0.08383895456790924, -0.01904960907995701, -0.01632155105471611, -0.010128329508006573, -0.07996305823326111, 0.09107412397861481, -0.11227576434612274, -0.09902529418468475, 0.04966764152050018, 0.026561757549643517, -0.07429132610559464, -0.04842469096183777, -0.0740785226225853, -0.019090062007308006, -0.09119214862585068, -0.0792742595076561, 0.13066768646240234, 0.021624188870191574, 0.06517985463142395, -0.0719013661146164, -0.04477913677692413, -0.030493156984448433, -0.04240395501255989, -0.04065495356917381, 0.09232550859451294, 0.06964965909719467, -0.03639749810099602, 0.08874498307704926, -0.055171530693769455, -0.051115982234478, 0.2328280508518219, 0.03312302380800247, -0.11050843447446823, 0.035366401076316833, 0.01674388349056244, 0.04043522849678993, 0.1033126711845398, -0.12473013252019882, 0.03130679950118065, 0.05066962167620659, 0.020302103832364082, 0.06307008117437363, -0.1542252153158188, 0.0002965459425467998, 0.009154492057859898, -0.06036364287137985, -0.10811816900968552, 0.023770466446876526, 0.0012526630889624357, 0.08801067620515823, -0.06748777627944946, 0.10367690771818161, -0.021217945963144302, -0.07645891606807709, -0.16248275339603424, 0.1655869036912918, -0.07186438143253326, -0.16274112462997437, -0.14120334386825562, 0.05886061117053032, -0.05371220037341118, 0.01904231123626232, 0.10952523350715637, -0.0460825189948082, -0.06556128710508347, -0.1180650144815445, 0.049659233540296555, 0.06543901562690735, -0.08170044422149658, -0.0037445626221597195, 0.06514004617929459, 0.009896512143313885, -0.12158166617155075, -0.02458648569881916, -0.041157256811857224, -0.0943811908364296, 0.0466759130358696, -0.03784393519163132, 0.04491330683231354, 0.06598647683858871, 0.038794416934251785, -0.03174594044685364, -0.055933233350515366, 0.12361373007297516, -0.07536325603723526, 0.03872127830982208, 0.11515145003795624, 0.020496169105172157, 0.08836420625448227, 0.1265345960855484, -0.013763556256890297, -0.06803819537162781, 0.029576782137155533, 0.05274979770183563, -0.04457443580031395, -0.3321106433868408, -0.06435389071702957, -0.060119930654764175, -0.05059106647968292, 0.00735956896096468, 0.03961123526096344, -0.026683665812015533, 0.05206681415438652, -0.10257341712713242, 0.019389323890209198, 0.06769458949565887, 0.10237401723861694, 0.07276929914951324, 0.048694904893636703, 0.07492970675230026, -0.0812646746635437, 0.03731866180896759, 0.06771038472652435, 0.06689181923866272, 0.20861883461475372, -0.04034228250384331, 0.0854426771402359, 0.09599321335554123, -0.030092749744653702, -0.00969027541577816, 0.11692013591527939, 0.0315941721200943, 0.029047096148133278, -0.01790051907300949, -0.0943019837141037, -0.02479447051882744, 0.13696563243865967, -0.10470571368932724, -0.03867688775062561, -0.047320667654275894, 0.01713121496140957, 0.08369933068752289, 0.15357917547225952, 0.061080388724803925, -0.11609883606433868, -0.0713326632976532, 0.05177077651023865, -0.021090686321258545, -0.0500577948987484, -0.01532838772982359, 0.015323004685342312, -0.10982272028923035, 0.09321039170026779, 0.060631539672613144, 0.10352028161287308, -0.010320449247956276, -0.02285824529826641, -0.10565676540136337, 0.06558399647474289, -0.04818632826209068, 0.14137886464595795, -0.1392063945531845, 0.19550132751464844, -0.0021973662078380585, 0.0964946299791336, -0.07606053352355957, 0.0692000463604927, 0.030892902985215187, -0.0024828508030623198, 0.1446918547153473, -0.021281301975250244, -0.08053450286388397, -0.005394588690251112, -0.11294333636760712, 0.028310606256127357, -0.020522987470030785, -0.07388443499803543, 0.09394167363643646, 0.02995857037603855, 0.009610363282263279, -0.019022811204195023, 0.036656592041254044, -0.164641335606575, -0.23357492685317993, 0.05182971805334091, -0.023768654093146324, -0.028810014948248863, -0.06936665624380112, -0.08960254490375519, 0.04956923797726631, 0.1196792721748352, -0.13991160690784454, -0.11645299941301346, -0.10076431930065155, 0.007674820721149445, 0.09796147048473358, -0.08384916931390762, -0.013474597595632076, 0.005884016398340464, 0.17030194401741028, -0.08288620412349701, -0.019192887470126152, 0.03661937266588211, -0.11474266648292542, -0.1620703637599945, -0.05623698979616165, 0.12084560096263885, 0.00454015051946044, 0.03453131765127182, 0.023207632824778557, 0.018599815666675568, -0.03634072095155716, -0.08240409940481186, 0.03504205495119095, 0.18317203223705292, 0.037703584879636765, 0.09164392203092575, -0.14869414269924164, -0.22039823234081268, -0.10560493171215057, -0.10065685957670212, 0.07185133546590805, 0.32066014409065247, -0.0508592464029789, 0.1472492218017578, 0.08957644551992416, -0.15843230485916138, -0.19030259549617767, 0.001652985461987555, 0.06292735040187836, 0.05297812446951866, 0.043326109647750854, -0.1352660208940506, 0.0027586380019783974, 0.052869994193315506, -0.005148718599230051, 0.08169195055961609, -0.15043923258781433, -0.1617499142885208, 0.011364406906068325, 0.0022470538970083, 0.03185863047838211, -0.11676188558340073, -0.016264189034700394, -0.07040738314390182, -0.10647463798522949, 0.019644716754555702, 0.009595000185072422, 0.07436317205429077, -0.006787296384572983, 0.028293238952755928, 0.02116480842232704, -0.06034764274954796, 0.11733996868133545, 0.045365676283836365, 0.042445115745067596, -0.04432453215122223, 0.011635140515863895, 0.13605467975139618, -0.048088353127241135, 0.137429341673851, -0.03017200343310833, -0.004161748569458723, -0.15333063900470734, -0.08749385178089142, -0.03947688266634941, 0.014988860115408897, -0.0584200955927372, -0.039048537611961365, -0.026402108371257782, 0.020476138219237328, 0.1060699000954628, -0.025543460622429848, 0.04219769686460495, -0.09863486140966415, 0.021095579490065575, 0.06864192336797714, 0.12117026001214981, 0.04262391850352287, -0.08219785243272781, 0.003690919606015086, -0.025888198986649513, 0.030174115672707558, -0.16794967651367188, 0.02161531336605549, 0.09895937889814377, 0.019148392602801323, 0.12293247878551483, 0.020839599892497063, -0.15922759473323822, 0.057757504284381866, 0.06389176845550537, -0.10964808613061905, -0.046288274228572845, 0.008450621739029884, 0.12845617532730103, -0.04569990560412407, -0.03125496953725815, 0.08700932562351227, -0.05754115432500839, -0.029449643567204475, -0.001574539695866406, 0.0586429238319397, 0.027162756770849228, 0.09537194669246674, -0.018179165199398994, 0.03186976909637451, -0.031192079186439514, 0.11390583217144012, 0.06117996945977211, -0.03144483268260956, 0.07601790130138397, 0.041685428470373154, -0.0660284012556076, -0.03088560327887535, -0.056393470615148544, 0.14154867827892303, -0.10048960894346237, -0.08527134358882904, -0.09550227969884872, -0.03927239030599594, 0.002445157617330551, 0.0595451258122921, 0.023633679375052452, -0.010308719240128994, 0.03144662082195282, -0.021534867584705353, -0.06618094444274902, 0.085734061896801, 0.10832422226667404, 0.00394726637750864, 0.02257390506565571, -0.017483826726675034, 0.026595301926136017, -0.0023641884326934814, -0.007458440028131008, -0.004253210965543985, -0.06846501678228378, 0.006158378440886736, -0.21399514377117157, 0.05230125039815903, -0.06375279277563095, -0.03629321977496147, 0.00367243611253798, -0.041714899241924286, -0.0040193707682192326, 0.04263387620449066, -0.0565219521522522, -0.01864456571638584, -0.061454080045223236, 0.11072444915771484, -0.14697128534317017, -0.02961553819477558, 0.052670709788799286, -0.11233026534318924, 0.10857227444648743, 0.07473135739564896, -0.006381319835782051, 0.015429941937327385, -0.16875216364860535, 0.03126984462141991, -0.021939588710665703, 0.009050074964761734, 0.02628561295568943, -0.08646640181541443, 0.02405456081032753, 0.0028567169792950153, -0.03696979582309723, -0.01684272289276123, -0.010945584625005722, -0.07539742439985275, 0.05986400693655014, 0.04791654646396637, -0.08354353904724121, -0.009964080527424812, 0.07119867205619812, 0.03845708444714546, 0.07591082155704498, 0.10554870218038559, -0.10101523995399475, 0.09530611336231232, -0.11890929192304611, 0.001674121362157166, 0.006326158996671438, 0.03068060800433159, 0.016239559277892113, -0.032383836805820465, 0.07047540694475174, -0.003729054471477866, 0.2423827201128006, 0.025264879688620567, 0.08736653625965118, 0.033036064356565475, -0.059291671961545944, 0.06447241455316544, -0.005229580216109753, 0.027755293995141983, -0.027603160589933395, 0.07328212261199951, -0.06424051523208618, -0.06947842240333557, 0.04254915565252304, -0.07615373283624649, 0.15987522900104523, 0.06486020982265472, 0.06340613216161728, 0.10170547664165497, 0.0639427974820137, -0.04675943776965141, -0.11539951711893082, -0.11598178744316101, 0.011813822202384472, -0.016466017812490463, -0.059895407408475876, 0.07171274721622467, 0.1826220601797104, -0.11161904036998749, 0.08935011178255081, -0.012709670700132847, -0.04146057367324829, -0.07989299297332764, -0.15113215148448944, -0.04696238413453102, -0.030212320387363434, 0.027282647788524628, -0.12104355543851852, 0.038866911083459854, 0.01691615581512451, 0.006688374560326338, -0.0032878939528018236, 0.11383029073476791, 0.07114818692207336, -0.058445025235414505, 0.028743373230099678, 0.005104276817291975, 0.01778065599501133, 0.03096623346209526, 0.0012815219815820456, 0.03111160174012184, 0.037615496665239334, 0.014863545075058937, 0.08789355307817459, 0.06076847016811371, -0.010230490006506443, -0.006889525800943375, -0.04865295812487602, -0.014328612945973873, 0.02324376255273819, 0.037733737379312515, 0.12241800874471664, 0.06400396674871445, 0.01207953691482544, 0.0038974201306700706, 0.15968993306159973, 0.0024876748211681843, -0.08800721913576126, -0.09552355855703354, 0.12891943752765656, 0.026849154382944107, 0.02850181609392166, 0.005901357624679804, -0.15104033052921295, 0.014415840618312359, 0.16756100952625275, 0.1448090821504593, 0.036767806857824326, 0.015093710273504257, -0.03393732011318207, 0.016687531024217606, 0.01950518786907196, 0.026074741035699844, 0.013356688432395458, 0.2896900475025177, -0.05609767511487007, 0.040548887103796005, -0.03592612221837044, 0.01794196479022503, -0.08273439854383469, 0.07086008042097092, -0.04385773837566376, -0.03739095479249954, -0.023243311792612076, 0.06684453040361404, -0.01581518165767193, -0.2447534203529358, -0.012409832328557968, -0.08415526151657104, -0.09053628891706467, 0.007358245551586151, 0.08047625422477722, -0.0009794783545657992, 0.07978391647338867, 0.005849531386047602, -0.022992407903075218, 0.15613767504692078, -0.02169669046998024, -0.046561289578676224, -0.004056375473737717, 0.04579685255885124, 0.0017179740825667977, 0.210303395986557, -0.006270500831305981, 0.12604595720767975, 0.06251505762338638, 0.038896188139915466, -0.08006361126899719, 0.128806009888649, 0.014724058099091053, 0.004088154993951321, 0.018272321671247482, 0.09518790245056152, -0.061398692429065704, -0.030297202989459038, 0.10466194152832031, -0.047835517674684525, 0.06281450390815735, -0.000888418173417449, -0.052931398153305054, -0.09084808826446533, 0.10317269712686539, -0.11817675083875656, 0.084322489798069, 0.1387755274772644, -0.054785553365945816, -0.021362770348787308, -0.015644874423742294, 0.07953987270593643, 0.003111541271209717, 0.10321072489023209, 0.004953831434249878, -0.14121635258197784, 0.06703904271125793, 0.032903775572776794, 0.0528128407895565, -0.24116170406341553, -0.06402191519737244, -0.0008970237104222178, -0.05563868582248688, -0.029778100550174713, 0.08535218238830566, 0.06557538360357285, 0.04648313298821449, -0.04850737005472183, -0.2141234278678894, 0.026115208864212036, 0.1210969015955925, -0.0676237940788269, -0.08270158618688583 ]
null
null
transformers
# Harry Botter Model
{"tags": ["conversational"]}
text-generation
Ilyabarigou/Genesis-harrybotter
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Harry Botter Model
[ "# Harry Botter Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Harry Botter Model" ]
[ 51, 5 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Harry Botter Model" ]
[ -0.011924241669476032, 0.07558048516511917, -0.006045501213520765, 0.02533215656876564, 0.11921688169240952, 0.022200537845492363, 0.1522882729768753, 0.11679557710886002, 0.057563524693250656, -0.02085576020181179, 0.15138477087020874, 0.2035307139158249, -0.006642164662480354, 0.1147860512137413, -0.07024450600147247, -0.29858720302581787, 0.058895010501146317, 0.051018454134464264, -0.015296518802642822, 0.12433689087629318, 0.09756331890821457, -0.07558745890855789, 0.09582038968801498, -0.01477403286844492, -0.19182758033275604, -0.01306254044175148, 0.00902537815272808, -0.12037758529186249, 0.12279859930276871, 0.06234699860215187, 0.049088262021541595, 0.024530502036213875, -0.024377627298235893, -0.09287156909704208, 0.04108414426445961, -0.016813211143016815, -0.049546413123607635, 0.08416710793972015, 0.03116360865533352, -0.09995241463184357, 0.14875808358192444, 0.12123207747936249, 0.019076721742749214, 0.05034710466861725, -0.14264754951000214, 0.04833603277802467, 0.019096260890364647, 0.051999449729919434, 0.06553073972463608, 0.10371603816747665, -0.03236905485391617, 0.12141604721546173, -0.08987226337194443, 0.1054140254855156, 0.13892844319343567, -0.3666025698184967, -0.03697989135980606, 0.12082535773515701, 0.05128045007586479, 0.03938331827521324, -0.0811382457613945, 0.05618010461330414, 0.018279138952493668, 0.010822718963027, -0.027936626225709915, -0.07198404520750046, -0.08502551168203354, 0.02798040769994259, -0.09179434180259705, -0.007599234580993652, 0.2983929216861725, -0.05756158381700516, 0.044184375554323196, -0.08058745414018631, -0.11176921427249908, 0.04818541556596756, -0.052042193710803986, -0.02064090594649315, -0.07186583429574966, 0.06695090234279633, 0.0016078863991424441, -0.07378562539815903, -0.10580114275217056, -0.02111095003783703, -0.1431223601102829, 0.2330487072467804, 0.03143708035349846, 0.05303474888205528, -0.22927497327327728, 0.1056797131896019, 0.07166622579097748, -0.07250707596540451, 0.03723868355154991, -0.11348045617341995, 0.04477076232433319, -0.004729044158011675, -0.03900756314396858, -0.08015182614326477, 0.03846600279211998, 0.14041833579540253, 0.02763868309557438, 0.020916512235999107, 0.013872298412024975, 0.054381392896175385, 0.08008968085050583, 0.04041837528347969, -0.0039005191065371037, -0.068547323346138, 0.030956899747252464, -0.07335761934518814, -0.01923316717147827, -0.05729276314377785, -0.18736591935157776, -0.00499572791159153, 0.054550815373659134, 0.026456601917743683, 0.026256870478391647, 0.10115302354097366, -0.022861361503601074, -0.05382191017270088, -0.016987835988402367, -0.021041911095380783, -0.0046003046445548534, 0.008728265762329102, -0.023519448935985565, 0.14591315388679504, -0.0003989463148172945, 0.00730133755132556, -0.10901280492544174, 0.039809808135032654, -0.09637843817472458, 0.0036321962252259254, -0.0244060680270195, -0.05726319178938866, -0.009603687562048435, -0.022233283147215843, 0.026521485298871994, -0.12827791273593903, -0.12042681872844696, 0.0027969577349722385, 0.006233477033674717, -0.060201503336429596, -0.11354707181453705, -0.0921763926744461, -0.01574881374835968, 0.04665852710604668, -0.024918176233768463, 0.004220427945256233, -0.06364105641841888, 0.0864940956234932, -0.05230875313282013, 0.0994618833065033, -0.07799424976110458, 0.0693155825138092, -0.09428588300943375, -0.0444047674536705, -0.11336897313594818, 0.08536967635154724, 0.028509225696325302, 0.10603751242160797, -0.005829774774610996, -0.02935916744172573, -0.06257277727127075, 0.06694389879703522, -0.07341917604207993, 0.268374502658844, -0.08307521045207977, -0.13693396747112274, 0.2999359667301178, -0.04533224180340767, -0.11940553784370422, 0.1135815680027008, -0.02061321958899498, 0.09979145973920822, 0.12699702382087708, 0.14042118191719055, -0.07887980341911316, -0.022720571607351303, 0.09273991733789444, 0.09389936923980713, -0.09523878246545792, 0.03929798677563667, 0.002924959873780608, -0.009900739416480064, -0.15086086094379425, 0.04526785761117935, 0.08669014275074005, 0.033574655652046204, -0.06505415588617325, -0.011714792810380459, 0.005312055349349976, -0.0058319056406617165, 0.10061634331941605, -0.006077779456973076, 0.14229802787303925, -0.041392046958208084, -0.06524384766817093, -0.028860656544566154, 0.003360471222549677, -0.034347858279943466, 0.017627378925681114, -0.07947567850351334, 0.09254090487957001, 0.029970606788992882, 0.0780383050441742, -0.1657724380493164, -0.03886779397726059, -0.010008060373365879, 0.11854968965053558, 0.06728756427764893, 0.12378968298435211, 0.045686304569244385, -0.00576963322237134, -0.0007797376601956785, 0.025965102016925812, 0.15058739483356476, -0.023026110604405403, -0.11122996360063553, -0.14544342458248138, 0.0641157478094101, -0.052358727902173996, 0.12999992072582245, -0.09122710675001144, 0.020328037440776825, 0.007364839315414429, 0.1199268326163292, 0.0017816012259572744, 0.031269606202840805, 0.01717413403093815, -0.033718157559633255, -0.07569114863872528, 0.013137868605554104, 0.09711991995573044, -0.02019486203789711, -0.06430136412382126, 0.1569564938545227, -0.128038689494133, 0.15115121006965637, 0.19567988812923431, -0.24825067818164825, -0.01144667062908411, -0.06520549207925797, -0.039673998951911926, 0.024284223094582558, 0.04227888211607933, -0.01824258640408516, 0.1899678260087967, -0.015132489614188671, 0.16729694604873657, -0.040657106786966324, -0.03464294224977493, -0.017728980630636215, -0.036719318479299545, 0.000293891120236367, 0.08518462628126144, 0.10464782267808914, -0.17029987275600433, 0.16070130467414856, 0.11307036131620407, 0.05897064879536629, 0.16870146989822388, 0.07077369093894958, -0.0012605026131495833, 0.05705607309937477, -0.035489168018102646, -0.05814872682094574, -0.01945341005921364, -0.28780829906463623, -0.0710834488272667, 0.06908274441957474, -0.03917999193072319, 0.09125730395317078, -0.0957622230052948, -0.0241695623844862, -0.030436839908361435, 0.02206907980144024, 0.06516417115926743, 0.0867077112197876, 0.03691563755273819, 0.14478972554206848, -0.011700277216732502, -0.09491980820894241, 0.05817728117108345, 0.02228638343513012, -0.09890207648277283, 0.18573878705501556, -0.12324277311563492, -0.33283060789108276, -0.0993875041604042, -0.14108334481716156, -0.04472546651959419, 0.043351124972105026, 0.06131019443273544, -0.08996840566396713, -0.03392030671238899, -0.018058238551020622, 0.0812867134809494, -0.10129203647375107, 0.014162407256662846, -0.06513448059558868, 0.04014292731881142, -0.14286157488822937, -0.08942779153585434, -0.04804599657654762, -0.06019679084420204, -0.04969602823257446, 0.15342482924461365, -0.13994711637496948, 0.022785943001508713, 0.21180035173892975, 0.06214172765612602, 0.0600946769118309, -0.028877051547169685, 0.21355800330638885, -0.10044173896312714, 0.025469431653618813, 0.10841948539018631, -0.025457436218857765, 0.046459514647722244, 0.11926599591970444, 0.008185046724975109, -0.09856324642896652, 0.028210820630192757, -0.05007697641849518, -0.04768940433859825, -0.20879457890987396, -0.12962493300437927, -0.12550827860832214, 0.10276027023792267, 0.09517128020524979, 0.05206633731722832, 0.12744316458702087, 0.06436678767204285, -0.032751645892858505, 0.04778659716248512, 0.07121498137712479, 0.10163547843694687, 0.19090598821640015, -0.07500734180212021, 0.14422544836997986, -0.0041788178496062756, -0.15957143902778625, 0.0692005455493927, 0.0032298779115080833, 0.09618064016103745, 0.06962815672159195, 0.047353051602840424, -0.014447933062911034, 0.06588467210531235, 0.1410602629184723, 0.10962111502885818, 0.041902683675289154, -0.026382144540548325, -0.05333010107278824, -0.03865724056959152, -0.051190413534641266, 0.08436689525842667, 0.08112882077693939, -0.1386065036058426, -0.03133212774991989, -0.04748592898249626, 0.0662497952580452, 0.11269158869981766, 0.11110538989305496, -0.2056925892829895, -0.04099695757031441, 0.07780016213655472, -0.06713387370109558, -0.1276877522468567, 0.10061051696538925, 0.011255689896643162, -0.16469673812389374, 0.043871328234672546, -0.039465490728616714, 0.11555550992488861, -0.02683788724243641, 0.07608189433813095, -0.11584950238466263, -0.0807337611913681, 0.010367783717811108, 0.0922289565205574, -0.3109992444515228, 0.17516104876995087, 0.002251893514767289, -0.05919623374938965, -0.10378088057041168, -0.004387286026030779, 0.026751916855573654, 0.09049618244171143, 0.11409953236579895, -0.010357880964875221, 0.027599239721894264, -0.03365997597575188, -0.048758815973997116, 0.03156594932079315, 0.10737989097833633, -0.06628064066171646, 0.02317536249756813, -0.031748343259096146, -0.010486900806427002, -0.03507132828235626, -0.036717966198921204, 0.015414411202073097, -0.1786949187517166, 0.09514360129833221, -0.03449539840221405, 0.07246674597263336, 0.016853880137205124, -0.04104842618107796, -0.012390142306685448, 0.1883266419172287, -0.0749344751238823, -0.0855703055858612, -0.08326432853937149, -0.00245704990811646, 0.04150674119591713, -0.039717260748147964, 0.0008765349048189819, -0.06594062596559525, 0.06143387779593468, -0.08032035827636719, -0.19578321278095245, 0.12362349778413773, -0.09309298545122147, -0.08398197591304779, -0.0526876375079155, 0.20135685801506042, -0.006124383304268122, 0.041189614683389664, 0.043700896203517914, 0.016260426491498947, -0.13743196427822113, -0.08316417038440704, 0.01940871588885784, 0.005569432862102985, 0.017102492973208427, 0.05277327820658684, -0.06542559713125229, -0.06509506702423096, -0.06477241218090057, 0.022489149123430252, 0.29401999711990356, 0.13227759301662445, -0.033291690051555634, 0.19065819680690765, 0.12395700812339783, -0.059531282633543015, -0.26545894145965576, -0.09611579775810242, -0.11541697382926941, -0.038641516119241714, -0.09498262405395508, -0.222857266664505, 0.13464972376823425, -0.04401940107345581, 0.004739041905850172, 0.1326064169406891, -0.2615087628364563, -0.0961230993270874, 0.20265160501003265, -0.011812406592071056, 0.413855642080307, -0.10557229071855545, -0.05739300325512886, -0.04787478595972061, -0.16503079235553741, 0.18141311407089233, -0.026320185512304306, 0.10527575761079788, -0.03855364769697189, 0.17836184799671173, 0.05348103120923042, -0.0064281318336725235, 0.06843408197164536, 0.019671184942126274, -0.05677688494324684, -0.08085260540246964, -0.13024432957172394, 0.04093929007649422, 0.03373873978853226, 0.0302969329059124, -0.05740656703710556, 0.013091959990561008, -0.12365676462650299, -0.05256965011358261, -0.077980175614357, 0.05387137830257416, 0.004744412377476692, -0.05897478014230728, -0.02165861614048481, -0.038089487701654434, -0.016046812757849693, 0.02695474959909916, 0.18108037114143372, -0.04786165803670883, 0.1857043206691742, 0.07029859721660614, 0.14048010110855103, -0.20068874955177307, -0.027147360146045685, -0.02814263291656971, -0.0471981056034565, 0.09090109169483185, -0.08388253301382065, 0.011000548489391804, 0.12717081606388092, -0.01829010248184204, 0.09722055494785309, 0.11394413560628891, -0.007550691720098257, -0.007805486209690571, 0.07711926102638245, -0.2984393537044525, -0.06596320122480392, -0.06369026750326157, 0.0206680316478014, 0.04877588897943497, 0.05159548297524452, 0.1953314244747162, -0.023004896938800812, -0.05865796282887459, 0.006186293438076973, 0.03810341656208038, -0.01595318876206875, 0.05693701282143593, -0.00717744929715991, 0.03144411742687225, -0.15587981045246124, 0.04300724342465401, 0.01075801346451044, -0.10806945711374283, 0.010162037797272205, 0.1550423949956894, -0.1235969215631485, -0.11819835752248764, -0.07452897727489471, 0.13541054725646973, -0.0972837507724762, 0.03634088113903999, -0.052531447261571884, -0.1694445163011551, 0.07295762002468109, 0.06605784595012665, 0.06212788075208664, 0.08308956772089005, -0.09481953084468842, -0.025968877598643303, -0.02309991605579853, 0.001189346075989306, 0.03529423847794533, -0.035886283963918686, -0.014477014541625977, 0.09874561429023743, -0.02737048640847206, 0.11686892062425613, -0.10523827373981476, -0.1027035042643547, -0.16766227781772614, 0.030802806839346886, -0.09450483322143555, -0.07101679593324661, -0.12813487648963928, -0.05389508977532387, -0.01984766311943531, -0.019905399531126022, -0.0402306504547596, -0.06919519603252411, -0.12600114941596985, 0.035968877375125885, -0.030126798897981644, 0.036041259765625, -0.06326989084482193, 0.03380739316344261, 0.0692315325140953, -0.0678405612707138, 0.14889241755008698, 0.17990145087242126, -0.10435286164283752, 0.0975131168961525, -0.0889519602060318, -0.10200890898704529, 0.0713418573141098, 0.015471143648028374, 0.0615883432328701, 0.05731458589434624, 0.01082790456712246, 0.037268683314323425, 0.06276529282331467, 0.06228242814540863, 0.05054767429828644, -0.06877247989177704, 0.042119380086660385, -0.03538819029927254, -0.14496609568595886, -0.06329628080129623, -0.023074069991707802, 0.040238156914711, 0.014902899973094463, 0.11726021766662598, -0.05555926263332367, 0.08406557887792587, -0.06496543437242508, 0.03567604348063469, 0.007325074635446072, -0.17517204582691193, -0.01660844497382641, -0.08515538275241852, 0.04114030301570892, -0.0077702016569674015, 0.2291627824306488, 0.04312508925795555, -0.014858204871416092, 0.04691179841756821, 0.1112542524933815, -0.007841210812330246, 0.027601569890975952, 0.12928374111652374, 0.12551292777061462, -0.047905925661325455, -0.10813592374324799, 0.07185974717140198, 0.06137688830494881, 0.07695450633764267, 0.1707538664340973, -0.01787332072854042, 0.01634502038359642, 0.09744512289762497, -0.023074928671121597, 0.011078198440372944, -0.11550887674093246, -0.06049682945013046, -0.03210972994565964, 0.07661810517311096, -0.03306655213236809, 0.15347081422805786, 0.14917857944965363, -0.03170491009950638, 0.010032536461949348, -0.02802433632314205, -0.07337687164545059, -0.17234045267105103, -0.13035191595554352, -0.07962527126073837, -0.11915739625692368, -0.0031671677716076374, -0.12579356133937836, 0.004642921034246683, -0.0050558834336698055, 0.07350941002368927, -0.06258054822683334, 0.030217062681913376, 0.06688360869884491, -0.10448040068149567, 0.10319070518016815, -0.0028681859839707613, 0.031712669879198074, -0.04836626723408699, -0.012965714558959007, -0.12687882781028748, 0.02222576178610325, 0.003018744755536318, 0.03993877023458481, -0.06862128525972366, 0.02463512495160103, -0.10430369526147842, -0.09839354455471039, -0.04063604772090912, 0.04652511700987816, -0.036864180117845535, 0.08768046647310257, 0.010360890068113804, -0.030275018885731697, 0.014509289525449276, 0.23698560893535614, -0.06233476847410202, -0.04192838445305824, -0.063333660364151, 0.19690948724746704, 0.011645110324025154, 0.09218600392341614, 0.008101212792098522, 0.025590984150767326, -0.09099874645471573, 0.30650594830513, 0.33830851316452026, -0.12284824997186661, 0.0070076207630336285, 0.02457519806921482, 0.03790457546710968, 0.13134752213954926, 0.09212945401668549, 0.09209837019443512, 0.33520665764808655, -0.07643091678619385, 0.018853435292840004, -0.01779107376933098, -0.04636266082525253, -0.06874445825815201, 0.03411247581243515, 0.07735048234462738, -0.06976593285799026, -0.041296377778053284, 0.09373798221349716, -0.27222341299057007, 0.06330128759145737, -0.08638463169336319, -0.1938750147819519, -0.06849990785121918, -0.00003073414336540736, 0.0658903643488884, 0.022747399285435677, 0.11864315718412399, -0.01925160549581051, -0.07548891752958298, 0.08975552767515182, 0.018180914223194122, -0.22882147133350372, -0.030235884711146355, 0.12410254031419754, -0.1406983882188797, -0.0015645500971004367, -0.033573612570762634, 0.06010018289089203, 0.06259215623140335, 0.053501617163419724, -0.02656375616788864, -0.011513147503137589, -0.0007514139288105071, -0.061550188809633255, 0.008647103793919086, 0.06594982743263245, 0.021320195868611336, -0.05543436110019684, 0.10329391062259674, -0.13744744658470154, 0.035573042929172516, -0.024713361635804176, -0.048646725714206696, -0.014538262039422989, 0.044082578271627426, -0.06700418889522552, 0.06158565729856491, 0.13211174309253693, -0.0288349911570549, -0.026362113654613495, -0.03432849422097206, -0.01395602710545063, -0.022014034911990166, -0.08518198132514954, -0.12130892276763916, -0.189237579703331, -0.10463625937700272, -0.015786292031407356, -0.013267099857330322, -0.19143638014793396, -0.006191102322191, -0.1287080943584442, 0.06849942356348038, -0.15645000338554382, 0.10772757977247238, 0.10310067981481552, 0.025421759113669395, -0.008621525019407272, -0.0004820873436983675, 0.029607700183987617, 0.09256152808666229, -0.11988415569067001, -0.09238572418689728 ]
null
null
transformers
## Evaluation on Common Voice FR Test The script used for training and evaluation can be found here: https://github.com/irebai/wav2vec2 ```python import torch import torchaudio from datasets import load_dataset, load_metric from transformers import ( Wav2Vec2ForCTC, Wav2Vec2Processor, ) import re model_name = "Ilyes/wav2vec2-large-xlsr-53-french" device = "cpu" # "cuda" model = Wav2Vec2ForCTC.from_pretrained(model_name).to(device) processor = Wav2Vec2Processor.from_pretrained(model_name) ds = load_dataset("common_voice", "fr", split="test", cache_dir="./data/fr") chars_to_ignore_regex = '[\,\?\.\!\;\:\"\“\%\‘\”\�\‘\’\’\’\‘\…\·\!\ǃ\?\«\‹\»\›“\”\\ʿ\ʾ\„\∞\\|\.\,\;\:\*\—\–\─\―\_\/\:\ː\;\,\=\«\»\→]' def map_to_array(batch): speech, _ = torchaudio.load(batch["path"]) batch["speech"] = resampler.forward(speech.squeeze(0)).numpy() batch["sampling_rate"] = resampler.new_freq batch["sentence"] = re.sub(chars_to_ignore_regex, '', batch["sentence"]).lower().replace("’", "'") return batch resampler = torchaudio.transforms.Resample(48_000, 16_000) ds = ds.map(map_to_array) def map_to_pred(batch): features = processor(batch["speech"], sampling_rate=batch["sampling_rate"][0], padding=True, return_tensors="pt") input_values = features.input_values.to(device) attention_mask = features.attention_mask.to(device) with torch.no_grad(): logits = model(input_values, attention_mask=attention_mask).logits pred_ids = torch.argmax(logits, dim=-1) batch["predicted"] = processor.batch_decode(pred_ids) batch["target"] = batch["sentence"] return batch result = ds.map(map_to_pred, batched=True, batch_size=16, remove_columns=list(ds.features.keys())) wer = load_metric("wer") print(wer.compute(predictions=result["predicted"], references=result["target"])) ``` ## Results WER=12.82% CER=4.40%
{"language": "fr", "license": "apache-2.0", "tags": ["audio", "automatic-speech-recognition", "speech", "xlsr-fine-tuning-week"], "datasets": ["common_voice"], "model-index": [{"name": "wav2vec2-large-xlsr-53-French by Ilyes Rebai", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Speech Recognition"}, "dataset": {"name": "Common Voice fr", "type": "common_voice", "args": "fr"}, "metrics": [{"type": "wer", "value": 12.82, "name": "Test WER"}]}]}]}
automatic-speech-recognition
Ilyes/wav2vec2-large-xlsr-53-french
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "audio", "speech", "xlsr-fine-tuning-week", "fr", "dataset:common_voice", "license:apache-2.0", "model-index", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "fr" ]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning-week #fr #dataset-common_voice #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us
## Evaluation on Common Voice FR Test The script used for training and evaluation can be found here: URL ## Results WER=12.82% CER=4.40%
[ "## Evaluation on Common Voice FR Test\nThe script used for training and evaluation can be found here: URL", "## Results\n\nWER=12.82%\n\nCER=4.40%" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning-week #fr #dataset-common_voice #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n", "## Evaluation on Common Voice FR Test\nThe script used for training and evaluation can be found here: URL", "## Results\n\nWER=12.82%\n\nCER=4.40%" ]
[ 81, 21, 11 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning-week #fr #dataset-common_voice #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n## Evaluation on Common Voice FR Test\nThe script used for training and evaluation can be found here: URL## Results\n\nWER=12.82%\n\nCER=4.40%" ]
[ -0.20887020230293274, 0.05255004018545151, -0.001490260474383831, -0.031715139746665955, 0.05659177899360657, -0.04191698506474495, 0.09780387580394745, 0.1408146470785141, 0.014676807448267937, 0.04209976643323898, 0.04482712596654892, 0.04492691904306412, 0.03416811674833298, 0.015982728451490402, -0.04949837923049927, -0.1376158893108368, 0.042778823524713516, 0.053308937698602676, 0.06346552819013596, 0.11795787513256073, 0.1145029067993164, -0.042509716004133224, 0.002352542243897915, 0.09989923238754272, -0.12300102412700653, -0.004103638231754303, 0.05191612243652344, -0.12503907084465027, 0.16422487795352936, 0.03714508190751076, 0.016898339614272118, 0.042606420814991, 0.048148855566978455, -0.2240142822265625, 0.03496440872550011, 0.013788673095405102, 0.040864959359169006, 0.03957892954349518, 0.009753752499818802, -0.015397679060697556, 0.09924789518117905, 0.1309777796268463, -0.04736059531569481, 0.09891489893198013, -0.02812216244637966, -0.22532367706298828, -0.05610734596848488, 0.02050629071891308, 0.04334605857729912, 0.14143943786621094, -0.050124458968639374, 0.15526701509952545, -0.16153505444526672, 0.08915850520133972, 0.12276580929756165, -0.26393625140190125, 0.005081563256680965, 0.01359864417463541, 0.08423537760972977, -0.026679176837205887, -0.07022669166326523, 0.026731738820672035, 0.08462724834680557, 0.020329736173152924, -0.10157254338264465, -0.04687875136733055, -0.21465256810188293, -0.009979314170777798, -0.11455974727869034, -0.01414128765463829, 0.29091182351112366, 0.044503238052129745, -0.07144252210855484, -0.045950643718242645, 0.03181690722703934, -0.05285371467471123, -0.009403398260474205, -0.013532055541872978, -0.004715921822935343, 0.023367827758193016, -0.00674388138577342, 0.009164350107312202, -0.14672906696796417, -0.14181725680828094, -0.03997521847486496, 0.08731121569871902, 0.03415308892726898, -0.006871343590319157, -0.092399463057518, 0.05008092522621155, -0.07674968242645264, -0.0708337351679802, -0.06848247349262238, 0.03786135092377663, -0.0011558759724721313, -0.019503669813275337, -0.07953373342752457, -0.06082772836089134, 0.1449413150548935, 0.0903327614068985, 0.03398000821471214, 0.022977452725172043, -0.054550547152757645, 0.07574279606342316, -0.0021413324866443872, 0.14523309469223022, -0.0037437647115439177, -0.029195809736847878, 0.044990647584199905, 0.07168611139059067, -0.00743901776149869, 0.0065715620294213295, -0.057362399995326996, -0.08365241438150406, 0.07536961138248444, 0.07829426229000092, -0.025328712537884712, -0.009314523078501225, -0.0467744804918766, 0.054079458117485046, 0.03252055123448372, -0.11367344111204147, -0.009335552342236042, 0.11694301664829254, 0.011627979576587677, 0.07096367329359055, 0.06983393430709839, 0.0279981791973114, -0.07958028465509415, -0.04901403561234474, 0.019444230943918228, 0.04024587571620941, 0.02868645079433918, -0.03846799209713936, 0.05725676193833351, -0.04700330272316933, 0.026251254603266716, -0.09505828469991684, -0.006904155015945435, -0.11304010450839996, -0.035207100212574005, 0.017549805343151093, -0.092223159968853, -0.07303525507450104, -0.071314737200737, -0.005124280229210854, -0.06797122955322266, 0.057178691029548645, -0.08197184652090073, 0.09207829087972641, 0.10166309773921967, 0.019325606524944305, -0.03242126852273941, 0.06915466487407684, -0.0373956523835659, -0.06161748617887497, 0.06104123964905739, 0.04980287700891495, -0.08520739525556564, -0.007544555701315403, -0.10245227813720703, -0.07927513867616653, -0.10937348008155823, 0.07244188338518143, 0.008112704381346703, 0.11516478657722473, -0.22018177807331085, -0.09237080067396164, 0.1821197122335434, -0.08087484538555145, -0.1018417701125145, 0.20471161603927612, 0.015529693104326725, 0.04137129709124565, 0.09288664907217026, 0.26312530040740967, 0.12388454377651215, -0.21444514393806458, 0.01882035844027996, 0.11238078027963638, 0.010113220661878586, -0.09866312146186829, 0.09092378616333008, -0.09236505627632141, -0.006580783985555172, 0.018540268763899803, -0.07764415442943573, 0.05075743421912193, -0.031346194446086884, -0.058233603835105896, -0.030321484431624413, -0.07875023782253265, -0.04515431448817253, 0.013904273509979248, 0.014991243369877338, -0.09997662156820297, -0.05997856333851814, -0.08366121351718903, 0.14451001584529877, -0.08184187859296799, 0.06965741515159607, -0.12240748852491379, 0.14747749269008636, -0.06293433904647827, -0.01604270748794079, -0.15040697157382965, 0.2604791224002838, -0.016326919198036194, 0.07712169736623764, 0.08902981877326965, 0.14256267249584198, 0.013470489531755447, -0.06584056466817856, 0.013647091574966908, -0.025378212332725525, 0.050868429243564606, -0.0020045076962560415, -0.056169796735048294, -0.17721901834011078, 0.014313152991235256, -0.07960768043994904, 0.09771842509508133, -0.17104701697826385, -0.021919481456279755, 0.07939381152391434, 0.011203547939658165, -0.03949129208922386, 0.02617737650871277, 0.05280261114239693, 0.05061769485473633, -0.0160878486931324, 0.024982763454318047, 0.031588565558195114, 0.043257713317871094, -0.07385578006505966, 0.18967723846435547, -0.11122077703475952, 0.09510055929422379, 0.13863122463226318, -0.11152306944131851, -0.006606577429920435, 0.09835795313119888, -0.03545975685119629, 0.0019757819827646017, -0.05418580397963524, -0.02768617495894432, 0.2564811706542969, -0.03105178102850914, 0.13517513871192932, -0.0806933119893074, -0.006184524390846491, 0.012928759679198265, -0.08353152871131897, 0.0319145992398262, 0.08779764920473099, 0.0030521778389811516, 0.018035126850008965, 0.023922448977828026, 0.025805560871958733, -0.1284095197916031, 0.17024478316307068, -0.11043697595596313, -0.09752113372087479, 0.04473939910531044, 0.02086230181157589, -0.02916772849857807, 0.09115561097860336, -0.23233427107334137, -0.08277462422847748, 0.04013724997639656, 0.037521135061979294, 0.08566800504922867, -0.22271573543548584, 0.035858020186424255, 0.012834138236939907, -0.11439236253499985, -0.17650631070137024, 0.09554366767406464, -0.05736482888460159, 0.053544726222753525, -0.09540478885173798, -0.18354402482509613, 0.010670658200979233, -0.0474872849881649, -0.16781818866729736, 0.10192244499921799, -0.047603022307157516, -0.1362410932779312, -0.14600184559822083, 0.07160196453332901, 0.06190390884876251, 0.004999667406082153, 0.12732276320457458, -0.10612648725509644, -0.005629435647279024, -0.04783140867948532, 0.0019095012685284019, -0.013726700097322464, 0.02076234109699726, 0.0017708037048578262, 0.02998250536620617, 0.08652620762586594, -0.16529487073421478, -0.008135190233588219, -0.04243653267621994, -0.02177727036178112, -0.0050081913359463215, -0.037289172410964966, 0.03222445771098137, 0.1923092007637024, 0.07758434116840363, 0.017377402633428574, -0.025485007092356682, 0.176389679312706, -0.13612626492977142, -0.07494605332612991, 0.1936487853527069, -0.011741738766431808, -0.05057767033576965, 0.09214366972446442, 0.0038549054879695177, -0.04580268636345863, -0.032547276467084885, -0.03491707518696785, -0.02612357586622238, -0.30028557777404785, -0.07681974023580551, -0.09588461369276047, -0.019864397123456, -0.08676566928625107, 0.055043142288923264, 0.08808067440986633, -0.04447919502854347, 0.01802719011902809, -0.13739676773548126, 0.03800798952579498, -0.01211005449295044, 0.1811586171388626, -0.023494532331824303, 0.07654327899217606, -0.09508954733610153, -0.004272835794836283, 0.014156218618154526, 0.08924917131662369, 0.11693430691957474, 0.0870388075709343, 0.12248838692903519, 0.06457579135894775, 0.1178622767329216, 0.08479726314544678, 0.003370312275364995, -0.0048699937760829926, -0.017900077626109123, 0.014871499501168728, -0.02227509766817093, -0.019421476870775223, 0.028205377981066704, 0.17774823307991028, -0.049871042370796204, -0.0812196359038353, -0.04611426219344139, 0.05017867311835289, 0.21259327232837677, 0.12689563632011414, -0.14836783707141876, -0.06348438560962677, -0.033792100846767426, -0.13567756116390228, 0.040142301470041275, 0.07944712042808533, 0.07235712558031082, -0.09721758216619492, 0.03401273861527443, 0.0550462082028389, 0.08670126646757126, -0.007011716719716787, 0.06538614630699158, -0.09388618171215057, -0.03852415829896927, 0.02572587877511978, 0.07780001312494278, -0.24776175618171692, 0.23083217442035675, -0.00015814627113286406, 0.1470443606376648, -0.016817308962345123, 0.005765104200690985, 0.05643859878182411, 0.10591499507427216, 0.12884771823883057, -0.03997435420751572, -0.042277224361896515, -0.050554294139146805, -0.05307232216000557, 0.07725046575069427, 0.011646101251244545, 0.09290565550327301, 0.012522852048277855, -0.024460814893245697, -0.02166871726512909, 0.04959062859416008, -0.07470830529928207, -0.14872634410858154, -0.03079635091125965, -0.00122411351185292, 0.21392765641212463, 0.01715991273522377, -0.044689930975437164, -0.08820565789937973, -0.21877841651439667, 0.038375213742256165, -0.12196218222379684, 0.045567888766527176, -0.031241022050380707, -0.04538090527057648, 0.0989811047911644, -0.060362111777067184, -0.035781990736722946, 0.026560122147202492, 0.03875109925866127, -0.011462964117527008, -0.011158421635627747, 0.057450708001852036, -0.11575280129909515, -0.09843186289072037, -0.025605009868741035, 0.27372920513153076, -0.020355278626084328, 0.10445871204137802, 0.05087222903966904, -0.007364411372691393, -0.051112979650497437, -0.014442753046751022, 0.0544026754796505, 0.003002568380907178, -0.1087694838643074, -0.000033546428312547505, -0.011338911019265652, -0.16024886071681976, -0.10960430651903152, -0.06776481866836548, 0.20582915842533112, 0.08652552217245102, -0.042141880840063095, 0.08789346367120743, 0.16004766523838043, -0.06332752108573914, -0.24256186187267303, -0.028947744518518448, 0.05017989128828049, 0.10179027915000916, -0.0747896060347557, -0.13482192158699036, 0.0912654846906662, -0.029364347457885742, -0.06764038652181625, 0.04643797129392624, -0.24802252650260925, -0.09383782744407654, 0.22737789154052734, -0.11570583283901215, 0.15298336744308472, -0.0648336261510849, -0.0450514480471611, 0.0076934564858675, -0.11213386803865433, -0.056866444647312164, -0.1759076565504074, 0.1182616576552391, 0.043979790061712265, 0.02715691737830639, 0.0077620442025363445, -0.02444435842335224, 0.09828882664442062, 0.09965002536773682, -0.02205098234117031, 0.039065148681402206, 0.01616787165403366, -0.10354911535978317, 0.026253316551446915, 0.12380477786064148, -0.1720818430185318, 0.04442955181002617, -0.06729494780302048, -0.05979139357805252, -0.06808698922395706, 0.10320042073726654, 0.040924377739429474, 0.051196176558732986, -0.014449630863964558, -0.061129502952098846, -0.030243197456002235, 0.038785990327596664, 0.10025795549154282, -0.14687328040599823, 0.057347193360328674, 0.13562503457069397, 0.21746736764907837, -0.07237888127565384, -0.09092329442501068, -0.00853204820305109, -0.07671640068292618, 0.1121179386973381, -0.12454991787672043, 0.02524980902671814, 0.0663907453417778, 0.048351045697927475, 0.13519275188446045, 0.030431848019361496, -0.10351768136024475, 0.05202585458755493, 0.06360132247209549, -0.017005959525704384, -0.10996463149785995, -0.0076296366751194, -0.07835883647203445, -0.031041806563735008, 0.09347279369831085, 0.1306169629096985, -0.05604055896401405, -0.006500625982880592, -0.015053542330861092, -0.0015606832457706332, -0.16204692423343658, 0.23571224510669708, 0.07423790544271469, 0.053562719374895096, -0.11479555815458298, 0.054230812937021255, -0.042473629117012024, -0.06063031777739525, 0.032307520508766174, -0.02098078466951847, -0.05845491588115692, -0.12677757441997528, -0.06616303324699402, 0.0987003743648529, 0.04573880136013031, -0.15855297446250916, -0.09856520593166351, -0.129116952419281, 0.03558565303683281, 0.14652691781520844, 0.0849030539393425, 0.0806242972612381, -0.07539507001638412, -0.03692244365811348, -0.05401221290230751, 0.03877716884016991, 0.06253913789987564, 0.014518322423100471, -0.11807381361722946, 0.11490112543106079, 0.022922974079847336, 0.07897927612066269, -0.03603586554527283, -0.05182113125920296, -0.019898876547813416, 0.08224226534366608, -0.08210620284080505, 0.006214838474988937, -0.02780016139149666, 0.016799191012978554, 0.07488898932933807, -0.08555953204631805, -0.0376107394695282, 0.09529275447130203, -0.11510865390300751, 0.023328345268964767, 0.00407171668484807, 0.1155407503247261, -0.07322986423969269, 0.05509033799171448, 0.05397645756602287, -0.07780897617340088, 0.08393951505422592, 0.12879899144172668, -0.10865294933319092, 0.13180860877037048, -0.24677905440330505, -0.1143331527709961, 0.11292754858732224, 0.0632505789399147, -0.035100825130939484, -0.0821584016084671, 0.03911389410495758, 0.13564516603946686, 0.08470812439918518, -0.002084890613332391, 0.051175180822610855, -0.05934619903564453, -0.06007065996527672, -0.11802352219820023, -0.02732066810131073, -0.009483079425990582, -0.035590264946222305, 0.11668199300765991, 0.13906192779541016, 0.16853183507919312, -0.10338834673166275, 0.035064131021499634, -0.0990397185087204, 0.07197530567646027, -0.08046367764472961, -0.06185946613550186, -0.18435394763946533, -0.02473297342658043, 0.08761078864336014, -0.06093091145157814, 0.1114448681473732, -0.052951838821172714, 0.024388935416936874, 0.012935388833284378, -0.05081947147846222, -0.026069892570376396, 0.013055064715445042, 0.22737854719161987, 0.07965293526649475, -0.008785834535956383, -0.04318922385573387, -0.05752522498369217, 0.04035145416855812, 0.02134925313293934, -0.015462423674762249, 0.18731658160686493, 0.06335582584142685, 0.1658332496881485, 0.10444704443216324, -0.0951923131942749, 0.008086634799838066, 0.0032423052471131086, -0.10521133989095688, 0.056023623794317245, -0.020074574276804924, 0.20222218334674835, 0.17566052079200745, -0.006042288616299629, 0.04310978949069977, -0.06667931377887726, -0.05631515011191368, -0.18247756361961365, -0.04333757609128952, -0.09500753879547119, -0.1282578706741333, 0.037728894501924515, -0.023535950109362602, 0.023775549605488777, 0.012008095160126686, 0.06475652754306793, -0.04195503145456314, 0.13932204246520996, -0.01116811204701662, -0.0669553354382515, 0.13189628720283508, -0.08652016520500183, -0.013920486904680729, -0.08419180661439896, 0.02062256447970867, 0.1577664017677307, -0.017745904624462128, 0.07389546185731888, -0.019343681633472443, -0.07462215423583984, 0.03604802116751671, -0.1032576784491539, -0.07813749462366104, 0.001511668204329908, -0.02273731678724289, 0.06332413107156754, 0.1813189834356308, 0.11511410772800446, -0.03219696879386902, 0.06718970090150833, 0.12398955225944519, -0.07934112101793289, -0.14676952362060547, -0.1695953607559204, 0.09811946004629135, 0.03104391135275364, 0.009795863181352615, -0.06415516138076782, -0.06253481656312943, -0.0038265977054834366, 0.21438686549663544, 0.25687453150749207, 0.003926469944417477, 0.05209043622016907, -0.019747404381632805, -0.006685249041765928, -0.05534446984529495, -0.03667183965444565, 0.1268669217824936, 0.14779877662658691, -0.002626350149512291, -0.05432066321372986, -0.06341081857681274, -0.02076723426580429, -0.012058046646416187, 0.04882647097110748, -0.045336563140153885, -0.09847243875265121, 0.007260465528815985, 0.10965211689472198, -0.04637644812464714, -0.15191946923732758, -0.1083788126707077, -0.08202998340129852, -0.08993107080459595, -0.0009525826317258179, 0.06794723123311996, 0.13600417971611023, -0.01029272936284542, -0.08934908360242844, -0.03732357919216156, 0.11044864356517792, -0.05633934214711189, -0.07713650912046432, -0.02438388764858246, 0.0317428857088089, -0.09521303325891495, 0.028235817328095436, 0.01315296720713377, 0.1906694918870926, 0.036304667592048645, 0.10094296187162399, -0.005161972716450691, 0.1961636245250702, 0.010836011730134487, -0.09598676860332489, 0.05936814844608307, 0.0969332680106163, 0.020439958199858665, 0.09410323202610016, 0.0480445958673954, -0.09548851102590561, 0.049472931772470474, -0.15315130352973938, -0.06924851983785629, -0.16516517102718353, 0.03534943610429764, -0.053880687803030014, 0.04558415338397026, 0.042238328605890274, -0.0801466554403305, -0.0504424050450325, -0.007749396376311779, 0.007630536332726479, 0.057814162224531174, -0.06773412972688675, -0.05024096369743347, -0.19298729300498962, 0.040164340287446976, -0.15587137639522552, -0.012364351190626621, -0.14984974265098572, -0.03490278497338295, -0.021559972316026688, -0.06068967282772064, 0.014047902077436447, 0.014532346278429031, 0.12054354697465897, 0.032262060791254044, 0.0024010438937693834, -0.019163519144058228, 0.07777940481901169, 0.11184380948543549, -0.14249473810195923, -0.0979224368929863 ]
null
null
transformers
## Evaluation on Common Voice FR Test ```python import re import torch import torchaudio from datasets import load_dataset, load_metric from transformers import ( Wav2Vec2ForCTC, Wav2Vec2Processor, ) model_name = "Ilyes/wav2vec2-large-xlsr-53-french_punctuation" model = Wav2Vec2ForCTC.from_pretrained(model_name).to('cuda') processor = Wav2Vec2Processor.from_pretrained(model_name) ds = load_dataset("common_voice", "fr", split="test") chars_to_ignore_regex = '[\;\:\"\“\%\‘\”\�\‘\’\’\’\‘\…\·\ǃ\«\‹\»\›“\”\\ʿ\ʾ\„\∞\\|\;\:\*\—\–\─\―\_\/\:\ː\;\=\«\»\→]' def normalize_text(text): text = text.lower().strip() text = re.sub('œ', 'oe', text) text = re.sub('æ', 'ae', text) text = re.sub("’|´|′|ʼ|‘|ʻ|`", "'", text) text = re.sub("'+ ", " ", text) text = re.sub(" '+", " ", text) text = re.sub("'$", " ", text) text = re.sub("' ", " ", text) text = re.sub("−|‐", "-", text) text = re.sub(" -", "", text) text = re.sub("- ", "", text) text = re.sub(chars_to_ignore_regex, '', text) return text def map_to_array(batch): speech, _ = torchaudio.load(batch["path"]) batch["speech"] = resampler.forward(speech.squeeze(0)).numpy() batch["sampling_rate"] = resampler.new_freq batch["sentence"] = normalize_text(batch["sentence"]) return batch ds = ds.map(map_to_array) resampler = torchaudio.transforms.Resample(48_000, 16_000) def map_to_pred(batch): features = processor(batch["speech"], sampling_rate=batch["sampling_rate"][0], padding=True, return_tensors="pt") input_values = features.input_values.to(device) attention_mask = features.attention_mask.to(device) with torch.no_grad(): logits = model(input_values, attention_mask=attention_mask).logits pred_ids = torch.argmax(logits, dim=-1) batch["predicted"] = processor.batch_decode(pred_ids) batch["target"] = batch["sentence"] # remove duplicates batch["target"] = re.sub('\.+', '.', batch["target"]) batch["target"] = re.sub('\?+', '?', batch["target"]) batch["target"] = re.sub('!+', '!', batch["target"]) batch["target"] = re.sub(',+', ',', batch["target"]) return batch result = ds.map(map_to_pred, batched=True, batch_size=16, remove_columns=list(ds.features.keys())) wer = load_metric("wer") print(wer.compute(predictions=result["predicted"], references=result["target"])) ``` ## Some results | Reference | Prediction | | ------------- | ------------- | | il vécut à new york et y enseigna une grande partie de sa vie. | il a vécu à new york et y enseigna une grande partie de sa vie. | | au classement par nations, l'allemagne est la tenante du titre. | au classement der nation l'allemagne est la tenante du titre. | | voici un petit calcul pour fixer les idées. | voici un petit calcul pour fixer les idées. | | oh! tu dois être beau avec | oh! tu dois être beau avec. | | babochet vous le voulez? | baboche, vous le voulez? | | la commission est, par conséquent, défavorable à cet amendement. | la commission est, par conséquent, défavorable à cet amendement. | All the references and predictions of the test corpus are already available in this repository. ## Results text + punctuation WER=21.47% CER=7.21% text (without punctuation) WER=19.71% CER=6.91%
{"language": "fr", "license": "apache-2.0", "tags": ["audio", "automatic-speech-recognition", "speech", "xlsr-fine-tuning"], "datasets": ["common_voice"]}
automatic-speech-recognition
Ilyes/wav2vec2-large-xlsr-53-french_punctuation
[ "transformers", "pytorch", "jax", "wav2vec2", "automatic-speech-recognition", "audio", "speech", "xlsr-fine-tuning", "fr", "dataset:common_voice", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "fr" ]
TAGS #transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning #fr #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us
Evaluation on Common Voice FR Test ---------------------------------- Some results ------------ All the references and predictions of the test corpus are already available in this repository. Results ------- text + punctuation WER=21.47% CER=7.21% text (without punctuation) WER=19.71% CER=6.91%
[]
[ "TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning #fr #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ 74 ]
[ "passage: TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #audio #speech #xlsr-fine-tuning #fr #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n" ]
[ -0.13115404546260834, 0.11908461153507233, -0.005509228445589542, -0.048635777086019516, 0.06382139772176743, -0.051045291125774384, 0.08599433302879333, 0.12311245501041412, 0.04710189625620842, -0.00429736590012908, 0.06549762189388275, 0.19077834486961365, 0.03276311233639717, 0.017424987629055977, -0.07865917682647705, -0.17715871334075928, 0.08203429728746414, 0.04231003671884537, 0.08601967990398407, 0.07985451817512512, 0.10834106802940369, -0.04531025141477585, 0.01541723683476448, 0.06427920609712601, -0.10298804938793182, 0.014465322718024254, 0.08984725177288055, -0.14213021099567413, 0.09227914363145828, 0.07232316583395004, -0.011211705394089222, 0.0752982497215271, 0.02402512915432453, -0.23734703660011292, 0.01569349691271782, -0.017073506489396095, 0.0006969739333726466, 0.033275507390499115, 0.0663139596581459, -0.022554585710167885, -0.019252104684710503, 0.0781315341591835, -0.035869844257831573, 0.0951668918132782, -0.02174706943333149, -0.24230614304542542, -0.05837256461381912, 0.07534840703010559, 0.06012270972132683, 0.07381868362426758, -0.024648098275065422, 0.1031421646475792, -0.06924798339605331, 0.09764590859413147, 0.12119794636964798, -0.3099207878112793, 0.024638650938868523, -0.029352985322475433, 0.0863644927740097, 0.001473011914640665, -0.015978673473000526, 0.07117778807878494, 0.036045368760824203, 0.009882766753435135, -0.04742559790611267, -0.07222580164670944, -0.21050013601779938, -0.013648517429828644, -0.06412088125944138, -0.04148351401090622, 0.2613411545753479, 0.018115879967808723, 0.0034600107464939356, -0.08564353734254837, 0.0018659657798707485, -0.013832234777510166, -0.04010039195418358, -0.018763653934001923, -0.01797790639102459, 0.06984326243400574, 0.003711977042257786, -0.03489470109343529, -0.10636065900325775, -0.06358284503221512, -0.14048275351524353, 0.15684422850608826, 0.01583723910152912, 0.042804718017578125, -0.1210184097290039, -0.008478803560137749, -0.04759698733687401, -0.07950906455516815, -0.023253513500094414, 0.010169606655836105, 0.006852172315120697, 0.03186018392443657, -0.06181318312883377, -0.01104080118238926, 0.17955321073532104, 0.11362934112548828, 0.04266827180981636, 0.040374718606472015, -0.08649826049804688, 0.08132551610469818, 0.007009950932115316, 0.07930520176887512, -0.021446557715535164, -0.04534922540187836, 0.10426049679517746, -0.07696694880723953, 0.05629957094788551, -0.028690649196505547, -0.10880549997091293, -0.04982642084360123, 0.017367471009492874, 0.10589006543159485, 0.06820788234472275, -0.005391360260546207, -0.054038744419813156, 0.0008429586887359619, 0.059257872402668, -0.08592335134744644, 0.005829528905451298, 0.04040698707103729, 0.06939709931612015, 0.1255366951227188, 0.016477543860673904, 0.06404679268598557, -0.10117684304714203, 0.018260031938552856, 0.035331353545188904, 0.009340197779238224, 0.06605444848537445, -0.00040491385152563453, 0.06153716892004013, -0.0952657088637352, 0.06577033549547195, -0.11311396211385727, -0.057507846504449844, -0.023151511326432228, -0.005447437986731529, 0.008593070320785046, -0.15452872216701508, -0.04071206972002983, -0.03397371992468834, 0.029812287539243698, -0.12008170783519745, 0.006708573084324598, -0.08347295224666595, 0.09055042266845703, -0.006642283406108618, 0.055790212005376816, -0.12446244806051254, 0.08581006526947021, -0.04503771290183067, -0.030020004138350487, 0.027312707155942917, 0.0820423886179924, -0.08333300054073334, 0.03484403342008591, -0.08071461319923401, -0.040898799896240234, -0.03971046209335327, 0.047006554901599884, -0.033633649349212646, 0.0826072171330452, -0.15894924104213715, -0.10575633496046066, 0.17831294238567352, -0.10454564541578293, -0.11536940187215805, 0.1346368044614792, 0.059946831315755844, -0.04283846169710159, 0.10336597263813019, 0.28641366958618164, 0.04384780302643776, -0.16554981470108032, 0.02875666134059429, 0.11039619147777557, -0.06654611974954605, -0.12917107343673706, 0.05755775421857834, -0.08701498061418533, -0.03919404745101929, 0.04604785144329071, 0.013003110885620117, 0.08299226313829422, -0.02689509466290474, -0.076313816010952, -0.039064209908246994, -0.09282078593969345, -0.03719587251543999, -0.02889842912554741, 0.013284931890666485, -0.05160614103078842, -0.007551817689090967, -0.051659051328897476, 0.09635243564844131, -0.04013168066740036, 0.07171153277158737, -0.13460606336593628, 0.11331097036600113, -0.07405193150043488, 0.017290983349084854, -0.16183115541934967, 0.18900901079177856, -0.01911100186407566, 0.05217861384153366, 0.10747009515762329, 0.04258066415786743, 0.0403272807598114, -0.0881909653544426, 0.0022007764782756567, -0.0514497272670269, 0.15549831092357635, 0.04476241394877434, -0.0008506333688274026, -0.1626775711774826, 0.038803957402706146, -0.06881310790777206, 0.016498271375894547, 0.01619444414973259, -0.043531887233257294, 0.04944014549255371, 0.07943733781576157, 0.000034818855056073517, 0.026134181767702103, 0.025642603635787964, 0.019464965909719467, -0.007555628661066294, 0.03561648353934288, 0.058771174401044846, 0.03658211976289749, -0.05301671102643013, 0.25315287709236145, -0.10302290320396423, 0.25258246064186096, 0.21733273565769196, -0.15981659293174744, 0.0917244702577591, 0.09621034562587738, 0.016028689220547676, -0.011360117234289646, 0.028258195146918297, -0.002103653037920594, 0.16842864453792572, -0.018590658903121948, 0.13173000514507294, -0.07611262798309326, 0.0007226602756418288, 0.03614916279911995, -0.05273906886577606, -0.034208424389362335, 0.03558693453669548, 0.051705505698919296, -0.06388774514198303, 0.1002698540687561, 0.12716160714626312, -0.06183931231498718, 0.1206241250038147, -0.08495870232582092, -0.04733610153198242, 0.04993392899632454, -0.018255772069096565, -0.030253930017352104, 0.05862993374466896, -0.21392834186553955, -0.02235027402639389, 0.08298885077238083, 0.0011692008702084422, 0.0804033949971199, -0.1454264372587204, 0.00657131802290678, -0.01268155500292778, -0.10068149119615555, -0.10180605202913284, 0.06431864202022552, -0.01862350106239319, 0.06549930572509766, -0.10341136902570724, -0.14585362374782562, 0.07938025891780853, -0.03401528671383858, -0.11672523617744446, 0.03831207752227783, -0.14905035495758057, -0.24972966313362122, -0.12496404349803925, -0.09261007606983185, -0.027202734723687172, 0.02671174891293049, 0.15112745761871338, -0.07293558120727539, -0.023941760882735252, 0.023464592173695564, -0.028205247595906258, -0.03969670087099075, 0.025264719501137733, 0.00399048114195466, 0.014309213496744633, 0.05396313592791557, -0.11834967136383057, -0.003741139778867364, -0.021825749427080154, 0.018190743401646614, 0.02411668933928013, 0.011475296691060066, 0.0689617395401001, 0.1649019718170166, 0.0842258408665657, 0.031206760555505753, -0.028557797893881798, 0.15220734477043152, -0.07513978332281113, -0.05766059085726738, 0.19696620106697083, -0.03917151317000389, 0.0018766694702208042, 0.17359130084514618, 0.026243435218930244, -0.05306003615260124, -0.0532955639064312, -0.047926366329193115, -0.053165607154369354, -0.2611505389213562, -0.11609885841608047, -0.11891615390777588, -0.024588115513324738, -0.01947137899696827, 0.0661899670958519, 0.10838815569877625, -0.011494473554193974, -0.019435763359069824, -0.06018355116248131, 0.04910201579332352, 0.004009618423879147, 0.2450704574584961, -0.04132140427827835, 0.0973186269402504, -0.08478281646966934, -0.03847843408584595, 0.07633143663406372, 0.10562078654766083, 0.0806470438838005, 0.16515932977199554, 0.11698770523071289, 0.04501362517476082, 0.16779345273971558, 0.13063116371631622, 0.06813490390777588, 0.03901824727654457, 0.005197758320719004, -0.00018002302385866642, -0.04469425976276398, -0.049520574510097504, 0.02281259000301361, 0.21587367355823517, -0.08005985617637634, -0.03364371508359909, -0.11860588192939758, 0.018109984695911407, 0.194985494017601, 0.05323018878698349, -0.1155606061220169, 0.01954721473157406, 0.045737165957689285, -0.07662716507911682, -0.02263593301177025, 0.1214849054813385, 0.01042827870696783, -0.05716434493660927, 0.11180151253938675, 0.03923948481678963, 0.09331362694501877, -0.047057248651981354, 0.03755706548690796, -0.07543616741895676, -0.05959189683198929, 0.07242002338171005, 0.06227097287774086, -0.25689437985420227, 0.19050411880016327, 0.014820733107626438, 0.0795149952173233, -0.03942793607711792, 0.043411873281002045, 0.026688508689403534, 0.10785099118947983, 0.16252507269382477, -0.012307394295930862, -0.1000896617770195, -0.02715713530778885, -0.06036841496825218, 0.053983174264431, 0.04804648458957672, 0.09679753333330154, -0.06511661410331726, -0.0285385362803936, -0.05461708828806877, 0.006290789693593979, -0.0780997946858406, -0.13978204131126404, -0.14285273849964142, 0.0072761401534080505, 0.2701340317726135, 0.11341087520122528, -0.025024496018886566, -0.04500687122344971, -0.19959388673305511, 0.09680525958538055, -0.1142164096236229, -0.0116196284070611, -0.06406624615192413, -0.1691010296344757, 0.1094605028629303, -0.02898401767015457, 0.048857953399419785, -0.00739241624251008, 0.021910885348916054, -0.04865712672472, -0.13084213435649872, 0.10537096112966537, -0.13587220013141632, -0.031075377017259598, -0.027306947857141495, 0.2681233584880829, -0.043698690831661224, 0.05943327769637108, 0.0642002671957016, 0.0033987897913903, -0.04125997796654701, -0.050152722746133804, 0.08541963249444962, 0.07433085143566132, -0.08335193246603012, 0.02218625880777836, 0.015224589966237545, -0.23149003088474274, -0.04880368709564209, -0.04199127480387688, 0.2381119579076767, 0.11726631224155426, -0.061708059161901474, 0.21842986345291138, 0.23174923658370972, -0.0567617304623127, -0.26043668389320374, -0.15816795825958252, -0.04235243797302246, -0.007001507095992565, -0.07094836235046387, -0.15620476007461548, 0.10699462890625, -0.05819220468401909, -0.08822601288557053, 0.04188897833228111, -0.19175685942173004, -0.0942416712641716, 0.23236411809921265, -0.0846509262919426, 0.26173681020736694, -0.07543183863162994, -0.12176917493343353, -0.05220836400985718, -0.14038428664207458, 0.11534277349710464, -0.07901690900325775, 0.07768147438764572, 0.058250587433576584, 0.026939306408166885, 0.021672697737812996, -0.01766638271510601, 0.10313200205564499, 0.05631350353360176, -0.03719494119286537, -0.017916539683938026, 0.048068102449178696, -0.024721793830394745, 0.042933568358421326, 0.05755074694752693, -0.11903409659862518, 0.015472350642085075, -0.062295716255903244, -0.0689622014760971, -0.0903904139995575, 0.0915350615978241, 0.054615508764982224, -0.0009686751873232424, 0.016998885199427605, -0.11607478559017181, 0.012374931015074253, 0.019025154411792755, 0.18978756666183472, -0.07058461755514145, 0.04413055628538132, 0.16878944635391235, 0.1849738210439682, -0.17503663897514343, -0.08354130387306213, -0.07725559920072556, -0.10594905912876129, 0.10587156563997269, -0.03625267744064331, 0.07785025984048843, 0.05771567299962044, 0.014987900853157043, 0.06181465834379196, 0.04113054275512695, -0.04136862978339195, 0.016135888174176216, 0.080956369638443, -0.08592288941144943, -0.09263915568590164, -0.01864549145102501, 0.02654903009533882, 0.0948595404624939, 0.09097980707883835, 0.13044068217277527, 0.006253812462091446, -0.03519505262374878, -0.018247980624437332, 0.021698128432035446, -0.14985968172550201, 0.15889255702495575, 0.046510666608810425, 0.017011290416121483, -0.19916750490665436, 0.0867062509059906, -0.027242060750722885, -0.1817903071641922, 0.011491963639855385, 0.0026930670719593763, -0.07749081403017044, -0.11046172678470612, -0.03620851784944534, 0.03153926134109497, -0.025159062817692757, -0.1561082899570465, -0.0010699304984882474, -0.16760723292827606, 0.06751437485218048, 0.12161445617675781, 0.05219271406531334, 0.05214443430304527, -0.06203116476535797, -0.06876395642757416, -0.017855342477560043, 0.016023635864257812, -0.018257031217217445, 0.003530409187078476, -0.174189954996109, -0.02948026731610298, 0.02101164311170578, 0.08735174685716629, -0.06429473310709, -0.050622500479221344, -0.04926377534866333, 0.06447790563106537, -0.10197145491838455, 0.02644209936261177, -0.1069319099187851, 0.01932043768465519, 0.04932161048054695, -0.0972377210855484, -0.024939866736531258, 0.057788774371147156, -0.1136871874332428, 0.015135318972170353, 0.010903227142989635, 0.07127140462398529, -0.10648120939731598, 0.008242597803473473, 0.02505386807024479, -0.025205621495842934, 0.13265776634216309, 0.17951981723308563, -0.12349729239940643, 0.11282192170619965, -0.22430750727653503, -0.20700779557228088, 0.14101985096931458, 0.06200160086154938, -0.025569839403033257, -0.07715638726949692, 0.018787026405334473, 0.18134398758411407, 0.011525633744895458, -0.016734618693590164, 0.06370268017053604, -0.08545603603124619, -0.03997078537940979, -0.1118258461356163, -0.042562782764434814, -0.018238581717014313, -0.07632352411746979, 0.19433006644248962, 0.07444721460342407, 0.15092076361179352, -0.061028432101011276, 0.02346190996468067, -0.04603325575590134, 0.06144312024116516, -0.08407272398471832, -0.12713655829429626, -0.1985422819852829, -0.023801278322935104, 0.0263519324362278, -0.025162795558571815, 0.19479595124721527, -0.04591931402683258, -0.05182085186243057, 0.02407362312078476, 0.002940505277365446, -0.07211471349000931, 0.031925350427627563, 0.3293344974517822, 0.06674667447805405, -0.024241136386990547, -0.03106698952615261, -0.029970994219183922, 0.023109296336770058, 0.07208913564682007, -0.057107679545879364, 0.1324944794178009, 0.1260765641927719, 0.10400249809026718, 0.12935838103294373, -0.05625182390213013, -0.06813628226518631, -0.011439893394708633, -0.06977434456348419, 0.06422404199838638, -0.005561853293329477, 0.1528608500957489, 0.12113500386476517, 0.006908029317855835, 0.03816414251923561, -0.025063414126634598, -0.008812006562948227, -0.1952432543039322, -0.116683728992939, -0.09729639440774918, -0.11672813445329666, 0.01057508960366249, -0.046568967401981354, 0.06540846079587936, 0.004075502045452595, 0.025300657376646996, -0.030368000268936157, -0.0011535295052453876, -0.027408936992287636, -0.07704630494117737, 0.08358872681856155, -0.05139553174376488, -0.04206141456961632, -0.057319801300764084, -0.01450391300022602, 0.06243749335408211, -0.01776745356619358, 0.0005522240535356104, 0.03182510286569595, -0.07074366509914398, 0.06517741084098816, -0.12479091435670853, -0.07173093408346176, -0.006375113967806101, -0.004337280057370663, 0.07259311527013779, 0.1921532154083252, 0.07984551787376404, -0.047513239085674286, 0.0862487405538559, 0.14583395421504974, -0.09292777627706528, -0.1750098019838333, -0.06984603404998779, 0.090410515666008, 0.004291818011552095, 0.07808048278093338, 0.0056467014364898205, -0.014061429537832737, -0.04290122911334038, 0.24146008491516113, 0.2670992314815521, -0.007031531538814306, 0.06039687991142273, -0.04344043508172035, 0.01650245115160942, -0.053078897297382355, -0.00047968796570785344, 0.13460688292980194, 0.23086662590503693, -0.009668288752436638, -0.020877910777926445, -0.06555377691984177, -0.013719095848500729, -0.07559502869844437, 0.05293465778231621, -0.07368532568216324, -0.1568443328142166, 0.04438785836100578, 0.10832235217094421, -0.16916771233081818, 0.0040909526869654655, -0.08673412352800369, -0.11459563672542572, -0.0415683388710022, -0.011593719013035297, 0.12934523820877075, 0.15108945965766907, -0.01675337366759777, -0.06051899865269661, -0.050407905131578445, 0.10860247164964676, -0.019763555377721786, -0.21702973544597626, 0.03279663249850273, 0.017030702903866768, -0.08987987041473389, 0.027750538662075996, 0.023557212203741074, 0.15204045176506042, 0.010271790437400341, 0.13944514095783234, -0.050506945699453354, 0.1441732794046402, -0.0019648601301014423, -0.14162646234035492, 0.046170055866241455, 0.09954415261745453, -0.002139287069439888, 0.07712424546480179, 0.0416337288916111, -0.08100691437721252, 0.06159166246652603, -0.08279138058423996, -0.05461630970239639, -0.07431652396917343, 0.016955284401774406, -0.06555968523025513, 0.04508095979690552, -0.08788596838712692, -0.02892536111176014, -0.05095658451318741, -0.011041776277124882, 0.019621716812253, 0.06810395419597626, -0.06826284527778625, -0.06392652541399002, -0.13090896606445312, -0.02235768549144268, -0.07091047614812851, 0.02375321462750435, -0.10037435591220856, -0.017973555251955986, -0.10128173977136612, -0.010916347615420818, -0.10831639915704727, 0.006017177365720272, 0.1025390475988388, -0.01671341061592102, 0.01939360424876213, -0.03582773730158806, 0.08724457770586014, 0.0845261812210083, -0.11452417075634003, -0.07413218915462494 ]
null
null
transformers
# Albert DialoGPT Model
{"tags": ["conversational"]}
text-generation
ImAPizza/DialoGPT-medium-albert
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Albert DialoGPT Model
[ "# Albert DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Albert DialoGPT Model" ]
[ 51, 7 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Albert DialoGPT Model" ]
[ -0.03233298659324646, 0.04510757699608803, -0.005759505555033684, 0.01878993958234787, 0.11583263427019119, 0.0029476750642061234, 0.16392025351524353, 0.12717480957508087, 0.03627060353755951, -0.0481208898127079, 0.12638072669506073, 0.15098676085472107, 0.0003238233912270516, 0.08077164739370346, -0.07693933695554733, -0.30337536334991455, 0.045810092240571976, 0.07246500998735428, 0.042964108288288116, 0.1104510948061943, 0.08774384111166, -0.04733944311738014, 0.0789492204785347, 0.006846223026514053, -0.12239012867212296, 0.004769807681441307, 0.01112077385187149, -0.11964625865221024, 0.12233392149209976, 0.0821823701262474, 0.03365132585167885, 0.025810476392507553, -0.04479333013296127, -0.149767205119133, 0.03139130026102066, -0.024672826752066612, -0.040115274488925934, 0.04955160990357399, 0.02462310902774334, -0.09903998672962189, 0.11366980522871017, 0.09788157045841217, 0.0010169876040890813, 0.03732972592115402, -0.16626377403736115, 0.005033574532717466, 0.015037784352898598, 0.05784299224615097, 0.09362240880727768, 0.10465192794799805, -0.042454369366168976, 0.09900588542222977, -0.059461962431669235, 0.11381837725639343, 0.11288348585367203, -0.3525855839252472, -0.01616949401795864, 0.11500933766365051, 0.06083959713578224, 0.05442941561341286, -0.05231974646449089, 0.09996134042739868, 0.033881548792123795, 0.0010263945441693068, 0.010047405026853085, -0.08789260685443878, -0.07014913856983185, 0.014745958149433136, -0.09698794037103653, -0.013885094784200191, 0.23448097705841064, -0.03317723050713539, 0.056373465806245804, -0.0830434188246727, -0.10304246097803116, -0.041567493230104446, -0.03980625793337822, -0.03107261471450329, -0.0715167373418808, 0.07458678632974625, 0.01945435255765915, -0.09919966757297516, -0.11772265285253525, -0.013132325373589993, -0.17144553363323212, 0.17531830072402954, 0.026427792385220528, 0.03188483417034149, -0.20328126847743988, 0.10059266537427902, -0.015793608501553535, -0.10311759263277054, 0.021121947094798088, -0.08663066476583481, 0.006755233742296696, 0.01405995525419712, -0.03875819593667984, -0.012276910245418549, 0.032564762979745865, 0.11388936638832092, 0.020689841359853745, 0.010324100963771343, -0.020097967237234116, 0.055935706943273544, 0.05212259292602539, 0.12424739450216293, -0.018304038792848587, -0.07457773387432098, 0.014506754465401173, -0.08774109929800034, -0.0014932026388123631, -0.05702754855155945, -0.18196795880794525, -0.030291089788079262, 0.06895791739225388, 0.04204653576016426, 0.0035787273664027452, 0.1114238053560257, -0.023997563868761063, -0.05320132151246071, 0.01668224111199379, -0.025496892631053925, -0.014598754234611988, 0.0034476451110094786, -0.015057903714478016, 0.14802858233451843, 0.028024965897202492, 0.0417497456073761, -0.12224354594945908, 0.02253628335893154, -0.05625516548752785, 0.0046713403426110744, -0.020950619131326675, -0.06492747366428375, -0.012079005129635334, -0.05562654510140419, 0.01935018226504326, -0.1478053480386734, -0.15714775025844574, 0.014374017715454102, -0.000015703901226515882, -0.05119548738002777, -0.08346860855817795, -0.10588981956243515, -0.008779236115515232, 0.0403156578540802, -0.06581846624612808, -0.049787599593400955, -0.06000659614801407, 0.0707755982875824, -0.03419191762804985, 0.09832978248596191, -0.10002613067626953, 0.08063694834709167, -0.08183535188436508, -0.025858977809548378, -0.06136152893304825, 0.11810242384672165, 0.01230739988386631, 0.05021143704652786, -0.019357822835445404, -0.013592081144452095, -0.05618981644511223, 0.07638923823833466, -0.03319036588072777, 0.24787931144237518, -0.09009033441543579, -0.1204412654042244, 0.28436383605003357, -0.030314648523926735, -0.12285682559013367, 0.14283090829849243, -0.004511787090450525, 0.057244203984737396, 0.1356537789106369, 0.1756434142589569, -0.01564689166843891, -0.010446221567690372, 0.08172493427991867, 0.12380819767713547, -0.04671122878789902, 0.012378650717437267, 0.030379636213183403, -0.004110225010663271, -0.09454479813575745, 0.03604881092905998, 0.0975726991891861, 0.05645279213786125, -0.06491107493638992, -0.021917521953582764, 0.009753440506756306, 0.0025186308193951845, 0.1033051609992981, -0.036189910024404526, 0.13294680416584015, -0.034532103687524796, -0.07675664126873016, -0.016104863956570625, 0.009812814183533192, -0.050891779363155365, 0.03551074117422104, -0.08151503652334213, 0.06534340232610703, -0.03238898888230324, 0.06620576232671738, -0.1288152039051056, -0.026002274826169014, -0.02392060123383999, 0.15484251081943512, 0.03993789851665497, 0.13673822581768036, 0.05925729125738144, -0.033476125448942184, -0.026678893715143204, 0.022245490923523903, 0.15085844695568085, -0.029253551736474037, -0.09816236048936844, -0.09171190857887268, 0.08562318235635757, -0.0652165338397026, 0.1339038461446762, -0.06289735436439514, 0.014073614962399006, -0.01720438525080681, 0.09227186441421509, -0.0019448250532150269, 0.039957787841558456, 0.008735794574022293, -0.018061231821775436, -0.057959672063589096, 0.016307536512613297, 0.09418227523565292, -0.0037012724205851555, -0.10861232131719589, 0.23314137756824493, -0.1804945170879364, 0.14900411665439606, 0.18078935146331787, -0.23829038441181183, 0.013581681996583939, -0.11927150934934616, -0.03161857649683952, 0.0061053200624883175, 0.05680496245622635, -0.05035429075360298, 0.2587146759033203, -0.010478480719029903, 0.18650294840335846, -0.033265337347984314, -0.04061032086610794, -0.02878318913280964, -0.0649421215057373, 0.007433140184730291, 0.09655631333589554, 0.06022562459111214, -0.11209506541490555, 0.15800891816616058, 0.10930576920509338, 0.036548446863889694, 0.18581736087799072, 0.046290066093206406, -0.007690762169659138, 0.05925038084387779, -0.014170534908771515, -0.045823730528354645, -0.05507143959403038, -0.2831915020942688, -0.04812770336866379, 0.07469511777162552, 0.019513659179210663, 0.09585079550743103, -0.09443985670804977, -0.02065437100827694, 0.011816048063337803, -0.011032198555767536, 0.05172334983944893, 0.10144291818141937, 0.014936252497136593, 0.12696042656898499, -0.01827220618724823, -0.07618697732686996, 0.0544252023100853, 0.012274622917175293, -0.08452761918306351, 0.1962864100933075, -0.11164290457963943, -0.3453606963157654, -0.11176037043333054, -0.19453750550746918, -0.06363730877637863, 0.0574856698513031, 0.09646275639533997, -0.095838762819767, -0.021535612642765045, -0.011908136308193207, 0.10984683781862259, -0.06464667618274689, 0.007947714999318123, -0.021972063928842545, -0.018684789538383484, -0.12965169548988342, -0.09339752793312073, -0.0624004490673542, -0.04373292624950409, -0.07423580437898636, 0.12506869435310364, -0.15092770755290985, 0.019461436197161674, 0.2389916628599167, 0.04898479953408241, 0.04782141000032425, -0.03831261768937111, 0.1855717897415161, -0.10178834944963455, -0.002339996164664626, 0.14140687882900238, -0.057426948100328445, 0.04692709073424339, 0.12458030879497528, -0.008010946214199066, -0.08104604482650757, 0.023192280903458595, -0.018114306032657623, -0.06500276178121567, -0.21724125742912292, -0.14001959562301636, -0.11244221776723862, 0.11821649968624115, 0.036589641124010086, 0.02816798910498619, 0.1605069488286972, 0.06298749893903732, -0.03927280753850937, 0.04271070286631584, 0.05246815085411072, 0.07966465502977371, 0.2345937341451645, -0.07373454421758652, 0.14887963235378265, -0.004412914626300335, -0.16560962796211243, 0.0720381960272789, 0.05376328155398369, 0.09380614012479782, 0.06494757533073425, 0.07193194329738617, 0.0032235519029200077, -0.008828732185065746, 0.12918402254581451, 0.07910756021738052, 0.014452766627073288, -0.04323764890432358, -0.04654805734753609, -0.04788016155362129, -0.03894133120775223, 0.06163453310728073, 0.06654508411884308, -0.12536849081516266, -0.04305342957377434, -0.039210718125104904, 0.06309424340724945, 0.07282721251249313, 0.11640070378780365, -0.1840597242116928, -0.01666261814534664, 0.08419518917798996, -0.041795141994953156, -0.11829528957605362, 0.08909904211759567, 0.006758823525160551, -0.12554636597633362, 0.03865325078368187, -0.023382464423775673, 0.11990180611610413, -0.10434196889400482, 0.08222853392362595, -0.11773540824651718, -0.09120950847864151, 0.004480952396988869, 0.0944233387708664, -0.3171132206916809, 0.22445054352283478, -0.000242098918533884, -0.06340602040290833, -0.10714680701494217, -0.005169196520000696, 0.02388565056025982, 0.1075388565659523, 0.1294969767332077, -0.012811006978154182, 0.098368339240551, -0.01277515571564436, -0.07554707676172256, 0.027827555313706398, 0.0871441438794136, -0.06336141377687454, -0.005237995646893978, -0.029263757169246674, -0.010517064481973648, -0.016511816531419754, -0.03474172577261925, -0.0015638431068509817, -0.17840489745140076, 0.08904789388179779, 0.050229646265506744, 0.07133843004703522, 0.03089703433215618, -0.04842093959450722, -0.09027472138404846, 0.23210455477237701, -0.00032911761081777513, -0.09162933379411697, -0.08476709574460983, -0.027600979432463646, 0.03433265909552574, -0.06473393738269806, 0.016444388777017593, -0.04902888461947441, 0.04380924627184868, -0.07268218696117401, -0.17446930706501007, 0.13026782870292664, -0.09542780369520187, -0.03178934007883072, -0.03680621460080147, 0.21286502480506897, -0.012582356110215187, 0.036638930439949036, 0.041819456964731216, -0.0013718297705054283, -0.09169141203165054, -0.0850256159901619, 0.0023942363914102316, 0.06296432018280029, -0.0326293520629406, 0.0422494038939476, -0.04819486290216446, -0.07144920527935028, -0.05538257211446762, -0.0023913555778563023, 0.3161894977092743, 0.16597305238246918, -0.035289451479911804, 0.15780210494995117, 0.13878139853477478, -0.07335083186626434, -0.2867822051048279, -0.0974026620388031, -0.07961083948612213, -0.018963059410452843, -0.07235585898160934, -0.17500127851963043, 0.07586153596639633, -0.029774127528071404, -0.018052009865641594, 0.09447000920772552, -0.2822456955909729, -0.10229504853487015, 0.19977958500385284, -0.0260660070925951, 0.4161662459373474, -0.10383625328540802, -0.07724365592002869, -0.05352432280778885, -0.19685615599155426, 0.13357189297676086, 0.00045358174247667193, 0.12115652114152908, -0.018449747934937477, 0.14005692303180695, 0.056915055960416794, 0.004573795013129711, 0.0858938917517662, 0.02651290036737919, -0.05506795272231102, -0.08784259855747223, -0.059911198914051056, -0.006926102563738823, 0.014280717819929123, 0.030796751379966736, -0.07150410115718842, 0.013304496183991432, -0.15186308324337006, -0.06093449890613556, -0.07301145792007446, 0.04968997836112976, 0.01565953902900219, -0.09043605625629425, 0.018135393038392067, -0.049750830978155136, -0.0037947604432702065, 0.013089210726320744, 0.17029555141925812, -0.09674638509750366, 0.13594749569892883, 0.08736804127693176, 0.14379389584064484, -0.13889533281326294, 0.0020440451335161924, -0.06289960443973541, -0.05263605713844299, 0.07539485394954681, -0.09356502443552017, 0.027166221290826797, 0.12768544256687164, -0.029251672327518463, 0.10175515711307526, 0.09247051179409027, 0.0012836295645684004, 0.012967441231012344, 0.07706532627344131, -0.2575834095478058, -0.05485771596431732, -0.09034332633018494, 0.032305456697940826, 0.08739378303289413, 0.09466509521007538, 0.2107645720243454, -0.030172524973750114, -0.03295844420790672, 0.0096485186368227, 0.015059866942465305, -0.03902072459459305, 0.07167737185955048, -0.031233742833137512, 0.023297235369682312, -0.1420649141073227, 0.057063255459070206, -0.006419743411242962, -0.1203179657459259, 0.02777000702917576, 0.14578653872013092, -0.09311234205961227, -0.12336789816617966, -0.08576890081167221, 0.16024057567119598, -0.132945716381073, 0.011071518994867802, -0.03705841675400734, -0.14507679641246796, 0.06292857229709625, 0.09483174234628677, 0.06345097720623016, 0.06799853593111038, -0.1033223494887352, -0.02348443493247032, -0.02192685753107071, 0.019515689462423325, 0.06176866963505745, -0.014939268119633198, -0.023928450420498848, 0.035654254257678986, -0.03582518920302391, 0.11536648124456406, -0.10309579968452454, -0.11176898330450058, -0.15216323733329773, 0.04128347709774971, -0.15496115386486053, -0.08400117605924606, -0.09451794624328613, -0.0483662374317646, -0.02462986297905445, -0.023567575961351395, -0.03881146386265755, -0.05700048804283142, -0.1150481328368187, 0.04361890256404877, -0.04039103910326958, 0.020337209105491638, -0.057417940348386765, 0.01007193885743618, 0.051370710134506226, -0.03553762659430504, 0.16711139678955078, 0.12976142764091492, -0.10856840759515762, 0.08562640100717545, -0.13301464915275574, -0.061551470309495926, 0.10131125152111053, 0.015002221800386906, 0.0660213902592659, 0.05856815353035927, 0.014766376465559006, 0.04497002810239792, 0.0528501532971859, 0.047390166670084, 0.024711722508072853, -0.07856374233961105, 0.030726006254553795, -0.04059622436761856, -0.12461937963962555, -0.0491553358733654, -0.011758975684642792, 0.014115022495388985, 0.04680381715297699, 0.07821744680404663, -0.06033475324511528, 0.09215570241212845, -0.05795247480273247, 0.037039369344711304, 0.023241674527525902, -0.1731405109167099, -0.00881448294967413, -0.10445336252450943, 0.04390282556414604, 0.00023465772392228246, 0.21563978493213654, 0.029639527201652527, 0.005507192108780146, 0.030315564945340157, 0.03385724499821663, 0.051463861018419266, 0.0031856661662459373, 0.20134709775447845, 0.1065770611166954, -0.04821978509426117, -0.1058371439576149, 0.09312675148248672, 0.05591833218932152, 0.0682237297296524, 0.11940762400627136, -0.020444106310606003, -0.02344791404902935, 0.11392022669315338, -0.0122533505782485, 0.018778404220938683, -0.1303757131099701, -0.1602925956249237, -0.021919608116149902, 0.08670683950185776, -0.045652665197849274, 0.13121014833450317, 0.1300203949213028, -0.028214942663908005, 0.026250623166561127, -0.005116593558341265, -0.0630059689283371, -0.1841643899679184, -0.15463483333587646, -0.07078056782484055, -0.1293179839849472, -0.0019030835246667266, -0.13974013924598694, 0.03133431077003479, 0.028866909444332123, 0.10043539106845856, -0.06255928426980972, 0.08819637447595596, 0.011249732226133347, -0.10340975224971771, 0.10818621516227722, -0.024461669847369194, 0.08859189599752426, -0.059078413993120193, 0.004524781834334135, -0.08805932104587555, 0.05385872721672058, -0.006775193382054567, 0.037333015352487564, -0.05475651100277901, 0.007930443622171879, -0.09873367846012115, -0.09378402680158615, -0.05692969262599945, 0.04816129058599472, -0.0036072370130568743, 0.14787787199020386, 0.01057475432753563, -0.035553839057683945, 0.02189607359468937, 0.24689272046089172, -0.08827332407236099, -0.06536053866147995, -0.06428712606430054, 0.2127251774072647, 0.012653726153075695, 0.11411603540182114, -0.02941364236176014, 0.019291145727038383, -0.0962589681148529, 0.3351631164550781, 0.2884759306907654, -0.091578908264637, 0.013380946591496468, 0.01513067539781332, 0.04806051030755043, 0.10864962637424469, 0.09553245455026627, 0.0993659645318985, 0.30173805356025696, -0.079740509390831, -0.032817814499139786, -0.0021610460244119167, -0.045907799154520035, -0.05076306685805321, 0.06380457431077957, 0.06670822948217392, -0.061282943934202194, -0.029802851378917694, 0.08570647984743118, -0.2550464868545532, 0.10057007521390915, -0.16397887468338013, -0.1936465948820114, -0.08095041662454605, -0.0020022839307785034, 0.09617479145526886, 0.04901774972677231, 0.10771884024143219, 0.0013574784388765693, -0.07457754760980606, 0.10033302009105682, 0.016378315165638924, -0.18750742077827454, 0.001303930883295834, 0.0696118101477623, -0.07224752753973007, -0.02937476709485054, -0.015875237062573433, 0.0522763654589653, 0.07430847734212875, 0.05807211250066757, -0.0016644328134134412, 0.030319634824991226, -0.0020366257522255182, -0.06383976340293884, 0.021024711430072784, 0.05958005413413048, 0.008686406537890434, -0.07521068304777145, 0.08525066822767258, -0.14922134578227997, 0.040860895067453384, -0.025907762348651886, -0.05029810965061188, -0.014635714702308178, 0.03534594550728798, -0.05680787190794945, 0.07398564368486404, 0.10559996217489243, -0.007125789299607277, -0.031027596443891525, -0.021002912893891335, -0.01494231354445219, -0.018006982281804085, -0.06426861882209778, -0.08960183709859848, -0.15881022810935974, -0.09935224801301956, 0.07513722032308578, 0.005625193938612938, -0.19886678457260132, 0.00997287780046463, -0.12738464772701263, 0.056672949343919754, -0.13305765390396118, 0.09402856230735779, 0.09320607036352158, 0.03230280429124832, 0.00173646688926965, -0.06776459515094757, 0.05113821476697922, 0.08471379429101944, -0.13236957788467407, -0.09516813606023788 ]
null
null
transformers
# Alberttwo DialoGPT Model
{"tags": ["conversational"]}
text-generation
ImAPizza/DialoGPT-medium-alberttwo
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Alberttwo DialoGPT Model
[ "# Alberttwo DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Alberttwo DialoGPT Model" ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Alberttwo DialoGPT Model" ]
[ -0.019697828218340874, 0.03649180382490158, -0.006464163772761822, 0.027018291875720024, 0.1013442799448967, 0.002832011552527547, 0.1670260727405548, 0.1334923803806305, 0.037527985870838165, -0.03902190178632736, 0.11852194368839264, 0.12906374037265778, 0.014216563664376736, 0.05735684186220169, -0.08033055812120438, -0.30468639731407166, 0.04270165041089058, 0.06348863989114761, 0.04534440487623215, 0.10813921689987183, 0.09908401221036911, -0.034961994737386703, 0.07880634069442749, 0.008607788942754269, -0.11465130746364594, 0.012900829315185547, 0.0163698922842741, -0.1119605153799057, 0.12615656852722168, 0.09771713614463806, 0.045796800404787064, 0.03182138875126839, -0.04075615108013153, -0.1582527905702591, 0.029271069914102554, -0.027765175327658653, -0.04336128756403923, 0.054628439247608185, 0.031027184799313545, -0.0948118269443512, 0.0978742241859436, 0.0903443843126297, 0.011608390137553215, 0.03470936790108681, -0.16998697817325592, 0.0192598644644022, 0.003013068810105324, 0.059952814131975174, 0.11328166723251343, 0.07694567739963531, -0.04101305454969406, 0.09835895150899887, -0.06736643612384796, 0.1110096424818039, 0.12363805621862411, -0.3555034399032593, -0.012457918375730515, 0.10189787298440933, 0.06270523369312286, 0.06740105897188187, -0.03682982176542282, 0.08982673287391663, 0.03470775857567787, 0.00613117590546608, -0.0053170169703662395, -0.0891038030385971, -0.0756787359714508, 0.01305522583425045, -0.09377630800008774, -0.020363856106996536, 0.20290392637252808, -0.027332868427038193, 0.04858223721385002, -0.07878751307725906, -0.11015189439058304, -0.04757196828722954, -0.03512457013130188, -0.04250605031847954, -0.0655086487531662, 0.077459916472435, 0.04004932567477226, -0.12000098824501038, -0.12644058465957642, -0.018996303901076317, -0.18161362409591675, 0.2024250626564026, 0.030971379950642586, 0.04535706713795662, -0.19724437594413757, 0.101728156208992, -0.03088740073144436, -0.1015760749578476, 0.02337728999555111, -0.08029577881097794, 0.003965575713664293, 0.02371327392756939, -0.048626527190208435, -0.02395174279808998, 0.03750178590416908, 0.10079092532396317, 0.021332090720534325, 0.014818022027611732, -0.034105632454156876, 0.06682085245847702, 0.054705314338207245, 0.11574766039848328, -0.008635755628347397, -0.06067435070872307, 0.01076506543904543, -0.08730439096689224, 0.012541068717837334, -0.05571402981877327, -0.1864820271730423, -0.04277970269322395, 0.06030288711190224, 0.04168205335736275, 0.006320747546851635, 0.08424018323421478, -0.037076838314533234, -0.055161476135253906, 0.021243160590529442, -0.03457340970635414, -0.0012713817413896322, 0.011658141389489174, -0.008906825445592403, 0.1607789397239685, 0.02481873519718647, 0.062255218625068665, -0.12826918065547943, -0.0015730857849121094, -0.03503469377756119, 0.010049653239548206, -0.013585543259978294, -0.06668118387460709, 0.0021862154826521873, -0.05378958210349083, 0.01139450166374445, -0.14765283465385437, -0.1483226865530014, 0.020346764475107193, 0.006558053195476532, -0.06294172257184982, -0.07597824931144714, -0.10205065459012985, 0.008434038609266281, 0.04081238433718681, -0.06294401735067368, -0.045698463916778564, -0.04211271554231644, 0.062404293566942215, -0.03233574703335762, 0.09939255565404892, -0.11685171723365784, 0.07940062880516052, -0.07629723846912384, -0.013456164859235287, -0.04206080734729767, 0.10981956124305725, 0.03237171471118927, 0.02914990298449993, -0.022276228293776512, -0.00785881094634533, -0.054975297302007675, 0.07335247844457626, -0.031003067269921303, 0.23509830236434937, -0.09321309626102448, -0.11847453564405441, 0.263525128364563, -0.045254096388816833, -0.10364700108766556, 0.15885241329669952, 0.0007135522901080549, 0.04023544117808342, 0.13515597581863403, 0.16158398985862732, -0.011385415680706501, -0.0038134646601974964, 0.10569723695516586, 0.1148356944322586, -0.06270327419042587, 0.03145380690693855, 0.05749383196234703, 0.0010769321816042066, -0.09179454296827316, 0.03216518461704254, 0.10984201729297638, 0.04975549131631851, -0.056285832077264786, -0.028365185484290123, 0.008415726013481617, 0.0014884585980325937, 0.10781263560056686, -0.042196668684482574, 0.12285589426755905, -0.04965861514210701, -0.08022850006818771, -0.02849448099732399, 0.019797328859567642, -0.05203410983085632, 0.046472273766994476, -0.08188029378652573, 0.058539316058158875, -0.033978089690208435, 0.05470561236143112, -0.11655918508768082, -0.004423143342137337, -0.01755467802286148, 0.13092654943466187, 0.02939845249056816, 0.16135555505752563, 0.06137329339981079, -0.023504916578531265, -0.03216337040066719, 0.030564138665795326, 0.14071401953697205, -0.03126663342118263, -0.10003409534692764, -0.09287188202142715, 0.0811360627412796, -0.06793539971113205, 0.13423708081245422, -0.0555490143597126, 0.00980064831674099, -0.02143453061580658, 0.10746579617261887, 0.003996154759079218, 0.0417303740978241, -0.0037989304400980473, -0.02298016846179962, -0.05682303011417389, 0.018503736704587936, 0.09485471993684769, -0.0059507195837795734, -0.10111904889345169, 0.2429477721452713, -0.17432644963264465, 0.12983456254005432, 0.16722053289413452, -0.2233504205942154, 0.03450782224535942, -0.10015681385993958, -0.031652506440877914, 0.001435992424376309, 0.04455745965242386, -0.05626384913921356, 0.25311729311943054, -0.0019639385864138603, 0.18949538469314575, -0.03897673264145851, -0.04380564019083977, -0.017000501975417137, -0.09142880141735077, -0.010780270211398602, 0.09011523425579071, 0.023510558530688286, -0.13321100175380707, 0.14475838840007782, 0.12511798739433289, 0.027528975158929825, 0.17489778995513916, 0.05861778184771538, -0.025399208068847656, 0.03338034823536873, -0.006521058268845081, -0.04620986059308052, -0.05610734596848488, -0.2593539357185364, -0.044272832572460175, 0.07304801046848297, 0.025677701458334923, 0.0917121097445488, -0.11113329231739044, -0.012273331172764301, 0.015576313249766827, -0.020627722144126892, 0.04917661100625992, 0.07492141425609589, 0.01638782024383545, 0.13175813853740692, -0.01447141170501709, -0.06916287541389465, 0.057452693581581116, -0.0009388398611918092, -0.09615986049175262, 0.17259657382965088, -0.1086186021566391, -0.35693594813346863, -0.1312534362077713, -0.1870737224817276, -0.051097143441438675, 0.06220986321568489, 0.09996073693037033, -0.07978793233633041, -0.020188357681035995, -0.015675898641347885, 0.1174057275056839, -0.06931032240390778, 0.0028327605687081814, -0.010737642645835876, -0.0017706245416775346, -0.11706050485372543, -0.08742990344762802, -0.06279534846544266, -0.038760505616664886, -0.07298466563224792, 0.12296497821807861, -0.15258020162582397, -0.0026422811206430197, 0.2350730150938034, 0.04696930944919586, 0.03777346760034561, -0.03837088868021965, 0.16681724786758423, -0.09163413941860199, -0.0030116282869130373, 0.13591106235980988, -0.08747420459985733, 0.056721486151218414, 0.13573996722698212, -0.0068007782101631165, -0.06811025738716125, 0.02280646376311779, -0.02299136109650135, -0.06580311805009842, -0.2303595393896103, -0.12678183615207672, -0.10048766434192657, 0.11530008912086487, 0.03094821237027645, 0.023725062608718872, 0.15314869582653046, 0.05650733411312103, -0.04063202440738678, 0.044304464012384415, 0.06053679808974266, 0.07576314359903336, 0.22628147900104523, -0.0762852132320404, 0.14260976016521454, -0.014606112614274025, -0.15913349390029907, 0.08799180388450623, 0.07204394042491913, 0.0795760527253151, 0.08097280561923981, 0.080851249396801, -0.0027170837856829166, -0.00435675447806716, 0.13494931161403656, 0.0804535448551178, 0.02570078894495964, -0.034570205956697464, -0.04938178509473801, -0.03773989528417587, -0.04529319331049919, 0.06785167008638382, 0.0886419266462326, -0.12428628653287888, -0.047282591462135315, -0.03488650545477867, 0.05784456431865692, 0.10130992531776428, 0.1376499980688095, -0.16824057698249817, -0.011926236562430859, 0.09975039213895798, -0.06411141902208328, -0.11770395189523697, 0.08332550525665283, 0.024439198896288872, -0.13346484303474426, 0.02933911606669426, -0.025001613423228264, 0.11454794555902481, -0.10864608734846115, 0.07620849460363388, -0.11878541111946106, -0.10726244002580643, 0.015116776339709759, 0.1006852462887764, -0.3389896750450134, 0.2244051843881607, 0.00291081122122705, -0.07505687326192856, -0.10630045086145401, 0.0040853070095181465, 0.013894938863813877, 0.07575806975364685, 0.12978264689445496, -0.010683368891477585, 0.07211212068796158, -0.01750653237104416, -0.07353817671537399, 0.028735430911183357, 0.09635994583368301, -0.07049579173326492, -0.0010825821664184332, -0.03801658749580383, -0.0049661253578960896, -0.01829732581973076, -0.023587403818964958, -0.0014803839148953557, -0.16290859878063202, 0.09923109412193298, 0.04523808881640434, 0.03526211529970169, 0.021490126848220825, -0.0580487996339798, -0.10106207430362701, 0.21521955728530884, -0.028257006779313087, -0.0934939831495285, -0.0806451290845871, -0.024160752072930336, 0.03314649313688278, -0.06913693249225616, 0.011845196597278118, -0.03966014087200165, 0.06379248946905136, -0.07038940489292145, -0.16806815564632416, 0.12820692360401154, -0.0936770811676979, -0.0563751682639122, -0.03391633927822113, 0.23886466026306152, -0.009383929893374443, 0.04548521712422371, 0.04236382618546486, -0.0004687271430157125, -0.07526784390211105, -0.0656789019703865, 0.010294760577380657, 0.06985621899366379, -0.03833218291401863, 0.04184971749782562, -0.03099719248712063, -0.062398042529821396, -0.05932587385177612, -0.0020725452341139317, 0.3339856266975403, 0.18850593268871307, -0.03301539644598961, 0.1771552860736847, 0.1418578177690506, -0.07893732190132141, -0.2676796615123749, -0.12169492244720459, -0.06276573985815048, 0.0030598612502217293, -0.04666430130600929, -0.16415944695472717, 0.05869589000940323, -0.006710258778184652, -0.03170900046825409, 0.06351315230131149, -0.2715979218482971, -0.09786126017570496, 0.18337804079055786, -0.022829288616776466, 0.4008355140686035, -0.09806029498577118, -0.08470024913549423, -0.05230459198355675, -0.2304134964942932, 0.1273399442434311, -0.005542899016290903, 0.1143798753619194, -0.013054369017481804, 0.14426681399345398, 0.06119583174586296, 0.01206804346293211, 0.10725241154432297, 0.013682043179869652, -0.06329958885908127, -0.09450146555900574, -0.07338102161884308, -0.0012446518521755934, 0.0011476401705294847, 0.02846316248178482, -0.08135025203227997, 0.007452009711414576, -0.14204733073711395, -0.05880207568407059, -0.06686557829380035, 0.03040401265025139, 0.007875979878008366, -0.08082418143749237, 0.02384857088327408, -0.06121592968702316, -0.0017951064510270953, 0.01369883120059967, 0.18103787302970886, -0.08109579980373383, 0.11325036734342575, 0.11815056204795837, 0.14527307450771332, -0.11678982526063919, 0.020284339785575867, -0.0703679621219635, -0.059937894344329834, 0.06651744991540909, -0.10253574699163437, 0.048018768429756165, 0.12511906027793884, -0.03617637977004051, 0.11047712713479996, 0.08370106667280197, -0.006444394122809172, 0.02117137983441353, 0.07926744222640991, -0.23915089666843414, -0.06435581296682358, -0.09304014593362808, 0.03955186903476715, 0.08366673439741135, 0.08096857368946075, 0.22676967084407806, -0.024838963523507118, -0.043734438717365265, 0.0030685446690768003, 0.02700982242822647, -0.06349200010299683, 0.06372550129890442, -0.02898859791457653, 0.028231212869286537, -0.13944752514362335, 0.0750703513622284, 0.0027297812048345804, -0.11652092635631561, 0.02809574082493782, 0.1420244425535202, -0.07235702872276306, -0.11758468300104141, -0.07982136309146881, 0.1574588119983673, -0.11610083281993866, -0.005342129617929459, -0.04092467203736305, -0.13713355362415314, 0.05447869747877121, 0.0816703587770462, 0.06659974902868271, 0.08546888083219528, -0.09986671805381775, -0.02035888284444809, -0.018251797184348106, 0.02715485356748104, 0.06572859734296799, -0.021694758906960487, -0.03463038057088852, 0.029051166027784348, -0.03248757869005203, 0.12122496217489243, -0.10527889430522919, -0.11364912241697311, -0.14105567336082458, 0.036946650594472885, -0.17099599540233612, -0.07242708653211594, -0.1026867926120758, -0.04898090288043022, -0.011516358703374863, -0.036974381655454636, -0.04300099238753319, -0.04999861121177673, -0.11251956969499588, 0.04941897466778755, -0.05143710598349571, 0.024489354342222214, -0.050020672380924225, -0.0029423225205391645, 0.05943460389971733, -0.03399946540594101, 0.16743046045303345, 0.1299430876970291, -0.10442868620157242, 0.0976698100566864, -0.11791300028562546, -0.051477670669555664, 0.0941738411784172, 0.01526630949229002, 0.06315184384584427, 0.03198041766881943, 0.010478072799742222, 0.04924739897251129, 0.04850073158740997, 0.04474857077002525, 0.03646652027964592, -0.07250802218914032, 0.023117192089557648, -0.05036361888051033, -0.14584796130657196, -0.050054844468832016, -0.022024789825081825, -0.0009207805851474404, 0.058912888169288635, 0.08408147096633911, -0.057143840938806534, 0.10336025059223175, -0.05654619634151459, 0.04178149998188019, 0.026679379865527153, -0.14901196956634521, -0.02361779287457466, -0.10967261344194412, 0.03072173520922661, 0.0012700502993538976, 0.21117503941059113, 0.01987069472670555, 0.02006538026034832, 0.03044954501092434, 0.010335300117731094, 0.04574418067932129, 0.006021009758114815, 0.20722368359565735, 0.09509992599487305, -0.05965007469058037, -0.12157883495092392, 0.07193364202976227, 0.05057293921709061, 0.03485523909330368, 0.10533537715673447, -0.000770547310821712, -0.0010483104269951582, 0.12659026682376862, 0.009146600030362606, 0.026522135362029076, -0.14289486408233643, -0.14863668382167816, -0.022269202396273613, 0.06353332847356796, -0.048796750605106354, 0.14523889124393463, 0.1294776052236557, -0.042022813111543655, 0.02343101240694523, -0.007712621241807938, -0.05864562839269638, -0.19318149983882904, -0.16210398077964783, -0.08277451992034912, -0.13362930715084076, -0.00700057577341795, -0.1382603496313095, 0.04263295978307724, 0.05552901327610016, 0.0951702818274498, -0.06529953330755234, 0.06603898853063583, -0.00046882079914212227, -0.10257044434547424, 0.10539711266756058, -0.024382945150136948, 0.11198068410158157, -0.04068589583039284, -0.0018860390409827232, -0.08373591303825378, 0.06478219479322433, 0.003368198871612549, 0.03843361511826515, -0.0394953154027462, -0.0016145034460350871, -0.11150164157152176, -0.1104523167014122, -0.054789844900369644, 0.04245643690228462, -0.002318953163921833, 0.13847067952156067, 0.021440766751766205, -0.0312382522970438, 0.02284771017730236, 0.2444538176059723, -0.0948774516582489, -0.054663825780153275, -0.08089122176170349, 0.206791952252388, 0.009745636023581028, 0.12328272312879562, -0.019784800708293915, 0.011490619741380215, -0.10551981627941132, 0.3095393776893616, 0.27713850140571594, -0.08242758363485336, 0.011525256559252739, 0.023707229644060135, 0.05034007504582405, 0.11204959452152252, 0.08710934221744537, 0.09174143522977829, 0.2787092924118042, -0.07920375466346741, -0.04292707145214081, 0.004089056514203548, -0.04330449551343918, -0.059345707297325134, 0.06991811096668243, 0.04062064364552498, -0.05808602645993233, -0.03176567330956459, 0.09130383282899857, -0.22210492193698883, 0.10168877989053726, -0.1636808216571808, -0.20033423602581024, -0.08154747635126114, 0.016375921666622162, 0.11310794949531555, 0.05332217738032341, 0.11315301805734634, 0.0014313970459625125, -0.07912269234657288, 0.11796721071004868, 0.01597132720053196, -0.1849665492773056, 0.020929761230945587, 0.07463151216506958, -0.09044136106967926, -0.02699815295636654, -0.004569899290800095, 0.0711376741528511, 0.07369344681501389, 0.06055380031466484, -0.0020237350836396217, 0.03896850347518921, -0.0031708639580756426, -0.056398067623376846, 0.017565039917826653, 0.09126293659210205, 0.008442194201052189, -0.07208438962697983, 0.10251861065626144, -0.1588590294122696, 0.028712231665849686, -0.023917341604828835, -0.04265426844358444, -0.014452322386205196, 0.03425952419638634, -0.06065276265144348, 0.06363330781459808, 0.10582897812128067, -0.007868681102991104, -0.032519590109586716, -0.019223323091864586, -0.015195349231362343, -0.01475186925381422, -0.035958509892225266, -0.08034562319517136, -0.16247525811195374, -0.09049548953771591, 0.05668025463819504, 0.007545774802565575, -0.1936684548854828, -0.0035515427589416504, -0.12753567099571228, 0.051882728934288025, -0.1397029012441635, 0.0936773270368576, 0.1014837995171547, 0.02200392633676529, 0.003360465867444873, -0.1022113710641861, 0.048651114106178284, 0.09172189980745316, -0.12711367011070251, -0.09296631067991257 ]
null
null
transformers
## Usage: ``` from sentence_transformers import models from sentence_transformers import SentenceTransformer word_embedding_model = models.Transformer('Cro-CoV-cseBERT') pooling_model = models.Pooling(word_embedding_model.get_word_embedding_dimension(), pooling_mode_mean_tokens=True, pooling_mode_cls_token=False, pooling_mode_max_tokens=False) model = SentenceTransformer(modules=[word_embedding_model, pooling_model], device='') ## device = 'gpu' or 'cpu' texts_emb = model.encode(texts) ``` ## Datasets: https://github.com/InfoCoV/InfoCoV ## Paper: Please cite https://www.mdpi.com/2076-3417/11/21/10442
{}
fill-mask
InfoCoV/Cro-CoV-cseBERT
[ "transformers", "pytorch", "bert", "fill-mask", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us
## Usage: ## Datasets: URL ## Paper: Please cite URL
[ "## Usage:", "## Datasets:\nURL", "## Paper:\nPlease cite URL" ]
[ "TAGS\n#transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n", "## Usage:", "## Datasets:\nURL", "## Paper:\nPlease cite URL" ]
[ 36, 4, 6, 6 ]
[ "passage: TAGS\n#transformers #pytorch #bert #fill-mask #autotrain_compatible #endpoints_compatible #region-us \n## Usage:## Datasets:\nURL## Paper:\nPlease cite URL" ]
[ -0.060281187295913696, 0.1577005535364151, -0.005926306825131178, 0.023735003545880318, 0.13193674385547638, 0.037177883088588715, 0.10347951203584671, 0.0918835774064064, 0.034708768129348755, -0.018747422844171524, 0.1764935553073883, 0.19991435110569, -0.016506319865584373, 0.15073838829994202, -0.08985187113285065, -0.24620574712753296, 0.042515985667705536, 0.07726733386516571, -0.06837961077690125, 0.13318799436092377, 0.07800846546888351, -0.12511634826660156, 0.070497065782547, -0.03077392280101776, -0.0795687586069107, 0.04491259157657623, 0.012108759954571724, -0.08628986775875092, 0.10091909766197205, 0.018381793051958084, 0.1930113136768341, 0.04593847692012787, 0.00997096672654152, -0.13121072947978973, 0.03428232669830322, -0.0061402455903589725, -0.0501372255384922, 0.0955866277217865, 0.00937381200492382, -0.08372431993484497, 0.006016305182129145, -0.022829139605164528, -0.012742293067276478, 0.018196070566773415, -0.12334061414003372, -0.11657247692346573, -0.020884081721305847, 0.031352050602436066, 0.02839798294007778, 0.07068970054388046, 0.002630443312227726, 0.20821265876293182, -0.09368782490491867, 0.1078549176454544, 0.21659919619560242, -0.21387943625450134, -0.010344077832996845, 0.06405585259199142, 0.06109391525387764, -0.03716406598687172, -0.04631013050675392, 0.058925993740558624, 0.02644062414765358, 0.004381976556032896, 0.03226930648088455, -0.07958707958459854, -0.17618511617183685, 0.0607195645570755, -0.07463674247264862, -0.044906288385391235, 0.25004008412361145, -0.013373364694416523, 0.0647282525897026, 0.027066238224506378, -0.13048183917999268, 0.07067153602838516, -0.037090789526700974, 0.007173317484557629, 0.005741275381296873, 0.020801054313778877, -0.05553529039025307, -0.05084530636668205, -0.11940401792526245, 0.02834310568869114, -0.16973456740379333, 0.1126229539513588, -0.011343417689204216, 0.07255952060222626, -0.14872315526008606, 0.05150396749377251, 0.0100022591650486, -0.14888569712638855, 0.05568241700530052, -0.09303712844848633, 0.08697681874036789, -0.00398280518129468, -0.04962341487407684, -0.0800543874502182, 0.13014595210552216, 0.1390402615070343, 0.12476053833961487, -0.014180902391672134, -0.013429037295281887, 0.09320832043886185, 0.04086620733141899, 0.07975075393915176, -0.09572943300008774, -0.0913442000746727, 0.07338245958089828, -0.07889264822006226, 0.04339062049984932, -0.04036590829491615, -0.12780369818210602, -0.03319486230611801, -0.009512004442512989, 0.06506148725748062, 0.06846977770328522, 0.04240284860134125, -0.07238705456256866, -0.003003844991326332, 0.08928649872541428, -0.09244106709957123, 0.015348907560110092, 0.00020023307297378778, 0.03059220314025879, 0.12483973056077957, 0.05468921735882759, 0.033554669469594955, -0.04296470060944557, 0.08623771369457245, -0.0923568606376648, 0.0028998481575399637, -0.07174474745988846, -0.11143103241920471, 0.040563590824604034, -0.10486654937267303, 0.0599953718483448, -0.11935056746006012, -0.1969226598739624, 0.026644324883818626, 0.08286572992801666, -0.011889814399182796, 0.000642704835627228, -0.0002889211755245924, 0.0007890028646215796, 0.010613663122057915, -0.03399122878909111, 0.008983692154288292, -0.07133221626281738, 0.1270294487476349, -0.07935240119695663, 0.09977056831121445, -0.1251678615808487, 0.031636279076337814, -0.11147162318229675, -0.03112735040485859, -0.07323341071605682, -0.012971848249435425, -0.03440063074231148, 0.12090431153774261, -0.04976072162389755, -0.059291690587997437, -0.06769329309463501, -0.0023929013404995203, 0.013484071008861065, 0.1904316544532776, -0.08676781505346298, -0.08734790980815887, 0.21835188567638397, -0.0935368463397026, -0.1439150720834732, 0.0754188522696495, -0.04032246023416519, 0.0544855110347271, 0.06164152920246124, 0.0997709259390831, 0.06462716311216354, -0.15778838098049164, 0.0378955602645874, 0.1411740630865097, -0.08410105854272842, -0.12612326443195343, 0.030502771958708763, -0.01875736005604267, -0.05264503136277199, 0.03464861586689949, 0.09031050652265549, 0.06762966513633728, -0.06661366671323776, -0.08482301980257034, -0.02082465961575508, -0.05935363098978996, 0.07737977057695389, 0.05705592408776283, 0.06496725231409073, -0.02622123993933201, -0.014495724812150002, 0.01748715341091156, 0.006664458196610212, 0.0039056723471730947, 0.015630748122930527, -0.024054288864135742, 0.1340942233800888, -0.11514010280370712, -0.011178030632436275, -0.17789331078529358, -0.08179476857185364, -0.054604243487119675, 0.10330419987440109, -0.037528954446315765, 0.09481032937765121, 0.08604151010513306, -0.04380004107952118, -0.03339311107993126, 0.012160824611783028, 0.1024583950638771, 0.03239130228757858, -0.06723897159099579, -0.10876721143722534, 0.040696777403354645, -0.06043035164475441, -0.05599942058324814, -0.05508987978100777, -0.015786344185471535, 0.002574246609583497, 0.1424107849597931, 0.026209775358438492, 0.037254802882671356, 0.029324930161237717, 0.007665551267564297, -0.05239024758338928, 0.000964413455221802, 0.07169406861066818, 0.003206335473805666, -0.07684414088726044, 0.06757858395576477, -0.016469819471240044, 0.3350619673728943, 0.18159180879592896, -0.2647278904914856, 0.007970687933266163, 0.0032744049094617367, -0.040425341576337814, 0.015610487200319767, -0.037519339472055435, -0.014150015078485012, -0.01787068508565426, 0.025908581912517548, 0.11562035232782364, -0.04858677089214325, -0.016687486320734024, 0.029114969074726105, -0.09388312697410583, -0.02629910036921501, 0.048029668629169464, 0.17573198676109314, -0.1518024504184723, 0.17971208691596985, 0.18613195419311523, -0.011703618802130222, 0.139487162232399, -0.014010629616677761, -0.06193602457642555, 0.01971685327589512, -0.05841255187988281, -0.04056393355131149, 0.08553154021501541, -0.15590472519397736, 0.04476136714220047, 0.12197128683328629, -0.049563370645046234, 0.050514690577983856, -0.1358548402786255, -0.05398900806903839, -0.005278268828988075, 0.019298147410154343, -0.13149364292621613, 0.08103900402784348, 0.03266872093081474, 0.09996364265680313, -0.008768637664616108, -0.02576121874153614, 0.07766164094209671, 0.008315357379615307, -0.07070237398147583, 0.19759832322597504, -0.11192517727613449, -0.33882883191108704, -0.11731739342212677, -0.14070771634578705, 0.018589742481708527, 0.017841165885329247, 0.04738771915435791, -0.061391618102788925, -0.09132120758295059, 0.06863413751125336, -0.03980161249637604, 0.02168785221874714, 0.015422500669956207, -0.06065431982278824, 0.05729180946946144, -0.023429272696375847, -0.10351161658763885, -0.036175236105918884, -0.019490761682391167, 0.052362196147441864, 0.12878085672855377, -0.0666600838303566, 0.13173902034759521, 0.08861576020717621, 0.004959271755069494, 0.06153075024485588, 0.015427486971020699, 0.2150219827890396, -0.08674448728561401, 0.03334251791238785, 0.14267326891422272, -0.0601535364985466, 0.10186047852039337, 0.18786410987377167, 0.06619896739721298, -0.05637244135141373, -0.02736653760075569, -0.0366923063993454, -0.0785413458943367, -0.20609436929225922, -0.10862737894058228, -0.12157414108514786, -0.05427633225917816, 0.03793773055076599, 0.0206300038844347, -0.005343063268810511, 0.12490914016962051, 0.03938131779432297, -0.023188386112451553, -0.06929167360067368, 0.021627573296427727, 0.1491311490535736, -0.018957648426294327, 0.10698331147432327, -0.07482680678367615, -0.14732153713703156, 0.07512249052524567, 0.03839756175875664, 0.17578984797000885, 0.04878191277384758, -0.009291086345911026, 0.059260740876197815, 0.09514230489730835, 0.08808563649654388, 0.21082302927970886, 0.0270917359739542, -0.037372417747974396, -0.015099228359758854, -0.038656242191791534, -0.00983667466789484, 0.022715043276548386, 0.09367650002241135, -0.09126119315624237, 0.027091166004538536, -0.10572747886180878, 0.08578799664974213, 0.06409971415996552, 0.11398740112781525, -0.24434752762317657, 0.025349365547299385, 0.05374125391244888, 0.026327338069677353, -0.0817437693476677, 0.0320967435836792, -0.009657221846282482, -0.11048814654350281, 0.10114822536706924, -0.0459674671292305, 0.11077003180980682, -0.012865197844803333, 0.03706420585513115, -0.04715984687209129, -0.07704020291566849, 0.0034213929902762175, 0.1142621859908104, -0.22620151937007904, 0.3396107852458954, 0.027042193338274956, -0.04158484563231468, -0.0987536758184433, -0.01062731072306633, 0.036341581493616104, 0.11576931923627853, 0.15705426037311554, 0.023312019184231758, 0.05735930800437927, -0.0984322801232338, -0.09068846702575684, 0.06614667177200317, 0.0724099650979042, 0.010055124759674072, 0.019916316494345665, -0.0007146119023673236, -0.05805644392967224, -0.004443263169378042, -0.004616595339030027, -0.06299736350774765, -0.16667547821998596, 0.05839923396706581, 0.008747216314077377, -0.016649870201945305, 0.024507669731974602, -0.07834354788064957, -0.05896289274096489, 0.22999240458011627, -0.010070474818348885, -0.10086698830127716, -0.11707427352666855, 0.0057896156795322895, 0.13329406082630157, -0.09308134019374847, 0.07750843465328217, -0.07761431485414505, -0.002656238619238138, -0.07243351638317108, -0.14165300130844116, 0.11192841827869415, -0.10765892267227173, -0.012762579135596752, -0.07433873414993286, 0.10779737681150436, -0.06696601212024689, 0.024311818182468414, 0.0003942040493711829, 0.0593051016330719, -0.12873834371566772, -0.08645106852054596, 0.03199044615030289, -0.03600561246275902, 0.10715295374393463, 0.06955733895301819, -0.0884973555803299, -0.060392700135707855, 0.036277588456869125, 0.016911204904317856, 0.26927298307418823, 0.15182122588157654, -0.05852266773581505, 0.12229561060667038, 0.19094440340995789, -0.06313265860080719, -0.3511536121368408, -0.09158381074666977, -0.12906917929649353, -0.004867301322519779, -0.016165809705853462, -0.14312876760959625, 0.11585265398025513, -0.01376376859843731, -0.05141860619187355, 0.12166279554367065, -0.14277946949005127, -0.097371406853199, 0.23363536596298218, 0.0294195543974638, 0.2971360385417938, -0.11623300611972809, -0.05381380394101143, -0.05392885208129883, -0.1886196732521057, 0.09404948353767395, -0.010206264443695545, 0.06447266042232513, -0.0032378463074564934, 0.08107126504182816, 0.02484460361301899, -0.12333480268716812, 0.10668037086725235, -0.0501762256026268, 0.007052064873278141, -0.0781998485326767, -0.1376931518316269, 0.09814982116222382, 0.018795546144247055, 0.03965656831860542, 0.02783229388296604, 0.038994789123535156, -0.03737499937415123, -0.02436019480228424, -0.06999371200799942, 0.10011149942874908, 0.02652834542095661, -0.09577833861112595, -0.03520024195313454, -0.01565735973417759, 0.03022705763578415, -0.013763783499598503, 0.17427028715610504, -0.015786658972501755, 0.11681661009788513, 0.09617294371128082, 0.08288939297199249, -0.13049912452697754, -0.030997350811958313, -0.042320266366004944, -0.0958586260676384, 0.06132587790489197, -0.08665856719017029, 0.04112577438354492, 0.14162079989910126, 0.00937322061508894, 0.05588674172759056, 0.08726634085178375, 0.013887026347219944, -0.0104279275983572, 0.15691199898719788, -0.24107545614242554, 0.01928033120930195, -0.03673842176795006, -0.14694982767105103, -0.06015157699584961, 0.014686999842524529, 0.09049662947654724, 0.01112611498683691, -0.03347014635801315, -0.0042545609176158905, 0.04493815079331398, -0.03534815087914467, 0.07754916697740555, 0.10789649188518524, 0.041899532079696655, -0.1359078586101532, 0.02080380544066429, 0.008269988000392914, -0.16555161774158478, -0.025097258388996124, 0.025583557784557343, -0.1278289407491684, -0.105331651866436, 0.051947783678770065, 0.13516631722450256, -0.08712242543697357, -0.03494478017091751, -0.11863864213228226, -0.05252613127231598, 0.05139566957950592, 0.18476387858390808, 0.09800584614276886, 0.06569482386112213, -0.016013149172067642, -0.05849916487932205, -0.034889210015535355, 0.07359243929386139, 0.06660950928926468, -0.019072094932198524, -0.07831193506717682, -0.024354560300707817, -0.010829130187630653, 0.1285502314567566, -0.0887618362903595, 0.0013903924264013767, -0.14804793894290924, 0.020518919453024864, -0.08240558952093124, -0.03763711825013161, -0.0782303512096405, -0.04713686555624008, -0.028588928282260895, -0.08574412763118744, -0.07395269721746445, -0.03661522641777992, -0.11998581886291504, 0.03595086932182312, 0.0399584025144577, 0.00969674438238144, -0.11977581679821014, -0.05176415294408798, 0.1274268925189972, -0.016066813841462135, 0.07704413682222366, 0.09977556020021439, -0.09543096274137497, 0.05505257099866867, -0.1847793608903885, -0.11799711734056473, 0.11479854583740234, 0.047957248985767365, 0.08221958577632904, 0.028949148952960968, 0.04413709416985512, 0.06746027618646622, 0.03569098189473152, 0.033256467431783676, 0.08679398149251938, -0.10556764900684357, 0.0948682576417923, -0.03412201255559921, -0.13344092667102814, -0.0237567201256752, -0.04867421090602875, 0.07135169208049774, 0.00732726976275444, 0.12517565488815308, -0.06409095972776413, 0.0979909598827362, -0.08234933018684387, 0.02454587072134018, -0.0351034477353096, -0.15702925622463226, -0.06385733187198639, -0.03491595759987831, 0.033818285912275314, -0.0430477149784565, 0.31952184438705444, 0.009249279275536537, 0.04237215593457222, 0.022449349984526634, 0.11687908321619034, -0.00418240949511528, -0.006823546718806028, 0.16605602204799652, 0.057777076959609985, -0.044593509286642075, -0.09305477142333984, 0.08540384471416473, 0.02159695327281952, -0.053426358848810196, 0.1440952718257904, 0.09482504427433014, 0.1054331511259079, 0.053607333451509476, -0.01260879635810852, 0.009214893914759159, -0.1087263971567154, -0.1582363247871399, 0.001171356183476746, 0.09952778369188309, 0.016987226903438568, 0.028655216097831726, 0.133217915892601, -0.03197070211172104, 0.02826138213276863, -0.0027341791428625584, -0.04118858650326729, -0.19266587495803833, -0.11434962600469589, -0.09935682266950607, -0.06227949261665344, 0.028116850182414055, -0.09053204208612442, -0.009835150092840195, 0.07114657014608383, 0.022680554538965225, -0.022314853966236115, 0.09354783594608307, 0.03162146732211113, -0.016008464619517326, 0.012796049937605858, 0.014793853275477886, 0.004549938254058361, -0.014734845608472824, -0.010749905370175838, -0.10245182365179062, 0.011192265897989273, -0.029605824500322342, 0.01187076885253191, -0.037643127143383026, 0.028696926310658455, -0.1273541897535324, -0.1078069731593132, -0.07582184672355652, 0.06534601747989655, -0.016021233052015305, 0.06661885976791382, 0.007935038767755032, 0.057675667107105255, 0.01923501491546631, 0.13576622307300568, -0.07853676378726959, -0.13866081833839417, -0.09334133565425873, 0.13927926123142242, 0.004747434053570032, 0.06252042949199677, 0.011263004504144192, -0.03809265419840813, -0.04321259632706642, 0.3638131618499756, 0.3439651429653168, -0.043698642402887344, 0.06277856230735779, 0.05948268249630928, 0.03374378755688667, 0.09474768489599228, 0.05717464163899422, 0.06280989944934845, 0.29533708095550537, -0.10822781175374985, -0.11299385130405426, -0.07706672698259354, -0.03465055301785469, -0.08227913826704025, 0.0349973663687706, 0.07994157075881958, -0.05820861831307411, -0.06503376364707947, 0.1361820250749588, -0.18507693707942963, 0.05170745775103569, 0.00004944976171827875, -0.22552086412906647, -0.07623007893562317, -0.03493135794997215, 0.08692549169063568, 0.01403824519366026, 0.05437646061182022, -0.043873678892850876, -0.08363411575555801, 0.10679421573877335, 0.022874539718031883, -0.22267401218414307, -0.013842794112861156, 0.08393038064241409, -0.04402618110179901, 0.08060282468795776, 0.002855161437764764, 0.024161672219634056, 0.09708590060472488, 0.037235941737890244, -0.043507661670446396, 0.04598178714513779, 0.055825475603342056, -0.05341392010450363, -0.0024415620137006044, -0.053195420652627945, -0.00747508741915226, -0.10809676349163055, 0.05033985525369644, -0.10339071601629257, 0.056732818484306335, -0.06215833127498627, -0.037518102675676346, -0.018688473850488663, 0.06907201558351517, -0.06814232468605042, 0.060357850044965744, 0.079903744161129, -0.002742970362305641, -0.0026101989205926657, -0.054465532302856445, 0.04669034853577614, 0.04616924375295639, -0.1216997280716896, -0.10338081419467926, -0.08037862181663513, -0.06258075684309006, 0.03042181022465229, -0.002972593065351248, -0.1426081359386444, -0.012433110736310482, -0.06025956943631172, 0.013475993648171425, -0.1293306052684784, 0.06093784421682358, 0.07466311007738113, 0.02141672372817993, 0.006740718148648739, -0.0008808035054244101, 0.0375673733651638, 0.025957228615880013, -0.13604751229286194, -0.06331688910722733 ]
null
null
transformers
# Inkdrop/gpt2-property-classifier
{"language": ["de"], "license": "mit", "tags": ["text-generation"], "widget": [{"text": "\"Ideal als kleine Aufmerksamkeit mit emotionalem Wert Neue Tuchmasken-Referenz \"Verw\u00f6hnmoment\u00bb exklusiv im Set Langanhaltende Feuchtigkeit und Erholung Mit strahlendem Teint Sofort-Effekt Naturnahe Kosmetik Inhalt: Badekristalle Kleiner Gruss von Herzen 60 g, Tuchmaske Verw\u00f6hnmoment 1x\" is a", "example_title": "Bullet point classification"}]}
text-generation
Inkdrop/gpt2-property-classifier
[ "transformers", "pytorch", "tensorboard", "gpt2", "text-generation", "de", "license:mit", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "de" ]
TAGS #transformers #pytorch #tensorboard #gpt2 #text-generation #de #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Inkdrop/gpt2-property-classifier
[ "# Inkdrop/gpt2-property-classifier" ]
[ "TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #de #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Inkdrop/gpt2-property-classifier" ]
[ 58, 14 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #gpt2 #text-generation #de #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Inkdrop/gpt2-property-classifier" ]
[ -0.0219278484582901, 0.09430024772882462, -0.005958787631243467, 0.06647833436727524, 0.12982290983200073, 0.009877794422209263, 0.15619824826717377, 0.15229666233062744, 0.005477330181747675, 0.006029786076396704, 0.15950393676757812, 0.28233984112739563, 0.029215160757303238, 0.06004898622632027, -0.060488510876894, -0.2724311947822571, 0.028451869264245033, 0.0916321724653244, -0.030881380662322044, 0.09238845109939575, 0.08892469853162766, -0.04780067875981331, 0.09859927743673325, 0.01804696023464203, -0.15855979919433594, -0.005902348551899195, 0.042078420519828796, -0.13719026744365692, 0.10157875716686249, 0.09324609488248825, 0.06623924523591995, 0.0633285865187645, -0.004220268223434687, -0.08889371156692505, 0.02803172543644905, 0.028536571189761162, -0.09003427624702454, 0.10398394614458084, 0.09917551279067993, -0.045750509947538376, 0.08012621849775314, 0.01656908541917801, -0.00046847565681673586, 0.03525367006659508, -0.11475180089473724, -0.09974362701177597, -0.052622850984334946, 0.07398051023483276, 0.04314006492495537, 0.04515516757965088, 0.01185615174472332, 0.13698749244213104, -0.014310670085251331, 0.08570703864097595, 0.15963616967201233, -0.3865574896335602, -0.018511613830924034, 0.16625279188156128, 0.08547402173280716, -0.00978758092969656, -0.04970875754952431, 0.06523114442825317, 0.012930589728057384, 0.030880125239491463, 0.0904977098107338, -0.08595319092273712, -0.024493226781487465, 0.041242290288209915, -0.07527396082878113, -0.029740992933511734, 0.19118638336658478, -0.06815538555383682, 0.02973170019686222, -0.0848766341805458, -0.04490022733807564, -0.030239848420023918, -0.02454455755650997, -0.004571236204355955, -0.02676892839372158, 0.06524185091257095, 0.006117262877523899, -0.08555326610803604, -0.1375260055065155, -0.014657218009233475, -0.16658815741539001, 0.09437821060419083, 0.008800121024250984, 0.028218206018209457, -0.14746783673763275, 0.11821488291025162, 0.00043675460619851947, -0.09509743005037308, -0.011150266975164413, -0.058737095445394516, 0.10561835020780563, -0.002608869457617402, -0.024500882253050804, -0.11227601766586304, 0.09816057235002518, 0.13909830152988434, 0.036371417343616486, 0.04623926803469658, -0.01203581877052784, 0.13450460135936737, 0.007034524343907833, 0.11546166241168976, 0.005554385017603636, 0.0016944588860496879, 0.10271243751049042, -0.11297411471605301, 0.048306699842214584, -0.08034944534301758, -0.20362409949302673, -0.02231215313076973, 0.04341743886470795, 0.04625553637742996, 0.011315356940031052, 0.09565450996160507, -0.032206516712903976, -0.012435885146260262, 0.11244425177574158, -0.08904872089624405, 0.02771972306072712, -0.017675336450338364, 0.013457202352583408, 0.08254660665988922, 0.06465236097574234, -0.003530635731294751, -0.13125495612621307, 0.05046854913234711, -0.06509719789028168, 0.0061544687487185, -0.043120816349983215, -0.07230762392282486, 0.04466027021408081, -0.10232046991586685, -0.009139406494796276, -0.1253715604543686, -0.19011493027210236, 0.018667344003915787, 0.05026373267173767, -0.026221439242362976, -0.06614150106906891, 0.011404152028262615, -0.043136049062013626, 0.046377163380384445, -0.05266072228550911, -0.08000320196151733, -0.03817237913608551, 0.09878379106521606, -0.060864146798849106, 0.03191063180565834, -0.19191378355026245, 0.06463345140218735, -0.08932718634605408, 0.007139403373003006, -0.12799394130706787, 0.06996849924325943, -0.002601670566946268, 0.05559937655925751, -0.04487515240907669, -0.08640629053115845, -0.037146348506212234, 0.03427990898489952, 0.003966670949012041, 0.10904249548912048, -0.1186484768986702, -0.10505519062280655, 0.2007298767566681, -0.09950999170541763, -0.13630373775959015, 0.0667668804526329, -0.02093658410012722, 0.05515781044960022, 0.0788005143404007, 0.20075953006744385, 0.04951118677854538, -0.031824395060539246, 0.022603847086429596, 0.12074469029903412, -0.09824787825345993, -0.10644552856683731, 0.018753603100776672, -0.03630469739437103, -0.0011307322420179844, 0.05720353126525879, -0.003411774290725589, 0.045692384243011475, -0.0015375002985820174, -0.040180306881666183, -0.04577542096376419, 0.03426423668861389, 0.09132196754217148, 0.0031587027478963137, 0.1012091189622879, -0.04483162611722946, -0.07107227295637131, 0.11750420928001404, -0.02499549090862274, -0.07104646414518356, 0.019753728061914444, -0.07808076590299606, 0.11715131998062134, -0.0004795566201210022, 0.03329795226454735, -0.13902264833450317, -0.07904284447431564, -0.014607605524361134, -0.012874200008809566, 0.05136873200535774, 0.08126598596572876, 0.04177924990653992, 0.014031541533768177, 0.009721048176288605, 0.01961304061114788, 0.10836106538772583, -0.022057121619582176, -0.06598057597875595, -0.09876514226198196, 0.04272964969277382, -0.03977752476930618, -0.020075613632798195, -0.10586236417293549, 0.07627443969249725, 0.09032581001520157, 0.046352192759513855, -0.00861683301627636, 0.03094666823744774, -0.020253702998161316, -0.005301734898239374, -0.09610258787870407, -0.03562523052096367, 0.11561589688062668, 0.03208224102854729, -0.09119903296232224, 0.14030365645885468, -0.1750364750623703, 0.21159937977790833, 0.1833488792181015, -0.18628256022930145, -0.00184949254617095, -0.11835703998804092, -0.023087039589881897, 0.012163259088993073, 0.011509840376675129, 0.01383222546428442, 0.1629221886396408, -0.0006052969256415963, 0.1701890230178833, -0.08099979162216187, -0.08270003646612167, 0.007449342403560877, -0.0697123110294342, -0.020748114213347435, 0.04124954342842102, 0.14060276746749878, -0.11160901933908463, 0.1809769719839096, 0.17640641331672668, -0.015119381248950958, 0.14221401512622833, -0.0025519609916955233, 0.021735141053795815, 0.010901524685323238, 0.01505663339048624, 0.017263591289520264, 0.0051340446807444096, -0.15746623277664185, 0.0006485198973678052, 0.06363879889249802, 0.007824428379535675, 0.07000990957021713, -0.15071982145309448, -0.027339264750480652, -0.05112088471651077, -0.03331579267978668, 0.030651064589619637, 0.07914528250694275, 0.01641557179391384, 0.10470175743103027, -0.037242066115140915, -0.006084649823606014, 0.1332390457391739, 0.03727712854743004, -0.08942065387964249, 0.20560778677463531, -0.11241976916790009, -0.32861319184303284, -0.14876772463321686, -0.08820046484470367, -0.059218764305114746, 0.027042413130402565, 0.11668965965509415, -0.04537252336740494, -0.03015037626028061, -0.03397800400853157, -0.03685137256979942, -0.022377418354153633, 0.00034838845022022724, -0.06384078413248062, 0.026136096566915512, -0.06542453914880753, -0.12978652119636536, -0.07121949642896652, -0.005519758444279432, -0.061031341552734375, 0.14777514338493347, -0.023354165256023407, 0.03074864111840725, 0.21408766508102417, -0.02003277838230133, 0.04751840978860855, -0.06244509294629097, 0.13034369051456451, -0.05884840711951256, 0.052607711404561996, 0.20538952946662903, -0.06054319068789482, 0.09203346818685532, 0.06918495893478394, 0.029960686340928078, -0.07705865800380707, -0.015664992853999138, -0.03553256765007973, -0.1093435063958168, -0.2249729037284851, -0.07530245929956436, -0.10463589429855347, 0.08024609833955765, 0.06105035915970802, 0.08839374780654907, 0.13385096192359924, 0.09624157100915909, 0.004330582916736603, 0.07985252141952515, 0.08674079924821854, 0.11074648052453995, 0.23648306727409363, -0.012498710304498672, 0.15176354348659515, -0.0836346223950386, -0.09902281314134598, 0.09484739601612091, 0.09208300709724426, 0.10600493848323822, 0.029729627072811127, 0.09090384095907211, 0.03948983550071716, 0.11258389055728912, 0.1201644167304039, 0.0802605152130127, -0.01728162169456482, 0.0024817318189889193, -0.032281603664159775, -0.048789262771606445, -0.019909193739295006, 0.013892225921154022, -0.060801342129707336, -0.14747437834739685, -0.002478213282302022, -0.07359510660171509, 0.07823680341243744, 0.07846774905920029, 0.013726599514484406, -0.2547345757484436, -0.007186071015894413, 0.0707317441701889, 0.03808561712503433, -0.10507402569055557, 0.031171614304184914, 0.029591165482997894, -0.13335777819156647, 0.10065606236457825, -0.11047206073999405, 0.08885667473077774, -0.0650860071182251, 0.04836815223097801, 0.011095143854618073, -0.012833342887461185, 0.014643054455518723, 0.11390823870897293, -0.27780991792678833, 0.10849858820438385, 0.012750905938446522, 0.0011882667895406485, -0.10154519975185394, 0.0626826137304306, 0.026511481031775475, 0.11339230090379715, 0.10880523920059204, -0.01425006240606308, -0.068775475025177, -0.06994469463825226, -0.036514025181531906, 0.04100799188017845, 0.05695819854736328, -0.019907014444470406, -0.030337581411004066, -0.031907033175230026, 0.018142450600862503, -0.007971756160259247, -0.037503212690353394, -0.01198443491011858, -0.19154611229896545, 0.11304649710655212, -0.02435622736811638, 0.03275357559323311, -0.01779584400355816, -0.03628602623939514, -0.13259591162204742, 0.2801324129104614, -0.19566549360752106, -0.1272495985031128, -0.09686070680618286, -0.002869046526029706, -0.02397027425467968, -0.07693982124328613, 0.04367663711309433, -0.06544361263513565, 0.05950375646352768, -0.06561930477619171, -0.19788865745067596, 0.11140647530555725, -0.054665811359882355, -0.048891354352235794, -0.027344249188899994, 0.10265172272920609, -0.05403326079249382, -0.000989117193967104, 0.05640497803688049, -0.003236443502828479, -0.05939141660928726, -0.13652464747428894, 0.032740313559770584, 0.007463530637323856, 0.04361249879002571, -0.06470050662755966, -0.10511843860149384, -0.05914492532610893, 0.016034051775932312, 0.01792987994849682, 0.27426281571388245, 0.11673873662948608, -0.07534398883581161, 0.16463139653205872, 0.12488915771245956, -0.1347416788339615, -0.30192917585372925, -0.049716342240571976, -0.0810028687119484, -0.05904919281601906, -0.009993334300816059, -0.20360763370990753, 0.09684863686561584, 0.08931340277194977, -0.035188645124435425, 0.16427011787891388, -0.334000825881958, -0.11724504828453064, 0.13697493076324463, 0.04271398484706879, 0.20869044959545135, -0.17699585855007172, -0.09242228418588638, -0.040729377418756485, -0.12865081429481506, 0.2143196314573288, -0.07910417020320892, 0.103579580783844, -0.029212892055511475, 0.04783419519662857, 0.011505937203764915, -0.05418194457888603, 0.0762065201997757, -0.005898687988519669, 0.04830978438258171, -0.12693513929843903, -0.04138319194316864, 0.0967695415019989, -0.010437220335006714, 0.07153289020061493, -0.1383855938911438, 0.006619527004659176, -0.09930244088172913, -0.04335785284638405, -0.03356631472706795, 0.12143648415803909, 0.009056922048330307, -0.09227966517210007, -0.037596095353364944, -0.04115820676088333, -0.03273293748497963, 0.0047832331620156765, 0.19525563716888428, -0.0067051430232822895, 0.12611806392669678, 0.11650300025939941, 0.0980025976896286, -0.06990606337785721, -0.0939338430762291, -0.06258326768875122, -0.04783640801906586, 0.05633552372455597, -0.11939612030982971, 0.023534676060080528, 0.1052013412117958, -0.03062708117067814, 0.10079608112573624, 0.10643552243709564, -0.004821874666959047, 0.030818402767181396, 0.09984447807073593, -0.2055329829454422, -0.00700555881485343, -0.018040159717202187, 0.053356677293777466, 0.05427097529172897, 0.09498051553964615, 0.1614970713853836, 0.0004536435008049011, -0.03695133700966835, 0.036817148327827454, 0.021872177720069885, -0.011987261474132538, 0.06364147365093231, 0.011577872559428215, 0.0008851244929246604, -0.11707742512226105, 0.06025806814432144, 0.04000891000032425, -0.10973015427589417, 0.04060158133506775, 0.16017313301563263, -0.11044946312904358, -0.13038893043994904, 0.013533273711800575, 0.15147343277931213, -0.14328666031360626, -0.013604054227471352, -0.04638131707906723, -0.13891558349132538, 0.057963840663433075, 0.129893958568573, 0.06592872738838196, 0.05593772977590561, -0.0451078787446022, -0.03581465408205986, -0.03550868481397629, 0.022995753213763237, -0.03083827532827854, 0.03217848390340805, -0.059699203819036484, 0.08223792165517807, 0.022661661729216576, 0.0892404094338417, -0.06477199494838715, -0.03932790830731392, -0.15154524147510529, -0.031116172671318054, -0.0581783689558506, 0.025236599147319794, -0.08463739603757858, -0.017793739214539528, 0.0010025190422311425, 0.018724244087934494, -0.0210520438849926, -0.029893752187490463, -0.09565764665603638, 0.003048315178602934, -0.04260214418172836, 0.058465078473091125, -0.10107928514480591, -0.012694618664681911, 0.03647477179765701, -0.03028310276567936, 0.13656209409236908, 0.03504708409309387, -0.07138675451278687, 0.06449687480926514, -0.16745617985725403, -0.0286365058273077, 0.10796910524368286, 0.019112052395939827, -0.011537023819983006, 0.04325919225811958, 0.042919859290122986, 0.0530882254242897, -0.0007317794370464981, 0.05520882084965706, 0.046368878334760666, -0.13196296989917755, 0.030801838263869286, -0.10345201939344406, -0.10918738692998886, -0.06702309846878052, 0.012883950024843216, 0.03657872602343559, 0.03408701717853546, 0.13251863420009613, -0.08085362613201141, 0.06570658832788467, -0.11676336824893951, 0.00883357971906662, 0.039716631174087524, -0.16697433590888977, -0.0595698244869709, -0.057619158178567886, 0.007433545310050249, -0.003998199012130499, 0.2047613114118576, 0.09464780241250992, -0.13487207889556885, 0.025212425738573074, 0.06328623741865158, -0.011324755847454071, 0.014637135900557041, 0.18215470016002655, 0.041137028485536575, -0.02279132418334484, -0.09147447347640991, 0.08254443109035492, -0.001206900691613555, -0.06916402280330658, 0.17654430866241455, -0.009284933097660542, -0.06389812380075455, 0.08941244333982468, 0.012363807298243046, -0.005266327410936356, -0.11308281123638153, 0.030938860028982162, 0.0048082489520311356, 0.1211654394865036, -0.018698494881391525, 0.1219557598233223, 0.1505574733018875, -0.05589958280324936, 0.020098594948649406, 0.019646314904093742, -0.08347544819116592, -0.1633402705192566, -0.25936394929885864, -0.06285889446735382, -0.06970193982124329, 0.004508715122938156, -0.08599866181612015, 0.02332579903304577, 0.0259647648781538, 0.05133349448442459, -0.07461509108543396, 0.00971248559653759, -0.00683344341814518, -0.07941625267267227, 0.024303477257490158, -0.006099717225879431, 0.02537347935140133, -0.06924484670162201, 0.0007678525289520621, -0.07934007793664932, 0.02292090840637684, 0.02465013787150383, 0.07641930878162384, 0.06751976162195206, 0.01511042658239603, -0.12785883247852325, -0.07595309615135193, -0.01956619694828987, 0.07746471464633942, 0.0011575943790376186, 0.12003891170024872, 0.011717768386006355, -0.062496837228536606, 0.04213938117027283, 0.10674988478422165, -0.01553479302674532, -0.04887128993868828, -0.014588631689548492, 0.14654886722564697, 0.02359086275100708, 0.04994020238518715, -0.006012772675603628, 0.003956330008804798, -0.007669052574783564, 0.2981952726840973, 0.2824898958206177, -0.01838381588459015, 0.019342616200447083, 0.006296984385699034, 0.012992979027330875, 0.12057177722454071, 0.14099718630313873, 0.0742507353425026, 0.294160932302475, -0.08901627361774445, -0.03196829929947853, -0.036774471402168274, 0.013632338494062424, -0.1258430927991867, 0.05736491456627846, 0.04163132980465889, -0.06099015101790428, -0.005365286022424698, 0.07608520984649658, -0.18701571226119995, 0.06427916139364243, 0.0055582537315785885, -0.1259520798921585, -0.04688241705298424, 0.03603222221136093, 0.08690974861383438, -0.05097580701112747, 0.06854801625013351, -0.02282646857202053, -0.05078156292438507, 0.05379166826605797, 0.004284655675292015, -0.22220273315906525, 0.07566104084253311, 0.022034792229533195, -0.07011693716049194, 0.08086962252855301, -0.025842564180493355, 0.09339998662471771, 0.1007261872291565, 0.057645533233881, -0.04255137965083122, 0.03997255116701126, -0.032701801508665085, 0.009428652003407478, 0.0415019690990448, -0.053189605474472046, 0.022812796756625175, -0.09220580756664276, 0.07198244333267212, -0.024896111339330673, 0.023272372782230377, -0.07607503235340118, -0.05423923581838608, -0.03281823545694351, 0.019761113449931145, -0.06878926604986191, 0.06148172542452812, 0.04046802595257759, 0.008763081394135952, -0.03725644201040268, -0.07568392157554626, -0.018284104764461517, 0.009404785931110382, -0.132658913731575, -0.055116936564445496, -0.08771226555109024, -0.03258679062128067, -0.0013391696847975254, -0.005184553563594818, -0.2126152068376541, -0.016788896173238754, -0.1026797890663147, 0.03201618418097496, -0.20062197744846344, 0.07407612353563309, 0.10074928402900696, 0.005155887454748154, -0.025165650993585587, 0.019502276554703712, -0.008282683789730072, 0.05531929060816765, -0.09138685464859009, -0.057494886219501495 ]
null
null
null
# Welcome to my model
{"tags": ["chemistry", "climate"]}
null
Intae/mymodel
[ "chemistry", "climate", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #chemistry #climate #region-us
# Welcome to my model
[ "# Welcome to my model" ]
[ "TAGS\n#chemistry #climate #region-us \n", "# Welcome to my model" ]
[ 14, 5 ]
[ "passage: TAGS\n#chemistry #climate #region-us \n# Welcome to my model" ]
[ -0.03700297698378563, 0.04386766999959946, -0.00647616246715188, -0.08395387977361679, -0.031543705612421036, 0.018275421112775803, 0.053873009979724884, 0.021560514345765114, 0.3672979474067688, -0.03135111927986145, 0.16301926970481873, 0.03857945278286934, -0.12305682897567749, 0.1535329967737198, 0.025454329326748848, -0.3441774249076843, 0.13370010256767273, -0.1235765591263771, -0.08541221916675568, 0.04939960315823555, 0.01901412382721901, -0.12814602255821228, 0.06480381637811661, -0.07301826775074005, -0.008590108714997768, -0.010883228853344917, -0.04977588728070259, -0.001170478411950171, 0.1579708307981491, 0.024110667407512665, 0.11873941123485565, 0.1129021942615509, -0.029984772205352783, -0.2971535623073578, 0.03401302918791771, -0.11199893057346344, -0.0903453528881073, 0.09348583221435547, 0.10209640115499496, -0.04975660517811775, 0.20098178088665009, 0.05178274214267731, 0.0028501658234745264, 0.1345100849866867, -0.2850697636604309, 0.002640811260789633, 0.012180131860077381, -0.06532831490039825, -0.031003879383206367, -0.08287757635116577, -0.015562944114208221, 0.14240242540836334, -0.20976394414901733, -0.027172844856977463, 0.08410947024822235, -0.1256992071866989, 0.06468457728624344, 0.2245866060256958, 0.16398735344409943, 0.10757191479206085, -0.048466723412275314, 0.15868088603019714, -0.013600445352494717, -0.044113196432590485, -0.043801337480545044, -0.043500591069459915, 0.04956450313329697, 0.07985679805278778, -0.09975381195545197, 0.02924726903438568, 0.2674969732761383, 0.0703011080622673, -0.03840179368853569, 0.12151328474283218, -0.07174964249134064, -0.045966241508722305, 0.03185650706291199, -0.11770990490913391, 0.060622118413448334, 0.04606412723660469, 0.2293359786272049, -0.024625493213534355, -0.12269163131713867, 0.1213315799832344, -0.09645506739616394, 0.3653709292411804, -0.0950465276837349, 0.07948736846446991, -0.15527427196502686, 0.014965122565627098, -0.16391192376613617, -0.056056778877973557, 0.0048078508116304874, -0.16873852908611298, 0.02050071395933628, -0.036447152495384216, -0.011733167804777622, 0.1297605335712433, -0.0005689716781489551, 0.12086863070726395, 0.04971664398908615, 0.08576454967260361, 0.20047517120838165, 0.08410146832466125, 0.17021551728248596, -0.009373352862894535, 0.032066646963357925, -0.04492439329624176, -0.025024687871336937, -0.13221919536590576, -0.09775009006261826, -0.10965040326118469, -0.09106626361608505, -0.07580381631851196, -0.003278388176113367, 0.07392531633377075, 0.10130299627780914, -0.2182638943195343, -0.0939423218369484, 0.011322694830596447, 0.1356273740530014, 0.02898349240422249, 0.029099734500050545, 0.00939908530563116, -0.02157682739198208, 0.18705634772777557, -0.12926463782787323, 0.05954592674970627, 0.16703882813453674, 0.06181972473859787, -0.19062666594982147, -0.04448581859469414, -0.08297283947467804, 0.037468284368515015, 0.001096506486646831, 0.04587508738040924, 0.15861114859580994, -0.08963698893785477, 0.053316593170166016, 0.009006583131849766, 0.08744613081216812, -0.07595189660787582, 0.010131912305951118, 0.07887469977140427, -0.0004989689332433045, -0.037108272314071655, 0.027954401448369026, -0.10033877193927765, -0.10617884248495102, -0.019341398030519485, -0.10925586521625519, 0.06750645488500595, -0.11164312809705734, -0.05528551712632179, -0.10098651051521301, 0.11579868197441101, -0.16221728920936584, -0.04876318201422691, -0.0183979794383049, 0.16262319684028625, -0.07906102389097214, -0.019419042393565178, -0.04007185623049736, -0.021496668457984924, -0.028767123818397522, 0.2758111357688904, -0.12593884766101837, -0.0726751983165741, 0.026736708357930183, -0.08625426143407822, -0.08511579781770706, -0.07148376852273941, 0.0012142321793362498, 0.07774108648300171, 0.058509837836027145, 0.12359368056058884, -0.018913509324193, -0.022451918572187424, 0.08602637052536011, 0.11140649020671844, -0.009251412935554981, -0.06941765546798706, 0.1087927594780922, 0.10959906876087189, -0.24550886452198029, -0.037034936249256134, 0.1381196528673172, 0.05038302019238472, -0.1320325881242752, -0.08412826061248779, -0.009583071805536747, 0.028825409710407257, 0.08721897751092911, -0.04787489026784897, 0.06634139269590378, -0.0862504169344902, 0.02222578413784504, -0.014654809609055519, 0.027279965579509735, 0.12573762238025665, -0.04731954634189606, 0.05291440710425377, 0.11358534544706345, 0.022707391530275345, -0.05556845664978027, -0.09850773960351944, -0.13257864117622375, 0.03185030072927475, -0.0360216349363327, 0.007082556374371052, 0.20922274887561798, 0.12328044325113297, -0.01279215794056654, 0.008657841943204403, 0.027129556983709335, -0.08153548091650009, 0.06296388059854507, -0.039622146636247635, -0.2086198776960373, -0.010403993539512157, -0.04052141308784485, 0.01164249237626791, -0.06273708492517471, -0.04795873537659645, 0.014404774643480778, 0.0243535153567791, -0.003710627555847168, 0.006988390814512968, 0.03992529585957527, -0.020911121740937233, 0.03181811422109604, 0.0907754898071289, 0.04035264626145363, -0.105013906955719, -0.1805890053510666, 0.1160578653216362, 0.0056570167653262615, 0.18517054617404938, 0.12285968661308289, -0.11753315478563309, 0.06166261062026024, -0.17433062195777893, -0.01447225920855999, 0.06732771545648575, 0.1440972089767456, -0.021443448960781097, -0.030925974249839783, 0.05161900073289871, -0.07855731248855591, -0.026873422786593437, 0.09106822311878204, 0.031798746436834335, -0.10359824448823929, -0.05701107531785965, 0.11870461702346802, 0.13939903676509857, -0.0212593711912632, 0.0551934540271759, 0.27092787623405457, 0.14914827048778534, 0.01679222844541073, 0.002074893331155181, -0.1089336946606636, -0.009860515594482422, -0.15429185330867767, -0.05921868607401848, 0.22738128900527954, -0.027148840948939323, 0.07318015396595001, 0.020876411348581314, -0.03118637390434742, 0.0729232206940651, -0.09308814257383347, -0.08615083247423172, -0.02134784497320652, 0.10843583941459656, -0.06289654225111008, -0.00728762149810791, -0.08530786633491516, 0.14690586924552917, 0.03358208015561104, -0.1376533955335617, -0.07743313163518906, 0.11408175528049469, -0.07837072759866714, 0.27706462144851685, -0.07198391109704971, -0.08643114566802979, -0.02562510408461094, 0.0468437559902668, 0.10846689343452454, 0.05543539673089981, -0.017186520621180534, -0.07736730575561523, -0.12668801844120026, 0.045163631439208984, 0.13052938878536224, -0.1834087371826172, 0.020804783329367638, -0.05234811082482338, 0.043939948081970215, -0.16373860836029053, -0.004018458072096109, -0.028220949694514275, -0.040949732065200806, 0.16617578268051147, 0.17350630462169647, -0.12908753752708435, 0.06972448527812958, 0.20004262030124664, -0.026717226952314377, -0.016506018117070198, 0.099274180829525, 0.4135044813156128, -0.08254123479127884, 0.07670397311449051, 0.09249620884656906, -0.015570326708257198, 0.06713680922985077, 0.1205223947763443, 0.1264367252588272, -0.12021490931510925, 0.02278357744216919, -0.15304169058799744, -0.10821299254894257, -0.28682583570480347, -0.15441249310970306, -0.00996625516563654, 0.006776899099349976, -0.13781653344631195, 0.01440880075097084, 0.18483075499534607, 0.12243843078613281, 0.03676465153694153, -0.27454009652137756, -0.14971816539764404, 0.02379821427166462, 0.0011343645164743066, -0.12004256993532181, 0.03255672752857208, -0.06726963818073273, -0.04875244200229645, 0.1318298876285553, 0.10112409293651581, 0.044104646891355515, 0.42552193999290466, 0.024653244763612747, 0.006037479732185602, -0.06484031677246094, 0.16074883937835693, 0.1381629854440689, 0.06990271061658859, -0.08211390674114227, -0.06504368036985397, -0.04459097981452942, 0.025628574192523956, 0.15578849613666534, 0.056386493146419525, -0.17075148224830627, -0.005847123451530933, -0.07394563406705856, 0.05233273655176163, -0.15047311782836914, 0.08418308943510056, -0.14557571709156036, 0.05625839903950691, 0.12314756959676743, 0.082804374396801, 0.005126556847244501, 0.01513091940432787, -0.07976700365543365, -0.07299327105283737, -0.07609487324953079, 0.017903948202729225, -0.0032274399418383837, 0.10860180109739304, 0.06767207384109497, -0.13847942650318146, -0.10121141374111176, -0.023081203922629356, 0.0797244980931282, -0.08364404737949371, 0.31830137968063354, 0.009304659441113472, -0.204995796084404, -0.03805633634328842, -0.07469075918197632, -0.06337017565965652, 0.2966465651988983, 0.11004124581813812, 0.10007382184267044, -0.15277646481990814, -0.0567442961037159, -0.2321287840604782, 0.037217799574136734, 0.09898997098207474, -0.08429651707410812, -0.06240019574761391, 0.03601429611444473, 0.012274394743144512, -0.027808725833892822, 0.0307999849319458, -0.017729656770825386, 0.03758127614855766, 0.08905988186597824, -0.15767517685890198, 0.07790122181177139, 0.001284454483538866, -0.06935302913188934, 0.10891766846179962, 0.02326175943017006, 0.03271932527422905, -0.03137410059571266, -0.08799250423908234, -0.24917072057724, 0.24216455221176147, -0.06089916452765465, 0.04136465862393379, -0.03826411813497543, -0.06655537337064743, -0.06561104208230972, -0.13056190311908722, 0.23085317015647888, -0.11486135423183441, 0.0002998218988068402, -0.0521712601184845, 0.1440262645483017, 0.07670261710882187, 0.09440575540065765, -0.018592776730656624, 0.11110378056764603, -0.25509729981422424, -0.13315995037555695, 0.001544786267913878, -0.1952688992023468, -0.03618206828832626, -0.012504099868237972, -0.06220284849405289, 0.14369438588619232, 0.1301836371421814, -0.03468737006187439, 0.13656416535377502, 0.338736355304718, -0.08823617547750473, 0.14178164303302765, 0.3225756883621216, -0.0014400858199223876, -0.15621376037597656, 0.028469206765294075, -0.21509423851966858, 0.0333181694149971, 0.08973393589258194, -0.27142220735549927, 0.17330223321914673, 0.06945585459470749, -0.06017645448446274, 0.1704339236021042, -0.2357252538204193, -0.09604175388813019, 0.1689363569021225, 0.006873218342661858, 0.5184792280197144, -0.0913284420967102, 0.004139700438827276, -0.047009412199258804, -0.059414613991975784, 0.15495619177818298, 0.050033848732709885, -0.0027530821971595287, -0.00887923501431942, 0.02862739749252796, 0.09488926827907562, -0.06798546761274338, 0.31622862815856934, 0.02006283588707447, 0.006986482068896294, -0.012398477643728256, -0.2113610953092575, -0.009120812639594078, 0.01993732899427414, -0.03199999779462814, 0.1313699185848236, 0.04539172723889351, -0.16020354628562927, 0.007568906061351299, -0.044661618769168854, 0.10563929378986359, -0.06672775745391846, -0.1179174929857254, -0.05238490551710129, 0.036078982055187225, -0.0791274830698967, -0.03879867494106293, 0.18090227246284485, -0.07425940781831741, 0.17490725219249725, 0.039413198828697205, 0.16342198848724365, -0.1727050542831421, -0.002943694591522217, 0.061624422669410706, -0.01837102696299553, 0.012053982354700565, -0.23040702939033508, -0.050901107490062714, 0.19670936465263367, -0.013388948515057564, -0.030395906418561935, 0.03010323829948902, -0.047477297484874725, -0.08563660830259323, 0.16874977946281433, -0.2734098732471466, -0.14242804050445557, -0.10958775132894516, 0.11500785499811172, 0.015268045477569103, 0.0054892986081540585, 0.010246943682432175, -0.0037098934408277273, -0.04720975086092949, -0.028946077451109886, -0.013001535087823868, -0.059801217168569565, -0.015733670443296432, 0.16781006753444672, 0.07309338450431824, -0.05506828427314758, -0.020650699734687805, 0.0499059222638607, -0.06510338932275772, -0.13726769387722015, 0.11442484706640244, 0.000636087788734585, -0.08866487443447113, -0.062119003385305405, -0.08466577529907227, -0.2999708354473114, 0.02275976911187172, -0.012563365511596203, -0.15271484851837158, -0.008309001103043556, 0.23793821036815643, 0.055335406213998795, 0.03361380472779274, 0.0241603571921587, -0.044588420540094376, 0.1564171016216278, -0.08275046199560165, -0.16229093074798584, -0.03809491544961929, 0.035812847316265106, -0.1297503560781479, -0.05893451347947121, 0.12086870521306992, -0.13228864967823029, -0.1276087760925293, -0.16811217367649078, -0.0032832417637109756, -0.035105641931295395, -0.1155000701546669, -0.1257087141275406, -0.09201379120349884, -0.05508933961391449, -0.13453376293182373, 0.04894554242491722, -0.03840167447924614, -0.12409734725952148, 0.10788502544164658, -0.05768394470214844, 0.06516094505786896, 0.03734857216477394, 0.01227808091789484, 0.15478019416332245, -0.04296453297138214, 0.06449909508228302, 0.10236674547195435, 0.06008276715874672, 0.10026046633720398, -0.09618819504976273, 0.114019475877285, 0.09741062670946121, 0.03417085483670235, 0.04028088226914406, -0.14747190475463867, -0.050189755856990814, -0.036108534783124924, 0.0788656696677208, 0.054660946130752563, -0.14574962854385376, -0.10352503508329391, -0.009248323738574982, 0.03483549878001213, -0.25741100311279297, 0.05402892082929611, -0.1494031846523285, 0.10298336297273636, -0.06259158253669739, -0.04365263134241104, 0.1508399248123169, 0.0645025447010994, -0.06521809846162796, 0.08243715018033981, -0.04554247483611107, -0.08249769359827042, -0.0951947346329689, -0.046609774231910706, 0.03544706851243973, 0.00195703050121665, 0.3653189241886139, 0.006965650245547295, 0.1731928586959839, 0.04286494106054306, 0.12730787694454193, 0.0738929733633995, 0.07841316610574722, 0.17692819237709045, 0.1493716835975647, 0.03858404606580734, -0.012756657786667347, 0.0871303603053093, -0.08787325024604797, -0.14523187279701233, 0.20585018396377563, -0.0032868068665266037, -0.024312052875757217, 0.08318265527486801, 0.013868558220565319, -0.0015962400939315557, 0.12542469799518585, -0.2041027694940567, 0.0038440318312495947, -0.06596437841653824, -0.01451228279620409, 0.19936051964759827, 0.09490625560283661, -0.0667324960231781, 0.09235578775405884, 0.04058466851711273, -0.043135832995176315, -0.23656083643436432, 0.13735972344875336, -0.013184279203414917, -0.07745138555765152, -0.04802767559885979, -0.11638373881578445, -0.1032550036907196, 0.05522334948182106, 0.014167534187436104, -0.03346977382898331, 0.08376815170049667, 0.05933055281639099, -0.012929804623126984, -0.012901386246085167, 0.06778320670127869, 0.028665820136666298, -0.1249735951423645, -0.10382268577814102, -0.17346923053264618, -0.019724324345588684, -0.12079940736293793, -0.02976190485060215, -0.11548436433076859, -0.05597619339823723, -0.06511598825454712, -0.08878114819526672, -0.08902406692504883, -0.03272178769111633, -0.017838740721344948, -0.027948470786213875, -0.07849425077438354, -0.018322227522730827, 0.0006569836405105889, 0.18921291828155518, -0.0465603843331337, 0.1383863240480423, 0.07035966217517853, 0.24339282512664795, -0.05437241494655609, 0.1567181646823883, -0.004568296484649181, 0.007431198842823505, -0.07470345497131348, 0.03918644040822983, 0.21010585129261017, -0.10398077964782715, 0.00032834013109095395, 0.00027707673143595457, 0.062251608818769455, 0.10724909603595734, 0.1123313307762146, -0.004210283048450947, 0.15808595716953278, -0.18002849817276, 0.10401687771081924, -0.06081746518611908, 0.0047750212252140045, -0.0011460768291726708, 0.07989886403083801, 0.1172245666384697, -0.06281829625368118, -0.12839165329933167, 0.12261740863323212, -0.14452707767486572, 0.15821926295757294, -0.011368238367140293, -0.29085612297058105, -0.07283635437488556, -0.09912306070327759, 0.02355297841131687, -0.052819281816482544, 0.1254410743713379, -0.07957109063863754, -0.12729844450950623, -0.03046039119362831, 0.10594183206558228, -0.28343117237091064, -0.11755528301000595, 0.17945347726345062, 0.08607126772403717, 0.012749547138810158, 0.056380871683359146, 0.06751202046871185, 0.008933033794164658, -0.025830943137407303, -0.07529594749212265, -0.0222618505358696, 0.0995527133345604, -0.14465460181236267, -0.11522987484931946, -0.026186596602201462, 0.08216400444507599, -0.11410687118768692, 0.05914441496133804, -0.09202947467565536, 0.0049123759381473064, 0.06849747896194458, -0.10250002145767212, 0.08394555747509003, 0.037406470626592636, -0.08671335130929947, 0.056320615112781525, 0.08626364916563034, -0.053060613572597504, -0.0823741927742958, -0.047362398356199265, 0.05962413176894188, 0.043946027755737305, -0.1102420836687088, -0.1023646742105484, 0.043086882680654526, -0.06985095143318176, 0.0690133348107338, 0.05576760694384575, -0.04264875501394272, -0.04507948085665703, -0.07921330630779266, 0.21911367774009705, -0.03265867754817009, -0.00463492888957262, 0.01035329606384039, -0.043351080268621445, -0.0281785000115633, -0.08236095309257507, 0.0619172677397728, 0.029706040397286415, -0.07298208028078079, -0.1043836772441864 ]
null
null
transformers
# Sparse BERT base model fine tuned to MNLI without classifier layer (uncased) Fine tuned sparse BERT base to MNLI (GLUE Benchmark) task from [bert-base-uncased-sparse-70-unstructured](https://huggingface.co/Intel/bert-base-uncased-sparse-70-unstructured). <br> This model doesn't have a classifier layer to enable easier loading of the model for training to other downstream tasks. In all the other layers this model is similar to [bert-base-uncased-mnli-sparse-70-unstructured](https://huggingface.co/Intel/bert-base-uncased-mnli-sparse-70-unstructured). <br><br> Note: This model requires `transformers==2.10.0` ## Evaluation Results Matched: 82.5% Mismatched: 83.3% This model can be further fine-tuned to other tasks and achieve the following evaluation results: | Task | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | STS-B (Pears/Spear) | SQuADv1.1 (Acc/F1) | |------|--------------|------------|-------------|---------------------|--------------------| | | 90.2/86.7 | 90.3 | 91.5 | 88.9/88.6 | 80.5/88.2 |
{"language": "en"}
fill-mask
Intel/bert-base-uncased-mnli-sparse-70-unstructured-no-classifier
[ "transformers", "pytorch", "bert", "fill-mask", "en", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us
Sparse BERT base model fine tuned to MNLI without classifier layer (uncased) ============================================================================ Fine tuned sparse BERT base to MNLI (GLUE Benchmark) task from bert-base-uncased-sparse-70-unstructured. This model doesn't have a classifier layer to enable easier loading of the model for training to other downstream tasks. In all the other layers this model is similar to bert-base-uncased-mnli-sparse-70-unstructured. Note: This model requires 'transformers==2.10.0' Evaluation Results ------------------ ``` Matched: 82.5% Mismatched: 83.3% ``` This model can be further fine-tuned to other tasks and achieve the following evaluation results:
[]
[ "TAGS\n#transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 38 ]
[ "passage: TAGS\n#transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.06456993520259857, 0.012435728684067726, -0.00861880462616682, 0.026134897023439407, 0.12451299279928207, 0.029568884521722794, 0.09293641149997711, 0.07551068067550659, 0.09861491620540619, -0.00676476676017046, 0.17096230387687683, 0.20306405425071716, -0.03400938957929611, 0.17418460547924042, -0.06299720704555511, -0.2666623294353485, 0.0597798191010952, 0.06285830587148666, -0.06586705148220062, 0.11906897276639938, 0.058261655271053314, -0.08754947036504745, 0.07357781380414963, -0.02002127654850483, -0.11367711424827576, 0.04141340032219887, 0.05586349964141846, -0.1012476310133934, 0.12342392653226852, 0.02490476705133915, 0.21333815157413483, 0.01871955394744873, -0.06071261689066887, -0.08481461554765701, 0.04701092839241028, -0.0006537479930557311, -0.07031911611557007, 0.049226563423871994, 0.02070075087249279, -0.07066381722688675, -0.035714637488126755, 0.0555141419172287, 0.027806345373392105, 0.04551740363240242, -0.14913012087345123, -0.11486707627773285, -0.011950812302529812, 0.029616203159093857, 0.04482379928231239, 0.05716826766729355, 0.018401410430669785, 0.2123504877090454, -0.1279602348804474, 0.10646497458219528, 0.16509558260440826, -0.30757859349250793, 0.0001416518643964082, 0.0714283138513565, 0.07050404697656631, -0.05521852523088455, -0.02856326475739479, 0.06025131419301033, 0.021240878850221634, 0.020428981631994247, 0.0409889779984951, -0.07257182151079178, -0.031633831560611725, 0.01218500267714262, -0.08359131217002869, -0.05571269989013672, 0.15649627149105072, -0.04552251845598221, 0.042019106447696686, 0.013723010197281837, -0.13276121020317078, -0.04422692954540253, -0.014657439664006233, -0.015136761590838432, -0.03264203667640686, 0.0474761500954628, -0.03020043671131134, -0.016867924481630325, -0.11852148920297623, 0.02368774078786373, -0.23724773526191711, 0.2603013515472412, 0.02342827245593071, 0.07000216096639633, -0.187945157289505, 0.05526711791753769, -0.03693829104304314, -0.12435338646173477, 0.05870123207569122, -0.09677614271640778, 0.03019271232187748, -0.007348993793129921, -0.0621761828660965, -0.02576415240764618, 0.06575415283441544, 0.18390534818172455, 0.07029758393764496, 0.030137278139591217, 0.025434548035264015, 0.1033594161272049, 0.018637750297784805, 0.08739518374204636, 0.020126275718212128, -0.03727148100733757, 0.054979030042886734, -0.11475957930088043, 0.028004948049783707, -0.058031193912029266, -0.1325010061264038, -0.049809735268354416, 0.01921660080552101, 0.07633610814809799, 0.03904837742447853, 0.056809913367033005, -0.09855233877897263, 0.00048422315740026534, 0.08983031660318375, -0.06848179548978806, 0.011288286186754704, -0.01770717464387417, 0.047109462320804596, 0.10632040351629257, 0.019219186156988144, -0.00941513106226921, -0.021721187978982925, 0.1363886147737503, -0.08159974962472916, -0.03216307982802391, -0.05806892365217209, -0.06537095457315445, 0.03954453021287918, -0.12626731395721436, 0.03935784846544266, -0.18180720508098602, -0.12696081399917603, 0.06406736373901367, 0.06095121055841446, 0.004637250676751137, -0.03235136345028877, 0.027728190645575523, 0.001427136012353003, 0.013280283659696579, -0.0479552187025547, -0.048450883477926254, -0.03862398862838745, 0.10900867730379105, 0.003806991269811988, 0.1174737736582756, -0.11640650033950806, 0.04374309256672859, -0.09081550687551498, 0.012275234796106815, -0.15850088000297546, -0.05244823917746544, -0.018354305997490883, 0.1461421251296997, -0.0007607269799336791, -0.04722971096634865, -0.11467847228050232, 0.03075418621301651, -0.006564918905496597, 0.1820819228887558, -0.06226508319377899, -0.13242872059345245, 0.22870440781116486, -0.10124912858009338, -0.14476680755615234, 0.08710290491580963, 0.003226342611014843, 0.00922300573438406, 0.05513717979192734, 0.09922313690185547, 0.034013811498880386, -0.15225151181221008, 0.08711827546358109, 0.11577387899160385, -0.15120218694210052, -0.12072417885065079, 0.0250993762165308, -0.012016336433589458, -0.1254950314760208, 0.04579401761293411, 0.08614112436771393, 0.10806535184383392, -0.07476726174354553, -0.04473196715116501, -0.012035391293466091, -0.03689355403184891, 0.15384364128112793, 0.03570018336176872, 0.09939711540937424, -0.07930675148963928, -0.02890395000576973, -0.032709404826164246, -0.006357420701533556, 0.07321685552597046, 0.03975463658571243, -0.0870160460472107, 0.1378098726272583, -0.06646076589822769, 0.0016993720782920718, -0.17448323965072632, -0.10591524094343185, -0.00720240268856287, 0.05451726168394089, -0.02975441701710224, 0.12826251983642578, 0.11157087236642838, -0.03590582683682442, -0.013400973752140999, -0.03191289305686951, 0.10140664130449295, 0.022000085562467575, -0.04368732124567032, -0.10052420943975449, 0.011493717320263386, -0.08112670481204987, -0.01426039170473814, 0.012841050513088703, 0.0008915371727198362, 0.004715178161859512, 0.14799764752388, -0.0041518546640872955, 0.03874208405613899, -0.05627001076936722, 0.03647083789110184, -0.03674600273370743, 0.018495017662644386, 0.09025006741285324, 0.007733999285846949, -0.0640978291630745, 0.1559019535779953, -0.13593819737434387, 0.3579860031604767, 0.19466525316238403, -0.31502899527549744, -0.02358783222734928, 0.018468588590621948, -0.019346008077263832, -0.008571712300181389, 0.04892538860440254, -0.013674275018274784, 0.046547360718250275, 0.01382019929587841, 0.1523345559835434, -0.01394293736666441, -0.02362147718667984, 0.03377212956547737, -0.08204759657382965, -0.04905177280306816, 0.029954727739095688, 0.10461609810590744, -0.1303684413433075, 0.1803843080997467, 0.26643040776252747, 0.005305810831487179, 0.13665254414081573, 0.020216600969433784, -0.005998032633215189, 0.001427820068784058, -0.038760956376791, -0.02366408333182335, 0.04955165088176727, -0.19097723066806793, -0.03271833434700966, 0.07329098135232925, -0.036223024129867554, 0.05491718649864197, -0.1194198951125145, -0.03594989329576492, 0.02798878587782383, 0.05844370648264885, -0.0671272873878479, 0.13205155730247498, 0.03203866630792618, 0.06938371807336807, 0.003962759394198656, -0.08619952201843262, 0.11496125161647797, 0.01086527481675148, -0.041711170226335526, 0.1478976607322693, -0.12481905519962311, -0.35048800706863403, -0.14173536002635956, -0.18177692592144012, 0.013166319578886032, 0.04606308415532112, 0.07186508178710938, -0.08467946946620941, -0.06076808646321297, 0.10088087618350983, 0.0030184451024979353, -0.03961647301912308, 0.07389833778142929, -0.06579894572496414, 0.01514207012951374, -0.028321493417024612, -0.05982920527458191, -0.07337476313114166, -0.028315044939517975, -0.02591853402554989, 0.14807268977165222, -0.09476879984140396, 0.08083154261112213, 0.1251479834318161, 0.005873082205653191, 0.07006251811981201, -0.0004527824348770082, 0.18885067105293274, -0.07012241333723068, -0.004397235345095396, 0.17202147841453552, -0.05697551742196083, 0.10153099149465561, 0.16245143115520477, 0.02151399292051792, -0.04642104357481003, 0.009699945338070393, -0.05397232249379158, -0.11444302648305893, -0.15377388894557953, -0.10766874253749847, -0.12088662385940552, -0.007452941965311766, 0.05454627051949501, 0.04340808838605881, 0.1435030996799469, 0.09126076102256775, 0.03872451186180115, -0.014075818471610546, -0.07663600891828537, 0.05388979613780975, 0.16919605433940887, -0.04065597802400589, 0.1346583515405655, -0.03326452523469925, -0.14186759293079376, 0.06192115321755409, 0.018461596220731735, 0.10319074988365173, 0.10999193787574768, -0.0023138117976486683, 0.03662239760160446, 0.16515755653381348, 0.1615060418844223, 0.1633867472410202, 0.028117690235376358, -0.056849487125873566, -0.00029025491676293314, -0.009718372486531734, -0.05880073085427284, 0.02382630482316017, 0.15636374056339264, -0.09177877753973007, -0.04743766412138939, -0.13906343281269073, 0.04757831245660782, 0.1000344380736351, 0.06625637412071228, -0.2190323770046234, 0.012288340367376804, 0.05997331440448761, 0.007840918377041817, -0.06419402360916138, 0.03980143368244171, -0.023611094802618027, -0.13723309338092804, 0.057103317230939865, -0.05062131583690643, 0.08935462683439255, 0.04394787549972534, 0.08056230843067169, -0.032855324447155, -0.06447634845972061, 0.032547298818826675, 0.06697367131710052, -0.2558485269546509, 0.2865816652774811, -0.0041951583698391914, -0.0520428828895092, -0.07719956338405609, -0.012430242262780666, 0.045459263026714325, 0.12417680025100708, 0.11632905900478363, 0.02910085767507553, -0.018242478370666504, -0.1547708809375763, -0.020643671974539757, 0.023860162124037743, 0.10626307874917984, -0.02867996133863926, -0.01481129415333271, -0.02558528259396553, -0.04947635158896446, -0.00509747676551342, 0.1040840819478035, 0.0006405938183888793, -0.12279224395751953, 0.07948624342679977, 0.043007586151361465, -0.004094170872122049, -0.008553468622267246, -0.06758838146924973, -0.11194422096014023, 0.1853654384613037, -0.030951663851737976, -0.0539209321141243, -0.10835129022598267, -0.10395728796720505, 0.0935356616973877, -0.10952012985944748, 0.1044299453496933, -0.09216707199811935, 0.007779813837260008, -0.09535284340381622, -0.16905511915683746, 0.15956689417362213, -0.12252725660800934, -0.013661880046129227, -0.08130403608083725, 0.1560085266828537, -0.06292026489973068, 0.03338312357664108, -0.0016913308063521981, 0.030718162655830383, -0.1058562695980072, -0.05319574847817421, 0.03340040147304535, -0.06696411222219467, 0.04890581592917442, 0.03432386368513107, -0.06276111304759979, -0.016454042866826057, 0.02295733615756035, 0.03786766901612282, 0.22949720919132233, 0.2473403811454773, -0.05511022359132767, 0.14272378385066986, 0.19110247492790222, -0.03628391772508621, -0.3353028893470764, -0.10709242522716522, -0.14195765554904938, 0.0024259157944470644, 0.00871240347623825, -0.12602411210536957, 0.09722752869129181, -0.023162825033068657, -0.05037941411137581, 0.11455933004617691, -0.15330998599529266, -0.09311565011739731, 0.24241773784160614, 0.008065387606620789, 0.49520307779312134, -0.08773692697286606, -0.06181866675615311, -0.04078993946313858, -0.14911647140979767, 0.039413873106241226, 0.020223015919327736, 0.08533214032649994, -0.022695912048220634, 0.08672792464494705, 0.03754139691591263, -0.0928303524851799, 0.09674546867609024, -0.04386134818196297, 0.012717384845018387, -0.10832851380109787, -0.10073188692331314, 0.07489992678165436, -0.010709239169955254, -0.013595198281109333, 0.0150055643171072, 0.005878158379346132, -0.03908535838127136, -0.02204933390021324, -0.10150302946567535, 0.11497636139392853, 0.0203293077647686, -0.0736924260854721, 0.03676532953977585, -0.01705573871731758, -0.0061174375005066395, -0.003315176349133253, 0.18497397005558014, -0.010164467617869377, 0.17659538984298706, 0.0838325172662735, 0.03831501305103302, -0.15666992962360382, -0.0746227502822876, -0.045546166598796844, -0.08690635114908218, 0.08701776713132858, 0.008152241818606853, 0.05457129329442978, 0.121287040412426, -0.013484469614923, 0.042638055980205536, 0.11391864717006683, 0.012575020082294941, -0.037252239882946014, 0.1484120488166809, -0.2325095236301422, 0.04357394948601723, -0.026942633092403412, -0.006379618309438229, 0.060051266103982925, 0.05438452586531639, 0.08599217981100082, 0.03563278168439865, -0.034406084567308426, -0.006310447119176388, -0.009561819955706596, -0.061249006539583206, 0.04916713759303093, 0.06124087795615196, 0.050855331122875214, -0.12293564528226852, 0.003318076254799962, -0.01755973882973194, -0.20539547502994537, -0.02074281871318817, 0.07731588184833527, -0.12131088227033615, -0.10643909871578217, 0.0011826867703348398, 0.09803739935159683, -0.0884224995970726, -0.0349714495241642, -0.06838856637477875, -0.10705720633268356, 0.058045048266649246, 0.22466953098773956, 0.11897797882556915, 0.07989244163036346, -0.019672073423862457, -0.009172879159450531, -0.011154286563396454, -0.010699537582695484, 0.021507978439331055, 0.031994301825761795, -0.08413062989711761, 0.021525271236896515, -0.008586691692471504, 0.15644241869449615, -0.11105892807245255, -0.05854007229208946, -0.16690000891685486, 0.04105037823319435, -0.06914371252059937, -0.09989501535892487, -0.09164608269929886, -0.07842069119215012, 0.01786879077553749, -0.07844927906990051, -0.04231969639658928, -0.036373089998960495, -0.12043136358261108, 0.028307849541306496, 0.042325571179389954, -0.013974441215395927, -0.06278684735298157, -0.041828084737062454, 0.14639060199260712, -0.04602736607193947, 0.07276613265275955, 0.1415342390537262, -0.07606786489486694, 0.08702762424945831, -0.11360465735197067, -0.13019491732120514, 0.09232274442911148, 0.02028023824095726, 0.09205732494592667, 0.05870530754327774, 0.015779439359903336, 0.05436716228723526, 0.04155126214027405, 0.04311537742614746, 0.07928105443716049, -0.11415444314479828, 0.07495339959859848, 0.029625747352838516, -0.19205248355865479, -0.027768228203058243, -0.09934977442026138, 0.07612523436546326, 0.0030875732190907, 0.12245935201644897, -0.03677595406770706, 0.10672185570001602, -0.03970443457365036, 0.01977534592151642, -0.02148313820362091, -0.15542545914649963, 0.00583826145157218, -0.04337375611066818, 0.007976405322551727, -0.011305665597319603, 0.23256878554821014, -0.021387014538049698, 0.01996533013880253, 0.043826114386320114, 0.07138694822788239, -0.0011080631520599127, 0.0014482932165265083, 0.14628982543945312, 0.08346670120954514, -0.05075337737798691, -0.07505031675100327, 0.09600549936294556, 0.02054753713309765, -0.055278658866882324, 0.12601399421691895, 0.055277734994888306, 0.053379546850919724, 0.0913529023528099, -0.006123775616288185, 0.04215953126549721, -0.13731649518013, -0.2378067523241043, -0.04073026776313782, 0.05658959597349167, 0.02737252227962017, 0.03445690497756004, 0.13357599079608917, -0.009758365340530872, 0.052490752190351486, -0.033567268401384354, -0.019909139722585678, -0.19578507542610168, -0.12991653382778168, -0.08064644783735275, -0.06396092474460602, 0.02772344835102558, -0.019830504432320595, -0.015746375545859337, 0.09620828926563263, 0.037711791694164276, -0.029719023033976555, 0.1427774727344513, -0.004931513220071793, -0.013618962839245796, 0.012098534032702446, -0.006883392110466957, 0.018718913197517395, 0.00974457710981369, -0.02328663133084774, -0.17473390698432922, 0.0038276102859526873, -0.05319919064640999, -0.0012525249039754272, -0.086285300552845, 0.012066242285072803, -0.08340539783239365, -0.12992322444915771, -0.07120835781097412, 0.025580845773220062, -0.04847411811351776, 0.09048768132925034, -0.013750596903264523, 0.05976039916276932, -0.0036679860204458237, 0.11760381609201431, -0.07442064583301544, -0.09275249391794205, -0.047222863882780075, 0.17432110011577606, 0.03710569068789482, 0.09275218099355698, -0.01391005702316761, 0.030154839158058167, -0.11151985079050064, 0.32757970690727234, 0.31459692120552063, -0.04951293766498566, 0.0751609057188034, 0.05347048118710518, 0.03191233426332474, 0.07329639792442322, 0.11070801317691803, 0.07871130108833313, 0.282645046710968, -0.09958235174417496, -0.040616728365421295, -0.04596143588423729, -0.03562644496560097, -0.10994263738393784, 0.009870612993836403, 0.03003828600049019, -0.03216586261987686, -0.06882846355438232, 0.07229240238666534, -0.1711592972278595, 0.1258610486984253, 0.053700391203165054, -0.20364956557750702, -0.04623036831617355, -0.02010965161025524, 0.17449620366096497, 0.019782165065407753, 0.11405649781227112, -0.03845260664820671, -0.08600521087646484, 0.05897890776395798, 0.02043791674077511, -0.20674435794353485, -0.06944257020950317, 0.11396646499633789, -0.016486262902617455, 0.0777510404586792, -0.01877708174288273, 0.030833205208182335, 0.08041569590568542, 0.06737533956766129, -0.016367901116609573, 0.01335869636386633, 0.027201002463698387, -0.1153436079621315, -0.07486520707607269, 0.013149854727089405, 0.0051507167518138885, -0.11076071113348007, 0.018873311579227448, -0.16337524354457855, 0.04661339148879051, -0.09744245558977127, -0.02902771532535553, -0.006019870284944773, 0.06628814339637756, -0.04528495669364929, 0.05035955458879471, 0.06615057587623596, 0.019948536530137062, -0.0423460453748703, -0.049513328820466995, -0.013299893587827682, 0.06060238555073738, -0.11529596894979477, -0.16733700037002563, -0.08463509380817413, -0.06576767563819885, 0.04639656841754913, -0.012502667494118214, -0.14016932249069214, -0.04774513840675354, -0.09181584417819977, 0.02738570049405098, -0.15034934878349304, 0.03673086315393448, 0.04525425285100937, 0.04795464873313904, 0.020066073164343834, -0.036912672221660614, 0.04174821823835373, 0.044821806252002716, -0.1529291570186615, -0.09834814071655273 ]
null
null
transformers
# Sparse BERT base model fine tuned to MNLI (uncased) Fine tuned sparse BERT base to MNLI (GLUE Benchmark) task from [bert-base-uncased-sparse-70-unstructured](https://huggingface.co/Intel/bert-base-uncased-sparse-70-unstructured). <br><br> Note: This model requires `transformers==2.10.0` ## Evaluation Results Matched: 82.5% Mismatched: 83.3% This model can be further fine-tuned to other tasks and achieve the following evaluation results: | Task | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | STS-B (Pears/Spear) | SQuADv1.1 (Acc/F1) | |------|--------------|------------|-------------|---------------------|--------------------| | | 90.2/86.7 | 90.3 | 91.5 | 88.9/88.6 | 80.5/88.2 |
{"language": "en"}
text-classification
Intel/bert-base-uncased-mnli-sparse-70-unstructured
[ "transformers", "pytorch", "bert", "text-classification", "en", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #text-classification #en #autotrain_compatible #endpoints_compatible #region-us
Sparse BERT base model fine tuned to MNLI (uncased) =================================================== Fine tuned sparse BERT base to MNLI (GLUE Benchmark) task from bert-base-uncased-sparse-70-unstructured. Note: This model requires 'transformers==2.10.0' Evaluation Results ------------------ ``` Matched: 82.5% Mismatched: 83.3% ``` This model can be further fine-tuned to other tasks and achieve the following evaluation results:
[]
[ "TAGS\n#transformers #pytorch #bert #text-classification #en #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ 38 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #en #autotrain_compatible #endpoints_compatible #region-us \n" ]
[ -0.025796223431825638, 0.05117085576057434, -0.007793994154781103, 0.02724592387676239, 0.20128965377807617, 0.03925756737589836, 0.06982962787151337, 0.10690335184335709, 0.05743226408958435, -0.029553305357694626, 0.11680170148611069, 0.22629117965698242, -0.03616909310221672, 0.1057952344417572, -0.1196640133857727, -0.3019154667854309, 0.05957525223493576, 0.07097269594669342, 0.00040068230009637773, 0.11871974915266037, 0.086296446621418, -0.09110052138566971, 0.07162238657474518, -0.03351249918341637, -0.12318674474954605, 0.04008553549647331, 0.043782494962215424, -0.12962706387043, 0.1039915531873703, 0.04844129830598831, 0.15883341431617737, 0.024390388280153275, -0.05709228664636612, -0.15321306884288788, 0.034753214567899704, 0.0009854907402768731, -0.08268102258443832, 0.045820582658052444, 0.08784831315279007, -0.11767949163913727, 0.014345248229801655, 0.03318742290139198, 0.019648222252726555, 0.05367773026227951, -0.14510200917720795, -0.06685755401849747, -0.0021764643024653196, 0.033973682671785355, 0.06514354795217514, 0.05908448249101639, -0.004172038286924362, 0.13945601880550385, -0.14025717973709106, 0.12780578434467316, 0.10688237100839615, -0.2883080840110779, -0.01272883266210556, 0.09204874187707901, 0.026676705107092857, 0.048091355711221695, -0.053364891558885574, 0.05378864333033562, 0.031536657363176346, 0.003941812086850405, -0.0038652534130960703, -0.06592930108308792, -0.09090137481689453, 0.03588075190782547, -0.08524318039417267, -0.045677561312913895, 0.18745729327201843, -0.05585700646042824, 0.0695061907172203, -0.025837954133749008, -0.09184794127941132, -0.05969397351145744, -0.01883741468191147, 0.013270167633891106, -0.04328839108347893, 0.07199360430240631, 0.035430483520030975, 0.00878196582198143, -0.11254110932350159, 0.02629990316927433, -0.21829518675804138, 0.21519458293914795, 0.013355155475437641, 0.050841908901929855, -0.18243733048439026, 0.058598052710294724, 0.009385552257299423, -0.10111331939697266, 0.0573953315615654, -0.10652405768632889, 0.03360382840037346, -0.041717320680618286, -0.06834802031517029, -0.02608981356024742, 0.07047580182552338, 0.12398038804531097, 0.0359523706138134, 0.052454449236392975, -0.04282518848776817, 0.09026259183883667, 0.03646378964185715, 0.131112739443779, 0.03310224041342735, -0.03818337246775627, 0.03601105883717537, -0.12686294317245483, -0.006095857825130224, -0.06707272678613663, -0.16098374128341675, -0.04058711975812912, 0.07104215025901794, 0.07828935980796814, 0.006199233699589968, 0.0923534631729126, -0.05964301899075508, -0.03278360143303871, 0.06997758150100708, -0.07175441086292267, 0.02137901820242405, 0.023668313398957253, 0.019012149423360825, 0.10166933387517929, -0.023860378190875053, 0.004187949933111668, -0.08244288712739944, 0.152970090508461, -0.05631009861826897, 0.011279495432972908, -0.03267810866236687, -0.07537635415792465, 0.0302441269159317, -0.1464432179927826, 0.028323082253336906, -0.16922983527183533, -0.08938682079315186, 0.016156978905200958, 0.020675132051110268, 0.00037715124199166894, -0.029463842511177063, -0.033026475459337234, 0.00649010855704546, 0.04286210238933563, -0.058870453387498856, -0.06253744661808014, -0.07628022879362106, 0.10065300017595291, -0.03862732648849487, 0.075008325278759, -0.12128868699073792, 0.07600246369838715, -0.09619732201099396, -0.028678661212325096, -0.13310906291007996, 0.03140883892774582, -0.038354773074388504, 0.16932734847068787, 0.013118895702064037, -0.05100321024656296, -0.05590086802840233, 0.059827771037817, -0.07019165903329849, 0.1784229576587677, -0.07061231136322021, -0.11839248985052109, 0.2104511708021164, -0.08562306314706802, -0.13285814225673676, 0.09043747931718826, -0.013423822820186615, 0.009660867042839527, 0.10400132089853287, 0.1986505389213562, 0.08696926385164261, -0.0009248576243408024, 0.0826169103384018, 0.12594306468963623, -0.09819577634334564, -0.10601141303777695, -0.0028267893940210342, -0.008679111488163471, -0.14186859130859375, 0.05716303363442421, 0.07821310311555862, 0.06785093247890472, -0.053768668323755264, -0.03412821888923645, -0.007763399742543697, -0.003467984963208437, 0.14230458438396454, 0.054528702050447464, 0.11848493665456772, -0.08276664465665817, -0.004733925685286522, 0.0032189947087317705, -0.01742144487798214, 0.02682625874876976, 0.028285566717386246, -0.06173676624894142, 0.11372531950473785, 0.0076887644827365875, 0.024176103994250298, -0.22683443129062653, -0.06358391791582108, -0.010149371810257435, 0.13786424696445465, -0.017610523849725723, 0.11641168594360352, 0.04912920296192169, -0.05973530933260918, -0.022207986563444138, -0.024128958582878113, 0.1837722212076187, 0.018541013821959496, -0.0692867636680603, -0.07884825766086578, 0.06498812139034271, -0.06731359660625458, -0.0034451994579285383, -0.07939150184392929, 0.014059394598007202, 0.0898260697722435, 0.1197667121887207, 0.007454384118318558, 0.07368682324886322, -0.029944999143481255, 0.06164779141545296, -0.06743147224187851, 0.030493546277284622, 0.11939404904842377, -0.00902023259550333, -0.07486230134963989, 0.1570160686969757, -0.13790300488471985, 0.29476919770240784, 0.2099868506193161, -0.3142252564430237, 0.00019511437858454883, -0.04883882403373718, -0.009128980338573456, 0.023846030235290527, 0.03203422203660011, 0.0032889950089156628, 0.10469029098749161, 0.0025032716803252697, 0.20410948991775513, -0.030410513281822205, -0.046201106160879135, -0.010145477950572968, -0.0501624159514904, -0.03845634311437607, 0.0933210626244545, 0.06673906743526459, -0.21519088745117188, 0.1969756782054901, 0.22941963374614716, 0.02665359154343605, 0.16920305788516998, 0.00015398859977722168, 0.0355057567358017, 0.08497262001037598, -0.050235144793987274, -0.029602328315377235, -0.06809274107217789, -0.19982528686523438, -0.044469673186540604, 0.07600907981395721, 0.03172627091407776, 0.07025855779647827, -0.11570846289396286, -0.03077602945268154, 0.0032005305401980877, 0.024689946323633194, -0.026300325989723206, 0.08222094923257828, 0.07712527364492416, 0.11592022329568863, 0.00540985818952322, -0.07422659546136856, 0.11821930855512619, -0.0016706270398572087, -0.08585679531097412, 0.1817791759967804, -0.14431670308113098, -0.35374122858047485, -0.15578153729438782, -0.20426218211650848, -0.027778003364801407, 0.05758754909038544, 0.1056775152683258, -0.12038837373256683, -0.04058876633644104, 0.04525858163833618, 0.0036268699914216995, -0.07721048593521118, 0.047608938068151474, -0.06907131522893906, 0.07586809992790222, -0.05829406902194023, -0.06249873340129852, -0.07361894845962524, -0.038804974406957626, -0.011238476261496544, 0.1527564823627472, -0.13620534539222717, 0.06773115694522858, 0.17526556551456451, -0.009871766902506351, 0.07063378393650055, -0.04020107537508011, 0.1723894625902176, -0.09692194312810898, -0.030497826635837555, 0.16826538741588593, -0.07960069179534912, 0.07738858461380005, 0.1660049706697464, 0.023291971534490585, -0.062087398022413254, 0.03129500523209572, -0.036569174379110336, -0.08726557344198227, -0.219290092587471, -0.14924760162830353, -0.11184666305780411, 0.060873985290527344, 0.06137794628739357, 0.06402859836816788, 0.12921559810638428, 0.06143729388713837, 0.015643347054719925, 0.0034861501771956682, -0.002996140392497182, 0.08023280650377274, 0.25014185905456543, -0.007492475677281618, 0.14840544760227203, -0.05224483460187912, -0.13170269131660461, 0.08693443238735199, 0.010648665018379688, 0.10151633620262146, 0.1031089499592781, 0.017524918541312218, 0.005697300191968679, 0.0617571659386158, 0.1739104986190796, 0.12054694443941116, 0.03437969088554382, -0.016507163643836975, -0.01797300949692726, 0.0008379490463994443, -0.07262420654296875, 0.016057994216680527, 0.08282774686813354, -0.14054788649082184, -0.08001036942005157, -0.15016689896583557, 0.09509138017892838, 0.07954643666744232, 0.049310360103845596, -0.19780687987804413, 0.009476271457970142, 0.09259019792079926, -0.028878137469291687, -0.09659042954444885, 0.08150649070739746, -0.0485454723238945, -0.1441151350736618, 0.09483632445335388, -0.033043116331100464, 0.13786357641220093, -0.0842432901263237, 0.09532299637794495, -0.036482613533735275, -0.12757457792758942, 0.025875704362988472, 0.11448628455400467, -0.27577343583106995, 0.23913660645484924, 0.014111778698861599, -0.07704179733991623, -0.07862100005149841, -0.03128323331475258, 0.04118312895298004, 0.22462047636508942, 0.07666483521461487, -0.0000026009622615674743, -0.06469844281673431, -0.18429724872112274, -0.01533578708767891, 0.0023332233540713787, 0.1347162425518036, -0.039459168910980225, -0.013813278637826443, -0.04393400624394417, -0.027532245963811874, -0.028396422043442726, -0.030850335955619812, 0.035581037402153015, -0.16613079607486725, 0.0573512427508831, 0.027624385431408882, 0.06460247933864594, 0.02028515376150608, -0.056042954325675964, -0.1222401112318039, 0.1955416351556778, -0.08692268282175064, -0.07785685360431671, -0.11473406106233597, -0.07295478135347366, 0.01825779676437378, -0.08592746406793594, 0.051966190338134766, -0.08293601870536804, 0.023775996640324593, -0.06608952581882477, -0.19644343852996826, 0.13678359985351562, -0.09588807076215744, -0.036015063524246216, -0.06511744111776352, 0.15614046156406403, -0.07445532828569412, 0.02019203081727028, 0.028878916054964066, 0.018407966941595078, -0.08878859132528305, -0.07959158718585968, 0.002865990623831749, 0.009644605219364166, 0.06015019118785858, 0.0537133663892746, -0.09847528487443924, -0.06869959086179733, -0.034842438995838165, 0.008919711224734783, 0.2936725318431854, 0.16353829205036163, -0.06637072563171387, 0.1527044177055359, 0.14278525114059448, -0.08038544654846191, -0.34017214179039, -0.07752218097448349, -0.10963843017816544, -0.039964668452739716, -0.048839375376701355, -0.15543358027935028, 0.1215941458940506, -0.007910390384495258, -0.020444467663764954, 0.08016704767942429, -0.15265309810638428, -0.08610738813877106, 0.19821053743362427, -0.029765041545033455, 0.39683079719543457, -0.10405987501144409, -0.09735896438360214, -0.06216030940413475, -0.12566839158535004, 0.13183170557022095, 0.0014992108335718513, 0.08272939920425415, -0.017374470829963684, 0.05880545452237129, 0.045858077704906464, -0.04065787047147751, 0.0961034893989563, 0.007121559232473373, 0.017448442056775093, -0.11625596135854721, -0.11951237916946411, 0.018076006323099136, -0.01769316755235195, -0.018941624090075493, -0.007054698653519154, 0.007927702739834785, -0.1650625765323639, -0.04331269487738609, -0.07572204619646072, 0.05792756378650665, 0.029972676187753677, -0.04671907424926758, 0.005268498789519072, -0.018723860383033752, -0.002782966708764434, 0.00014781633217353374, 0.26439347863197327, -0.05936451256275177, 0.17329095304012299, 0.09751646965742111, 0.14434081315994263, -0.15516844391822815, 0.020744457840919495, -0.07051212340593338, -0.062130995094776154, 0.07100215554237366, -0.07635306566953659, 0.07206054776906967, 0.14160148799419403, -0.058798279613256454, 0.06822208315134048, 0.11678682267665863, 0.06129474937915802, -0.03829655051231384, 0.15494541823863983, -0.23310184478759766, 0.03067195415496826, -0.05617309734225273, -0.019269509240984917, 0.06541072577238083, 0.06124873459339142, 0.1313914954662323, 0.04925289750099182, -0.04325363039970398, 0.0033935571555048227, -0.007177330087870359, -0.006001487374305725, 0.05391258746385574, 0.059369370341300964, 0.0405583456158638, -0.1301044523715973, 0.04774503409862518, 0.05168575420975685, -0.17648783326148987, -0.01950298249721527, 0.13465616106987, -0.16619637608528137, -0.123210608959198, -0.016695473343133926, 0.14047372341156006, -0.10526914894580841, -0.052286095917224884, -0.0641961395740509, -0.12988963723182678, 0.07513449341058731, 0.21416573226451874, 0.12492673844099045, 0.08473126590251923, -0.054351892322301865, -0.0433243103325367, 0.00813804566860199, -0.0028038492891937494, -0.004347450099885464, 0.0213569737970829, -0.11069818586111069, 0.03424747660756111, -0.01692904718220234, 0.1537885218858719, -0.09642636030912399, -0.07644127309322357, -0.18007591366767883, 0.04680757597088814, -0.09589359909296036, -0.030923452228307724, -0.07065814733505249, -0.02494777925312519, 0.0027184102218598127, -0.04982704669237137, -0.03810438513755798, -0.06778953969478607, -0.12474583089351654, 0.04380473494529724, -0.01739814691245556, 0.046951062977313995, -0.06575383991003036, -0.04436548799276352, 0.10592065751552582, -0.030389221385121346, 0.10233888030052185, 0.10741139948368073, -0.09017354995012283, 0.09937304258346558, -0.14025114476680756, -0.11540278792381287, 0.12473092973232269, 0.024332977831363678, 0.07632600516080856, 0.07255958020687103, 0.03386060148477554, 0.06842704117298126, 0.013095617294311523, 0.07514064013957977, 0.06816884130239487, -0.12232160568237305, 0.06634251028299332, -0.01800168864428997, -0.1819615364074707, -0.04636421799659729, -0.0433107428252697, 0.09420221298933029, 0.0033543251920491457, 0.15196917951107025, -0.05360310524702072, 0.09955310821533203, -0.029891278594732285, 0.014246429316699505, -0.016671935096383095, -0.21149136126041412, -0.0522589348256588, -0.08570335060358047, 0.023116042837500572, 0.0013845140347257257, 0.2525487542152405, 0.06443332135677338, 0.04439312592148781, 0.057867828756570816, 0.07841645181179047, -0.0042450702749192715, 0.023948632180690765, 0.17565575242042542, 0.09525442123413086, -0.054012514650821686, -0.05583411082625389, 0.06459001451730728, 0.022507619112730026, 0.007105350494384766, 0.134922593832016, 0.06904992461204529, -0.02027812972664833, 0.07425402104854584, -0.02864842116832733, 0.04778070002794266, -0.13440704345703125, -0.17963038384914398, -0.03386995941400528, 0.07370924949645996, 0.012063120491802692, 0.06827012449502945, 0.09030202776193619, -0.030618468299508095, 0.050783079117536545, -0.057976752519607544, -0.05235034599900246, -0.19253535568714142, -0.08981412649154663, -0.09645915031433105, -0.10056101530790329, 0.009355648420751095, -0.07581790536642075, -0.0035857316106557846, 0.08642654865980148, 0.05128418654203415, -0.051395587623119354, 0.06751278042793274, 0.0036548401694744825, -0.060154374688863754, 0.08253806084394455, -0.03788101673126221, 0.03674467280507088, -0.024166984483599663, -0.023863065987825394, -0.14203840494155884, -0.02095317468047142, -0.04826038330793381, 0.036518342792987823, -0.06356353312730789, -0.0046814256347715855, -0.13995665311813354, -0.12233787775039673, -0.028041867539286613, 0.05179587006568909, -0.0554736964404583, 0.13980767130851746, 0.0017309145769104362, 0.014390261843800545, 0.045944105833768845, 0.1995946317911148, -0.06427688151597977, -0.05310416221618652, -0.03313717991113663, 0.24282605946063995, 0.07217766344547272, 0.11897724866867065, -0.0090294498950243, -0.009333313442766666, -0.08422545343637466, 0.31985536217689514, 0.2987454831600189, -0.05266494303941727, 0.04842206463217735, 0.020035739988088608, 0.03775126487016678, 0.16266633570194244, 0.13270242512226105, 0.0950435921549797, 0.23389460146427155, -0.0714825689792633, -0.033952292054891586, -0.021401802077889442, -0.0162887554615736, -0.11111654341220856, 0.08001469075679779, 0.059511322528123856, -0.04412160441279411, -0.07723196595907211, 0.10477863997220993, -0.20260004699230194, 0.13994616270065308, -0.0024427324533462524, -0.21630235016345978, -0.07029445469379425, -0.026072734966874123, 0.14617422223091125, -0.0076447343453764915, 0.08494266867637634, -0.0013345530023798347, -0.1164931207895279, 0.021991964429616928, 0.01962079480290413, -0.21802584826946259, -0.02056162990629673, 0.07194672524929047, -0.05182816833257675, 0.011588583700358868, -0.020888352766633034, 0.03354744240641594, 0.0719832107424736, 0.06442490965127945, -0.007189961615949869, 0.032435111701488495, 0.003355972934514284, -0.0426880419254303, 0.0009629555861465633, 0.016256865113973618, 0.0057871718890964985, -0.08934135735034943, 0.06550528109073639, -0.16569796204566956, 0.05759742856025696, -0.08010409027338028, -0.06568543612957001, -0.014534647576510906, 0.04576597735285759, -0.058623507618904114, 0.05218552425503731, 0.10277462005615234, 0.008170136250555515, -0.03625334054231644, -0.05083601176738739, -0.040871746838092804, -0.0061553162522614, -0.13175679743289948, -0.14108939468860626, -0.09341521561145782, -0.0927593857049942, 0.11706963926553726, 0.0021963282488286495, -0.1612723171710968, -0.0035953763872385025, -0.08668401092290878, 0.0656822994351387, -0.1690918654203415, 0.08775797486305237, 0.03407919406890869, 0.017887458205223083, -0.014320365153253078, -0.05780649930238724, 0.05254799872636795, 0.07273561507463455, -0.11995216459035873, -0.09545386582612991 ]
null
null
transformers
# Sparse BERT base model (uncased) Pretrained model pruned to 1:2 structured sparsity. The model is a pruned version of the [BERT base model](https://huggingface.co/bert-base-uncased). ## Intended Use The model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model. To keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros. ## Evaluation Results We get the following results on the tasks development set, all results are mean of 5 different seeded models: | Task | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | STS-B (Pears/Spear) | SQuADv1.1 (Acc/F1) | |------|--------------|---------------|--------------|------------|-------------|---------------------|--------------------| | | 83.3 | 83.9 | 90.8/87.6 | 90.4 | 91.3 | 88.8/88.3 | 80.5/88.2 |
{"language": "en"}
null
Intel/bert-base-uncased-sparse-1_2
[ "transformers", "pytorch", "bert", "pretraining", "en", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #pretraining #en #endpoints_compatible #region-us
Sparse BERT base model (uncased) ================================ Pretrained model pruned to 1:2 structured sparsity. The model is a pruned version of the BERT base model. Intended Use ------------ The model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model. To keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros. Evaluation Results ------------------ We get the following results on the tasks development set, all results are mean of 5 different seeded models:
[]
[ "TAGS\n#transformers #pytorch #bert #pretraining #en #endpoints_compatible #region-us \n" ]
[ 28 ]
[ "passage: TAGS\n#transformers #pytorch #bert #pretraining #en #endpoints_compatible #region-us \n" ]
[ -0.06031027436256409, 0.01853039488196373, -0.010262301191687584, -0.031429290771484375, 0.13131536543369293, 0.03042694926261902, 0.047801099717617035, 0.0511772483587265, 0.0705023929476738, -0.014373849146068096, 0.16220232844352722, 0.17742913961410522, -0.0544629767537117, -0.005108308047056198, -0.04390354081988335, -0.2567123472690582, 0.05760765075683594, 0.0940965861082077, -0.07264886796474457, 0.11598016321659088, 0.05436844751238823, -0.11775700747966766, 0.05320095270872116, -0.03181854635477066, -0.11234714090824127, 0.02225741185247898, -0.0074081458151340485, -0.061159033328294754, 0.13941732048988342, 0.006706629414111376, 0.19576424360275269, 0.03425963595509529, -0.08258281648159027, -0.19485750794410706, 0.03325674310326576, 0.003974833991378546, -0.05340580642223358, 0.019834313541650772, 0.044742152094841, -0.08079606294631958, 0.010134998708963394, 0.06214769929647446, 0.008947363123297691, 0.042268142104148865, -0.21775302290916443, -0.1371355503797531, -0.03687526658177376, 0.02809049002826214, 0.05481937527656555, 0.08146576583385468, 0.006378503516316414, 0.15066739916801453, -0.16548193991184235, 0.07243002951145172, 0.13014012575149536, -0.2968612611293793, -0.00945699866861105, 0.06181355565786362, 0.09304121136665344, 0.056509289890527725, -0.02897154912352562, 0.03499380126595497, 0.020117543637752533, 0.018940860405564308, -0.05320531874895096, -0.08790859580039978, -0.017469950020313263, 0.07165050506591797, -0.13046783208847046, -0.08163587749004364, 0.23673003911972046, -0.02715113013982773, 0.041375525295734406, 0.055739160627126694, -0.07118791341781616, -0.0655025839805603, 0.008566155098378658, -0.034179337322711945, -0.011370997875928879, 0.0760294497013092, 0.023632721975445747, -0.03275288641452789, -0.13255742192268372, 0.033049724996089935, -0.18797904253005981, 0.26744544506073, 0.025123462080955505, 0.05375104397535324, -0.20446178317070007, 0.07656443119049072, -0.0034941728226840496, -0.0637049674987793, 0.024507414549589157, -0.08871661126613617, 0.02357400581240654, -0.02891657128930092, -0.07081650197505951, 0.04231483116745949, 0.020317241549491882, 0.163442000746727, -0.009928731247782707, 0.04022955149412155, 0.02150820754468441, 0.11813248693943024, 0.021610673516988754, 0.09152808785438538, 0.019625216722488403, 0.010363020934164524, -0.01070200465619564, -0.09799475967884064, -0.013752179220318794, -0.0104182418435812, -0.09649336338043213, -0.07555121183395386, 0.027918346226215363, 0.09033076465129852, -0.004620546940714121, 0.017016876488924026, -0.10244845598936081, -0.0012304694391787052, -0.009495966136455536, -0.03212831914424896, -0.041183702647686005, -0.004089766647666693, 0.02715272642672062, 0.14620789885520935, -0.017867550253868103, 0.0032133879140019417, -0.029623666778206825, 0.11140584945678711, -0.08235806226730347, -0.012874937616288662, -0.05247695744037628, -0.010576469823718071, 0.0412137508392334, -0.13395845890045166, 0.09443356096744537, -0.1182042807340622, -0.07903816550970078, 0.007409699261188507, 0.07791440933942795, 0.027241703122854233, 0.01539606787264347, -0.019907157868146896, -0.01625836081802845, -0.05430746078491211, -0.05955641344189644, -0.030415289103984833, -0.06595462560653687, 0.10746771097183228, -0.005943344905972481, 0.029131263494491577, -0.07733932137489319, 0.06262297928333282, -0.09983274340629578, 0.045110709965229034, -0.09535181522369385, -0.020873866975307465, -0.011959640309214592, 0.17530173063278198, 0.003896825946867466, -0.07198101282119751, -0.15478777885437012, 0.058827489614486694, -0.03303832560777664, 0.17552435398101807, -0.04062482714653015, -0.10912125557661057, 0.2361067235469818, -0.09101451933383942, -0.17009902000427246, 0.05750670284032822, -0.012662651017308235, 0.057376258075237274, 0.0654078796505928, 0.19132068753242493, 0.019298868253827095, -0.09740859270095825, 0.10052567720413208, 0.14525918662548065, -0.11514328420162201, -0.13022813200950623, 0.03398146107792854, -0.03280584141612053, -0.11337742209434509, 0.02839820459485054, 0.0006466696504503489, 0.0847281962633133, -0.10067872703075409, -0.027219634503126144, 0.008696245029568672, -0.021985452622175217, 0.05964295193552971, 0.08375602960586548, 0.0816253125667572, -0.07638373970985413, -0.009060081094503403, 0.023145807906985283, 0.0027738192584365606, 0.04410885274410248, 0.048348575830459595, -0.055366434156894684, 0.06119952350854874, -0.028660014271736145, -0.020587434992194176, -0.20176704227924347, -0.05829545110464096, -0.020594269037246704, 0.10375487804412842, -0.0182506050914526, 0.2228035181760788, 0.09158771485090256, -0.07487383484840393, -0.013078519143164158, -0.04778287187218666, 0.07750663161277771, 0.0019104909151792526, -0.03874102234840393, -0.06209884583950043, 0.017854003235697746, -0.05955903232097626, -0.019590385258197784, -0.07083220034837723, 0.012974067591130733, 0.08705132454633713, 0.11380216479301453, 0.0015317350625991821, 0.02892715111374855, -0.031420379877090454, 0.06567586958408356, -0.007208086550235748, 0.017078381031751633, 0.11892379075288773, 0.01231876015663147, -0.07012873888015747, 0.09695598483085632, -0.08190108835697174, 0.32000863552093506, 0.18395325541496277, -0.3496586084365845, -0.0024976753629744053, -0.038891129195690155, -0.05559366196393967, 0.016794096678495407, 0.10771586000919342, 0.01863601803779602, 0.1364433914422989, 0.03642499819397926, 0.11289611458778381, -0.02913060039281845, -0.04528363049030304, -0.007716107647866011, -0.053648848086595535, -0.053839921951293945, 0.09831980615854263, 0.06621584296226501, -0.14401637017726898, 0.15208125114440918, 0.27676957845687866, 0.03306729346513748, 0.1246509701013565, -0.05541302263736725, -0.01728358119726181, 0.02453402802348137, 0.03562822565436363, -0.05817562714219093, 0.06555254757404327, -0.3051985204219818, -0.03986116498708725, 0.050386764109134674, 0.013341312296688557, 0.09848316013813019, -0.1720685362815857, -0.0789000615477562, 0.01998651959002018, 0.03137265145778656, -0.029557891190052032, 0.08248750120401382, 0.010611111298203468, 0.07143642008304596, 0.03346748277544975, -0.03889920562505722, 0.11422885954380035, -0.007425666321069002, -0.05940413847565651, 0.17694886028766632, -0.11524292081594467, -0.24561773240566254, -0.09016770124435425, -0.08193185180425644, 0.04984530806541443, 0.010902611538767815, 0.06192672625184059, -0.09905356913805008, -0.019025329500436783, 0.10450024902820587, 0.07090107351541519, -0.20133045315742493, 0.016824359074234962, -0.040431588888168335, 0.06646363437175751, -0.096716970205307, -0.06446389853954315, -0.05821320414543152, -0.07503761351108551, -0.08049935102462769, 0.08843174576759338, -0.12395679950714111, 0.0464879646897316, 0.11894077062606812, 0.04791997745633125, 0.0682467371225357, -0.016145488247275352, 0.212142676115036, -0.09021534025669098, -0.05365683138370514, 0.1586185097694397, -0.05519881844520569, 0.07094410061836243, 0.10902484506368637, 0.03020367957651615, -0.08424028754234314, -0.016306491568684578, -0.04903053119778633, -0.08184055984020233, -0.22281697392463684, -0.09024828672409058, -0.12229795753955841, -0.007534355856478214, 0.009537247009575367, 0.03550555184483528, 0.06032130494713783, 0.07170702517032623, 0.03436673432588577, -0.09375466406345367, -0.045898061245679855, 0.03553399443626404, 0.19799502193927765, -0.05742407962679863, 0.06975604593753815, -0.04120440036058426, -0.07253387570381165, 0.05700177699327469, 0.07211366295814514, 0.16925206780433655, 0.11717347800731659, 0.0013940850039944053, 0.0945863276720047, 0.15975500643253326, 0.1294087916612625, 0.10996709764003754, -0.013033799827098846, -0.04750019311904907, -0.022439148277044296, 0.010659603402018547, -0.09850092977285385, 0.017981581389904022, 0.09962847828865051, -0.10565497726202011, -0.07706353068351746, -0.21398457884788513, 0.04995984211564064, 0.08219536393880844, 0.0322096161544323, -0.1401803195476532, -0.01022699847817421, 0.06770355999469757, -0.0010678330436348915, -0.0625533014535904, 0.11877360194921494, -0.0012650713324546814, -0.1251765489578247, 0.03681677579879761, -0.03199174255132675, 0.0983036458492279, -0.03940332680940628, 0.09491916000843048, -0.025171086192131042, -0.12340792268514633, 0.05592603236436844, 0.08008694648742676, -0.285641074180603, 0.3108880817890167, -0.0033587426878511906, -0.04157669097185135, -0.03346220403909683, -0.05094894766807556, -0.016565365716814995, 0.19267849624156952, 0.14449679851531982, 0.03898131102323532, -0.03222108632326126, -0.10553086549043655, 0.06787893176078796, 0.024268142879009247, 0.14354687929153442, -0.03999817371368408, -0.04140967130661011, -0.002429364714771509, 0.01731930673122406, -0.008664654567837715, -0.003085292875766754, 0.004875302314758301, -0.12407749891281128, 0.047346971929073334, -0.03987596929073334, 0.05657581239938736, -0.028370089828968048, -0.011320892721414566, -0.054449498653411865, 0.13807223737239838, -0.09325814992189407, -0.04546840861439705, -0.07247798889875412, -0.12889045476913452, 0.09671521186828613, -0.08057251572608948, 0.03777743875980377, -0.07861997187137604, -0.0731753259897232, -0.09194144606590271, -0.1258256584405899, 0.1353543996810913, -0.1042717844247818, 0.0037826625630259514, -0.050747621804475784, 0.20916470885276794, -0.010050779208540916, 0.016666360199451447, -0.02313649095594883, 0.008751191198825836, -0.09318335354328156, -0.07518607378005981, 0.031041434034705162, -0.05504530668258667, 0.05673937499523163, 0.018570896238088608, -0.07198404520750046, 0.1088690310716629, 0.009579479694366455, 0.002041235566139221, 0.22305096685886383, 0.24164488911628723, -0.018442291766405106, 0.10193269699811935, 0.19219012558460236, -0.053704775869846344, -0.29098251461982727, -0.01190719660371542, -0.13784366846084595, -0.036108288913965225, -0.05080946534872055, -0.1965315341949463, 0.10358497500419617, 0.04517412185668945, -0.018629156053066254, 0.08696460723876953, -0.2828795909881592, -0.0450497642159462, 0.1734270453453064, 0.021860305219888687, 0.5154933929443359, -0.11987297981977463, -0.061993181705474854, 0.046775396913290024, -0.1829693615436554, 0.11447378993034363, 0.021620184183120728, 0.05947345867753029, -0.0066116489470005035, 0.03541569039225578, 0.022335540503263474, -0.08381248265504837, 0.13055574893951416, 0.039356838911771774, 0.03521642088890076, -0.06956924498081207, -0.12521980702877045, 0.04683618247509003, -0.002343552652746439, -0.06205720081925392, 0.10397233814001083, 0.014890523627400398, -0.17294731736183167, -0.02188614010810852, -0.1220400407910347, 0.07132604718208313, 0.006381666287779808, -0.07012761384248734, 0.00045881234109401703, 0.016938159242272377, -0.026914052665233612, 0.026234377175569534, 0.251706600189209, -0.04293051362037659, 0.13947351276874542, 0.0041846027597785, 0.15156900882720947, -0.18986260890960693, -0.05907495319843292, -0.050043247640132904, -0.03910072147846222, 0.08091777563095093, -0.020722638815641403, 0.015727099031209946, 0.15657982230186462, -0.007523495703935623, 0.019203195348381996, 0.1201215535402298, 0.009177161380648613, -0.038643576204776764, 0.10532556474208832, -0.23441161215305328, -0.09041787683963776, -0.051736921072006226, -0.01258170697838068, 0.0869564339518547, 0.09422783553600311, 0.09341937303543091, 0.05576394498348236, -0.011113177053630352, -0.016543447971343994, -0.03908248990774155, -0.0938556045293808, 0.008506215177476406, 0.08040887117385864, 0.029064513742923737, -0.08281391859054565, 0.04950929433107376, -0.017095236107707024, -0.2683379352092743, -0.042094822973012924, 0.11417672038078308, -0.13020409643650055, -0.10657207667827606, -0.10442373156547546, 0.10502688586711884, -0.1210714727640152, -0.041649747639894485, -0.010884509421885014, -0.11726541817188263, 0.07995874434709549, 0.2322714924812317, 0.11458685994148254, 0.09899387508630753, -0.018741603940725327, 0.015980713069438934, 0.025255903601646423, -0.06313839554786682, -0.021172331646084785, -0.000341651844792068, -0.07235535979270935, 0.03367232158780098, -0.00019661244004964828, 0.1510927379131317, -0.07451699674129486, -0.10192053765058517, -0.1858924925327301, 0.0989399328827858, -0.0696209967136383, -0.12052708864212036, -0.10318641364574432, -0.06519459187984467, 0.0044364724308252335, -0.11132936924695969, -0.038266122341156006, -0.04547674208879471, -0.1367250680923462, 0.08624538779258728, 0.044972795993089676, 0.008913442492485046, -0.02741415426135063, -0.03193845599889755, 0.1463000476360321, -0.04678719490766525, 0.0919167771935463, 0.1378062665462494, -0.05928660184144974, 0.1177181601524353, -0.08798627555370331, -0.11232806742191315, 0.08308526873588562, 0.011563886888325214, 0.053275175392627716, 0.08567481487989426, -0.005968119949102402, 0.051645372062921524, 0.024795208126306534, 0.05902901291847229, 0.008379755541682243, -0.11143194884061813, 0.043492890894412994, 0.06413967907428741, -0.17109306156635284, -0.03932800889015198, -0.07702179253101349, 0.13290247321128845, 0.01907428354024887, 0.09653453528881073, 0.008501788601279259, 0.09089083224534988, -0.045140497386455536, 0.01947331428527832, 0.019091594964265823, -0.15755540132522583, 0.032742731273174286, -0.08167728781700134, 0.013084500096738338, -0.0026232802774757147, 0.2547488808631897, -0.06106261536478996, 0.018069151788949966, 0.06063392758369446, 0.016191206872463226, -0.02642892859876156, 0.03152856230735779, 0.2183254063129425, 0.1093028262257576, -0.040231816470623016, -0.09408789873123169, 0.08433568477630615, -0.008763312362134457, -0.07392197847366333, 0.13477283716201782, 0.16986703872680664, 0.03179532662034035, 0.1016506552696228, -0.04041684418916702, 0.03406648710370064, -0.09082861989736557, -0.1510658711194992, 0.03676652908325195, 0.0188516303896904, -0.009332273155450821, 0.1451731026172638, 0.1351974904537201, -0.05318530648946762, 0.057076916098594666, -0.023287316784262657, -0.022067060694098473, -0.1539098024368286, -0.062243856489658356, -0.01962866820394993, -0.0718788206577301, 0.022575218230485916, -0.06508471071720123, -0.023770570755004883, 0.15216514468193054, 0.05518200993537903, -0.026349768042564392, 0.12562541663646698, 0.07956601679325104, -0.05486495792865753, 0.03188391774892807, -0.006916825659573078, 0.06337536126375198, -0.07045445591211319, -0.039677396416664124, -0.13077738881111145, -0.06564230471849442, -0.06651251018047333, 0.015395507216453552, -0.11786661297082901, -0.04406236112117767, -0.09550218284130096, -0.08798690140247345, -0.05775777995586395, 0.07965391874313354, -0.03237376734614372, 0.10079366713762283, -0.035127460956573486, 0.011372693814337254, 0.012006504461169243, 0.1815890073776245, -0.04988338425755501, -0.05722677335143089, -0.00512870354577899, 0.18396785855293274, 0.04443091154098511, 0.10523419827222824, 0.0018351264297962189, 0.04754587262868881, -0.04866240546107292, 0.3561992645263672, 0.24340687692165375, -0.07962000370025635, 0.04011284559965134, 0.0809902623295784, 0.045036543160676956, 0.10039342939853668, 0.09775139391422272, 0.10722081363201141, 0.2672860622406006, -0.1358165144920349, -0.05552498996257782, -0.049945168197155, 0.00710761733353138, -0.06193254142999649, 0.06290025264024734, 0.05770966410636902, -0.03967699408531189, -0.08561577647924423, 0.09823843091726303, -0.16364140808582306, 0.06006168574094772, 0.060927387326955795, -0.21235693991184235, -0.052766863256692886, -0.05772450193762779, 0.16918687522411346, -0.022862836718559265, 0.12552416324615479, -0.029923278838396072, -0.14624851942062378, 0.046041183173656464, 0.04672670364379883, -0.2196228802204132, -0.09928634762763977, 0.14095138013362885, 0.05942002683877945, 0.020537767559289932, -0.028366029262542725, 0.0061201611533761024, 0.06461618840694427, 0.055943895131349564, -0.015132473781704903, -0.011440522968769073, 0.054281316697597504, -0.057112157344818115, -0.1401408612728119, -0.015318182297050953, 0.019201073795557022, -0.041019637137651443, 0.03572903946042061, -0.2231384515762329, 0.06601325422525406, -0.021964503452181816, -0.0795634463429451, -0.02103983610868454, 0.04734467715024948, -0.05233188718557358, 0.048463135957717896, 0.07431170344352722, 0.027005063369870186, -0.04897593334317207, -0.050298549234867096, -0.019395319744944572, 0.0551827996969223, -0.02778511866927147, -0.12307029962539673, -0.04410945624113083, -0.08035217225551605, 0.08938088268041611, -0.033793166279792786, -0.08032457530498505, -0.02374056912958622, -0.009126981720328331, 0.07003205269575119, -0.1070120632648468, 0.032406218349933624, -0.002637057565152645, 0.0568818673491478, 0.0025779337156563997, -0.020885510370135307, 0.049076277762651443, 0.058516234159469604, -0.10471899807453156, -0.07442253828048706 ]
null
null
transformers
# Sparse BERT base model (uncased) Pretrained model pruned to 70% sparsity. The model is a pruned version of the [BERT base model](https://huggingface.co/bert-base-uncased). ## Intended Use The model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model. To keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros.
{"language": "en"}
fill-mask
Intel/bert-base-uncased-sparse-70-unstructured
[ "transformers", "pytorch", "bert", "fill-mask", "en", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us
# Sparse BERT base model (uncased) Pretrained model pruned to 70% sparsity. The model is a pruned version of the BERT base model. ## Intended Use The model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model. To keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros.
[ "# Sparse BERT base model (uncased)\n\nPretrained model pruned to 70% sparsity.\nThe model is a pruned version of the BERT base model.", "## Intended Use\n\nThe model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model.\nTo keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros." ]
[ "TAGS\n#transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us \n", "# Sparse BERT base model (uncased)\n\nPretrained model pruned to 70% sparsity.\nThe model is a pruned version of the BERT base model.", "## Intended Use\n\nThe model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model.\nTo keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros." ]
[ 38, 38, 60 ]
[ "passage: TAGS\n#transformers #pytorch #bert #fill-mask #en #autotrain_compatible #endpoints_compatible #region-us \n# Sparse BERT base model (uncased)\n\nPretrained model pruned to 70% sparsity.\nThe model is a pruned version of the BERT base model.## Intended Use\n\nThe model can be used for fine-tuning to downstream tasks with sparsity already embeded to the model.\nTo keep the sparsity a mask should be added to each sparse weight blocking the optimizer from updating the zeros." ]
[ -0.06153089925646782, -0.07240350544452667, -0.0021561074536293745, 0.05465533211827278, 0.07097543776035309, -0.03300677612423897, 0.049230121076107025, 0.018746841698884964, -0.07452163845300674, 0.00983873289078474, 0.164375901222229, 0.06690197438001633, -0.040779583156108856, 0.15818466246128082, -0.059995319694280624, -0.30859893560409546, 0.1183779388666153, 0.08930886536836624, -0.03029904142022133, 0.049104850739240646, 0.0438370481133461, -0.08163667470216751, 0.09979340434074402, 0.0435592383146286, -0.12651868164539337, 0.007330766879022121, 0.05962393432855606, 0.014884712174534798, 0.05120008438825607, 0.03899373859167099, 0.15273252129554749, 0.04410984367132187, 0.03840898349881172, -0.06517495214939117, 0.034324392676353455, -0.018634958192706108, 0.0028245761059224606, 0.10662296414375305, -0.037710871547460556, 0.045058008283376694, 0.13888175785541534, 0.009093011729419231, 0.03407686948776245, 0.03186208754777908, -0.10393985360860825, 0.1362200528383255, -0.028017926961183548, 0.04506032168865204, 0.040722135454416275, 0.06180872023105621, -0.031060758978128433, 0.19826936721801758, -0.09923608601093292, 0.03812705725431442, 0.036223940551280975, -0.29665419459342957, -0.02590011991560459, 0.07000284641981125, 0.010831467807292938, -0.08194409310817719, 0.03244118019938469, 0.07856585830450058, 0.04017127305269241, 0.026173198595643044, 0.14178414642810822, -0.011134957894682884, 0.02769690379500389, -0.07284825295209885, -0.09977629035711288, -0.019026784226298332, 0.08548141270875931, 0.030365528538823128, -0.05177561938762665, -0.08040731400251389, -0.09962422400712967, 0.028734968975186348, -0.07964293658733368, -0.04136074706912041, 0.013523922301828861, 0.04437878355383873, -0.045380786061286926, -0.0819423720240593, -0.017766650766134262, -0.036031413823366165, -0.10380491614341736, 0.20300118625164032, 0.04547297582030296, 0.017114024609327316, -0.05951777845621109, 0.03757821395993233, -0.2776229679584503, -0.1479511260986328, 0.04474503919482231, -0.09782228618860245, 0.01096827257424593, -0.0067956652492284775, -0.13251300156116486, -0.014323537237942219, 0.005127890035510063, 0.1700330674648285, 0.03872799873352051, -0.0076187788508832455, 0.039611198008060455, 0.012482201680541039, 0.07080167531967163, -0.008857510052621365, -0.07548695802688599, -0.05251539126038551, 0.09221851080656052, 0.07356595993041992, 0.03078301064670086, -0.022824790328741074, -0.05652594566345215, 0.021070528775453568, 0.041445016860961914, -0.06775052845478058, 0.03397466242313385, 0.10274569690227509, -0.050906985998153687, -0.051668427884578705, 0.1300995796918869, -0.04279569908976555, -0.02351275458931923, -0.08463448286056519, 0.04559258744120598, 0.14353875815868378, 0.028081046417355537, 0.02956198714673519, -0.03424953669309616, 0.047820404171943665, -0.13690461218357086, -0.05759524554014206, -0.08609893918037415, -0.14792713522911072, -0.07862505316734314, -0.1504380851984024, 0.05547790229320526, -0.08997519314289093, -0.13705141842365265, 0.06412392109632492, 0.0627443790435791, -0.02937893196940422, -0.09967118501663208, 0.0019623737316578627, -0.06625431776046753, -0.036734383553266525, 0.011814470402896404, -0.01245929580181837, -0.017966212704777718, 0.01626644842326641, 0.08165327459573746, 0.0681174099445343, -0.11441030353307724, 0.02370348572731018, -0.08431856334209442, 0.03835540637373924, -0.18859601020812988, 0.02860748954117298, -0.011509308591485023, -0.0034978033509105444, -0.010399296879768372, -0.10560299456119537, -0.12616972625255585, 0.032484252005815506, 0.10209450870752335, 0.17489038407802582, -0.13747727870941162, -0.07353696972131729, 0.0318833664059639, -0.1730092167854309, 0.026196246966719627, 0.10047725588083267, -0.04018022492527962, -0.07818779349327087, 0.045023247599601746, 0.090099036693573, -0.08378025144338608, -0.028304947540163994, 0.009367710910737514, 0.01041229348629713, -0.11509895324707031, 0.02818135917186737, 0.047879017889499664, 0.01774587109684944, -0.25570937991142273, 0.03135131672024727, -0.08791426569223404, 0.014640671201050282, -0.09510922431945801, -0.044731467962265015, -0.0623345822095871, -0.04270102456212044, 0.15711969137191772, 0.016679929569363594, 0.079344242811203, 0.0029129672329872847, -0.07576350122690201, 0.18774452805519104, 0.0483398400247097, -0.04077066853642464, 0.01798286661505699, -0.08840271830558777, 0.12899726629257202, -0.21332935988903046, -0.03395012766122818, -0.1698310524225235, -0.06714656949043274, 0.0015169838443398476, 0.11651697754859924, -0.021975087001919746, 0.1597161740064621, 0.08810867369174957, 0.07788658142089844, -0.07356670498847961, 0.019772354513406754, -0.02303208038210869, 0.032482411712408066, -0.08814267069101334, -0.119409941136837, -0.09482236951589584, -0.0864744707942009, 0.048166271299123764, -0.06218206137418747, -0.007717991713434458, -0.1700894981622696, 0.06082654371857643, 0.003547550179064274, -0.02714546024799347, 0.004757746122777462, 0.05791178345680237, -0.025577183812856674, -0.03044595755636692, 0.10453175753355026, 0.013085182756185532, -0.014810112304985523, -0.02575371041893959, -0.05483696982264519, 0.15223318338394165, 0.1637982726097107, -0.10017096996307373, -0.028340518474578857, 0.003091678488999605, -0.031674183905124664, -0.004306926857680082, -0.02505883201956749, -0.027878288179636, 0.17128071188926697, -0.01642310619354248, 0.11272875219583511, -0.05380256846547127, 0.0434725359082222, 0.049908142536878586, -0.03196053206920624, -0.025695189833641052, -0.04863680154085159, 0.12339740991592407, -0.10052204132080078, 0.058110561221838, 0.012488947249948978, 0.008853739127516747, 0.0700051411986351, -0.0015970602398738265, -0.04558069631457329, 0.00018043044838123024, -0.07061386853456497, -0.005818136036396027, 0.1122022420167923, -0.1267041116952896, -0.03663937747478485, 0.05839384347200394, -0.027206821367144585, 0.04838979244232178, -0.01955115981400013, 0.009641390293836594, 0.0664241760969162, 0.026161331683397293, -0.12639817595481873, 0.02920314110815525, -0.07632654905319214, 0.01922060362994671, 0.0420365072786808, -0.07342495769262314, 0.03487061336636543, 0.05407668277621269, -0.007633775006979704, 0.08397479355335236, -0.021463263779878616, -0.07613420486450195, -0.0773976668715477, 0.03142044320702553, -0.08645415306091309, 0.09538182616233826, -0.014438568614423275, 0.0005982979200780392, -0.11721781641244888, -0.056919604539871216, 0.040664322674274445, 0.019503068178892136, 0.03901487588882446, -0.03423919901251793, -0.1166265532374382, 0.09448059648275375, -0.0794818252325058, -0.0486982986330986, -0.08058390021324158, -0.031741149723529816, 0.0250709168612957, -0.07464659214019775, 0.0587984062731266, 0.0827440693974495, -0.06377056241035461, -0.0014468830777332187, 0.030080493539571762, 0.240685373544693, 0.06399683654308319, 0.019363943487405777, 0.12306194752454758, 0.004884049296379089, 0.02767641842365265, 0.10472330451011658, 0.019547978416085243, -0.042644813656806946, 0.03142800182104111, 0.02311982400715351, -0.04283423349261284, 0.007563734892755747, -0.10582559555768967, -0.05100398138165474, -0.13978038728237152, 0.15511180460453033, -0.02548522688448429, 0.04111262410879135, 0.14539289474487305, -0.012942975386977196, 0.04275732487440109, -0.1207568421959877, 0.10678210854530334, 0.0017955867806449533, 0.01622840203344822, 0.19167684018611908, 0.037331581115722656, -0.08447566628456116, 0.05032673105597496, -0.17045781016349792, 0.18894809484481812, 0.05522511526942253, 0.012076900340616703, 0.08805444091558456, 0.10824713110923767, 0.13716329634189606, 0.17508937418460846, -0.061835601925849915, -0.0812186747789383, -0.04318650811910629, -0.03120000660419464, -0.07594051957130432, -0.023556847125291824, 0.052951619029045105, 0.023320665583014488, -0.10772448033094406, -0.06205813214182854, 0.007775057107210159, 0.11089412868022919, 0.13388077914714813, -0.24267329275608063, -0.033386215567588806, 0.023096954450011253, -0.006349384319037199, -0.09626932442188263, -0.0020915393251925707, 0.04245904088020325, -0.019930152222514153, -0.034589532762765884, -0.038022492080926895, 0.11381658911705017, 0.09271828830242157, 0.08981511741876602, -0.19512724876403809, 0.11864771693944931, -0.01665596477687359, 0.020316319540143013, -0.07394742965698242, 0.2080792933702469, 0.008691196329891682, 0.06405694782733917, -0.016889648512005806, -0.011414049193263054, 0.08252554386854172, 0.11075197905302048, 0.09652838110923767, 0.022020161151885986, 0.10097092390060425, -0.01262054592370987, -0.11622928082942963, 0.07814884930849075, -0.04089994356036186, -0.04009266570210457, 0.0721227377653122, -0.02143734320998192, 0.006912626791745424, 0.056341562420129776, 0.18860487639904022, -0.1945580095052719, -0.05720004811882973, 0.02032209001481533, -0.052321501076221466, -0.028759151697158813, 0.0032813188154250383, -0.10252075642347336, -0.11043814569711685, 0.2773967683315277, 0.16398504376411438, -0.0741017758846283, -0.13493745028972626, 0.035328954458236694, 0.09390372037887573, -0.028514903038740158, 0.11858589947223663, -0.040567006915807724, 0.10038735717535019, -0.038637954741716385, -0.1257370561361313, 0.06284777820110321, -0.050299905240535736, 0.011865130625665188, 0.0036511041689664125, 0.06196669489145279, 0.019766580313444138, 0.04739362373948097, 0.05180449038743973, 0.07283876091241837, -0.022257165983319283, -0.08826784789562225, -0.038340628147125244, -0.10019031167030334, 0.1855274736881256, -0.011037985794246197, -0.08265066891908646, -0.009212247096002102, -0.00001321046056546038, 0.1723899245262146, 0.06004038453102112, 0.21507687866687775, -0.05337689071893692, 0.014922674745321274, 0.16264265775680542, 0.038896530866622925, -0.16660013794898987, -0.07171792536973953, -0.02474323660135269, 0.06896763294935226, 0.03249823674559593, -0.11071107536554337, 0.11534584313631058, -0.011440681293606758, 0.02042493410408497, -0.10662925243377686, -0.03967484086751938, -0.08705062419176102, 0.1860097199678421, 0.1565699279308319, 0.4665871560573578, -0.003080441150814295, -0.020465673878788948, -0.05922865495085716, -0.11205141246318817, 0.09974119812250137, -0.11380213499069214, 0.0912531241774559, -0.037521738559007645, -0.0411684550344944, 0.06044667214155197, -0.044947300106287, 0.15862925350666046, -0.02088315784931183, 0.031782228499650955, -0.03273959830403328, -0.10978181660175323, 0.06854718178510666, -0.01598687842488289, 0.10727857053279877, -0.0535769909620285, 0.05727165937423706, 0.0009691683808341622, -0.08931033313274384, -0.041737150400877, 0.06859241425991058, -0.004744572099298239, -0.08289987593889236, 0.05451247841119766, 0.02080393210053444, 0.027372444048523903, 0.03970148041844368, 0.10746984928846359, -0.08705287426710129, 0.014959752559661865, 0.014978709630668163, 0.08789388090372086, -0.07777327299118042, -0.01848217286169529, 0.028638172894716263, -0.07119057327508926, 0.10809074342250824, -0.059762101620435715, 0.018360774964094162, 0.05220099538564682, 0.015949588268995285, 0.013167163357138634, 0.07256998866796494, 0.0422947071492672, -0.03940088674426079, 0.051322486251592636, -0.12502647936344147, -0.03175700455904007, -0.032002080231904984, -0.10998831689357758, -0.09261348098516464, 0.04919615760445595, 0.07946561276912689, -0.06119028106331825, -0.035474926233291626, -0.004685057792812586, -0.06609130650758743, -0.10225167870521545, 0.08918876200914383, 0.010947487317025661, 0.03936203196644783, -0.10436447709798813, -0.025917233899235725, -0.060961879789829254, 0.01920134946703911, 0.0022194478660821915, -0.11524790525436401, -0.13594754040241241, -0.09696698933839798, -0.005679901223629713, 0.1717795729637146, 0.017162805423140526, 0.0392334945499897, -0.060692157596349716, -0.056921280920505524, 0.034343648701906204, 0.0696377232670784, 0.11824698746204376, 0.025875825434923172, -0.10957912355661392, -0.038357313722372055, -0.10940486192703247, -0.06595896929502487, 0.08862452954053879, 0.047768931835889816, -0.04651522636413574, 0.0926038920879364, -0.013526881113648415, 0.03659984469413757, -0.10746286809444427, -0.04247076064348221, -0.10423293709754944, -0.06433872133493423, -0.10940209031105042, -0.06588951498270035, -0.12167711555957794, -0.0708710253238678, 0.011116511188447475, -0.04397056624293327, -0.04529066011309624, 0.02384483441710472, -0.05973365530371666, -0.013364721089601517, 0.0506887249648571, -0.06560453027486801, -0.004903474822640419, 0.025861527770757675, 0.07764939218759537, -0.066975437104702, 0.014626743271946907, 0.0772748738527298, -0.02276618778705597, 0.045857664197683334, 0.017868228256702423, -0.11041101068258286, 0.0017898657824844122, -0.006484767887741327, 0.062225937843322754, -0.08578311651945114, 0.02352433279156685, 0.022291621193289757, 0.08014937490224838, -0.03793221339583397, 0.18812577426433563, -0.08120637387037277, 0.011808594688773155, 0.05516301468014717, -0.0863630473613739, 0.0015322488034144044, -0.06815437972545624, 0.09528860449790955, 0.07037210464477539, 0.21843630075454712, 0.006612400524318218, -0.03154255822300911, -0.10773450881242752, 0.0364602655172348, -0.03948846086859703, -0.058921828866004944, 0.0700794979929924, -0.032063037157058716, -0.010820715688169003, 0.02529611811041832, 0.0993785411119461, -0.046501703560352325, 0.005066996905952692, 0.013473250903189182, 0.07407192885875702, 0.12478481978178024, -0.034339915961027145, 0.33567699790000916, 0.0861688181757927, -0.03630013391375542, -0.022680219262838364, 0.10663106292486191, 0.034828536212444305, 0.04055626690387726, 0.09827595949172974, 0.03769247606396675, -0.09940413385629654, 0.07503901422023773, -0.04844585061073303, 0.025404533371329308, -0.10719963163137436, -0.08923715353012085, 0.0027687675319612026, 0.029116857796907425, 0.029515685513615608, -0.02761884219944477, 0.1621517390012741, -0.0838126391172409, 0.08713477849960327, 0.08981228619813919, -0.05865386500954628, -0.09184673428535461, -0.2381758689880371, -0.0836365595459938, -0.02054508961737156, 0.007648644037544727, -0.1011723205447197, -0.1021142452955246, 0.160472571849823, -0.017347291111946106, 0.006016867700964212, 0.1525002419948578, -0.12422564625740051, 0.009820663370192051, -0.008591474033892155, -0.03120293840765953, -0.021032989025115967, 0.034275151789188385, -0.03482972830533981, -0.042875051498413086, 0.018418926745653152, -0.015791187062859535, -0.05530458688735962, 0.038608368486166, 0.035519033670425415, 0.09104570746421814, -0.09066478908061981, -0.04745640978217125, -0.018638234585523605, 0.04153209552168846, 0.23930624127388, -0.01917082816362381, -0.039317626506090164, -0.02382616326212883, 0.11053568124771118, -0.033949922770261765, -0.17704926431179047, -0.17904022336006165, 0.23855845630168915, 0.08835893124341965, 0.04060068354010582, 0.0012184764491394162, -0.013478935696184635, 0.05093654245138168, 0.26085758209228516, 0.1778721660375595, -0.032277677208185196, 0.018855299800634384, 0.0011172546073794365, -0.014514027163386345, 0.027781615033745766, 0.03140402212738991, -0.04333729296922684, 0.05668630823493004, -0.09241544455289841, -0.04931848123669624, -0.09170917421579361, -0.04369724541902542, -0.1105378046631813, -0.09935654699802399, 0.09306249022483826, -0.08668012171983719, -0.046562764793634415, -0.013972282409667969, 0.02738032303750515, 0.07250111550092697, 0.02912282571196556, 0.020992441102862358, -0.02941800467669964, -0.02832920476794243, -0.13339708745479584, 0.009916200302541256, 0.12816621363162994, -0.06948696821928024, 0.058086685836315155, 0.09290849417448044, 0.0023617707192897797, -0.0718962699174881, -0.05076820030808449, 0.09884355962276459, 0.10132869333028793, 0.08403120934963226, 0.06621672213077545, -0.02641488052904606, 0.06749719381332397, 0.06487618386745453, -0.08802181482315063, 0.12324631959199905, -0.09861170500516891, -0.07855773717164993, 0.0019854730926454067, 0.09044216573238373, -0.037699609994888306, -0.09699089825153351, -0.07676561176776886, -0.15392780303955078, 0.010837714187800884, -0.03570028766989708, -0.056746434420347214, 0.007144059054553509, 0.09238700568675995, -0.07084494829177856, 0.12083705514669418, 0.12579579651355743, 0.025343963876366615, -0.035369083285331726, -0.05425989627838135, 0.1110982820391655, 0.07836446166038513, -0.002512868493795395, -0.12871865928173065, -0.11250238865613937, -0.008375265635550022, 0.024284664541482925, -0.10598671436309814, -0.25672784447669983, -0.05958058685064316, -0.107669897377491, -0.011246741749346256, -0.04359086975455284, -0.02237546257674694, 0.09909918159246445, 0.03612395375967026, 0.014658956788480282, 0.02870340272784233, -0.011297229677438736, 0.046562954783439636, -0.11524173617362976, -0.09539259970188141 ]
null
null
transformers
## Model Details: 85% Sparse BERT-Base (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754): ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Date | September 30, 2021 | | Version | 1 | | Type | NLP - General sparse language model | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | This is a general sparse language model; in its current form, it is not ready for downstream prediction tasks, but it can be fine-tuned for several language tasks including (but not limited to) question-answering, genre natural language inference, and sentiment classification. | | Primary intended users | Anyone who needs an efficient general language model for other downstream tasks. | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is an example of how to import this model in Python: ```python import transformers model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/bert-base-uncased-sparse-85-unstructured-pruneofa') ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [80% Sparse BERT-Base uncased fine-tuned on SQuAD1.1](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [**85% Sparse BERT-Base uncased**](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [90% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [90% Sparse BERT-Large uncased](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [85% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [90% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | [English Wikipedia Dataset](https://huggingface.co/datasets/wikipedia) (2500M words). | | Motivation | To build an efficient and accurate base model for several downstream language tasks. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "tags": ["fill-mask"], "datasets": ["wikipedia", "bookcorpus"]}
fill-mask
Intel/bert-base-uncased-sparse-85-unstructured-pruneofa
[ "transformers", "pytorch", "tf", "bert", "pretraining", "fill-mask", "en", "dataset:wikipedia", "dataset:bookcorpus", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us
Model Details: 85% Sparse BERT-Base (uncased) Prune Once for All ---------------------------------------------------------------- This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021). Visualization of Prunce Once for All method from Zafrir et al. (2021): !Zafrir2021\_Fig1.png ### How to use Here is an example of how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 82, 33, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.04646419733762741, 0.09619906544685364, -0.003505624597892165, 0.13187673687934875, 0.06881929188966751, 0.02042018435895443, 0.10129685699939728, 0.0937829241156578, 0.04263918101787567, -0.0022539393976330757, 0.09815207123756409, 0.17956635355949402, 0.04215015843510628, 0.19405138492584229, -0.02936762198805809, -0.21732181310653687, 0.04671255499124527, 0.02138363942503929, -0.024529846385121346, 0.12856164574623108, 0.1004776582121849, -0.05161082372069359, 0.07771141082048416, 0.0140481386333704, -0.07947154343128204, 0.0029515798669308424, 0.02331353910267353, -0.046501126140356064, 0.11954881250858307, 0.020559996366500854, 0.08234720677137375, 0.026639612391591072, 0.06408665329217911, -0.0702764093875885, 0.026430979371070862, 0.03812626376748085, 0.002045422326773405, 0.10329370945692062, 0.021870993077754974, -0.04912981018424034, 0.09833405911922455, 0.014646691270172596, 0.035438451915979385, 0.02113576978445053, -0.1390957087278366, -0.17023126780986786, -0.09706977009773254, 0.07101147621870041, -0.008113246411085129, 0.032793447375297546, 0.015867751091718674, 0.19378601014614105, -0.003739458741620183, 0.07518614083528519, 0.28096410632133484, -0.2447177767753601, -0.034480854868888855, 0.05885599926114082, 0.1040051132440567, 0.07309781759977341, 0.020209763199090958, -0.02250572293996811, 0.04794847592711449, 0.05889666825532913, 0.07605802267789841, -0.07092418521642685, -0.06338565051555634, 0.012332052923738956, -0.1534016877412796, -0.051078882068395615, 0.10228639841079712, -0.007635035086423159, -0.09360547363758087, 0.032953664660453796, -0.1470814049243927, 0.012989145703613758, -0.05941863730549812, 0.009066218510270119, 0.05872908979654312, 0.00841506477445364, 0.03062230534851551, -0.04585077241063118, -0.061934441328048706, -0.03210833668708801, -0.083205446600914, 0.10233704745769501, 0.051711466163396835, 0.06940695643424988, -0.10781248658895493, 0.11072305589914322, -0.07965999096632004, -0.10092656314373016, -0.0033444762229919434, -0.09253914654254913, 0.06015307083725929, 0.018406737595796585, -0.002348677022382617, -0.011322601698338985, 0.0993175059556961, 0.2058434635400772, -0.01187396515160799, 0.005714996252208948, -0.022674821317195892, 0.051645342260599136, 0.04274020344018936, 0.06161646172404289, -0.10798744857311249, -0.009897040203213692, 0.11485282331705093, 0.006595463491976261, -0.016875650733709335, 0.024119624868035316, -0.046415988355875015, -0.06339625269174576, 0.007782698608934879, 0.018058693036437035, 0.06757450103759766, 0.02928677387535572, -0.09000951051712036, -0.037974804639816284, 0.03936976194381714, -0.07744257897138596, -0.044536344707012177, -0.037657856941223145, -0.033684439957141876, 0.007349902763962746, 0.12009741365909576, 0.00000791678667155793, -0.0629747286438942, 0.029072673991322517, -0.12455429881811142, 0.005472380202263594, -0.04710782319307327, -0.09957270324230194, 0.00569932023063302, -0.043344784528017044, 0.031072407960891724, -0.09699113667011261, -0.20127235352993011, 0.009779565967619419, 0.11591856926679611, -0.060562022030353546, -0.02832319401204586, 0.06231699883937836, 0.05755597725510597, -0.029969753697514534, -0.04285067692399025, 0.05279189720749855, -0.09133084863424301, 0.07150419801473618, -0.007957874797284603, 0.07021705061197281, -0.10956361889839172, 0.014990463852882385, -0.1317364126443863, 0.03783281147480011, -0.18735842406749725, 0.0024629454128444195, -0.07334604859352112, 0.03618285059928894, -0.18945418298244476, -0.06908384710550308, 0.015758590772747993, -0.011016841046512127, 0.09038769453763962, 0.16956782341003418, -0.13478928804397583, -0.012375453487038612, 0.2088467925786972, -0.027429988607764244, -0.14838775992393494, 0.1339397132396698, -0.09577279537916183, 0.18843452632427216, 0.07147268205881119, 0.1163739264011383, -0.0071843876503407955, -0.1333359330892563, 0.07740749418735504, 0.041683394461870193, 0.009281391277909279, -0.030453504994511604, 0.0810425877571106, -0.012155725620687008, -0.0993235856294632, 0.015151969157159328, -0.015263378620147705, 0.048270147293806076, -0.06616170704364777, -0.03967202082276344, -0.04278130456805229, -0.047984469681978226, -0.023484785109758377, -0.029922157526016235, 0.022853801026940346, -0.04457683116197586, -0.0468205027282238, -0.026441723108291626, 0.09388189017772675, -0.04475482925772667, 0.047819435596466064, -0.033757880330085754, 0.10927200317382812, -0.09840824455022812, -0.0018375169020146132, -0.1592605710029602, 0.14067357778549194, 0.020926080644130707, 0.0010799627052620053, 0.07892446219921112, -0.016382712870836258, 0.03493650630116463, -0.02209462784230709, 0.014470219612121582, 0.03915111720561981, 0.01737549714744091, -0.004805292468518019, -0.11552508175373077, -0.14075711369514465, 0.008008435368537903, -0.015355467796325684, 0.007525112479925156, -0.06430509686470032, -0.0018517361022531986, -0.14696671068668365, 0.04439767450094223, -0.03689759224653244, -0.014162089675664902, 0.013952125795185566, -0.054666705429553986, -0.03309384360909462, -0.053120777010917664, 0.04007452726364136, -0.010914674960076809, -0.015034838579595089, 0.0331021249294281, 0.06334690749645233, 0.10286851227283478, 0.09649232774972916, -0.02178756520152092, -0.03013763763010502, 0.03564969077706337, -0.029355613514780998, 0.002846605610102415, -0.03410746902227402, 0.05686505138874054, 0.13641773164272308, 0.017059005796909332, 0.10053375363349915, -0.12529726326465607, 0.010735242627561092, 0.021707573905587196, -0.10096848756074905, 0.04442129284143448, 0.10589798539876938, 0.12263142317533493, -0.16474103927612305, 0.07308897376060486, 0.14431621134281158, -0.011258882470428944, 0.04639559984207153, -0.012646468356251717, -0.0747164934873581, -0.03362211957573891, -0.0007539445068687201, -0.01704576052725315, 0.10897757112979889, -0.02061687782406807, 0.06241295486688614, 0.08937431871891022, -0.012568136677145958, 0.04966885223984718, -0.11308427155017853, -0.0345018170773983, 0.02172367461025715, -0.017255498096346855, -0.10694725811481476, -0.004030051175504923, -0.00838051550090313, 0.11734362691640854, 0.02491554617881775, -0.06072351336479187, -0.022046787664294243, 0.027126256376504898, -0.09421493858098984, 0.23722615838050842, -0.0608476959168911, -0.15980368852615356, -0.08972308039665222, -0.13367798924446106, 0.029423780739307404, -0.012208427302539349, 0.03844012692570686, -0.005251109134405851, -0.06377743184566498, -0.031810954213142395, 0.11817631870508194, -0.017219178378582, -0.013992913998663425, -0.034682497382164, -0.007613376714289188, 0.02917672134935856, -0.17801357805728912, -0.029136264696717262, -0.026640424504876137, 0.001200308557599783, 0.06014188751578331, -0.09111686795949936, 0.04527749493718147, 0.05160088837146759, -0.009072702378034592, -0.016293274238705635, 0.021019868552684784, 0.3450915515422821, -0.014971393160521984, 0.0018960214219987392, 0.1796909123659134, -0.02795250155031681, 0.05674537271261215, 0.0886242613196373, 0.04283967614173889, -0.0660216435790062, -0.0021509621292352676, -0.04396893456578255, -0.050211645662784576, -0.26869186758995056, -0.05153411254286766, -0.04698660969734192, 0.032327137887477875, 0.10022158920764923, 0.01104186475276947, -0.044027410447597504, 0.11295568943023682, 0.004194836597889662, 0.120957151055336, -0.034639108926057816, 0.07199142873287201, -0.021344095468521118, 0.049396853893995285, 0.08848907053470612, -0.037830039858818054, -0.02733193151652813, 0.0909806489944458, 0.056432776153087616, 0.1765664666891098, -0.004392096772789955, 0.06798205524682999, 0.09119169414043427, 0.12821289896965027, 0.021672967821359634, 0.20658916234970093, -0.06211327761411667, 0.029539009556174278, -0.08766520768404007, -0.04640602320432663, -0.07178565114736557, 0.009709753096103668, -0.09980711340904236, -0.028758179396390915, -0.03543886914849281, -0.0944170281291008, 0.03431479260325432, 0.18255236744880676, 0.0896492674946785, -0.2664352357387543, -0.06192310154438019, 0.02010154351592064, -0.054099686443805695, -0.07641605287790298, 0.01674954779446125, -0.09085651487112045, -0.12749987840652466, -0.0002102451107930392, -0.06221115216612816, 0.13430161774158478, 0.005304502788931131, 0.013980443589389324, -0.12169831246137619, 0.004265373107045889, -0.07744697481393814, 0.07628553360700607, -0.2400549203157425, 0.2139507383108139, 0.0008671729010529816, 0.004294982645660639, -0.07101041823625565, 0.01574523188173771, 0.03443646430969238, 0.022907577455043793, 0.12182141840457916, 0.009736071340739727, 0.13015440106391907, -0.016462592408061028, -0.09648121148347855, 0.07971688359975815, -0.046849705278873444, -0.044845715165138245, 0.07842982560396194, -0.006889769341796637, 0.023420246317982674, -0.009577808901667595, 0.08666758239269257, -0.108444944024086, -0.0704132616519928, 0.05382269248366356, -0.11109859496355057, -0.12670086324214935, -0.03415827453136444, -0.04707074165344238, 0.04517968371510506, 0.11828193068504333, -0.027069294825196266, -0.1114387959241867, -0.09599613398313522, 0.0906103104352951, 0.18900516629219055, -0.09286724776029587, 0.06971193850040436, -0.07033731043338776, -0.05964577943086624, -0.046254344284534454, -0.1725865751504898, 0.09286896139383316, -0.091660276055336, -0.09146201610565186, -0.04082903638482094, 0.07260698080062866, 0.03972538560628891, 0.0578758530318737, 0.02260582335293293, 0.022993439808487892, -0.1346970647573471, -0.05646015331149101, -0.06538238376379013, -0.06710521131753922, 0.17099310457706451, 0.06563037633895874, -0.06406581401824951, -0.08293858915567398, -0.05484239012002945, -0.0166874248534441, 0.09554867446422577, 0.23266001045703888, -0.019850099459290504, 0.07833829522132874, 0.1160021647810936, -0.08052132278680801, -0.1576647013425827, -0.046298325061798096, 0.0012880914146080613, 0.0033643441274762154, 0.026477720588445663, -0.15680894255638123, 0.1282130926847458, 0.09839047491550446, -0.037656571716070175, 0.060996685177087784, -0.2288830280303955, -0.1261749565601349, 0.19511829316616058, 0.05563366040587425, 0.23824015259742737, -0.12021651864051819, -0.0007087447447702289, -0.04974713549017906, -0.2659578323364258, 0.1575612723827362, -0.08658159524202347, 0.06853422522544861, -0.008514859713613987, 0.07144787907600403, 0.026438716799020767, -0.059315163642168045, 0.12971778213977814, -0.018171649426221848, 0.025836622342467308, -0.04874671623110771, -0.06698711961507797, -0.09121442586183548, -0.017900852486491203, 0.11114079505205154, -0.0014966820599511266, 0.07953004539012909, -0.08911391347646713, -0.025258729234337807, -0.08740099519491196, 0.07698796689510345, -0.027277691289782524, -0.11360616236925125, -0.13055670261383057, 0.03313927724957466, 0.03299948573112488, 0.00947196502238512, 0.15957999229431152, 0.02305508777499199, 0.0361001081764698, 0.10230771452188492, 0.021524090319871902, -0.021487804129719734, -0.060388244688510895, -0.002921359846368432, -0.031188849359750748, 0.0300509762018919, -0.2718977928161621, 0.02915230579674244, 0.0983261913061142, -0.0008662390173412859, 0.0735991895198822, 0.042850784957408905, -0.09346340596675873, -0.02333933487534523, 0.07169364392757416, -0.16893981397151947, -0.057010550051927567, 0.03703784570097923, -0.03412294015288353, -0.08266168087720871, 0.04590695723891258, 0.16659124195575714, -0.07871547341346741, -0.0925750583410263, -0.002766503719612956, 0.06157289445400238, -0.0867011696100235, 0.2100519984960556, 0.08582325279712677, 0.03747359290719032, -0.12066598236560822, 0.057650573551654816, 0.07199442386627197, 0.020645471289753914, -0.034980736672878265, 0.057112857699394226, -0.067209891974926, -0.042038433253765106, 0.11725462973117828, 0.0741593986749649, -0.11108019202947617, 0.03141433745622635, -0.07816789299249649, 0.011492862366139889, 0.030422475188970566, 0.1364697962999344, 0.09189078211784363, 0.0020027062855660915, -0.0017661380115896463, -0.03820343315601349, -0.03160309046506882, 0.0389782078564167, 0.11826944351196289, 0.04775945842266083, -0.02997574955224991, 0.0560438446700573, -0.05073009431362152, 0.08515048772096634, -0.05874600633978844, 0.062030814588069916, -0.13693732023239136, 0.0092888493090868, -0.17243368923664093, 0.03218632936477661, -0.09466887265443802, -0.026682697236537933, -0.029961569234728813, -0.07151085883378983, -0.03826359286904335, 0.00853442307561636, -0.1206841692328453, 0.005430174525827169, -0.033886004239320755, 0.05689460039138794, -0.09383587539196014, -0.013927696272730827, 0.11730530112981796, -0.045093100517988205, 0.10288134962320328, 0.09799221903085709, -0.03624172508716583, 0.06305212527513504, -0.14700959622859955, -0.032604217529296875, 0.003586796810850501, 0.01570708304643631, 0.04514722153544426, -0.041244592517614365, 0.029960690066218376, -0.0076974486000835896, 0.05072908103466034, -0.028613463044166565, 0.10040909796953201, -0.134556844830513, -0.05697929114103317, 0.008602619171142578, -0.04522007703781128, -0.008636288344860077, -0.0084407739341259, 0.034776732325553894, 0.08843027800321579, 0.109218530356884, -0.019238587468862534, 0.047836918383836746, -0.18134935200214386, -0.007583284750580788, -0.02448669821023941, -0.12231865525245667, -0.00031751865753903985, -0.0713614970445633, 0.028152169659733772, -0.03130616247653961, 0.1968500316143036, 0.06333830207586288, 0.016029546037316322, -0.012612972408533096, 0.030693618580698967, 0.09440647065639496, 0.0046382322907447815, 0.16362734138965607, -0.007790665607899427, -0.0004008817486464977, -0.07431754469871521, 0.023071158677339554, 0.07595504820346832, 0.05196605622768402, 0.07366163283586502, 0.18674644827842712, 0.07067055255174637, 0.04845725744962692, -0.014199085533618927, -0.0112506914883852, 0.012966644018888474, -0.12442715466022491, 0.06597156822681427, 0.06341385096311569, 0.04169613495469093, 0.1079867035150528, 0.06933443993330002, -0.08291852474212646, 0.04213181510567665, -0.020915202796459198, -0.05668844282627106, -0.12310822308063507, -0.0382838174700737, -0.058819979429244995, -0.08120433241128922, -0.020930128172039986, -0.12325355410575867, 0.010292069986462593, 0.13967488706111908, 0.04024744778871536, -0.043653056025505066, 0.04728461802005768, 0.03235583007335663, -0.11436930298805237, 0.04229597747325897, 0.03492353484034538, -0.02237284556031227, -0.0010836176807060838, -0.0541294664144516, -0.04086713492870331, 0.07111083716154099, 0.03513558954000473, -0.007795371115207672, -0.016339940950274467, 0.052107781171798706, -0.052598465234041214, -0.075042724609375, -0.03657211363315582, 0.01789657585322857, -0.0003967114316765219, 0.14069531857967377, 0.014299988746643066, 0.022216137498617172, 0.021195584908127785, 0.2174912691116333, -0.02169371396303177, -0.11038975417613983, -0.13102151453495026, 0.267773300409317, -0.03614902123808861, 0.0003416679392103106, 0.03652020916342735, -0.04572395607829094, -0.041638024151325226, 0.2730238735675812, 0.22737595438957214, -0.11437959223985672, -0.03709881007671356, 0.015715913847088814, -0.0008879282395355403, 0.030672134831547737, 0.1113106831908226, 0.0725155919790268, 0.20091520249843597, -0.09396816790103912, 0.040259942412376404, -0.037109460681676865, -0.003970297519117594, -0.12372349202632904, 0.052782926708459854, 0.03009255975484848, -0.038967642933130264, -0.008835890330374241, 0.11540458351373672, -0.07812479883432388, -0.208320751786232, -0.10174059122800827, -0.11275113373994827, -0.17107421159744263, -0.0725359097123146, -0.04927998036146164, -0.0038550132885575294, 0.07571186870336533, -0.07294910401105881, 0.03135440871119499, 0.006601715460419655, 0.011240842752158642, -0.12757106125354767, -0.06707673519849777, 0.15540774166584015, -0.008588748052716255, 0.2081921100616455, 0.03861241787672043, 0.05201426520943642, 0.08384758979082108, 0.0008951699128374457, -0.09329032152891159, 0.02151692844927311, 0.024675048887729645, 0.02830878086388111, 0.02321619726717472, -0.009585062973201275, -0.007853381335735321, -0.12431196868419647, 0.05395198613405228, -0.07499603182077408, -0.011061437427997589, 0.070880226790905, 0.0022894837893545628, -0.10823185741901398, -0.003046103985980153, -0.15602894127368927, 0.07003311812877655, 0.12292416393756866, -0.08628350496292114, 0.03853125870227814, -0.11317499727010727, 0.06640280783176422, 0.07208959758281708, -0.006482421420514584, -0.06605913490056992, -0.1435859501361847, -0.01452631875872612, -0.017322801053524017, -0.01577932760119438, -0.19950838387012482, 0.03204595297574997, -0.044009413570165634, -0.017088687047362328, -0.1009540930390358, 0.11261873692274094, 0.051501791924238205, -0.0058689904399216175, 0.006718900054693222, -0.07187950611114502, -0.050289496779441833, 0.042642559856176376, -0.0708211213350296, -0.08389872312545776 ]
null
null
transformers
## Model Details: 90% Sparse BERT-Base (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754): ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Date | September 30, 2021 | | Version | 1 | | Type | NLP - General sparse language model | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | This is a general sparse language model; in its current form, it is not ready for downstream prediction tasks, but it can be fine-tuned for several language tasks including (but not limited to) question-answering, genre natural language inference, and sentiment classification. | | Primary intended users | Anyone who needs an efficient general language model for other downstream tasks. | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is an example of how to import this model in Python: ```python import transformers model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/bert-base-uncased-sparse-90-unstructured-pruneofa') ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [80% Sparse BERT-Base uncased fine-tuned on SQuAD1.1](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [85% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [**90% Sparse BERT-Base uncased**](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [90% Sparse BERT-Large uncased](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [85% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [90% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | [English Wikipedia Dataset](https://huggingface.co/datasets/wikipedia) (2500M words). | | Motivation | To build an efficient and accurate base model for several downstream language tasks. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "tags": ["fill-mask", "bert"], "datasets": ["wikipedia", "bookcorpus"]}
fill-mask
Intel/bert-base-uncased-sparse-90-unstructured-pruneofa
[ "transformers", "pytorch", "tf", "bert", "pretraining", "fill-mask", "en", "dataset:wikipedia", "dataset:bookcorpus", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us
Model Details: 90% Sparse BERT-Base (uncased) Prune Once for All ---------------------------------------------------------------- This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021). Visualization of Prunce Once for All method from Zafrir et al. (2021): !Zafrir2021\_Fig1.png ### How to use Here is an example of how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 82, 33, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.04646419733762741, 0.09619906544685364, -0.003505624597892165, 0.13187673687934875, 0.06881929188966751, 0.02042018435895443, 0.10129685699939728, 0.0937829241156578, 0.04263918101787567, -0.0022539393976330757, 0.09815207123756409, 0.17956635355949402, 0.04215015843510628, 0.19405138492584229, -0.02936762198805809, -0.21732181310653687, 0.04671255499124527, 0.02138363942503929, -0.024529846385121346, 0.12856164574623108, 0.1004776582121849, -0.05161082372069359, 0.07771141082048416, 0.0140481386333704, -0.07947154343128204, 0.0029515798669308424, 0.02331353910267353, -0.046501126140356064, 0.11954881250858307, 0.020559996366500854, 0.08234720677137375, 0.026639612391591072, 0.06408665329217911, -0.0702764093875885, 0.026430979371070862, 0.03812626376748085, 0.002045422326773405, 0.10329370945692062, 0.021870993077754974, -0.04912981018424034, 0.09833405911922455, 0.014646691270172596, 0.035438451915979385, 0.02113576978445053, -0.1390957087278366, -0.17023126780986786, -0.09706977009773254, 0.07101147621870041, -0.008113246411085129, 0.032793447375297546, 0.015867751091718674, 0.19378601014614105, -0.003739458741620183, 0.07518614083528519, 0.28096410632133484, -0.2447177767753601, -0.034480854868888855, 0.05885599926114082, 0.1040051132440567, 0.07309781759977341, 0.020209763199090958, -0.02250572293996811, 0.04794847592711449, 0.05889666825532913, 0.07605802267789841, -0.07092418521642685, -0.06338565051555634, 0.012332052923738956, -0.1534016877412796, -0.051078882068395615, 0.10228639841079712, -0.007635035086423159, -0.09360547363758087, 0.032953664660453796, -0.1470814049243927, 0.012989145703613758, -0.05941863730549812, 0.009066218510270119, 0.05872908979654312, 0.00841506477445364, 0.03062230534851551, -0.04585077241063118, -0.061934441328048706, -0.03210833668708801, -0.083205446600914, 0.10233704745769501, 0.051711466163396835, 0.06940695643424988, -0.10781248658895493, 0.11072305589914322, -0.07965999096632004, -0.10092656314373016, -0.0033444762229919434, -0.09253914654254913, 0.06015307083725929, 0.018406737595796585, -0.002348677022382617, -0.011322601698338985, 0.0993175059556961, 0.2058434635400772, -0.01187396515160799, 0.005714996252208948, -0.022674821317195892, 0.051645342260599136, 0.04274020344018936, 0.06161646172404289, -0.10798744857311249, -0.009897040203213692, 0.11485282331705093, 0.006595463491976261, -0.016875650733709335, 0.024119624868035316, -0.046415988355875015, -0.06339625269174576, 0.007782698608934879, 0.018058693036437035, 0.06757450103759766, 0.02928677387535572, -0.09000951051712036, -0.037974804639816284, 0.03936976194381714, -0.07744257897138596, -0.044536344707012177, -0.037657856941223145, -0.033684439957141876, 0.007349902763962746, 0.12009741365909576, 0.00000791678667155793, -0.0629747286438942, 0.029072673991322517, -0.12455429881811142, 0.005472380202263594, -0.04710782319307327, -0.09957270324230194, 0.00569932023063302, -0.043344784528017044, 0.031072407960891724, -0.09699113667011261, -0.20127235352993011, 0.009779565967619419, 0.11591856926679611, -0.060562022030353546, -0.02832319401204586, 0.06231699883937836, 0.05755597725510597, -0.029969753697514534, -0.04285067692399025, 0.05279189720749855, -0.09133084863424301, 0.07150419801473618, -0.007957874797284603, 0.07021705061197281, -0.10956361889839172, 0.014990463852882385, -0.1317364126443863, 0.03783281147480011, -0.18735842406749725, 0.0024629454128444195, -0.07334604859352112, 0.03618285059928894, -0.18945418298244476, -0.06908384710550308, 0.015758590772747993, -0.011016841046512127, 0.09038769453763962, 0.16956782341003418, -0.13478928804397583, -0.012375453487038612, 0.2088467925786972, -0.027429988607764244, -0.14838775992393494, 0.1339397132396698, -0.09577279537916183, 0.18843452632427216, 0.07147268205881119, 0.1163739264011383, -0.0071843876503407955, -0.1333359330892563, 0.07740749418735504, 0.041683394461870193, 0.009281391277909279, -0.030453504994511604, 0.0810425877571106, -0.012155725620687008, -0.0993235856294632, 0.015151969157159328, -0.015263378620147705, 0.048270147293806076, -0.06616170704364777, -0.03967202082276344, -0.04278130456805229, -0.047984469681978226, -0.023484785109758377, -0.029922157526016235, 0.022853801026940346, -0.04457683116197586, -0.0468205027282238, -0.026441723108291626, 0.09388189017772675, -0.04475482925772667, 0.047819435596466064, -0.033757880330085754, 0.10927200317382812, -0.09840824455022812, -0.0018375169020146132, -0.1592605710029602, 0.14067357778549194, 0.020926080644130707, 0.0010799627052620053, 0.07892446219921112, -0.016382712870836258, 0.03493650630116463, -0.02209462784230709, 0.014470219612121582, 0.03915111720561981, 0.01737549714744091, -0.004805292468518019, -0.11552508175373077, -0.14075711369514465, 0.008008435368537903, -0.015355467796325684, 0.007525112479925156, -0.06430509686470032, -0.0018517361022531986, -0.14696671068668365, 0.04439767450094223, -0.03689759224653244, -0.014162089675664902, 0.013952125795185566, -0.054666705429553986, -0.03309384360909462, -0.053120777010917664, 0.04007452726364136, -0.010914674960076809, -0.015034838579595089, 0.0331021249294281, 0.06334690749645233, 0.10286851227283478, 0.09649232774972916, -0.02178756520152092, -0.03013763763010502, 0.03564969077706337, -0.029355613514780998, 0.002846605610102415, -0.03410746902227402, 0.05686505138874054, 0.13641773164272308, 0.017059005796909332, 0.10053375363349915, -0.12529726326465607, 0.010735242627561092, 0.021707573905587196, -0.10096848756074905, 0.04442129284143448, 0.10589798539876938, 0.12263142317533493, -0.16474103927612305, 0.07308897376060486, 0.14431621134281158, -0.011258882470428944, 0.04639559984207153, -0.012646468356251717, -0.0747164934873581, -0.03362211957573891, -0.0007539445068687201, -0.01704576052725315, 0.10897757112979889, -0.02061687782406807, 0.06241295486688614, 0.08937431871891022, -0.012568136677145958, 0.04966885223984718, -0.11308427155017853, -0.0345018170773983, 0.02172367461025715, -0.017255498096346855, -0.10694725811481476, -0.004030051175504923, -0.00838051550090313, 0.11734362691640854, 0.02491554617881775, -0.06072351336479187, -0.022046787664294243, 0.027126256376504898, -0.09421493858098984, 0.23722615838050842, -0.0608476959168911, -0.15980368852615356, -0.08972308039665222, -0.13367798924446106, 0.029423780739307404, -0.012208427302539349, 0.03844012692570686, -0.005251109134405851, -0.06377743184566498, -0.031810954213142395, 0.11817631870508194, -0.017219178378582, -0.013992913998663425, -0.034682497382164, -0.007613376714289188, 0.02917672134935856, -0.17801357805728912, -0.029136264696717262, -0.026640424504876137, 0.001200308557599783, 0.06014188751578331, -0.09111686795949936, 0.04527749493718147, 0.05160088837146759, -0.009072702378034592, -0.016293274238705635, 0.021019868552684784, 0.3450915515422821, -0.014971393160521984, 0.0018960214219987392, 0.1796909123659134, -0.02795250155031681, 0.05674537271261215, 0.0886242613196373, 0.04283967614173889, -0.0660216435790062, -0.0021509621292352676, -0.04396893456578255, -0.050211645662784576, -0.26869186758995056, -0.05153411254286766, -0.04698660969734192, 0.032327137887477875, 0.10022158920764923, 0.01104186475276947, -0.044027410447597504, 0.11295568943023682, 0.004194836597889662, 0.120957151055336, -0.034639108926057816, 0.07199142873287201, -0.021344095468521118, 0.049396853893995285, 0.08848907053470612, -0.037830039858818054, -0.02733193151652813, 0.0909806489944458, 0.056432776153087616, 0.1765664666891098, -0.004392096772789955, 0.06798205524682999, 0.09119169414043427, 0.12821289896965027, 0.021672967821359634, 0.20658916234970093, -0.06211327761411667, 0.029539009556174278, -0.08766520768404007, -0.04640602320432663, -0.07178565114736557, 0.009709753096103668, -0.09980711340904236, -0.028758179396390915, -0.03543886914849281, -0.0944170281291008, 0.03431479260325432, 0.18255236744880676, 0.0896492674946785, -0.2664352357387543, -0.06192310154438019, 0.02010154351592064, -0.054099686443805695, -0.07641605287790298, 0.01674954779446125, -0.09085651487112045, -0.12749987840652466, -0.0002102451107930392, -0.06221115216612816, 0.13430161774158478, 0.005304502788931131, 0.013980443589389324, -0.12169831246137619, 0.004265373107045889, -0.07744697481393814, 0.07628553360700607, -0.2400549203157425, 0.2139507383108139, 0.0008671729010529816, 0.004294982645660639, -0.07101041823625565, 0.01574523188173771, 0.03443646430969238, 0.022907577455043793, 0.12182141840457916, 0.009736071340739727, 0.13015440106391907, -0.016462592408061028, -0.09648121148347855, 0.07971688359975815, -0.046849705278873444, -0.044845715165138245, 0.07842982560396194, -0.006889769341796637, 0.023420246317982674, -0.009577808901667595, 0.08666758239269257, -0.108444944024086, -0.0704132616519928, 0.05382269248366356, -0.11109859496355057, -0.12670086324214935, -0.03415827453136444, -0.04707074165344238, 0.04517968371510506, 0.11828193068504333, -0.027069294825196266, -0.1114387959241867, -0.09599613398313522, 0.0906103104352951, 0.18900516629219055, -0.09286724776029587, 0.06971193850040436, -0.07033731043338776, -0.05964577943086624, -0.046254344284534454, -0.1725865751504898, 0.09286896139383316, -0.091660276055336, -0.09146201610565186, -0.04082903638482094, 0.07260698080062866, 0.03972538560628891, 0.0578758530318737, 0.02260582335293293, 0.022993439808487892, -0.1346970647573471, -0.05646015331149101, -0.06538238376379013, -0.06710521131753922, 0.17099310457706451, 0.06563037633895874, -0.06406581401824951, -0.08293858915567398, -0.05484239012002945, -0.0166874248534441, 0.09554867446422577, 0.23266001045703888, -0.019850099459290504, 0.07833829522132874, 0.1160021647810936, -0.08052132278680801, -0.1576647013425827, -0.046298325061798096, 0.0012880914146080613, 0.0033643441274762154, 0.026477720588445663, -0.15680894255638123, 0.1282130926847458, 0.09839047491550446, -0.037656571716070175, 0.060996685177087784, -0.2288830280303955, -0.1261749565601349, 0.19511829316616058, 0.05563366040587425, 0.23824015259742737, -0.12021651864051819, -0.0007087447447702289, -0.04974713549017906, -0.2659578323364258, 0.1575612723827362, -0.08658159524202347, 0.06853422522544861, -0.008514859713613987, 0.07144787907600403, 0.026438716799020767, -0.059315163642168045, 0.12971778213977814, -0.018171649426221848, 0.025836622342467308, -0.04874671623110771, -0.06698711961507797, -0.09121442586183548, -0.017900852486491203, 0.11114079505205154, -0.0014966820599511266, 0.07953004539012909, -0.08911391347646713, -0.025258729234337807, -0.08740099519491196, 0.07698796689510345, -0.027277691289782524, -0.11360616236925125, -0.13055670261383057, 0.03313927724957466, 0.03299948573112488, 0.00947196502238512, 0.15957999229431152, 0.02305508777499199, 0.0361001081764698, 0.10230771452188492, 0.021524090319871902, -0.021487804129719734, -0.060388244688510895, -0.002921359846368432, -0.031188849359750748, 0.0300509762018919, -0.2718977928161621, 0.02915230579674244, 0.0983261913061142, -0.0008662390173412859, 0.0735991895198822, 0.042850784957408905, -0.09346340596675873, -0.02333933487534523, 0.07169364392757416, -0.16893981397151947, -0.057010550051927567, 0.03703784570097923, -0.03412294015288353, -0.08266168087720871, 0.04590695723891258, 0.16659124195575714, -0.07871547341346741, -0.0925750583410263, -0.002766503719612956, 0.06157289445400238, -0.0867011696100235, 0.2100519984960556, 0.08582325279712677, 0.03747359290719032, -0.12066598236560822, 0.057650573551654816, 0.07199442386627197, 0.020645471289753914, -0.034980736672878265, 0.057112857699394226, -0.067209891974926, -0.042038433253765106, 0.11725462973117828, 0.0741593986749649, -0.11108019202947617, 0.03141433745622635, -0.07816789299249649, 0.011492862366139889, 0.030422475188970566, 0.1364697962999344, 0.09189078211784363, 0.0020027062855660915, -0.0017661380115896463, -0.03820343315601349, -0.03160309046506882, 0.0389782078564167, 0.11826944351196289, 0.04775945842266083, -0.02997574955224991, 0.0560438446700573, -0.05073009431362152, 0.08515048772096634, -0.05874600633978844, 0.062030814588069916, -0.13693732023239136, 0.0092888493090868, -0.17243368923664093, 0.03218632936477661, -0.09466887265443802, -0.026682697236537933, -0.029961569234728813, -0.07151085883378983, -0.03826359286904335, 0.00853442307561636, -0.1206841692328453, 0.005430174525827169, -0.033886004239320755, 0.05689460039138794, -0.09383587539196014, -0.013927696272730827, 0.11730530112981796, -0.045093100517988205, 0.10288134962320328, 0.09799221903085709, -0.03624172508716583, 0.06305212527513504, -0.14700959622859955, -0.032604217529296875, 0.003586796810850501, 0.01570708304643631, 0.04514722153544426, -0.041244592517614365, 0.029960690066218376, -0.0076974486000835896, 0.05072908103466034, -0.028613463044166565, 0.10040909796953201, -0.134556844830513, -0.05697929114103317, 0.008602619171142578, -0.04522007703781128, -0.008636288344860077, -0.0084407739341259, 0.034776732325553894, 0.08843027800321579, 0.109218530356884, -0.019238587468862534, 0.047836918383836746, -0.18134935200214386, -0.007583284750580788, -0.02448669821023941, -0.12231865525245667, -0.00031751865753903985, -0.0713614970445633, 0.028152169659733772, -0.03130616247653961, 0.1968500316143036, 0.06333830207586288, 0.016029546037316322, -0.012612972408533096, 0.030693618580698967, 0.09440647065639496, 0.0046382322907447815, 0.16362734138965607, -0.007790665607899427, -0.0004008817486464977, -0.07431754469871521, 0.023071158677339554, 0.07595504820346832, 0.05196605622768402, 0.07366163283586502, 0.18674644827842712, 0.07067055255174637, 0.04845725744962692, -0.014199085533618927, -0.0112506914883852, 0.012966644018888474, -0.12442715466022491, 0.06597156822681427, 0.06341385096311569, 0.04169613495469093, 0.1079867035150528, 0.06933443993330002, -0.08291852474212646, 0.04213181510567665, -0.020915202796459198, -0.05668844282627106, -0.12310822308063507, -0.0382838174700737, -0.058819979429244995, -0.08120433241128922, -0.020930128172039986, -0.12325355410575867, 0.010292069986462593, 0.13967488706111908, 0.04024744778871536, -0.043653056025505066, 0.04728461802005768, 0.03235583007335663, -0.11436930298805237, 0.04229597747325897, 0.03492353484034538, -0.02237284556031227, -0.0010836176807060838, -0.0541294664144516, -0.04086713492870331, 0.07111083716154099, 0.03513558954000473, -0.007795371115207672, -0.016339940950274467, 0.052107781171798706, -0.052598465234041214, -0.075042724609375, -0.03657211363315582, 0.01789657585322857, -0.0003967114316765219, 0.14069531857967377, 0.014299988746643066, 0.022216137498617172, 0.021195584908127785, 0.2174912691116333, -0.02169371396303177, -0.11038975417613983, -0.13102151453495026, 0.267773300409317, -0.03614902123808861, 0.0003416679392103106, 0.03652020916342735, -0.04572395607829094, -0.041638024151325226, 0.2730238735675812, 0.22737595438957214, -0.11437959223985672, -0.03709881007671356, 0.015715913847088814, -0.0008879282395355403, 0.030672134831547737, 0.1113106831908226, 0.0725155919790268, 0.20091520249843597, -0.09396816790103912, 0.040259942412376404, -0.037109460681676865, -0.003970297519117594, -0.12372349202632904, 0.052782926708459854, 0.03009255975484848, -0.038967642933130264, -0.008835890330374241, 0.11540458351373672, -0.07812479883432388, -0.208320751786232, -0.10174059122800827, -0.11275113373994827, -0.17107421159744263, -0.0725359097123146, -0.04927998036146164, -0.0038550132885575294, 0.07571186870336533, -0.07294910401105881, 0.03135440871119499, 0.006601715460419655, 0.011240842752158642, -0.12757106125354767, -0.06707673519849777, 0.15540774166584015, -0.008588748052716255, 0.2081921100616455, 0.03861241787672043, 0.05201426520943642, 0.08384758979082108, 0.0008951699128374457, -0.09329032152891159, 0.02151692844927311, 0.024675048887729645, 0.02830878086388111, 0.02321619726717472, -0.009585062973201275, -0.007853381335735321, -0.12431196868419647, 0.05395198613405228, -0.07499603182077408, -0.011061437427997589, 0.070880226790905, 0.0022894837893545628, -0.10823185741901398, -0.003046103985980153, -0.15602894127368927, 0.07003311812877655, 0.12292416393756866, -0.08628350496292114, 0.03853125870227814, -0.11317499727010727, 0.06640280783176422, 0.07208959758281708, -0.006482421420514584, -0.06605913490056992, -0.1435859501361847, -0.01452631875872612, -0.017322801053524017, -0.01577932760119438, -0.19950838387012482, 0.03204595297574997, -0.044009413570165634, -0.017088687047362328, -0.1009540930390358, 0.11261873692274094, 0.051501791924238205, -0.0058689904399216175, 0.006718900054693222, -0.07187950611114502, -0.050289496779441833, 0.042642559856176376, -0.0708211213350296, -0.08389872312545776 ]
null
null
transformers
## Model Details: 80% 1x4 Block Sparse BERT-Base (uncased) Fine Tuned on SQuADv1.1 This model has been fine-tuned for the NLP task of question answering, trained on the SQuAD 1.1 dataset. It is a result of fine-tuning a Prune Once For All 80% 1x4 block sparse pre-trained BERT-Base model, combined with knowledge distillation. > We present a new method for training sparse pre-trained Transformer language models by integrating weight pruning and model distillation. These sparse pre-trained models can be used to transfer learning for a wide range of tasks while maintaining their sparsity pattern. We show how the compressed sparse pre-trained models we trained transfer their knowledge to five different downstream natural language tasks with minimal accuracy loss. | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Model Card Authors | Intel | | Date | February 27, 2022 | | Version | 1 | | Type | NLP - Question Answering | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Paper: Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). More details can be found in their paper. ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | You can use the model for the NLP task of question answering: given a corpus of text, you can ask it a question about that text, and it will find the answer in the text. | | Primary intended users | Anyone doing question answering | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is how to import this model in Python: ```python import transformers import model_compression_research as model_comp model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa') scheduler = mcr.pruning_scheduler_factory(model, '../../examples/transformers/question-answering/config/lock_config.json') # Train your model... scheduler.remove_pruning() ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [**80% 1x4 Block Sparse BERT-Base uncased**](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [85% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [90% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [90% Sparse BERT-Large uncased](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [85% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [90% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | SQuAD1.1: "Stanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable." (https://huggingface.co/datasets/squad)| | Motivation | To build an efficient and accurate model for the question answering task. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." Following the pre-training on Wikipedia, fine-tuning is completed on the SQuAD1.1 dataset. | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "tags": ["question-answering", "bert"], "datasets": ["squad"]}
question-answering
Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa
[ "transformers", "pytorch", "bert", "question-answering", "en", "dataset:squad", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "model-index", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us
Model Details: 80% 1x4 Block Sparse BERT-Base (uncased) Fine Tuned on SQuADv1.1 ------------------------------------------------------------------------------- This model has been fine-tuned for the NLP task of question answering, trained on the SQuAD 1.1 dataset. It is a result of fine-tuning a Prune Once For All 80% 1x4 block sparse pre-trained BERT-Base model, combined with knowledge distillation. > > We present a new method for training sparse pre-trained Transformer language models by integrating weight pruning and model distillation. These sparse pre-trained models can be used to transfer learning for a wide range of tasks while maintaining their sparsity pattern. We show how the compressed sparse pre-trained models we trained transfer their knowledge to five different downstream natural language tasks with minimal accuracy loss. > > > Visualization of Prunce Once for All method from Zafrir et al. (2021). More details can be found in their paper. !Zafrir2021\_Fig1.png ### How to use Here is how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n", "### How to use\n\n\nHere is how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 79, 30, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n### How to use\n\n\nHere is how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.04805303364992142, 0.13636916875839233, -0.00298432563431561, 0.11283785104751587, 0.08595819026231766, 0.009002885781228542, 0.0891396701335907, 0.09434591978788376, 0.062281250953674316, 0.010859135538339615, 0.10335344076156616, 0.18105916678905487, 0.034041762351989746, 0.17215223610401154, -0.059228383004665375, -0.2048196643590927, 0.039442505687475204, 0.05908671393990517, 0.008656369522213936, 0.13115908205509186, 0.09296420216560364, -0.07773859053850174, 0.07119474560022354, 0.025508327409625053, -0.10342122614383698, 0.012830553576350212, 0.01715736836194992, -0.04474234953522682, 0.09079381078481674, 0.02576603554189205, 0.05305105447769165, 0.0411980114877224, 0.042068902403116226, -0.11101022362709045, 0.019814088940620422, 0.020483270287513733, 0.004333758261054754, 0.1216442883014679, 0.05803681164979935, -0.06298626214265823, 0.0664031058549881, 0.023858152329921722, 0.004639997147023678, 0.029462337493896484, -0.13078747689723969, -0.20966240763664246, -0.12413641810417175, 0.09072955697774887, -0.006494761910289526, 0.041492704302072525, 0.022365130484104156, 0.2171047031879425, 0.001264293328858912, 0.057460591197013855, 0.3040505647659302, -0.24667136371135712, -0.023345207795500755, 0.059748370200395584, 0.11886830627918243, 0.09474755078554153, 0.005764708388596773, -0.022462420165538788, 0.06538686901330948, 0.044514212757349014, 0.05686609819531441, -0.07678326219320297, -0.030025232583284378, 0.025624524801969528, -0.14955681562423706, -0.06418973952531815, 0.12973405420780182, 0.0322238989174366, -0.08277389407157898, 0.031973276287317276, -0.11168419569730759, 0.011659141629934311, -0.07043393701314926, -0.000914554693736136, 0.06487423181533813, 0.006965217646211386, 0.032709017395973206, -0.0515255369246006, -0.07734864205121994, -0.040589310228824615, -0.08936958760023117, 0.07561205327510834, 0.04165907949209213, 0.07329172641038895, -0.1112268790602684, 0.10442255437374115, -0.05835077911615372, -0.08889766037464142, -0.009608612395823002, -0.09269393235445023, 0.09109575301408768, 0.02398252859711647, 0.005427919793874025, 0.03289955481886864, 0.09024672210216522, 0.2204025536775589, 0.0018727130955085158, -0.018599452450871468, -0.017836907878518105, 0.042781244963407516, 0.061856113374233246, 0.10526618361473083, -0.10987896472215652, -0.021274562925100327, 0.10027977079153061, -0.008391767740249634, -0.04623597487807274, 0.02587951347231865, -0.05793730914592743, -0.06671278923749924, 0.0249932911247015, 0.035332560539245605, 0.1184096485376358, 0.009051528759300709, -0.07908949255943298, -0.055038489401340485, 0.0786411315202713, -0.06529377400875092, -0.007371176034212112, -0.032731663435697556, -0.021025771275162697, 0.02301277033984661, 0.0987643450498581, 0.013840780593454838, -0.05890680104494095, -0.006840855348855257, -0.12556838989257812, 0.014420589432120323, -0.04660249873995781, -0.09413167834281921, 0.013847148977220058, -0.07256630808115005, 0.051661401987075806, -0.10956762731075287, -0.14452528953552246, -0.007700957823544741, 0.08140789717435837, -0.06725773960351944, -0.032075345516204834, 0.08167307078838348, 0.05343015119433403, -0.0397670678794384, -0.0676402896642685, 0.05107104033231735, -0.07069656997919083, 0.06409960985183716, -0.008982134982943535, 0.05634511262178421, -0.10032369941473007, 0.04032305255532265, -0.14000552892684937, 0.038893502205610275, -0.14196504652500153, 0.02521444670855999, -0.08279602229595184, 0.030415846034884453, -0.20243816077709198, -0.06141960248351097, 0.05456254631280899, -0.030254019424319267, 0.08586551249027252, 0.15695136785507202, -0.09415113925933838, -0.004196430090814829, 0.18113425374031067, -0.008681458421051502, -0.16903318464756012, 0.10715893656015396, -0.08041558414697647, 0.15909042954444885, 0.07874706387519836, 0.13592186570167542, -0.0063650719821453094, -0.09710924327373505, 0.03779095783829689, 0.042808350175619125, 0.005256777163594961, -0.08478576689958572, 0.10036101192235947, -0.01544145680963993, -0.10070610046386719, 0.01690683700144291, -0.03946008160710335, 0.05471298471093178, -0.07068245112895966, -0.04061116278171539, -0.05207104608416557, -0.026512840762734413, -0.04035491868853569, -0.013403930701315403, 0.02984108217060566, -0.02821956016123295, -0.02828334830701351, 0.03697395697236061, 0.08030401170253754, -0.03389594703912735, 0.03450341522693634, -0.01774413511157036, 0.10769346356391907, -0.17575541138648987, -0.009023180231451988, -0.16130967438220978, 0.1626322716474533, 0.014662184752523899, 0.0078408969566226, 0.06986015290021896, 0.012925921007990837, 0.0307934433221817, -0.05605543032288551, 0.033236462622880936, 0.017458835616707802, 0.04232872650027275, 0.009972784668207169, -0.13944722712039948, -0.13713261485099792, -0.02260439842939377, -0.018859628587961197, -0.019509002566337585, -0.06076279282569885, -0.008270662277936935, -0.14847838878631592, 0.06518298387527466, -0.044342972338199615, 0.0010327486088499427, 0.005165203474462032, -0.04906431585550308, -0.038730472326278687, -0.045386459678411484, 0.03842763975262642, -0.01016896590590477, -0.011433485895395279, 0.08876864612102509, 0.05499695986509323, 0.09300902485847473, 0.10830666869878769, -0.0010498777264729142, 0.011246754787862301, 0.002527989214286208, -0.026481399312615395, 0.0022084189113229513, -0.0023669120855629444, 0.049967579543590546, 0.08912631869316101, 0.021888379007577896, 0.1007486879825592, -0.14251859486103058, -0.013167595490813255, 0.024846429005265236, -0.12574365735054016, 0.0028790240176022053, 0.11102347075939178, 0.11863500624895096, -0.19340530037879944, 0.11299571394920349, 0.17689748108386993, 0.024349942803382874, 0.04499002546072006, -0.023776400834321976, -0.07747780531644821, -0.05901893228292465, -0.013299905695021152, -0.031361110508441925, 0.08566724509000778, -0.02571987546980381, 0.06957977265119553, 0.10345149785280228, 0.00583057152107358, 0.06093433126807213, -0.10452920198440552, -0.037987302988767624, 0.024581143632531166, -0.006443203426897526, -0.06614682078361511, 0.004150242079049349, 0.010687842965126038, 0.10382780432701111, 0.02095484361052513, -0.04109291732311249, -0.013289234600961208, 0.03608459606766701, -0.09604563564062119, 0.21415674686431885, -0.06424623727798462, -0.1299896389245987, -0.10186416655778885, -0.15111440420150757, 0.02466508373618126, -0.017161661759018898, 0.05822138860821724, -0.0010514609748497605, -0.044466495513916016, -0.029727498069405556, 0.09662918001413345, -0.03784395381808281, -0.01971706934273243, -0.02473355270922184, -0.01014503464102745, 0.033725935965776443, -0.1631675362586975, -0.03817503899335861, -0.03882782533764839, 0.008177144452929497, 0.06290753930807114, -0.07299065589904785, 0.06467172503471375, 0.04946274310350418, -0.0323142409324646, -0.02412586659193039, 0.03025827743113041, 0.3525988757610321, -0.0010425401851534843, 0.007998823188245296, 0.22273047268390656, 0.01169777475297451, 0.07028832286596298, 0.099947988986969, 0.03351477533578873, -0.03984566032886505, -0.031465839594602585, -0.046482980251312256, -0.03434588015079498, -0.29859301447868347, -0.04370976239442825, -0.05052271857857704, 0.02117995172739029, 0.09073325991630554, -0.0008148038759827614, -0.02292594499886036, 0.1301001012325287, -0.02152761071920395, 0.1025066152215004, -0.07963207364082336, 0.08448242396116257, 0.016914771869778633, 0.03090628795325756, 0.10275457054376602, -0.04832921549677849, -0.02796049974858761, 0.08906672149896622, 0.08105120807886124, 0.1796388477087021, 0.04449193924665451, 0.05388293042778969, 0.10325998067855835, 0.13608019053936005, 0.03731677681207657, 0.17323067784309387, -0.06496717780828476, 0.022887609899044037, -0.07429149746894836, -0.03205355629324913, -0.06608058512210846, 0.018006710335612297, -0.0640450045466423, -0.022175855934619904, -0.03381563350558281, -0.1250518411397934, 0.022517098113894463, 0.14398923516273499, 0.07955900579690933, -0.2386014610528946, -0.0607369989156723, 0.03810648247599602, -0.04410916566848755, -0.08792669326066971, -0.012803659774363041, -0.06881313025951385, -0.14076955616474152, -0.03936994448304176, -0.050496384501457214, 0.15049400925636292, 0.009289841167628765, 0.01126983854919672, -0.1379038393497467, -0.00399425346404314, -0.060495950281620026, 0.09694979339838028, -0.2158830612897873, 0.19196026027202606, 0.0034620987717062235, -0.02461191453039646, -0.061468783766031265, 0.012591271661221981, 0.004239158239215612, 0.023562220856547356, 0.0901976153254509, 0.01685946434736252, 0.09478321671485901, -0.07522381097078323, -0.09772630035877228, 0.07048316299915314, -0.05823078006505966, -0.05021677911281586, 0.0780801773071289, -0.013260249979794025, 0.032335806638002396, -0.00616928655654192, 0.08303924649953842, -0.080156609416008, -0.09565649926662445, 0.04461481422185898, -0.08814557641744614, -0.08900416642427444, -0.02549041621387005, -0.0367557555437088, 0.02689223363995552, 0.09375626593828201, -0.028577357530593872, -0.11101915687322617, -0.09759488701820374, 0.0937233567237854, 0.1834169179201126, -0.10620344430208206, 0.06415887176990509, -0.08416156470775604, -0.06597816944122314, -0.044207412749528885, -0.16351401805877686, 0.08109859377145767, -0.09157750755548477, -0.08507350832223892, -0.03944449871778488, 0.07389131188392639, 0.030153771862387657, 0.0504593625664711, 0.039036836475133896, 0.02190391533076763, -0.1676468849182129, -0.0852823480963707, -0.0647583156824112, -0.057360950857400894, 0.19465889036655426, 0.036762535572052, -0.0462023988366127, -0.06998959928750992, -0.05770456790924072, -0.020283808931708336, 0.11301529407501221, 0.22633272409439087, -0.05833626911044121, 0.0753474086523056, 0.10658054053783417, -0.07409011572599411, -0.13857589662075043, -0.050714872777462006, 0.007914898917078972, -0.015580602921545506, 0.050852563232183456, -0.1161310225725174, 0.12706100940704346, 0.09519433230161667, -0.04540514200925827, 0.014075523242354393, -0.2022610902786255, -0.1011287197470665, 0.19467496871948242, 0.03678642213344574, 0.21687950193881989, -0.12274640798568726, -0.02853839285671711, -0.03316306322813034, -0.30572810769081116, 0.1504039615392685, -0.033043280243873596, 0.0678810179233551, -0.03623383119702339, 0.07633022218942642, 0.030253395438194275, -0.053490299731492996, 0.15136614441871643, -0.005929580889642239, 0.046039700508117676, -0.03295129910111427, -0.08069539070129395, -0.07328015565872192, -0.027804633602499962, 0.12560592591762543, -0.0347742885351181, 0.08762437105178833, -0.1285167783498764, -0.03097791038453579, -0.09053108096122742, 0.05805904045701027, -0.02796234004199505, -0.09650857001543045, -0.10976633429527283, 0.012607906013727188, 0.026313047856092453, 0.011777272447943687, 0.17556075751781464, 0.015104132704436779, 0.03239477425813675, 0.16138532757759094, -0.011193494312465191, -0.042996350675821304, -0.08159834891557693, -0.03912564739584923, -0.038516607135534286, 0.04183053970336914, -0.2670358717441559, 0.0403355211019516, 0.09833978861570358, -0.006935497745871544, 0.0862635001540184, 0.02124185301363468, -0.09675689041614532, -0.03593949228525162, 0.05445738136768341, -0.1445627361536026, -0.1192648708820343, 0.03810368850827217, -0.002099597593769431, -0.09942997246980667, 0.06520579755306244, 0.1604813188314438, -0.06642268598079681, -0.1091240718960762, -0.0144896125420928, 0.04752932861447334, -0.08582058548927307, 0.19608207046985626, 0.10244307667016983, 0.035561081022024155, -0.12462253868579865, 0.03474940359592438, 0.08786415308713913, 0.041794195771217346, -0.03345225378870964, 0.021227579563856125, -0.04762193560600281, -0.056016359478235245, 0.1176997572183609, 0.06414703279733658, -0.14110411703586578, 0.03452650085091591, -0.05156669020652771, -0.001835605944506824, 0.0526127927005291, 0.0850919857621193, 0.08626733720302582, -0.009909721091389656, -0.000331511051626876, -0.061671823263168335, -0.04128574579954147, 0.0431075319647789, 0.1082063540816307, 0.05415048450231552, -0.0489962212741375, 0.014710684306919575, -0.045336220413446426, 0.10578513890504837, -0.04486265778541565, 0.042963866144418716, -0.1314856857061386, -0.008084033615887165, -0.20599813759326935, 0.020876070484519005, -0.11735231429338455, -0.016266174614429474, -0.03024030663073063, -0.0922359973192215, -0.04436642304062843, 0.026180017739534378, -0.1236901804804802, -0.016582485288381577, -0.029504898935556412, 0.0845046192407608, -0.10849814116954803, -0.01261154469102621, 0.11526259034872055, -0.04085296392440796, 0.09278704971075058, 0.11758636683225632, -0.009878427721560001, 0.021831663325428963, -0.12991651892662048, -0.02716905251145363, 0.01587585173547268, 0.02764977142214775, 0.06384755671024323, -0.05090496689081192, 0.027989130467176437, 0.021809708327054977, 0.04176870360970497, -0.030134687200188637, 0.08221974223852158, -0.16067634522914886, -0.07398273795843124, -0.016529439017176628, -0.03652865067124367, -0.01303347758948803, -0.0037543054204434156, 0.03593816980719566, 0.08182039856910706, 0.10371459275484085, 0.0213778056204319, 0.06250400096178055, -0.21573998034000397, -0.009884345345199108, -0.062249720096588135, -0.132297083735466, -0.012460441328585148, -0.0689304992556572, 0.01157587580382824, -0.016617653891444206, 0.2231646180152893, 0.08106306195259094, 0.008137202821671963, -0.018733641132712364, 0.05340127274394035, 0.13878703117370605, -0.009960952214896679, 0.1731758564710617, -0.012755423784255981, 0.0014578700065612793, -0.04886258393526077, 0.05232488736510277, 0.05331825837492943, 0.05564049258828163, 0.020974650979042053, 0.2213028520345688, 0.049064990133047104, 0.03334895148873329, 0.006223509553819895, 0.0007843952625989914, -0.011705229990184307, -0.13696791231632233, 0.07594425231218338, 0.04955887421965599, 0.024142509326338768, 0.1281571388244629, 0.08203362673521042, -0.10421004146337509, 0.03593059256672859, -0.008902610279619694, -0.028992312029004097, -0.11372418701648712, -0.05493001267313957, -0.05327032133936882, -0.12182243168354034, -0.023811129853129387, -0.12728910148143768, 0.022960832342505455, 0.13845399022102356, 0.0163982342928648, -0.05015940219163895, 0.017620639875531197, 0.05924462527036667, -0.11999780684709549, 0.02086874097585678, 0.027362581342458725, -0.009881370700895786, -0.031205007806420326, -0.01258400920778513, 0.0006549120880663395, 0.05650010332465172, 0.04004523158073425, 0.003871214110404253, 0.003047354519367218, 0.04991018772125244, -0.06507749855518341, -0.10056166350841522, -0.04223842918872833, 0.03406292200088501, 0.009465081617236137, 0.15825706720352173, 0.0030501759611070156, 0.035299673676490784, 0.014360833913087845, 0.2369762361049652, -0.017697187140583992, -0.0763561949133873, -0.10172861069440842, 0.2625485360622406, -0.02033039554953575, 0.007838858291506767, 0.03222751244902611, -0.0579034648835659, -0.027339234948158264, 0.23686042428016663, 0.20036539435386658, -0.0877973809838295, -0.03217001259326935, 0.014784771017730236, -0.005558548029512167, 0.04447713866829872, 0.08087792247533798, 0.0776267871260643, 0.16034013032913208, -0.09285131841897964, 0.07467261701822281, -0.04638025909662247, -0.0033997162245213985, -0.09490576386451721, 0.07495792210102081, 0.018360646441578865, -0.05728253722190857, -0.004251296631991863, 0.09570080786943436, -0.04162196069955826, -0.17359040677547455, -0.08152995258569717, -0.1065448671579361, -0.1516241580247879, -0.04953410103917122, -0.013223163783550262, -0.010443069972097874, 0.06307186931371689, -0.05525200814008713, 0.03849964961409569, 0.03641723841428757, 0.01076868362724781, -0.14721490442752838, -0.055216796696186066, 0.15753017365932465, 0.0025346551556140184, 0.16848523914813995, 0.03394363075494766, 0.04821673035621643, 0.09425313770771027, 0.028394747525453568, -0.13325423002243042, 0.00729771051555872, 0.022523222491145134, 0.010578865185379982, 0.04893383011221886, -0.04547009617090225, 0.020649481564760208, -0.11588260531425476, 0.05226922780275345, -0.09717784076929092, -0.029158825054764748, 0.02119414135813713, -0.003564020385965705, -0.11512869596481323, -0.015660801902413368, -0.12894557416439056, 0.07528748363256454, 0.10027451813220978, -0.11279423534870148, 0.000025728882974362932, -0.09554027020931244, 0.06276214122772217, 0.07721559703350067, 0.007671776227653027, -0.056452713906764984, -0.1265668272972107, -0.003992324694991112, 0.028612734749913216, 0.00843801163136959, -0.1786576211452484, 0.026553748175501823, -0.027878332883119583, -0.03889911249279976, -0.07040976732969284, 0.09921040385961533, 0.05500536412000656, -0.000790346646681428, 0.001651986502110958, -0.10796278715133667, -0.059286780655384064, 0.051050301641225815, -0.05033525079488754, -0.0580996498465538 ]
null
null
transformers
## Model Details: 90% Sparse BERT-Large (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754): ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Date | September 30, 2021 | | Version | 1 | | Type | NLP - General sparse language model | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | This is a general sparse language model; in its current form, it is not ready for downstream prediction tasks, but it can be fine-tuned for several language tasks including (but not limited to) question-answering, genre natural language inference, and sentiment classification. | | Primary intended users | Anyone who needs an efficient general language model for other downstream tasks. | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is an example of how to import this model in Python: ```python import transformers model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/bert-large-uncased-sparse-90-unstructured-pruneofa') ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [80% Sparse BERT-Base uncased fine-tuned on SQuAD1.1](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [85% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [90% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [**90% Sparse BERT-Large uncased**](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [85% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [90% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | [English Wikipedia Dataset](https://huggingface.co/datasets/wikipedia) (2500M words). | | Motivation | To build an efficient and accurate base model for several downstream language tasks. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "tags": ["fill-mask"], "datasets": ["wikipedia", "bookcorpus"]}
fill-mask
Intel/bert-large-uncased-sparse-90-unstructured-pruneofa
[ "transformers", "pytorch", "tf", "bert", "pretraining", "fill-mask", "en", "dataset:wikipedia", "dataset:bookcorpus", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us
Model Details: 90% Sparse BERT-Large (uncased) Prune Once for All ----------------------------------------------------------------- This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021). Visualization of Prunce Once for All method from Zafrir et al. (2021): !Zafrir2021\_Fig1.png ### How to use Here is an example of how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 82, 33, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #tf #bert #pretraining #fill-mask #en #dataset-wikipedia #dataset-bookcorpus #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #endpoints_compatible #region-us \n### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.04646419733762741, 0.09619906544685364, -0.003505624597892165, 0.13187673687934875, 0.06881929188966751, 0.02042018435895443, 0.10129685699939728, 0.0937829241156578, 0.04263918101787567, -0.0022539393976330757, 0.09815207123756409, 0.17956635355949402, 0.04215015843510628, 0.19405138492584229, -0.02936762198805809, -0.21732181310653687, 0.04671255499124527, 0.02138363942503929, -0.024529846385121346, 0.12856164574623108, 0.1004776582121849, -0.05161082372069359, 0.07771141082048416, 0.0140481386333704, -0.07947154343128204, 0.0029515798669308424, 0.02331353910267353, -0.046501126140356064, 0.11954881250858307, 0.020559996366500854, 0.08234720677137375, 0.026639612391591072, 0.06408665329217911, -0.0702764093875885, 0.026430979371070862, 0.03812626376748085, 0.002045422326773405, 0.10329370945692062, 0.021870993077754974, -0.04912981018424034, 0.09833405911922455, 0.014646691270172596, 0.035438451915979385, 0.02113576978445053, -0.1390957087278366, -0.17023126780986786, -0.09706977009773254, 0.07101147621870041, -0.008113246411085129, 0.032793447375297546, 0.015867751091718674, 0.19378601014614105, -0.003739458741620183, 0.07518614083528519, 0.28096410632133484, -0.2447177767753601, -0.034480854868888855, 0.05885599926114082, 0.1040051132440567, 0.07309781759977341, 0.020209763199090958, -0.02250572293996811, 0.04794847592711449, 0.05889666825532913, 0.07605802267789841, -0.07092418521642685, -0.06338565051555634, 0.012332052923738956, -0.1534016877412796, -0.051078882068395615, 0.10228639841079712, -0.007635035086423159, -0.09360547363758087, 0.032953664660453796, -0.1470814049243927, 0.012989145703613758, -0.05941863730549812, 0.009066218510270119, 0.05872908979654312, 0.00841506477445364, 0.03062230534851551, -0.04585077241063118, -0.061934441328048706, -0.03210833668708801, -0.083205446600914, 0.10233704745769501, 0.051711466163396835, 0.06940695643424988, -0.10781248658895493, 0.11072305589914322, -0.07965999096632004, -0.10092656314373016, -0.0033444762229919434, -0.09253914654254913, 0.06015307083725929, 0.018406737595796585, -0.002348677022382617, -0.011322601698338985, 0.0993175059556961, 0.2058434635400772, -0.01187396515160799, 0.005714996252208948, -0.022674821317195892, 0.051645342260599136, 0.04274020344018936, 0.06161646172404289, -0.10798744857311249, -0.009897040203213692, 0.11485282331705093, 0.006595463491976261, -0.016875650733709335, 0.024119624868035316, -0.046415988355875015, -0.06339625269174576, 0.007782698608934879, 0.018058693036437035, 0.06757450103759766, 0.02928677387535572, -0.09000951051712036, -0.037974804639816284, 0.03936976194381714, -0.07744257897138596, -0.044536344707012177, -0.037657856941223145, -0.033684439957141876, 0.007349902763962746, 0.12009741365909576, 0.00000791678667155793, -0.0629747286438942, 0.029072673991322517, -0.12455429881811142, 0.005472380202263594, -0.04710782319307327, -0.09957270324230194, 0.00569932023063302, -0.043344784528017044, 0.031072407960891724, -0.09699113667011261, -0.20127235352993011, 0.009779565967619419, 0.11591856926679611, -0.060562022030353546, -0.02832319401204586, 0.06231699883937836, 0.05755597725510597, -0.029969753697514534, -0.04285067692399025, 0.05279189720749855, -0.09133084863424301, 0.07150419801473618, -0.007957874797284603, 0.07021705061197281, -0.10956361889839172, 0.014990463852882385, -0.1317364126443863, 0.03783281147480011, -0.18735842406749725, 0.0024629454128444195, -0.07334604859352112, 0.03618285059928894, -0.18945418298244476, -0.06908384710550308, 0.015758590772747993, -0.011016841046512127, 0.09038769453763962, 0.16956782341003418, -0.13478928804397583, -0.012375453487038612, 0.2088467925786972, -0.027429988607764244, -0.14838775992393494, 0.1339397132396698, -0.09577279537916183, 0.18843452632427216, 0.07147268205881119, 0.1163739264011383, -0.0071843876503407955, -0.1333359330892563, 0.07740749418735504, 0.041683394461870193, 0.009281391277909279, -0.030453504994511604, 0.0810425877571106, -0.012155725620687008, -0.0993235856294632, 0.015151969157159328, -0.015263378620147705, 0.048270147293806076, -0.06616170704364777, -0.03967202082276344, -0.04278130456805229, -0.047984469681978226, -0.023484785109758377, -0.029922157526016235, 0.022853801026940346, -0.04457683116197586, -0.0468205027282238, -0.026441723108291626, 0.09388189017772675, -0.04475482925772667, 0.047819435596466064, -0.033757880330085754, 0.10927200317382812, -0.09840824455022812, -0.0018375169020146132, -0.1592605710029602, 0.14067357778549194, 0.020926080644130707, 0.0010799627052620053, 0.07892446219921112, -0.016382712870836258, 0.03493650630116463, -0.02209462784230709, 0.014470219612121582, 0.03915111720561981, 0.01737549714744091, -0.004805292468518019, -0.11552508175373077, -0.14075711369514465, 0.008008435368537903, -0.015355467796325684, 0.007525112479925156, -0.06430509686470032, -0.0018517361022531986, -0.14696671068668365, 0.04439767450094223, -0.03689759224653244, -0.014162089675664902, 0.013952125795185566, -0.054666705429553986, -0.03309384360909462, -0.053120777010917664, 0.04007452726364136, -0.010914674960076809, -0.015034838579595089, 0.0331021249294281, 0.06334690749645233, 0.10286851227283478, 0.09649232774972916, -0.02178756520152092, -0.03013763763010502, 0.03564969077706337, -0.029355613514780998, 0.002846605610102415, -0.03410746902227402, 0.05686505138874054, 0.13641773164272308, 0.017059005796909332, 0.10053375363349915, -0.12529726326465607, 0.010735242627561092, 0.021707573905587196, -0.10096848756074905, 0.04442129284143448, 0.10589798539876938, 0.12263142317533493, -0.16474103927612305, 0.07308897376060486, 0.14431621134281158, -0.011258882470428944, 0.04639559984207153, -0.012646468356251717, -0.0747164934873581, -0.03362211957573891, -0.0007539445068687201, -0.01704576052725315, 0.10897757112979889, -0.02061687782406807, 0.06241295486688614, 0.08937431871891022, -0.012568136677145958, 0.04966885223984718, -0.11308427155017853, -0.0345018170773983, 0.02172367461025715, -0.017255498096346855, -0.10694725811481476, -0.004030051175504923, -0.00838051550090313, 0.11734362691640854, 0.02491554617881775, -0.06072351336479187, -0.022046787664294243, 0.027126256376504898, -0.09421493858098984, 0.23722615838050842, -0.0608476959168911, -0.15980368852615356, -0.08972308039665222, -0.13367798924446106, 0.029423780739307404, -0.012208427302539349, 0.03844012692570686, -0.005251109134405851, -0.06377743184566498, -0.031810954213142395, 0.11817631870508194, -0.017219178378582, -0.013992913998663425, -0.034682497382164, -0.007613376714289188, 0.02917672134935856, -0.17801357805728912, -0.029136264696717262, -0.026640424504876137, 0.001200308557599783, 0.06014188751578331, -0.09111686795949936, 0.04527749493718147, 0.05160088837146759, -0.009072702378034592, -0.016293274238705635, 0.021019868552684784, 0.3450915515422821, -0.014971393160521984, 0.0018960214219987392, 0.1796909123659134, -0.02795250155031681, 0.05674537271261215, 0.0886242613196373, 0.04283967614173889, -0.0660216435790062, -0.0021509621292352676, -0.04396893456578255, -0.050211645662784576, -0.26869186758995056, -0.05153411254286766, -0.04698660969734192, 0.032327137887477875, 0.10022158920764923, 0.01104186475276947, -0.044027410447597504, 0.11295568943023682, 0.004194836597889662, 0.120957151055336, -0.034639108926057816, 0.07199142873287201, -0.021344095468521118, 0.049396853893995285, 0.08848907053470612, -0.037830039858818054, -0.02733193151652813, 0.0909806489944458, 0.056432776153087616, 0.1765664666891098, -0.004392096772789955, 0.06798205524682999, 0.09119169414043427, 0.12821289896965027, 0.021672967821359634, 0.20658916234970093, -0.06211327761411667, 0.029539009556174278, -0.08766520768404007, -0.04640602320432663, -0.07178565114736557, 0.009709753096103668, -0.09980711340904236, -0.028758179396390915, -0.03543886914849281, -0.0944170281291008, 0.03431479260325432, 0.18255236744880676, 0.0896492674946785, -0.2664352357387543, -0.06192310154438019, 0.02010154351592064, -0.054099686443805695, -0.07641605287790298, 0.01674954779446125, -0.09085651487112045, -0.12749987840652466, -0.0002102451107930392, -0.06221115216612816, 0.13430161774158478, 0.005304502788931131, 0.013980443589389324, -0.12169831246137619, 0.004265373107045889, -0.07744697481393814, 0.07628553360700607, -0.2400549203157425, 0.2139507383108139, 0.0008671729010529816, 0.004294982645660639, -0.07101041823625565, 0.01574523188173771, 0.03443646430969238, 0.022907577455043793, 0.12182141840457916, 0.009736071340739727, 0.13015440106391907, -0.016462592408061028, -0.09648121148347855, 0.07971688359975815, -0.046849705278873444, -0.044845715165138245, 0.07842982560396194, -0.006889769341796637, 0.023420246317982674, -0.009577808901667595, 0.08666758239269257, -0.108444944024086, -0.0704132616519928, 0.05382269248366356, -0.11109859496355057, -0.12670086324214935, -0.03415827453136444, -0.04707074165344238, 0.04517968371510506, 0.11828193068504333, -0.027069294825196266, -0.1114387959241867, -0.09599613398313522, 0.0906103104352951, 0.18900516629219055, -0.09286724776029587, 0.06971193850040436, -0.07033731043338776, -0.05964577943086624, -0.046254344284534454, -0.1725865751504898, 0.09286896139383316, -0.091660276055336, -0.09146201610565186, -0.04082903638482094, 0.07260698080062866, 0.03972538560628891, 0.0578758530318737, 0.02260582335293293, 0.022993439808487892, -0.1346970647573471, -0.05646015331149101, -0.06538238376379013, -0.06710521131753922, 0.17099310457706451, 0.06563037633895874, -0.06406581401824951, -0.08293858915567398, -0.05484239012002945, -0.0166874248534441, 0.09554867446422577, 0.23266001045703888, -0.019850099459290504, 0.07833829522132874, 0.1160021647810936, -0.08052132278680801, -0.1576647013425827, -0.046298325061798096, 0.0012880914146080613, 0.0033643441274762154, 0.026477720588445663, -0.15680894255638123, 0.1282130926847458, 0.09839047491550446, -0.037656571716070175, 0.060996685177087784, -0.2288830280303955, -0.1261749565601349, 0.19511829316616058, 0.05563366040587425, 0.23824015259742737, -0.12021651864051819, -0.0007087447447702289, -0.04974713549017906, -0.2659578323364258, 0.1575612723827362, -0.08658159524202347, 0.06853422522544861, -0.008514859713613987, 0.07144787907600403, 0.026438716799020767, -0.059315163642168045, 0.12971778213977814, -0.018171649426221848, 0.025836622342467308, -0.04874671623110771, -0.06698711961507797, -0.09121442586183548, -0.017900852486491203, 0.11114079505205154, -0.0014966820599511266, 0.07953004539012909, -0.08911391347646713, -0.025258729234337807, -0.08740099519491196, 0.07698796689510345, -0.027277691289782524, -0.11360616236925125, -0.13055670261383057, 0.03313927724957466, 0.03299948573112488, 0.00947196502238512, 0.15957999229431152, 0.02305508777499199, 0.0361001081764698, 0.10230771452188492, 0.021524090319871902, -0.021487804129719734, -0.060388244688510895, -0.002921359846368432, -0.031188849359750748, 0.0300509762018919, -0.2718977928161621, 0.02915230579674244, 0.0983261913061142, -0.0008662390173412859, 0.0735991895198822, 0.042850784957408905, -0.09346340596675873, -0.02333933487534523, 0.07169364392757416, -0.16893981397151947, -0.057010550051927567, 0.03703784570097923, -0.03412294015288353, -0.08266168087720871, 0.04590695723891258, 0.16659124195575714, -0.07871547341346741, -0.0925750583410263, -0.002766503719612956, 0.06157289445400238, -0.0867011696100235, 0.2100519984960556, 0.08582325279712677, 0.03747359290719032, -0.12066598236560822, 0.057650573551654816, 0.07199442386627197, 0.020645471289753914, -0.034980736672878265, 0.057112857699394226, -0.067209891974926, -0.042038433253765106, 0.11725462973117828, 0.0741593986749649, -0.11108019202947617, 0.03141433745622635, -0.07816789299249649, 0.011492862366139889, 0.030422475188970566, 0.1364697962999344, 0.09189078211784363, 0.0020027062855660915, -0.0017661380115896463, -0.03820343315601349, -0.03160309046506882, 0.0389782078564167, 0.11826944351196289, 0.04775945842266083, -0.02997574955224991, 0.0560438446700573, -0.05073009431362152, 0.08515048772096634, -0.05874600633978844, 0.062030814588069916, -0.13693732023239136, 0.0092888493090868, -0.17243368923664093, 0.03218632936477661, -0.09466887265443802, -0.026682697236537933, -0.029961569234728813, -0.07151085883378983, -0.03826359286904335, 0.00853442307561636, -0.1206841692328453, 0.005430174525827169, -0.033886004239320755, 0.05689460039138794, -0.09383587539196014, -0.013927696272730827, 0.11730530112981796, -0.045093100517988205, 0.10288134962320328, 0.09799221903085709, -0.03624172508716583, 0.06305212527513504, -0.14700959622859955, -0.032604217529296875, 0.003586796810850501, 0.01570708304643631, 0.04514722153544426, -0.041244592517614365, 0.029960690066218376, -0.0076974486000835896, 0.05072908103466034, -0.028613463044166565, 0.10040909796953201, -0.134556844830513, -0.05697929114103317, 0.008602619171142578, -0.04522007703781128, -0.008636288344860077, -0.0084407739341259, 0.034776732325553894, 0.08843027800321579, 0.109218530356884, -0.019238587468862534, 0.047836918383836746, -0.18134935200214386, -0.007583284750580788, -0.02448669821023941, -0.12231865525245667, -0.00031751865753903985, -0.0713614970445633, 0.028152169659733772, -0.03130616247653961, 0.1968500316143036, 0.06333830207586288, 0.016029546037316322, -0.012612972408533096, 0.030693618580698967, 0.09440647065639496, 0.0046382322907447815, 0.16362734138965607, -0.007790665607899427, -0.0004008817486464977, -0.07431754469871521, 0.023071158677339554, 0.07595504820346832, 0.05196605622768402, 0.07366163283586502, 0.18674644827842712, 0.07067055255174637, 0.04845725744962692, -0.014199085533618927, -0.0112506914883852, 0.012966644018888474, -0.12442715466022491, 0.06597156822681427, 0.06341385096311569, 0.04169613495469093, 0.1079867035150528, 0.06933443993330002, -0.08291852474212646, 0.04213181510567665, -0.020915202796459198, -0.05668844282627106, -0.12310822308063507, -0.0382838174700737, -0.058819979429244995, -0.08120433241128922, -0.020930128172039986, -0.12325355410575867, 0.010292069986462593, 0.13967488706111908, 0.04024744778871536, -0.043653056025505066, 0.04728461802005768, 0.03235583007335663, -0.11436930298805237, 0.04229597747325897, 0.03492353484034538, -0.02237284556031227, -0.0010836176807060838, -0.0541294664144516, -0.04086713492870331, 0.07111083716154099, 0.03513558954000473, -0.007795371115207672, -0.016339940950274467, 0.052107781171798706, -0.052598465234041214, -0.075042724609375, -0.03657211363315582, 0.01789657585322857, -0.0003967114316765219, 0.14069531857967377, 0.014299988746643066, 0.022216137498617172, 0.021195584908127785, 0.2174912691116333, -0.02169371396303177, -0.11038975417613983, -0.13102151453495026, 0.267773300409317, -0.03614902123808861, 0.0003416679392103106, 0.03652020916342735, -0.04572395607829094, -0.041638024151325226, 0.2730238735675812, 0.22737595438957214, -0.11437959223985672, -0.03709881007671356, 0.015715913847088814, -0.0008879282395355403, 0.030672134831547737, 0.1113106831908226, 0.0725155919790268, 0.20091520249843597, -0.09396816790103912, 0.040259942412376404, -0.037109460681676865, -0.003970297519117594, -0.12372349202632904, 0.052782926708459854, 0.03009255975484848, -0.038967642933130264, -0.008835890330374241, 0.11540458351373672, -0.07812479883432388, -0.208320751786232, -0.10174059122800827, -0.11275113373994827, -0.17107421159744263, -0.0725359097123146, -0.04927998036146164, -0.0038550132885575294, 0.07571186870336533, -0.07294910401105881, 0.03135440871119499, 0.006601715460419655, 0.011240842752158642, -0.12757106125354767, -0.06707673519849777, 0.15540774166584015, -0.008588748052716255, 0.2081921100616455, 0.03861241787672043, 0.05201426520943642, 0.08384758979082108, 0.0008951699128374457, -0.09329032152891159, 0.02151692844927311, 0.024675048887729645, 0.02830878086388111, 0.02321619726717472, -0.009585062973201275, -0.007853381335735321, -0.12431196868419647, 0.05395198613405228, -0.07499603182077408, -0.011061437427997589, 0.070880226790905, 0.0022894837893545628, -0.10823185741901398, -0.003046103985980153, -0.15602894127368927, 0.07003311812877655, 0.12292416393756866, -0.08628350496292114, 0.03853125870227814, -0.11317499727010727, 0.06640280783176422, 0.07208959758281708, -0.006482421420514584, -0.06605913490056992, -0.1435859501361847, -0.01452631875872612, -0.017322801053524017, -0.01577932760119438, -0.19950838387012482, 0.03204595297574997, -0.044009413570165634, -0.017088687047362328, -0.1009540930390358, 0.11261873692274094, 0.051501791924238205, -0.0058689904399216175, 0.006718900054693222, -0.07187950611114502, -0.050289496779441833, 0.042642559856176376, -0.0708211213350296, -0.08389872312545776 ]
null
null
transformers
# 90% Sparse BERT-Large (uncased) Fine Tuned on SQuADv1.1 This model is a result of fine-tuning a Prune OFA 90% sparse pre-trained BERT-Large combined with knowledge distillation. This model yields the following results on SQuADv1.1 development set:<br> `{"exact_match": 83.56669820245979, "f1": 90.20829352733487}` For further details see our paper, [Prune Once for All: Sparse Pre-Trained Language Models](https://arxiv.org/abs/2111.05754), and our open source implementation available [here](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all).
{"language": "en"}
question-answering
Intel/bert-large-uncased-squadv1.1-sparse-90-unstructured
[ "transformers", "pytorch", "tf", "bert", "question-answering", "en", "arxiv:2111.05754", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754" ]
[ "en" ]
TAGS #transformers #pytorch #tf #bert #question-answering #en #arxiv-2111.05754 #endpoints_compatible #region-us
# 90% Sparse BERT-Large (uncased) Fine Tuned on SQuADv1.1 This model is a result of fine-tuning a Prune OFA 90% sparse pre-trained BERT-Large combined with knowledge distillation. This model yields the following results on SQuADv1.1 development set:<br> '{"exact_match": 83.56669820245979, "f1": 90.20829352733487}' For further details see our paper, Prune Once for All: Sparse Pre-Trained Language Models, and our open source implementation available here.
[ "# 90% Sparse BERT-Large (uncased) Fine Tuned on SQuADv1.1\nThis model is a result of fine-tuning a Prune OFA 90% sparse pre-trained BERT-Large combined with knowledge distillation.\nThis model yields the following results on SQuADv1.1 development set:<br>\n'{\"exact_match\": 83.56669820245979, \"f1\": 90.20829352733487}'\n\nFor further details see our paper, Prune Once for All: Sparse Pre-Trained Language Models, and our open source implementation available here." ]
[ "TAGS\n#transformers #pytorch #tf #bert #question-answering #en #arxiv-2111.05754 #endpoints_compatible #region-us \n", "# 90% Sparse BERT-Large (uncased) Fine Tuned on SQuADv1.1\nThis model is a result of fine-tuning a Prune OFA 90% sparse pre-trained BERT-Large combined with knowledge distillation.\nThis model yields the following results on SQuADv1.1 development set:<br>\n'{\"exact_match\": 83.56669820245979, \"f1\": 90.20829352733487}'\n\nFor further details see our paper, Prune Once for All: Sparse Pre-Trained Language Models, and our open source implementation available here." ]
[ 43, 141 ]
[ "passage: TAGS\n#transformers #pytorch #tf #bert #question-answering #en #arxiv-2111.05754 #endpoints_compatible #region-us \n# 90% Sparse BERT-Large (uncased) Fine Tuned on SQuADv1.1\nThis model is a result of fine-tuning a Prune OFA 90% sparse pre-trained BERT-Large combined with knowledge distillation.\nThis model yields the following results on SQuADv1.1 development set:<br>\n'{\"exact_match\": 83.56669820245979, \"f1\": 90.20829352733487}'\n\nFor further details see our paper, Prune Once for All: Sparse Pre-Trained Language Models, and our open source implementation available here." ]
[ -0.10429621487855911, 0.019643407315015793, -0.0018323519034311175, 0.10917486995458603, 0.12274379283189774, -0.0521886870265007, -0.015588962472975254, 0.049708396196365356, -0.09426082670688629, 0.033667974174022675, 0.13270647823810577, 0.11039821058511734, -0.023196838796138763, 0.046532101929187775, -0.040807221084833145, -0.2539486289024353, 0.020568400621414185, 0.05054629221558571, -0.06944099068641663, 0.07558546960353851, 0.10847410559654236, -0.028325362130999565, 0.07305160164833069, 0.046348296105861664, -0.21187065541744232, 0.050651393830776215, 0.010824939236044884, -0.03893599659204483, 0.0859365239739418, 0.10735015571117401, 0.08946389704942703, 0.049176495522260666, 0.0012323708506301045, -0.12434393167495728, 0.020506801083683968, -0.036388203501701355, 0.011237846687436104, 0.07239867001771927, 0.08731622993946075, 0.06936555355787277, 0.024895165115594864, 0.01800723932683468, 0.0027584668714553118, 0.06355468928813934, -0.10317229479551315, -0.06400324404239655, -0.040449514985084534, -0.017738448455929756, -0.042330529540777206, 0.07948707789182663, -0.029075369238853455, 0.08559028059244156, -0.0037824404425919056, 0.07989754527807236, 0.14015087485313416, -0.32640859484672546, -0.04911540448665619, -0.03252909705042839, 0.027525117620825768, 0.030043620616197586, 0.007937501184642315, -0.02320871688425541, 0.08556228131055832, 0.02646380104124546, 0.014096096158027649, -0.056682560592889786, -0.14503785967826843, -0.02582295425236225, -0.12563252449035645, 0.038763321936130524, 0.2299223691225052, 0.044209130108356476, -0.1097598597407341, -0.023910870775580406, -0.08767969161272049, -0.005931922234594822, -0.0326257199048996, -0.07096105068922043, 0.0490545779466629, 0.026824558153748512, 0.05660563334822655, -0.05987866222858429, -0.09748612344264984, -0.019475478678941727, -0.11943579465150833, 0.24826402962207794, 0.027959275990724564, 0.01904866471886635, -0.05594085156917572, -0.021197106689214706, -0.1652154177427292, -0.09854663908481598, -0.04158695042133331, -0.05922582373023033, 0.0013126175617799163, -0.015001710504293442, -0.11705892533063889, 0.02813033014535904, 0.08381469547748566, 0.10563194006681442, -0.06273478269577026, 0.016533976420760155, -0.014655012637376785, -0.017890671268105507, 0.07520217448472977, 0.09368690848350525, -0.07843288034200668, 0.02186656929552555, 0.03750280290842056, -0.031315505504608154, -0.04640287160873413, 0.021906251087784767, -0.055577557533979416, -0.08413248509168625, 0.0360100232064724, -0.013671401888132095, 0.038910940289497375, 0.0007951408042572439, -0.06771477311849594, -0.06207156553864479, 0.043897125869989395, -0.1039847731590271, -0.04499619081616402, -0.0250302292406559, -0.039443474262952805, 0.13601262867450714, 0.006681532133370638, 0.014215311035513878, -0.07384200394153595, -0.07639021426439285, -0.13017001748085022, 0.015245387330651283, -0.047123659402132034, -0.11643076688051224, -0.037846364080905914, -0.14090435206890106, 0.04660694673657417, -0.14250300824642181, -0.02221999689936638, -0.04145407676696777, 0.006738224066793919, -0.031340040266513824, -0.03598085045814514, -0.05972037836909294, -0.02903803624212742, 0.009148072451353073, -0.00012456768308766186, -0.0529087595641613, -0.008885341696441174, 0.02905922569334507, 0.08597607165575027, 0.0029337762389332056, -0.1558317095041275, 0.058200303465127945, -0.062896728515625, 0.002907596994191408, 0.00886839721351862, 0.07824907451868057, -0.06352638453245163, 0.0573238767683506, -0.12782712280750275, -0.09982402622699738, -0.0440555177628994, 0.009186779148876667, 0.10496420413255692, 0.11860842257738113, -0.16821728646755219, 0.02778545394539833, 0.09535262733697891, -0.08708368241786957, -0.05639485642313957, 0.17763137817382812, -0.01574779860675335, -0.018926158547401428, 0.007957077585160732, 0.18348422646522522, 0.04984040930867195, -0.013144563883543015, 0.03747063875198364, 0.038249675184488297, -0.010180198587477207, -0.0453229621052742, 0.1158408522605896, -0.058099593967199326, -0.17419449985027313, 0.03484300896525383, -0.08672341704368591, 0.034757111221551895, -0.06378640979528427, -0.025404486805200577, -0.0667697861790657, -0.04237853363156319, 0.006546311546117067, 0.02585560455918312, 0.07628854364156723, -0.03787121921777725, -0.027586165815591812, 0.1267327517271042, 0.07870390266180038, -0.09395484626293182, 0.020739151164889336, -0.11850094050168991, 0.15104921162128448, -0.14187674224376678, -0.041095070540905, -0.1996791958808899, -0.037617020308971405, 0.043557699769735336, 0.13643157482147217, 0.031395308673381805, 0.10462412238121033, 0.023550229147076607, 0.027574071660637856, 0.04952209070324898, 0.02652495726943016, -0.003983152564615011, -0.006523710209876299, 0.005116260144859552, -0.061067454516887665, -0.009869182482361794, -0.08124234527349472, 0.01085717137902975, -0.12084472179412842, -0.024915598332881927, 0.016222931444644928, 0.008482402190566063, -0.030406441539525986, -0.024204310029745102, -0.004672378767281771, 0.055168259888887405, -0.03567374870181084, -0.005742255598306656, 0.13446636497974396, 0.048133909702301025, 0.013666857033967972, -0.00859586987644434, -0.0013114523608237505, 0.1837477833032608, 0.09542092680931091, -0.08051712810993195, -0.06346652656793594, -0.070122629404068, -0.04730367287993431, 0.03977743163704872, -0.012770546600222588, 0.03059365414083004, 0.24331554770469666, -0.038920748978853226, 0.1640714704990387, -0.11529295146465302, 0.026973459869623184, 0.033598728477954865, -0.019370486959815025, -0.04199180379509926, 0.10508175939321518, -0.007120602298527956, -0.18099461495876312, 0.01998082920908928, 0.062239792197942734, 0.03805241361260414, 0.10134818404912949, -0.05304734781384468, -0.05743395537137985, -0.07396984845399857, 0.061811741441488266, -0.03797672688961029, 0.028728395700454712, -0.09461706131696701, -0.03454817458987236, 0.024622932076454163, 0.009808408096432686, 0.06229037418961525, -0.08506506681442261, 0.023807315155863762, 0.08149246126413345, 0.00430251331999898, -0.041720252484083176, 0.04357171058654785, -0.04606499895453453, 0.03286372497677803, 0.01539695542305708, -0.08415188640356064, 0.02204008772969246, 0.03823274374008179, -0.07312195003032684, 0.2016579657793045, -0.10985635966062546, -0.09124439209699631, -0.09939631819725037, 0.0017596615944057703, -0.04976550489664078, 0.0362577885389328, 0.034658387303352356, -0.03967917338013649, -0.04866819828748703, -0.02577018551528454, 0.0761413425207138, -0.0924588069319725, -0.014539002440869808, 0.03329100459814072, -0.049424849450588226, 0.01744661293923855, -0.12799300253391266, -0.018996257334947586, -0.040624938905239105, -0.05604290962219238, -0.015524475835263729, -0.0774843618273735, 0.09687349945306778, 0.053322356194257736, -0.025388004258275032, 0.022320494055747986, 0.021164465695619583, 0.2696310877799988, 0.04683058708906174, -0.03880473971366882, 0.14048002660274506, 0.004373535513877869, 0.029145333915948868, 0.044915758073329926, 0.04207579419016838, -0.08596386760473251, 0.036109279841184616, -0.03154066950082779, 0.0025427008513361216, -0.20409420132637024, -0.07705411314964294, -0.03827459737658501, 0.0048739067278802395, 0.09506300836801529, 0.0022598933428525925, -0.05877873674035072, 0.12728188931941986, 0.07356933504343033, 0.021296080201864243, -0.10628406703472137, 0.08682401478290558, 0.2386501133441925, -0.011646438390016556, 0.12596707046031952, 0.0012496100971475244, -0.0013442810159176588, 0.08058977872133255, -0.11601030081510544, 0.12654519081115723, 0.05521124601364136, 0.19408376514911652, 0.04786519706249237, 0.2082168459892273, 0.08743452280759811, 0.08372624963521957, -0.039670832455158234, 0.005831343121826649, -0.026632286608219147, -0.04285135120153427, -0.08492276817560196, 0.017952769994735718, 0.00262181437574327, -0.05596397817134857, -0.13551433384418488, -0.0023712601978331804, -0.045544061809778214, 0.12420354783535004, 0.05594847723841667, -0.22140604257583618, -0.0816865786910057, -0.007108136545866728, -0.04623671621084213, -0.11108330637216568, 0.08317141979932785, 0.07360731810331345, -0.03549414873123169, -0.07983748614788055, -0.005515509285032749, 0.11659888178110123, 0.041579220443964005, 0.0179811492562294, -0.04269299656152725, 0.046690743416547775, 0.013463335111737251, 0.041694335639476776, -0.14196698367595673, 0.21088218688964844, -0.011468417942523956, -0.01990348845720291, 0.06219817325472832, 0.017649438232183456, -0.0014731775736436248, 0.08869302272796631, 0.14931289851665497, 0.0030551983509212732, 0.07367934286594391, -0.058339789509773254, -0.04492577537894249, 0.04640207439661026, 0.05057026073336601, 0.002716133138164878, 0.0348346121609211, -0.04779434576630592, 0.035884011536836624, 0.025745589286088943, 0.11078604310750961, -0.17300155758857727, -0.06552481651306152, 0.025544488802552223, 0.013194914907217026, 0.08439459651708603, 0.004690893925726414, -0.09292063117027283, -0.1882728636264801, 0.16610024869441986, -0.025986656546592712, -0.0613061860203743, -0.1058679148554802, 0.08029453456401825, 0.12229534983634949, -0.060084450989961624, 0.06151406466960907, -0.020456625148653984, 0.05586908757686615, -0.014640294946730137, -0.11316779255867004, 0.07568808645009995, -0.07997491955757141, 0.017441261559724808, 0.021801816299557686, 0.10831499844789505, 0.0027143419720232487, -0.01680011674761772, 0.04526097699999809, 0.06473001837730408, -0.0790676400065422, -0.09458348900079727, -0.07997279614210129, -0.021305400878190994, 0.09872300922870636, 0.05120265111327171, -0.0936463251709938, -0.09472059458494186, -0.0507415309548378, 0.04313540831208229, 0.1781177967786789, 0.13603882491588593, -0.10889830440282822, 0.016699597239494324, 0.12338677048683167, -0.03708598390221596, -0.10961232334375381, -0.0032036760821938515, 0.10551048815250397, 0.056613318622112274, -0.012646254152059555, -0.18155092000961304, 0.12469954043626785, 0.051063284277915955, 0.020924482494592667, -0.07690015435218811, -0.14065201580524445, -0.09317168593406677, 0.17132629454135895, 0.08865543454885483, 0.3439045250415802, -0.11073651909828186, -0.05637766420841217, 0.016042646020650864, -0.24036332964897156, 0.18000367283821106, 0.03676293417811394, 0.07635296881198883, -0.06607729196548462, -0.008316128514707088, 0.057427436113357544, -0.021899979561567307, 0.11538945883512497, 0.022198550403118134, 0.01323277223855257, -0.05568413436412811, -0.08134325593709946, -0.06618012487888336, 0.03583336994051933, 0.08443114161491394, 0.13698221743106842, 0.1216810941696167, -0.10891968011856079, -0.05841057375073433, -0.07901068776845932, 0.03640769049525261, -0.024927131831645966, -0.024653460830450058, -0.014789259992539883, 0.02619248256087303, 0.007360456977039576, 0.022245869040489197, 0.05177701264619827, -0.06572261452674866, -0.005849235691130161, 0.07975909113883972, 0.09587670117616653, -0.06476850807666779, -0.08820909261703491, 0.02447732910513878, -0.03402378410100937, 0.05843672528862953, -0.08422937244176865, -0.0006308091105893254, 0.1641339659690857, 0.054148875176906586, 0.06604425609111786, 0.07007899135351181, 0.036265451461076736, -0.02913796901702881, 0.0037838402204215527, -0.09708092361688614, -0.14609681069850922, -0.10832760483026505, -0.03290412202477455, -0.02046447992324829, -0.029017271474003792, 0.1581549495458603, -0.059134092181921005, -0.04495645686984062, -0.014131525531411171, -0.06691542267799377, -0.04547996073961258, 0.06651879101991653, 0.047421157360076904, 0.01073400303721428, -0.08700712025165558, -0.0008646877249702811, 0.03548165410757065, -0.1306556910276413, -0.006950533017516136, 0.02996049076318741, -0.10983607172966003, -0.0690239816904068, 0.0027807308360934258, 0.07814449071884155, -0.20846104621887207, -0.046728625893592834, -0.04253659024834633, -0.055930208414793015, 0.06782038509845734, 0.1592532992362976, 0.1186261773109436, 0.04615633934736252, -0.06266375631093979, -0.07287127524614334, -0.04504616558551788, -0.01673453487455845, 0.03949504345655441, -0.0009631133871152997, -0.09654106944799423, 0.054587796330451965, -0.084706611931324, 0.08638466149568558, -0.03252081573009491, -0.059187863022089005, -0.06344425678253174, -0.06581959873437881, -0.13716168701648712, 0.07575163245201111, -0.05046646296977997, 0.017178336158394814, -0.010799018666148186, -0.07112526148557663, -0.015274717472493649, 0.06971638649702072, -0.04164448380470276, -0.010742804035544395, 0.02242596261203289, 0.028408335521817207, -0.02718006819486618, 0.01367633044719696, 0.03327631950378418, -0.023361830040812492, 0.08702703565359116, 0.06326577812433243, -0.04680769518017769, -0.0015001344727352262, 0.034382522106170654, -0.06682664155960083, -0.018445640802383423, 0.008386637084186077, 0.025046883150935173, -0.1715000569820404, 0.020316336303949356, 0.038872744888067245, 0.04867473989725113, -0.05028247833251953, 0.213743656873703, -0.11232607066631317, -0.09633205085992813, 0.020427197217941284, -0.04023940861225128, -0.1052800714969635, -0.04798440262675285, 0.01102454587817192, 0.1564941108226776, 0.13182590901851654, -0.007242406252771616, 0.024621853604912758, -0.07716324180364609, 0.019137723371386528, -0.020676834508776665, -0.0687979906797409, -0.0232506413012743, -0.023977449163794518, 0.021052377298474312, -0.017911026254296303, 0.01965923048555851, -0.055487390607595444, 0.032231517136096954, 0.026087941601872444, -0.03579537570476532, 0.006796920672059059, -0.008224602788686752, 0.3334578573703766, 0.05289872735738754, -0.0013549752766266465, -0.014046321623027325, 0.09124013036489487, 0.03472088649868965, 0.18398384749889374, 0.058552335947752, 0.12958352267742157, -0.08733952045440674, 0.09866713732481003, -0.004645697772502899, -0.046675391495227814, -0.03161221742630005, -0.03397360071539879, 0.037099000066518784, 0.05051606148481369, -0.02236826904118061, 0.023714367300271988, 0.1050027459859848, -0.07277660071849823, 0.08491141349077225, 0.00779793132096529, -0.10263406485319138, -0.13352368772029877, -0.009886516258120537, -0.10029946267604828, -0.050318147987127304, 0.010142178274691105, -0.16296496987342834, 0.023136602714657784, 0.03966747596859932, 0.034469518810510635, 0.0051544890739023685, 0.1271832436323166, -0.09970581531524658, -0.1298755705356598, 0.09072764217853546, -0.042144838720560074, 0.0472000390291214, -0.030046315863728523, -0.016091616824269295, -0.019217897206544876, -0.00018984332564286888, -0.019802488386631012, -0.0008593754610046744, 0.06311545521020889, -0.02303074486553669, -0.05428004637360573, -0.03774894028902054, -0.07785582542419434, 0.04984579235315323, 0.04000941291451454, 0.1485702246427536, 0.024455750361084938, -0.07087350636720657, 0.012606742791831493, 0.2473972737789154, -0.01385256927460432, -0.08443073183298111, -0.13553380966186523, 0.11101721972227097, 0.052574384957551956, 0.0473063699901104, 0.022978508844971657, 0.012037673033773899, 0.05405066907405853, 0.21451283991336823, 0.10586710274219513, 0.017289629206061363, -0.010180994868278503, 0.060391105711460114, 0.007535948883742094, 0.07668761163949966, 0.0741337239742279, 0.02793440967798233, 0.15921275317668915, -0.0944528579711914, -0.11150828003883362, -0.056782204657793045, 0.0442725345492363, -0.1078139990568161, -0.0035680232103914022, 0.0347149558365345, -0.05298207700252533, -0.001793272327631712, 0.059022609144449234, 0.003740411251783371, 0.014383479952812195, -0.01541509572416544, -0.04114780202507973, -0.11597151309251785, -0.09921626001596451, -0.043690845370292664, 0.013251722790300846, 0.06789502501487732, -0.059565261006355286, 0.00867939367890358, 0.12685905396938324, 0.0053223175927996635, -0.10118275135755539, 0.0407690554857254, 0.1077088713645935, -0.033335279673337936, -0.013032856397330761, 0.031341057270765305, 0.13359162211418152, 0.0890377089381218, 0.08265476673841476, -0.11856748908758163, 0.02299473062157631, -0.03344546630978584, 0.0025887039955705404, 0.07247388362884521, 0.043660152703523636, 0.024402162060141563, -0.018454955890774727, -0.0415770597755909, -0.1753000169992447, 0.00982165802270174, 0.13346348702907562, 0.02552504651248455, -0.059664785861968994, 0.07325347512960434, -0.1258794367313385, 0.14744018018245697, 0.11374787986278534, -0.017186233773827553, -0.08633158355951309, -0.046915024518966675, 0.04193725064396858, 0.04479444399476051, 0.08611319959163666, -0.06509934365749359, -0.12951551377773285, -0.017552336677908897, -0.013097552582621574, -0.06934116035699844, -0.1864677220582962, -0.05604534596204758, 0.0034793466329574585, -0.02915208600461483, -0.041305750608444214, 0.046638183295726776, 0.08513309806585312, 0.04078119248151779, -0.012903308495879173, 0.01998898759484291, -0.034729450941085815, 0.061474546790122986, -0.06965260952711105, -0.09773445874452591 ]
null
null
transformers
## Model Details: 85% Sparse DistilBERT-Base (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754): ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Date | September 30, 2021 | | Version | 1 | | Type | NLP - General sparse language model | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | This is a general sparse language model; in its current form, it is not ready for downstream prediction tasks, but it can be fine-tuned for several language tasks including (but not limited to) question-answering, genre natural language inference, and sentiment classification. | | Primary intended users | Anyone who needs an efficient general language model for other downstream tasks. | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is an example of how to import this model in Python: ```python import transformers model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa') ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [80% Sparse BERT-Base uncased fine-tuned on SQuAD1.1](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [85% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [90% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [90% Sparse BERT-Large uncased](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [**85% Sparse DistilBERT uncased**](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [90% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | [English Wikipedia Dataset](https://huggingface.co/datasets/wikipedia) (2500M words). | | Motivation | To build an efficient and accurate base model for several downstream language tasks. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "datasets": ["wikipedia"]}
fill-mask
Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa
[ "transformers", "pytorch", "tf", "distilbert", "fill-mask", "en", "dataset:wikipedia", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
Model Details: 85% Sparse DistilBERT-Base (uncased) Prune Once for All ---------------------------------------------------------------------- This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021). Visualization of Prunce Once for All method from Zafrir et al. (2021): !Zafrir2021\_Fig1.png ### How to use Here is an example of how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 82, 33, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.04864472150802612, 0.0966891348361969, -0.0036465052980929613, 0.13952533900737762, 0.09196031838655472, 0.01174522191286087, 0.10593844950199127, 0.0841037929058075, 0.035174984484910965, -0.013614946976304054, 0.10376279801130295, 0.2109970897436142, 0.038295354694128036, 0.21041247248649597, -0.0451095849275589, -0.22136381268501282, 0.050130680203437805, 0.014528515748679638, -0.02113259769976139, 0.12216193228960037, 0.11469683051109314, -0.04825212061405182, 0.0768619105219841, 0.03374181315302849, -0.09583205729722977, 0.015688534826040268, 0.03591073304414749, -0.06750829517841339, 0.12222257256507874, 0.03171006962656975, 0.06798791885375977, 0.03374774381518364, 0.07117842137813568, -0.04231172427535057, 0.021002283319830894, 0.03464966267347336, 0.014106563292443752, 0.10685402154922485, 0.040767163038253784, -0.0569484569132328, 0.07027876377105713, 0.056423891335725784, 0.02872680500149727, 0.032073359936475754, -0.11473260074853897, -0.1634519100189209, -0.08954444527626038, 0.040120240300893784, 0.0024207918904721737, 0.03775371238589287, 0.02721554785966873, 0.20921118557453156, -0.03460487350821495, 0.07418180257081985, 0.25149548053741455, -0.2366507202386856, -0.02375364676117897, 0.04277264326810837, 0.07180101424455643, 0.035352885723114014, 0.03316617012023926, -0.027136031538248062, 0.05204892158508301, 0.05738953873515129, 0.07576241344213486, -0.07598579674959183, -0.09803937375545502, 0.000310361385345459, -0.13699258863925934, -0.035669002681970596, 0.10989537090063095, -0.004281310364603996, -0.09643993526697159, 0.03220103308558464, -0.15218175947666168, 0.014781431294977665, -0.055995453149080276, -0.0009062181343324482, 0.05491125211119652, 0.014437983743846416, 0.0202796570956707, -0.02070828154683113, -0.06876268982887268, -0.01539054699242115, -0.10669059306383133, 0.10811451077461243, 0.05509248748421669, 0.07030788064002991, -0.09860946983098984, 0.11338996887207031, -0.06873524188995361, -0.11153575778007507, 0.012746614404022694, -0.08959190547466278, 0.057486698031425476, 0.011390543542802334, -0.007153022568672895, -0.042096398770809174, 0.10868348181247711, 0.24045856297016144, 0.023572977632284164, 0.0002866951981559396, -0.020683160051703453, 0.04438820108771324, 0.04333747178316116, 0.08171779662370682, -0.12108176201581955, -0.016507212072610855, 0.13931764662265778, -0.009506861679255962, -0.02350125089287758, 0.022637002170085907, -0.07555883377790451, -0.046760622411966324, -0.0004897204926237464, 0.025826677680015564, 0.06903015822172165, 0.04095082730054855, -0.09686748683452606, -0.03455546870827675, 0.04508837312459946, -0.0920540913939476, -0.033115219324827194, -0.052729811519384384, -0.0402502678334713, 0.028691018000245094, 0.11540469527244568, 0.013632699847221375, -0.06467791646718979, 0.04345988482236862, -0.12409577518701553, 0.0038026843685656786, -0.048276450484991074, -0.10553480684757233, 0.00005177642378839664, -0.049888622015714645, 0.041669055819511414, -0.135774165391922, -0.20040223002433777, 0.010344846174120903, 0.11251077055931091, -0.06801394373178482, -0.048948585987091064, 0.06425359100103378, 0.06791648268699646, -0.03021986037492752, -0.04501403495669365, 0.0356847308576107, -0.08502519875764847, 0.06563206762075424, -0.0015506704803556204, 0.06555246561765671, -0.11005959659814835, 0.021987561136484146, -0.1601196676492691, 0.026419607922434807, -0.15765860676765442, 0.0020079368259757757, -0.05836622789502144, 0.05303030461072922, -0.18502207100391388, -0.055622223764657974, 0.036598410457372665, -0.01858646050095558, 0.08899907022714615, 0.16675516963005066, -0.12079709768295288, -0.020293738692998886, 0.18633458018302917, -0.02571915090084076, -0.13824017345905304, 0.14620156586170197, -0.07681401818990707, 0.18645824491977692, 0.0739893838763237, 0.05817863345146179, 0.0041639781557023525, -0.12162885069847107, 0.09723813086748123, 0.030439995229244232, -0.009864035993814468, -0.029246646910905838, 0.06622900813817978, -0.010552728548645973, -0.10683833062648773, 0.03586403280496597, 0.016350116580724716, 0.07974421232938766, -0.06566009670495987, -0.03721780329942703, -0.043501779437065125, -0.04734809324145317, -0.025011861696839333, -0.03101976029574871, 0.030297761783003807, -0.042945604771375656, -0.046362318098545074, -0.04757961630821228, 0.10092145949602127, -0.02584584429860115, 0.032209642231464386, -0.0484519898891449, 0.11960435658693314, -0.11150193959474564, 0.010453437454998493, -0.14778722822666168, 0.14915378391742706, 0.022876976057887077, 0.009201183915138245, 0.07902097702026367, -0.0133212236687541, 0.030329585075378418, -0.014780685305595398, 0.034322869032621384, 0.02821250632405281, 0.051863349974155426, 0.0100180609151721, -0.10543766617774963, -0.13290205597877502, 0.019734876230359077, -0.006843325681984425, 0.03453049808740616, -0.0403088815510273, -0.010207226499915123, -0.15784567594528198, 0.07426939159631729, -0.03158237040042877, 0.00947532057762146, 0.003941442351788282, -0.03701876476407051, -0.06018466502428055, -0.049552131444215775, 0.027421480044722557, -0.006968110799789429, -0.0032595377415418625, 0.0755378007888794, 0.0437203124165535, 0.13053123652935028, 0.1049681156873703, -0.04636494070291519, -0.03778472915291786, 0.050599511712789536, -0.02186496928334236, -0.0011065140133723617, -0.032185133546590805, 0.052174828946590424, 0.09548061341047287, 0.018599538132548332, 0.12526869773864746, -0.1095908060669899, 0.021628012880682945, 0.03509495034813881, -0.12760037183761597, 0.04386225342750549, 0.08604688942432404, 0.14143869280815125, -0.17092058062553406, 0.09185659140348434, 0.14708276093006134, -0.01850004866719246, 0.04218656197190285, -0.0008006435818970203, -0.0756615400314331, -0.030630391091108322, -0.016478823497891426, -0.01708049140870571, 0.06559024006128311, 0.013076462782919407, 0.07007467746734619, 0.09388875961303711, -0.009670848958194256, 0.03954678773880005, -0.10844651609659195, -0.02323117107152939, 0.0289089884608984, 0.004156290553510189, -0.05655725300312042, 0.00555701507255435, -0.00025935398298315704, 0.11830805242061615, 0.02112780697643757, -0.1056690588593483, -0.0009405060554854572, 0.044905245304107666, -0.08515555411577225, 0.21893340349197388, -0.07827037572860718, -0.19284731149673462, -0.11067765951156616, -0.18928322196006775, 0.015965161845088005, -0.002779948292300105, 0.04537742957472801, -0.011752096936106682, -0.08872898668050766, -0.011737977154552937, 0.09088423103094101, 0.011111119762063026, -0.002431813394650817, -0.041142307221889496, -0.002088910900056362, 0.045234791934490204, -0.16751649975776672, -0.03603488579392433, -0.0108824223279953, -0.00810760073363781, 0.08404825627803802, -0.07933421432971954, 0.054983772337436676, 0.06723422557115555, -0.014878777787089348, -0.01718638278543949, 0.02922574244439602, 0.3086763620376587, -0.005290601868182421, 0.008710537105798721, 0.2219998836517334, -0.024377604946494102, 0.06285835057497025, 0.1025586798787117, 0.038245342671871185, -0.05869872495532036, 0.003631691448390484, -0.045583147555589676, -0.04666004702448845, -0.23641769587993622, -0.0636640265583992, -0.051583681255578995, 0.02573418989777565, 0.10972956568002701, 0.02057676576077938, -0.008137376978993416, 0.13365164399147034, 0.0048194765113294125, 0.13677707314491272, -0.044937796890735626, 0.07925122231245041, 0.015246766619384289, 0.05219510570168495, 0.09951388090848923, -0.036543793976306915, -0.06221093237400055, 0.09836028516292572, 0.053280651569366455, 0.14031799137592316, 0.010299407877027988, 0.04596630856394768, 0.08347944170236588, 0.13010239601135254, 0.018910717219114304, 0.21029672026634216, -0.037776798009872437, 0.023180540651082993, -0.0843205600976944, -0.04795749858021736, -0.06686785817146301, 0.025224389508366585, -0.08898085355758667, -0.040392741560935974, -0.019845178350806236, -0.06306794285774231, 0.0358266644179821, 0.18327786028385162, 0.10132968425750732, -0.2958619296550751, -0.051474642008543015, 0.0072882408276200294, -0.06021711230278015, -0.07637006044387817, 0.012281568720936775, -0.11362966895103455, -0.14082227647304535, 0.006270641926676035, -0.0576334111392498, 0.13715562224388123, 0.013446502387523651, 0.019289832562208176, -0.11324748396873474, 0.03981184959411621, -0.06224460154771805, 0.08308394998311996, -0.2773728668689728, 0.18753211200237274, 0.001361940405331552, -0.008475384674966335, -0.08721768110990524, 0.0294820424169302, 0.0443180687725544, 0.029608722776174545, 0.08732043951749802, -0.0006990996189415455, 0.14743435382843018, -0.06586166471242905, -0.1084400862455368, 0.07464993745088577, -0.06055310741066933, -0.037468768656253815, 0.07294240593910217, -0.021880706772208214, 0.010836748406291008, -0.006799612194299698, 0.07911704480648041, -0.10303853452205658, -0.07024382054805756, 0.06332485377788544, -0.0749722495675087, -0.09926685690879822, -0.027657657861709595, -0.04635990783572197, 0.01141789648681879, 0.13762567937374115, 0.005806644447147846, -0.11080317199230194, -0.10947040468454361, 0.09320132434368134, 0.17678095400333405, -0.09775615483522415, 0.08074916154146194, -0.08569736778736115, -0.05256988853216171, -0.04216992110013962, -0.1774832010269165, 0.10114734619855881, -0.09829742461442947, -0.09931301325559616, -0.04732320457696915, 0.04533064365386963, 0.011044918559491634, 0.042553775012493134, 0.024649372324347496, 0.017142141237854958, -0.14335525035858154, -0.056465886533260345, -0.07410109043121338, -0.07212904840707779, 0.14890781044960022, 0.06852798163890839, -0.04865268990397453, -0.10553615540266037, -0.05540597811341286, -0.028673559427261353, 0.09865686297416687, 0.23239849507808685, -0.029482951387763023, 0.0751158595085144, 0.12544603645801544, -0.059442974627017975, -0.1634644716978073, -0.08181850612163544, -0.0019266002345830202, 0.006232462823390961, 0.03368137404322624, -0.14238983392715454, 0.11872518062591553, 0.09469202160835266, -0.045237913727760315, 0.06925308704376221, -0.21317125856876373, -0.13035236299037933, 0.2331845760345459, 0.03736348822712898, 0.24151913821697235, -0.09983715415000916, 0.006840210873633623, -0.07103470712900162, -0.2602175176143646, 0.14346709847450256, -0.0496080256998539, 0.06788614392280579, -0.01192167866975069, 0.08331821858882904, 0.03128081560134888, -0.051637474447488785, 0.11514491587877274, -0.04300474748015404, 0.026104159653186798, -0.06314965337514877, -0.027456868439912796, -0.10052863508462906, -0.011186731979250908, 0.12476605921983719, -0.008947029709815979, 0.07354266196489334, -0.053235530853271484, -0.02783479541540146, -0.06749281287193298, 0.09105397760868073, -0.0036242378409951925, -0.12337974458932877, -0.12150578200817108, 0.015243262983858585, 0.023499350994825363, -0.004460720811039209, 0.13543067872524261, 0.032311078161001205, 0.03195106238126755, 0.12698426842689514, 0.0011288173263892531, -0.05838295444846153, -0.05179784446954727, -0.02332853339612484, -0.03729570657014847, 0.04277007654309273, -0.2315577268600464, 0.042913977056741714, 0.08973389863967896, -0.02429349534213543, 0.08071553707122803, 0.03323974460363388, -0.08882325887680054, -0.01292018499225378, 0.08633676916360855, -0.1634047031402588, 0.003932304680347443, 0.031208602711558342, -0.030016126111149788, -0.053901299834251404, 0.042532630264759064, 0.1669556051492691, -0.08378978073596954, -0.09300218522548676, 0.006251756567507982, 0.0609479583799839, -0.07926783710718155, 0.21423928439617157, 0.0814768597483635, 0.029044121503829956, -0.12923672795295715, 0.05272123962640762, 0.0802306979894638, 0.02982558310031891, -0.0375606045126915, 0.04813351482152939, -0.06989958882331848, -0.047519832849502563, 0.11048652976751328, 0.058451395481824875, -0.14487192034721375, 0.007330824621021748, -0.09855528920888901, 0.0019675903022289276, 0.030701445415616035, 0.08993455767631531, 0.08885893225669861, 0.014043906703591347, -0.01146574504673481, -0.05275504291057587, -0.04730745032429695, 0.03881124034523964, 0.1364143192768097, 0.059309761971235275, -0.06045287847518921, 0.05678927153348923, -0.03968258202075958, 0.0966840609908104, -0.06264154613018036, 0.04710646718740463, -0.12126164138317108, 0.006668330170214176, -0.19231952726840973, 0.016640987247228622, -0.09985434263944626, -0.028247268870472908, -0.015620337799191475, -0.07394503057003021, -0.03618293255567551, 0.016521451994776726, -0.11910108476877213, -0.0049860007129609585, -0.02692490629851818, 0.048006705939769745, -0.08455365151166916, -0.021383274346590042, 0.10824281722307205, -0.04378695413470268, 0.09888163208961487, 0.09482139348983765, -0.04871603474020958, 0.043692782521247864, -0.15363091230392456, -0.04168395325541496, 0.030668150633573532, 0.024463264271616936, 0.0631430521607399, -0.025793634355068207, 0.04067254438996315, 0.01976950652897358, 0.04059414938092232, -0.04448724165558815, 0.10960238426923752, -0.15151244401931763, -0.0671793669462204, 0.00011683769116643816, -0.05790809169411659, -0.014848561026155949, -0.026268357411026955, 0.022683726623654366, 0.08078267425298691, 0.13646773993968964, -0.032524093985557556, 0.052591025829315186, -0.17531676590442657, -0.016980916261672974, -0.03903017193078995, -0.12076622247695923, -0.028021719306707382, -0.06257562339305878, 0.0177166610956192, -0.0361253097653389, 0.1989169865846634, 0.08811154961585999, 0.019497482106089592, -0.015221300534904003, 0.06687363237142563, 0.1028793603181839, 0.0006528186495415866, 0.11328747123479843, 0.005736281163990498, 0.010617569088935852, -0.11642453819513321, 0.03019550070166588, 0.08177503943443298, -0.004424018319696188, 0.027387402951717377, 0.12944544851779938, 0.06338845193386078, 0.04532578960061073, -0.00272260676138103, -0.016715995967388153, -0.005081219598650932, -0.15148261189460754, 0.029894812032580376, 0.07254249602556229, 0.04081392660737038, 0.08715370297431946, 0.08555500954389572, -0.043129995465278625, 0.026691773906350136, -0.01695743389427662, -0.03154285252094269, -0.13368545472621918, -0.07140322029590607, -0.0751519575715065, -0.10226991772651672, -0.025265082716941833, -0.09706517308950424, 0.020971931517124176, 0.12248075008392334, 0.035187553614377975, -0.05483673885464668, 0.03312045708298683, 0.031071601435542107, -0.12582124769687653, 0.015637321397662163, 0.02808859944343567, -0.01859053410589695, 0.012155929580330849, -0.05864463746547699, -0.05706210434436798, 0.0929759219288826, 0.04182528331875801, -0.006228114943951368, -0.004177142400294542, 0.06373509019613266, -0.06839676201343536, -0.07669884711503983, -0.033477868884801865, 0.015711231157183647, -0.015228357166051865, 0.11903061717748642, 0.009687052108347416, 0.03539477661252022, 0.023377863690257072, 0.19738027453422546, -0.022900160402059555, -0.12848341464996338, -0.13717658817768097, 0.3130824863910675, -0.030550846830010414, 0.016169579699635506, 0.037188656628131866, -0.043584536761045456, -0.05181117728352547, 0.2668749988079071, 0.23132050037384033, -0.10617513209581375, -0.036326780915260315, 0.002918423619121313, -0.010869869031012058, 0.01588200032711029, 0.12421649694442749, 0.06579365581274033, 0.20140336453914642, -0.0787770226597786, 0.05723331496119499, -0.04636711627244949, -0.0015555331483483315, -0.13356120884418488, 0.048476267606019974, 0.012505147606134415, -0.036819882690906525, -0.0019584903493523598, 0.10713252425193787, -0.06597097218036652, -0.13438481092453003, -0.09291777014732361, -0.07948490977287292, -0.16284753382205963, -0.06284993886947632, -0.03855057805776596, 0.004230213817209005, 0.0686657577753067, -0.07165303826332092, 0.03753165528178215, 0.014966042712330818, -0.0028669300954788923, -0.11723986268043518, -0.06298157572746277, 0.14481359720230103, -0.006852112710475922, 0.18865497410297394, 0.041680771857500076, 0.059896789491176605, 0.08441737294197083, 0.025761501863598824, -0.10051096975803375, 0.04175613448023796, 0.015371029265224934, 0.01757776364684105, 0.055556412786245346, -0.038106780499219894, -0.0036027904134243727, -0.13165518641471863, 0.045289624482393265, -0.08016326278448105, -0.004807161632925272, 0.03781992569565773, 0.012719711288809776, -0.09604611992835999, 0.004157234448939562, -0.13439448177814484, 0.06449896842241287, 0.10824368894100189, -0.088377945125103, 0.0325905866920948, -0.12299539893865585, 0.0716412365436554, 0.06995440274477005, -0.060279473662376404, -0.07705986499786377, -0.15029634535312653, -0.014078059233725071, 0.007147781550884247, -0.01082797534763813, -0.16395728290081024, 0.036002468317747116, -0.05809948593378067, -0.03575007617473602, -0.10098685324192047, 0.10827844589948654, 0.04679866507649422, 0.005564464256167412, 0.004549181088805199, -0.07042834162712097, -0.04820898547768593, 0.03168272227048874, -0.07550720125436783, -0.08239524066448212 ]
null
null
transformers
### Model Details: 90% Sparse DistilBERT-Base (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754). Visualization of Prunce Once for All method from [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754): ![Zafrir2021_Fig1.png](https://s3.amazonaws.com/moonup/production/uploads/6297f0e30bd2f58c647abb1d/nSDP62H9NHC1FA0C429Xo.png) | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Date | September 30, 2021 | | Version | 1 | | Type | NLP - General sparse language model | | Architecture | "The method consists of two steps, teacher preparation and student pruning. The sparse pre-trained model we trained is the model we use for transfer learning while maintaining its sparsity pattern. We call the method Prune Once for All since we show how to fine-tune the sparse pre-trained models for several language tasks while we prune the pre-trained model only once." [(Zafrir et al., 2021)](https://arxiv.org/abs/2111.05754) | | Paper or Other Resources | [Zafrir et al. (2021)](https://arxiv.org/abs/2111.05754); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | This is a general sparse language model; in its current form, it is not ready for downstream prediction tasks, but it can be fine-tuned for several language tasks including (but not limited to) question-answering, genre natural language inference, and sentiment classification. | | Primary intended users | Anyone who needs an efficient general language model for other downstream tasks. | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is an example of how to import this model in Python: ```python import transformers model = transformers.AutoModelForQuestionAnswering.from_pretrained('Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa') ``` For more code examples, refer to the [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package/tree/main/research/prune-once-for-all). ### Metrics (Model Performance): | Model | Model Size | SQuADv1.1 (EM/F1) | MNLI-m (Acc) | MNLI-mm (Acc) | QQP (Acc/F1) | QNLI (Acc) | SST-2 (Acc) | |-------------------------------|:----------:|:-----------------:|:------------:|:-------------:|:------------:|:----------:|:-----------:| | [80% Sparse BERT-Base uncased fine-tuned on SQuAD1.1](https://huggingface.co/Intel/bert-base-uncased-squadv1.1-sparse-80-1x4-block-pruneofa) | - | 81.29/88.47 | - | - | - | - | - | | [85% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-85-unstructured-pruneofa) | Medium | 81.10/88.42 | 82.71 | 83.67 | 91.15/88.00 | 90.34 | 91.46 | | [90% Sparse BERT-Base uncased](https://huggingface.co/Intel/bert-base-uncased-sparse-90-unstructured-pruneofa) | Medium | 79.83/87.25 | 81.45 | 82.43 | 90.93/87.72 | 89.07 | 90.88 | | [90% Sparse BERT-Large uncased](https://huggingface.co/Intel/bert-large-uncased-sparse-90-unstructured-pruneofa) | Large | 83.35/90.20 | 83.74 | 84.20 | 91.48/88.43 | 91.39 | 92.95 | | [85% Sparse DistilBERT uncased](https://huggingface.co/Intel/distilbert-base-uncased-sparse-85-unstructured-pruneofa) | Small | 78.10/85.82 | 81.35 | 82.03 | 90.29/86.97 | 88.31 | 90.60 | | [**90% Sparse DistilBERT uncased**](https://huggingface.co/Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa) | Small | 76.91/84.82 | 80.68 | 81.47 | 90.05/86.67 | 87.66 | 90.02 | All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | [English Wikipedia Dataset](https://huggingface.co/datasets/wikipedia) (2500M words). | | Motivation | To build an efficient and accurate base model for several downstream language tasks. | | Preprocessing | "We use the English Wikipedia dataset (2500M words) for training the models on the pre-training task. We split the data into train (95%) and validation (5%) sets. Both sets are preprocessed as described in the models’ original papers ([Devlin et al., 2019](https://arxiv.org/abs/1810.04805), [Sanh et al., 2019](https://arxiv.org/abs/1910.01108)). We process the data to use the maximum sequence length allowed by the models, however, we allow shorter sequences at a probability of 0:1." | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @article{zafrir2021prune, title={Prune Once for All: Sparse Pre-Trained Language Models}, author={Zafrir, Ofir and Larey, Ariel and Boudoukh, Guy and Shen, Haihao and Wasserblat, Moshe}, journal={arXiv preprint arXiv:2111.05754}, year={2021} } ```
{"language": "en", "license": "apache-2.0", "datasets": ["wikipedia"]}
fill-mask
Intel/distilbert-base-uncased-sparse-90-unstructured-pruneofa
[ "transformers", "pytorch", "tf", "distilbert", "fill-mask", "en", "dataset:wikipedia", "arxiv:2111.05754", "arxiv:1810.04805", "arxiv:1910.01108", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.05754", "1810.04805", "1910.01108" ]
[ "en" ]
TAGS #transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
### Model Details: 90% Sparse DistilBERT-Base (uncased) Prune Once for All This model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term "sparse" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021). Visualization of Prunce Once for All method from Zafrir et al. (2021): !Zafrir2021\_Fig1.png ### How to use Here is an example of how to import this model in Python: For more code examples, refer to the GitHub Repo. ### Metrics (Model Performance): All the results are the mean of two seperate experiments with the same hyper-parameters and different seeds. ### BibTeX entry and citation info
[ "### Model Details: 90% Sparse DistilBERT-Base (uncased) Prune Once for All\n\n\nThis model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term \"sparse\" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021).\n\n\nVisualization of Prunce Once for All method from Zafrir et al. (2021):\n!Zafrir2021\\_Fig1.png", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n", "### Model Details: 90% Sparse DistilBERT-Base (uncased) Prune Once for All\n\n\nThis model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term \"sparse\" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021).\n\n\nVisualization of Prunce Once for All method from Zafrir et al. (2021):\n!Zafrir2021\\_Fig1.png", "### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.", "### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.", "### BibTeX entry and citation info" ]
[ 82, 203, 33, 36, 11 ]
[ "passage: TAGS\n#transformers #pytorch #tf #distilbert #fill-mask #en #dataset-wikipedia #arxiv-2111.05754 #arxiv-1810.04805 #arxiv-1910.01108 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n### Model Details: 90% Sparse DistilBERT-Base (uncased) Prune Once for All\n\n\nThis model is a sparse pre-trained model that can be fine-tuned for a wide range of language tasks. The process of weight pruning is forcing some of the weights of the neural network to zero. Setting some of the weights to zero results in sparser matrices. Updating neural network weights does involve matrix multiplication, and if we can keep the matrices sparse while retaining enough important information, we can reduce the overall computational overhead. The term \"sparse\" in the title of the model indicates a ratio of sparsity in the weights; for more details, you can read Zafrir et al. (2021).\n\n\nVisualization of Prunce Once for All method from Zafrir et al. (2021):\n!Zafrir2021\\_Fig1.png### How to use\n\n\nHere is an example of how to import this model in Python:\n\n\nFor more code examples, refer to the GitHub Repo.### Metrics (Model Performance):\n\n\n\nAll the results are the mean of two seperate experiments with the same hyper-parameters and different seeds.### BibTeX entry and citation info" ]
[ -0.020796973258256912, 0.10594657808542252, -0.005017620511353016, 0.09171494096517563, 0.14268235862255096, 0.021284013986587524, 0.054298337548971176, 0.0627967044711113, -0.011991120874881744, 0.14330120384693146, 0.07680238038301468, 0.09305538982152939, 0.07426553219556808, 0.1149081364274025, 0.052237022668123245, -0.2781694829463959, 0.048309117555618286, -0.06740029901266098, 0.06710059195756912, 0.08541073650121689, 0.09717031568288803, -0.07277456670999527, 0.09646616876125336, 0.033457960933446884, -0.1432129293680191, 0.00690682465210557, 0.016918644309043884, -0.01326915342360735, 0.07475345581769943, 0.04525911062955856, 0.0727495476603508, -0.045417457818984985, 0.05082311853766441, -0.1585707813501358, 0.003756814869120717, 0.07526445388793945, 0.015124206431210041, 0.09279485791921616, 0.019929176196455956, -0.0490565188229084, 0.17557081580162048, -0.052738532423973083, 0.06291985511779785, 0.05705869942903519, -0.13532792031764984, -0.08476126194000244, -0.11857432872056961, 0.12946203351020813, 0.009507755748927593, 0.06876762956380844, -0.02238660305738449, 0.05550814047455788, 0.014387287199497223, 0.02662600390613079, 0.17815200984477997, -0.23616431653499603, -0.03602714091539383, 0.09749878197908401, 0.021229403093457222, 0.014001403003931046, -0.05755510926246643, 0.003039795206859708, 0.028581464663147926, 0.01663280837237835, 0.09179811179637909, -0.004603717476129532, -0.01303827203810215, -0.0266058761626482, -0.1391443908214569, -0.08868812769651413, 0.11828877031803131, 0.009956426918506622, -0.08024685829877853, -0.11392758041620255, -0.08968058228492737, -0.04411957785487175, -0.049365896731615067, -0.03260696306824684, 0.014841358177363873, 0.044642373919487, 0.13611440360546112, -0.08693783730268478, -0.06936358660459518, -0.007625176105648279, -0.05349002033472061, 0.1918952465057373, 0.03352578729391098, 0.026621395722031593, 0.022574253380298615, 0.060397256165742874, -0.19171470403671265, -0.08263907581567764, 0.0032843472436070442, -0.08830702304840088, -0.07991980761289597, 0.005700167268514633, -0.019115708768367767, -0.06366327404975891, -0.014800885692238808, 0.1291261464357376, -0.09447284042835236, 0.046137649565935135, -0.03879668563604355, 0.02756226435303688, 0.05293276906013489, 0.09994696825742722, -0.06434450298547745, -0.02496260032057762, 0.014313213527202606, 0.012483824975788593, 0.05247543379664421, -0.04439171031117439, -0.050583694130182266, -0.0021233665756881237, -0.010209031403064728, 0.012356257997453213, 0.01432438101619482, 0.029971344396471977, -0.06893591582775116, -0.033833082765340805, 0.05420588329434395, -0.11087445914745331, 0.03627984598278999, -0.0008949723560363054, -0.027714349329471588, 0.1273760199546814, 0.04724118113517761, -0.006953149568289518, -0.07490058988332748, 0.10904382169246674, -0.1492416113615036, 0.007255815900862217, -0.11080321669578552, -0.15598054230213165, -0.0006319915410131216, -0.05927108973264694, -0.048547107726335526, -0.0649556890130043, -0.12103888392448425, -0.03703076019883156, 0.03949485719203949, -0.037868861109018326, -0.049734797328710556, 0.023719031363725662, -0.03771866485476494, 0.015920216217637062, 0.04572772607207298, -0.025711607187986374, -0.005225088447332382, 0.0419735424220562, -0.004541544243693352, 0.05186556279659271, -0.005601030774414539, 0.024199100211262703, -0.07922322303056717, 0.031664952635765076, -0.1484951376914978, 0.06864867359399796, -0.07254618406295776, 0.05187486857175827, -0.11819309741258621, -0.0335385836660862, -0.11395273357629776, 0.01875278912484646, 0.03976355865597725, 0.1650097370147705, -0.2085309475660324, -0.041707199066877365, 0.18586601316928864, -0.15292413532733917, -0.04329046234488487, 0.08443895727396011, -0.03948889672756195, 0.06482101231813431, 0.09370766580104828, 0.14834898710250854, 0.035498347133398056, -0.12144017964601517, -0.06429630517959595, -0.059013787657022476, -0.08528205752372742, 0.07337721437215805, 0.06281419098377228, -0.051387764513492584, -0.04689663648605347, 0.023777946829795837, -0.00718960165977478, -0.03678758069872856, -0.023646513000130653, -0.03448747470974922, -0.025661751627922058, 0.020677799358963966, 0.06046547740697861, 0.019257770851254463, -0.05795355886220932, 0.007861210033297539, -0.09114941954612732, 0.11977038532495499, 0.08951975405216217, -0.046022962778806686, 0.03343743085861206, -0.029698658734560013, 0.08006106317043304, -0.040725983679294586, -0.009266996756196022, -0.15322814881801605, -0.03202768415212631, 0.02106586843729019, 0.007313929032534361, 0.10313940793275833, -0.023214241489768028, 0.05280014127492905, 0.027154987677931786, 0.00815779808908701, 0.045477163046598434, -0.021837852895259857, -0.01917874440550804, -0.07365955412387848, -0.11528059095144272, -0.04489320144057274, -0.029656460508704185, 0.14518673717975616, -0.19101844727993011, 0.013483980670571327, 0.01880382001399994, 0.06697108596563339, 0.01096109114587307, -0.0969918966293335, 0.0206717811524868, -0.014219650998711586, -0.005740933120250702, -0.044704072177410126, 0.018620025366544724, 0.002696660114452243, 0.011155983433127403, -0.005199650768190622, -0.15140920877456665, -0.04596105217933655, 0.1012946143746376, -0.007629528641700745, -0.09049561619758606, -0.08069102466106415, -0.035432118922472, 0.014881957322359085, -0.1032807007431984, -0.09201399981975555, 0.06780727207660675, 0.018564920872449875, 0.07160236686468124, -0.06159912794828415, 0.015039132907986641, 0.021435696631669998, -0.01544142048805952, -0.034038789570331573, 0.04839656502008438, 0.08619634807109833, -0.06573761254549026, 0.08356035500764847, -0.02495138719677925, -0.012088912539184093, 0.07819970697164536, 0.0036849479656666517, -0.07262909412384033, -0.05512228235602379, 0.05199996754527092, 0.018656305968761444, 0.05790126696228981, -0.010359619744122028, 0.017353085801005363, 0.06115949898958206, 0.00013717178080696613, 0.0165675338357687, -0.08336269855499268, 0.025164179503917694, 0.05161261558532715, -0.01323529053479433, -0.015473613515496254, -0.017005471512675285, -0.02773834951221943, 0.06845653802156448, 0.04238904267549515, 0.04054136574268341, -0.01944052055478096, -0.0022024791687726974, -0.10666517168283463, 0.1495826244354248, -0.08178018033504486, -0.16895855963230133, -0.14303411543369293, 0.001900038099847734, -0.056842949241399765, -0.005570966750383377, 0.010102491825819016, -0.025282975286245346, -0.07977644354104996, -0.07303474843502045, 0.10255696624517441, -0.08226418495178223, -0.02282136306166649, -0.04568205401301384, -0.042878855019807816, -0.008722890168428421, -0.11057281494140625, -0.013931794092059135, -0.04952467605471611, -0.027437247335910797, -0.00826195813715458, 0.017766479402780533, 0.08521045744419098, 0.13851727545261383, -0.022522898390889168, 0.02812117524445057, -0.0036644835490733385, 0.2599271237850189, -0.051834117621183395, 0.09322503954172134, 0.15515124797821045, -0.006353371310979128, 0.09872378408908844, 0.08854683488607407, 0.04373127222061157, -0.039518605917692184, 0.02082762122154236, 0.07307291030883789, -0.09288361668586731, -0.17810504138469696, -0.10801712423563004, -0.07239459455013275, -0.039349377155303955, 0.11873183399438858, 0.031813617795705795, 0.08856841921806335, 0.08122041076421738, -0.03963872417807579, 0.02015141397714615, -0.0047827973030507565, 0.11596909165382385, 0.12382692843675613, 0.016284814104437828, 0.09881183505058289, -0.04825013503432274, -0.005847834516316652, 0.09666480123996735, -0.027788972482085228, 0.18543623387813568, 0.01653996668756008, 0.09225711971521378, 0.09356837719678879, 0.044659875333309174, 0.03474666550755501, 0.11099374294281006, -0.07466211169958115, -0.013557976111769676, -0.05094406381249428, -0.09433924406766891, -0.06689615547657013, 0.0756634920835495, 0.026208212599158287, 0.00947087537497282, -0.032895613461732864, -0.07687028497457504, 0.04756193608045578, 0.07694379985332489, 0.04965948313474655, -0.20729126036167145, -0.04573303833603859, 0.0168110653758049, -0.033771321177482605, -0.04984711855649948, -0.00611095828935504, 0.03615107387304306, -0.09368310868740082, 0.04467041790485382, -0.05263260751962662, 0.09352678805589676, -0.02718687616288662, -0.0050620706751942635, -0.06268620491027832, 0.1230568066239357, -0.040452420711517334, 0.0501585528254509, -0.12959693372249603, 0.07463528960943222, 0.023867670446634293, 0.050014570355415344, -0.029707351699471474, 0.038023319095373154, 0.043210431933403015, -0.01145097054541111, 0.11741746217012405, 0.0060312761925160885, -0.05181034654378891, -0.025321437045931816, -0.03199119120836258, -0.01772802695631981, 0.040506478399038315, -0.05986447259783745, 0.08332717418670654, -0.030839376151561737, 0.037787191569805145, -0.0007430153782479465, 0.15943196415901184, -0.1100357323884964, -0.16235503554344177, 0.05308640003204346, -0.05423716828227043, -0.030887259170413017, 0.00970513466745615, -0.031728345900774, -0.04029993712902069, 0.13259857892990112, -0.076065294444561, -0.10778119415044785, -0.17400087416172028, 0.05953453853726387, 0.1275341659784317, -0.07038627564907074, 0.07039672881364822, -0.043947137892246246, 0.10423105955123901, -0.08660216629505157, -0.0940791442990303, 0.03434935584664345, -0.023845098912715912, -0.07807076722383499, -0.0006828220211900771, 0.18518933653831482, 0.050870347768068314, 0.0580039881169796, -0.011460723355412483, 0.10830886662006378, -0.005086869467049837, -0.14933209121227264, -0.0036675543524324894, 0.12906992435455322, 0.060286812484264374, 0.03928263112902641, -0.07547865062952042, 0.0039105722680687904, -0.060890235006809235, 0.05501646548509598, 0.1539817750453949, 0.1769317090511322, -0.08925356715917587, 0.06713293492794037, 0.07306993752717972, -0.0800638422369957, -0.18592651188373566, -0.0007384885102510452, 0.0245016161352396, 0.015021958388388157, 0.08751043677330017, -0.18801292777061462, 0.07604970782995224, 0.10826116800308228, -0.017438307404518127, 0.05561089143157005, -0.29182687401771545, -0.08459185808897018, 0.02906641736626625, 0.07686515152454376, 0.09324105083942413, -0.14076751470565796, -0.06114626303315163, -0.016480959951877594, -0.1034984141588211, 0.2169184684753418, -0.06002833694219589, 0.07289515435695648, 0.016305087134242058, 0.037340305745601654, 0.06925856322050095, -0.034701451659202576, 0.11793205142021179, 0.014141983352601528, 0.008493008092045784, -0.03503066673874855, -0.08762957900762558, 0.016872745007276535, -0.04138649255037308, 0.15509620308876038, -0.0018557505682110786, 0.035323549062013626, -0.12388277053833008, -0.05200023204088211, -0.05619916319847107, 0.05895139276981354, -0.06647424399852753, -0.0736808329820633, -0.11395987868309021, 0.05211037024855614, 0.09340382367372513, 0.019613265991210938, 0.051047373563051224, -0.045420851558446884, 0.03733185678720474, 0.20321092009544373, 0.03399345278739929, 0.04872012883424759, -0.13105718791484833, 0.022850854322314262, -0.008400697261095047, 0.04696425795555115, -0.23304681479930878, 0.029197033494710922, 0.09795752912759781, 0.06535153090953827, 0.09298887103796005, 0.04032309353351593, -0.14010922610759735, -0.03105631098151207, 0.06127222999930382, -0.10709568858146667, -0.18991027772426605, -0.007879969663918018, -0.0344136543571949, -0.11268184334039688, -0.049401141703128815, 0.13111186027526855, -0.07587078958749771, -0.025973448529839516, 0.029032165184617043, 0.06763676553964615, -0.03353586420416832, 0.08864856511354446, 0.05684272199869156, 0.026461658999323845, -0.09560985118150711, 0.04657898470759392, 0.07215981185436249, -0.05780380964279175, -0.00526448292657733, 0.13747985661029816, -0.06282800436019897, -0.040491845458745956, -0.10687948018312454, 0.013698570430278778, -0.11305902898311615, -0.013628852553665638, 0.04280006140470505, -0.07288551330566406, 0.007913137786090374, 0.021546216681599617, 0.038566846400499344, 0.04719259962439537, -0.04686448723077774, 0.0097713777795434, -0.10882793366909027, 0.04184891656041145, 0.03291907161474228, 0.03618891164660454, -0.09953352063894272, 0.10491815954446793, 0.0010585886193439364, -0.004583090543746948, -0.028118779882788658, -0.038795486092567444, -0.10115374624729156, -0.031556181609630585, 0.047154493629932404, -0.010117597877979279, -0.0846790224313736, -0.04495112970471382, 0.0021789814345538616, -0.0188789963722229, -0.005109493620693684, 0.009135534055531025, -0.04200863838195801, -0.03613508120179176, -0.02756074257194996, 0.03044874221086502, -0.13089168071746826, 0.031450752168893814, 0.09497608244419098, -0.05940048396587372, 0.07233917713165283, 0.030530987307429314, -0.0006072355899959803, 0.031361889094114304, 0.0021143481135368347, 0.010178573429584503, 0.04911180958151817, -0.011034923605620861, 0.03165840357542038, -0.09356958419084549, 0.022305045276880264, -0.05532848462462425, -0.006333245430141687, -0.012064232490956783, 0.054887205362319946, -0.12998177111148834, 0.016147350892424583, -0.0065216426737606525, -0.06916498392820358, -0.039856232702732086, 0.03122492879629135, 0.07128726691007614, 0.05937657505273819, 0.1345943659543991, -0.007710988633334637, 0.044182877987623215, -0.1580691933631897, 0.004210933111608028, -0.01451533567160368, -0.017478425055742264, 0.025926601141691208, -0.028312990441918373, 0.004233437590301037, -0.0004757997812703252, 0.09807492047548294, 0.03586329147219658, -0.03708953782916069, 0.036876291036605835, 0.04907058924436569, -0.024125292897224426, -0.017321445047855377, 0.12991070747375488, 0.02862323261797428, -0.019481010735034943, 0.011665847152471542, 0.008044404909014702, 0.003843782702460885, 0.02508717216551304, 0.13726486265659332, 0.10357320308685303, 0.025831103324890137, 0.03843817859888077, 0.0010285488096997142, -0.005491980351507664, -0.13840030133724213, 0.07762765139341354, 0.005306396167725325, 0.01831137202680111, -0.03268130123615265, 0.030963126569986343, 0.17398062348365784, -0.10916920751333237, 0.13985836505889893, 0.04444897919893265, -0.07063500583171844, -0.07808726280927658, -0.16053177416324615, -0.032444801181554794, -0.04548509046435356, -0.018716294318437576, -0.10919753462076187, 0.035224296152591705, 0.1384917050600052, -0.005264618434011936, 0.0035388029646128416, 0.11142411082983017, -0.08775156736373901, -0.08931077271699905, 0.0031576831825077534, 0.010582813993096352, -0.005084411706775427, 0.03369259834289551, 0.005360973533242941, -0.012557503767311573, 0.039316289126873016, 0.07935583591461182, 0.05572476238012314, 0.09038028866052628, 0.0411553680896759, -0.05327972024679184, -0.05290175601840019, -0.0030840160325169563, 0.016940439119935036, 0.0037471847608685493, 0.14496444165706635, 0.029454199597239494, -0.07710818201303482, -0.024048898369073868, 0.1685083955526352, -0.03207387030124664, -0.07131285965442657, -0.16412289440631866, 0.22153325378894806, 0.058317966759204865, 0.035398323088884354, -0.03680767863988876, -0.09706922620534897, -0.0170869380235672, 0.20337790250778198, 0.16330620646476746, -0.02872173860669136, -0.01928141713142395, 0.0044787852093577385, 0.004626232199370861, 0.023022333160042763, 0.05369359254837036, -0.011190524324774742, 0.26974496245384216, -0.08158451318740845, 0.12683822214603424, -0.09686533361673355, -0.028012217953801155, -0.10479048639535904, 0.09073910862207413, 0.02104760892689228, -0.030941952019929886, -0.04041224718093872, 0.10297965258359909, -0.054033275693655014, -0.1682613343000412, -0.0018768355948850513, -0.08526849746704102, -0.09837981313467026, -0.010567463003098965, -0.07670345902442932, 0.03689851984381676, 0.08641336858272552, -0.01037272997200489, -0.03196581080555916, 0.05375230684876442, 0.02360059879720211, -0.09894376993179321, -0.0654790922999382, 0.07041210681200027, 0.02351268380880356, 0.19044749438762665, 0.0024026830215007067, -0.0098972637206316, 0.09857786446809769, 0.0020733282435685396, -0.10429201275110245, 0.011631079949438572, 0.01116650179028511, -0.01622486300766468, -0.016864778473973274, 0.07868019491434097, 0.014559805393218994, -0.026990963146090508, 0.02148008532822132, -0.14180494844913483, -0.011684725061058998, 0.025760499760508537, 0.01531408354640007, -0.07237783074378967, 0.05313464626669884, -0.11084018647670746, 0.1329921931028366, 0.1613745391368866, -0.015174535103142262, 0.002278202911838889, -0.06391221284866333, 0.018849080428481102, 0.028431251645088196, 0.10463397949934006, -0.02041400969028473, -0.1365574449300766, -0.011525618843734264, -0.031250882893800735, -0.015907200053334236, -0.15318578481674194, -0.04162873327732086, -0.002572659868746996, -0.0008884176495485008, -0.030931415036320686, 0.08008932322263718, 0.09874067455530167, -0.013198425062000751, -0.009164763614535332, -0.14240919053554535, 0.01095039863139391, 0.12155713886022568, -0.0679367184638977, -0.02928597293794155 ]
null
null
transformers
## Model Details: Dynamic-TinyBERT: Boost TinyBERT's Inference Efficiency by Dynamic Sequence Length Dynamic-TinyBERT has been fine-tuned for the NLP task of question answering, trained on the SQuAD 1.1 dataset. [Guskin et al. (2021)](https://neurips2021-nlp.github.io/papers/16/CameraReady/Dynamic_TinyBERT_NLSP2021_camera_ready.pdf) note: > Dynamic-TinyBERT is a TinyBERT model that utilizes sequence-length reduction and Hyperparameter Optimization for enhanced inference efficiency per any computational budget. Dynamic-TinyBERT is trained only once, performing on-par with BERT and achieving an accuracy-speedup trade-off superior to any other efficient approaches (up to 3.3x with <1% loss-drop). | Model Detail | Description | | ----------- | ----------- | | Model Authors - Company | Intel | | Model Card Authors | Intel in collaboration with Hugging Face | | Date | November 22, 2021 | | Version | 1 | | Type | NLP - Question Answering | | Architecture | "For our Dynamic-TinyBERT model we use the architecture of TinyBERT6L: a small BERT model with 6 layers, a hidden size of 768, a feed forward size of 3072 and 12 heads." [Guskin et al. (2021)](https://gyuwankim.github.io/publication/dynamic-tinybert/poster.pdf) | | Paper or Other Resources | [Paper](https://neurips2021-nlp.github.io/papers/16/CameraReady/Dynamic_TinyBERT_NLSP2021_camera_ready.pdf); [Poster](https://gyuwankim.github.io/publication/dynamic-tinybert/poster.pdf); [GitHub Repo](https://github.com/IntelLabs/Model-Compression-Research-Package) | | License | Apache 2.0 | | Questions or Comments | [Community Tab](https://huggingface.co/Intel/dynamic_tinybert/discussions) and [Intel Developers Discord](https://discord.gg/rv2Gp55UJQ)| | Intended Use | Description | | ----------- | ----------- | | Primary intended uses | You can use the model for the NLP task of question answering: given a corpus of text, you can ask it a question about that text, and it will find the answer in the text. | | Primary intended users | Anyone doing question answering | | Out-of-scope uses | The model should not be used to intentionally create hostile or alienating environments for people.| ### How to use Here is how to import this model in Python: <details> <summary> Click to expand </summary> ```python from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("Intel/dynamic_tinybert") model = AutoModelForQuestionAnswering.from_pretrained("Intel/dynamic_tinybert") ``` </details> | Factors | Description | | ----------- | ----------- | | Groups | Many Wikipedia articles with question and answer labels are contained in the training data | | Instrumentation | - | | Environment | Training was completed on a Titan GPU. | | Card Prompts | Model deployment on alternate hardware and software will change model performance | | Metrics | Description | | ----------- | ----------- | | Model performance measures | F1 | | Decision thresholds | - | | Approaches to uncertainty and variability | - | | Training and Evaluation Data | Description | | ----------- | ----------- | | Datasets | SQuAD1.1: "Stanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by crowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span, from the corresponding reading passage, or the question might be unanswerable." (https://huggingface.co/datasets/squad)| | Motivation | To build an efficient and accurate model for the question answering task. | | Preprocessing | "We start with a pre-trained general-TinyBERT student, which was trained to learn the general knowledge of BERT using the general-distillation method presented by TinyBERT. We perform transformer distillation from a fine- tuned BERT teacher to the student, following the same training steps used in the original TinyBERT: (1) intermediate-layer distillation (ID) — learning the knowledge residing in the hidden states and attentions matrices, and (2) prediction-layer distillation (PD) — fitting the predictions of the teacher." ([Guskin et al., 2021](https://neurips2021-nlp.github.io/papers/16/CameraReady/Dynamic_TinyBERT_NLSP2021_camera_ready.pdf))| Model Performance Analysis: | Model | Max F1 (full model) | Best Speedup within BERT-1% | |------------------|---------------------|-----------------------------| | Dynamic-TinyBERT | 88.71 | 3.3x | | Ethical Considerations | Description | | ----------- | ----------- | | Data | The training data come from Wikipedia articles | | Human life | The model is not intended to inform decisions central to human life or flourishing. It is an aggregated set of labelled Wikipedia articles. | | Mitigations | No additional risk mitigation strategies were considered during model development. | | Risks and harms | Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al., 2021](https://aclanthology.org/2021.acl-long.330.pdf), and [Bender et al., 2021](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Beyond this, the extent of the risks involved by using the model remain unknown.| | Use cases | - | | Caveats and Recommendations | | ----------- | | Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. There are no additional caveats or recommendations for this model. | ### BibTeX entry and citation info ```bibtex @misc{https://doi.org/10.48550/arxiv.2111.09645, doi = {10.48550/ARXIV.2111.09645}, url = {https://arxiv.org/abs/2111.09645}, author = {Guskin, Shira and Wasserblat, Moshe and Ding, Ke and Kim, Gyuwan}, keywords = {Computation and Language (cs.CL), Machine Learning (cs.LG), FOS: Computer and information sciences, FOS: Computer and information sciences}, title = {Dynamic-TinyBERT: Boost TinyBERT's Inference Efficiency by Dynamic Sequence Length}, publisher = {arXiv}, year = {2021}, ```
{"language": ["en"], "license": "apache-2.0", "tags": ["question-answering", "bert"], "datasets": ["squad"]}
question-answering
Intel/dynamic_tinybert
[ "transformers", "pytorch", "bert", "question-answering", "en", "dataset:squad", "arxiv:2111.09645", "license:apache-2.0", "model-index", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[ "2111.09645" ]
[ "en" ]
TAGS #transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.09645 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us
Model Details: Dynamic-TinyBERT: Boost TinyBERT's Inference Efficiency by Dynamic Sequence Length ------------------------------------------------------------------------------------------------- Dynamic-TinyBERT has been fine-tuned for the NLP task of question answering, trained on the SQuAD 1.1 dataset. Guskin et al. (2021) note: > > Dynamic-TinyBERT is a TinyBERT model that utilizes sequence-length reduction and Hyperparameter Optimization for enhanced inference efficiency per any computational budget. Dynamic-TinyBERT is trained only once, performing on-par with BERT and achieving an accuracy-speedup trade-off superior to any other efficient approaches (up to 3.3x with <1% loss-drop). > > > ### How to use Here is how to import this model in Python: Click to expand Model Performance Analysis: Model: Dynamic-TinyBERT, Max F1 (full model): 88.71, Best Speedup within BERT-1%: 3.3x ### BibTeX entry and citation info
[ "### How to use\n\n\nHere is how to import this model in Python:\n\n\n\n Click to expand \n\n\n\n\nModel Performance Analysis:\n\n\nModel: Dynamic-TinyBERT, Max F1 (full model): 88.71, Best Speedup within BERT-1%: 3.3x", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.09645 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n", "### How to use\n\n\nHere is how to import this model in Python:\n\n\n\n Click to expand \n\n\n\n\nModel Performance Analysis:\n\n\nModel: Dynamic-TinyBERT, Max F1 (full model): 88.71, Best Speedup within BERT-1%: 3.3x", "### BibTeX entry and citation info" ]
[ 62, 55, 11 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad #arxiv-2111.09645 #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n### How to use\n\n\nHere is how to import this model in Python:\n\n\n\n Click to expand \n\n\n\n\nModel Performance Analysis:\n\n\nModel: Dynamic-TinyBERT, Max F1 (full model): 88.71, Best Speedup within BERT-1%: 3.3x### BibTeX entry and citation info" ]
[ -0.10313211381435394, 0.11044196039438248, -0.0005834275507368147, 0.09411479532718658, 0.041704993695020676, 0.012820381671190262, -0.029769159853458405, 0.10355652123689651, 0.02789015881717205, -0.018844211474061012, 0.1749873012304306, 0.11994818598031998, 0.026807617396116257, 0.1325293928384781, -0.008661337196826935, -0.2403373271226883, 0.11071619391441345, 0.07797316461801529, -0.065947987139225, 0.10926260054111481, 0.10022327303886414, -0.11256937682628632, 0.119807668030262, 0.060493577271699905, -0.012112936936318874, 0.017189782112836838, -0.017246657982468605, -0.05777279660105705, 0.06279393285512924, 0.03270484507083893, 0.048137564212083817, -0.0027505068574100733, 0.0475497767329216, -0.0674278736114502, -0.002513420069590211, 0.03368677943944931, 0.0373360700905323, 0.11105059832334518, 0.061005156487226486, 0.029642077162861824, 0.12750190496444702, 0.04625653848052025, -0.0013304679887369275, 0.03672768920660019, -0.05552993342280388, -0.16919361054897308, -0.0612722709774971, 0.029312117025256157, 0.06894781440496445, 0.09442389756441116, 0.0012081823078915477, 0.23339298367500305, -0.14883050322532654, 0.05183996632695198, 0.1230124682188034, -0.3702634871006012, -0.03555871546268463, 0.05387111008167267, 0.1644563227891922, -0.048252809792757034, -0.019215842708945274, -0.024498645216226578, 0.03514840453863144, 0.03214416280388832, 0.12463448941707611, -0.07656431198120117, -0.003843225073069334, 0.055493272840976715, -0.1285748928785324, -0.015432259067893028, 0.11969467997550964, 0.06039037927985191, -0.0660744309425354, -0.009080512449145317, -0.12588945031166077, 0.009990151971578598, -0.09529626369476318, -0.051196396350860596, 0.04538819566369057, -0.003372595412656665, -0.02603224851191044, -0.03631877899169922, -0.07436807453632355, -0.06299956887960434, -0.06368160247802734, 0.06099119037389755, 0.05953701213002205, 0.08666133135557175, -0.028072606772184372, 0.09054110199213028, -0.051989100873470306, -0.06953088939189911, -0.008771185763180256, -0.1092393770813942, 0.014762399718165398, 0.019975516945123672, -0.011693877167999744, 0.055501870810985565, 0.010573909617960453, 0.11839877814054489, 0.09079492837190628, -0.0061182850040495396, 0.11321381479501724, 0.0060667418874800205, 0.006938514765352011, 0.07923436164855957, -0.18730956315994263, -0.11850398033857346, 0.01987314410507679, 0.011928054504096508, -0.008163067512214184, 0.04232248663902283, -0.04953514412045479, -0.05214468762278557, 0.022897033020853996, 0.0013324653264135122, 0.025527726858854294, 0.05795665085315704, -0.020195752382278442, -0.03496124967932701, 0.10533186793327332, -0.026926930993795395, 0.010610123164951801, -0.03233684226870537, -0.0864441841840744, 0.06879919022321701, 0.04885796830058098, 0.0034376245457679033, -0.07367654144763947, 0.03729361295700073, -0.15095777809619904, -0.03255179151892662, -0.062220506370067596, -0.11744813621044159, 0.025147829204797745, -0.03761303797364235, 0.05580006167292595, -0.11885108798742294, -0.1709126979112625, 0.09822340309619904, 0.10267779231071472, -0.0879589170217514, -0.07169611752033234, 0.06997411698102951, -0.02126970700919628, 0.041242655366659164, -0.03820161893963814, 0.14614471793174744, -0.10226287692785263, 0.05569176748394966, 0.0010468009859323502, 0.05000423640012741, -0.07611624151468277, 0.05344196781516075, -0.15290366113185883, -0.0029287594370543957, -0.07133443653583527, 0.023727307096123695, -0.10443718731403351, 0.03784998878836632, -0.19649744033813477, -0.07760787010192871, -0.034198399633169174, 0.03607196733355522, 0.0632440373301506, 0.20393308997154236, -0.1478685885667801, 0.01654626615345478, 0.12177958339452744, 0.014958052895963192, -0.14433611929416656, 0.09815607964992523, -0.05665644258260727, 0.03586559742689133, 0.05494490638375282, 0.08828135579824448, 0.06160791590809822, -0.1971244066953659, -0.018388014286756516, 0.1429060995578766, -0.04310667887330055, -0.20543353259563446, 0.15072296559810638, 0.02568700723350048, -0.06718465685844421, 0.05199709162116051, -0.05250098183751106, 0.15591777861118317, -0.030506810173392296, -0.025818560272455215, -0.03694465011358261, -0.08395286649465561, 0.03319713473320007, 0.015358202159404755, 0.07837645709514618, -0.023964732885360718, -0.1326928287744522, 0.07438237965106964, 0.11467156559228897, -0.004094477277249098, -0.035718053579330444, -0.06507687270641327, 0.12628716230392456, -0.213969886302948, 0.009869794361293316, -0.10017631947994232, 0.0674411877989769, -0.014917373657226562, 0.05319846794009209, -0.023860005661845207, 0.11143329739570618, 0.08362012356519699, -0.03253742307424545, -0.02137289196252823, -0.009553090669214725, 0.12114723771810532, 0.026469985023140907, -0.16734075546264648, -0.03397141024470329, -0.07629095762968063, -0.005513624753803015, 0.039775699377059937, -0.1433011293411255, -0.0174817256629467, -0.06159466505050659, 0.08698171377182007, -0.02520723082125187, 0.027310706675052643, 0.02363240160048008, -0.06552093476057053, -0.04722587391734123, -0.04999466612935066, 0.060656554996967316, 0.027598466724157333, 0.044993266463279724, 0.14605607092380524, 0.04788978770375252, 0.2124733179807663, 0.13764001429080963, 0.005419042892754078, 0.009601923637092113, 0.04847915843129158, -0.03997524082660675, -0.022163905203342438, -0.02321724034845829, -0.027141578495502472, 0.014546580612659454, 0.028289105743169785, 0.17530077695846558, -0.08741489052772522, -0.01909174956381321, 0.05670034512877464, -0.035897206515073776, -0.000149551808135584, 0.0917934775352478, 0.1363648921251297, -0.08524006605148315, 0.09726565331220627, 0.21398185193538666, -0.0036722663789987564, 0.07362047582864761, -0.0007404785137623549, -0.12614426016807556, -0.007374078966677189, -0.0531979575753212, -0.057808760553598404, 0.12427970767021179, -0.05078122764825821, 0.050031986087560654, 0.09534386545419693, 0.008456568233668804, 0.04821212217211723, -0.08484078198671341, -0.00792524591088295, 0.05352840945124626, 0.018407920375466347, -0.055608075112104416, 0.03226695582270622, -0.019406281411647797, 0.06083899736404419, -0.008860863745212555, -0.1588941365480423, 0.012076319195330143, 0.07372520118951797, -0.037824276834726334, 0.19345320761203766, -0.001734037883579731, -0.12825337052345276, -0.08884625136852264, -0.19308733940124512, 0.01874801516532898, -0.03546527773141861, 0.040820375084877014, 0.0031357696279883385, -0.05941933020949364, -0.06053321808576584, -0.015575408935546875, -0.11811802536249161, -0.016133494675159454, -0.12845823168754578, -0.03377595543861389, 0.05306268483400345, -0.12669062614440918, -0.02264283038675785, -0.02411765046417713, 0.03721882030367851, 0.022107021883130074, -0.03694971278309822, 0.09287960827350616, 0.07130420953035355, -0.015883466228842735, -0.03480023145675659, -0.00518559105694294, 0.266335666179657, -0.0008265385404229164, 0.029041128233075142, 0.15334124863147736, 0.07391828298568726, 0.052633341401815414, 0.09951318055391312, 0.019672825932502747, -0.006629377603530884, -0.04836530238389969, 0.00990239717066288, -0.011209518648684025, -0.1613021343946457, -0.10293891280889511, -0.08229423314332962, 0.019539423286914825, 0.1371592879295349, 0.015297065488994122, -0.04735457897186279, 0.11475174874067307, 0.032159898430109024, 0.09590905904769897, -0.10260261595249176, 0.05679813027381897, 0.0851961001753807, 0.022100454196333885, 0.15818622708320618, -0.06409227848052979, -0.08493483811616898, 0.08390535414218903, 0.03929312154650688, 0.09772907197475433, 0.009367703460156918, -0.0025868243537843227, 0.011001046746969223, 0.18601186573505402, 0.041948795318603516, 0.20215001702308655, -0.018421676009893417, -0.023823458701372147, -0.08922597765922546, -0.04252919554710388, -0.023655448108911514, 0.06307987868785858, 0.0359559990465641, -0.049541205167770386, -0.08032877743244171, -0.038872744888067245, 0.016068287193775177, 0.19341084361076355, 0.16006141901016235, -0.3322823941707611, -0.07240396738052368, 0.030398182570934296, -0.09779080003499985, -0.10617806762456894, 0.032982729375362396, -0.043204884976148605, -0.10078582912683487, -0.03538597375154495, -0.05728047713637352, 0.11377441138029099, 0.06563320755958557, 0.02279837615787983, -0.048027608543634415, 0.021179812029004097, -0.004438525531440973, 0.11903964728116989, -0.15769414603710175, 0.19974204897880554, 0.020426541566848755, 0.03626549243927002, -0.06732165068387985, 0.009899448603391647, 0.053321000188589096, 0.0077760485000908375, 0.13592930138111115, -0.008839183486998081, 0.1480994075536728, -0.07095059007406235, -0.15603414177894592, 0.06391628086566925, -0.0934133306145668, 0.05820155516266823, 0.09301253408193588, -0.0465337336063385, -0.017589250579476357, -0.002816431922838092, 0.11820011585950851, -0.05644810572266579, -0.10050471872091293, 0.02486233599483967, -0.005882440600544214, -0.07654032111167908, -0.02756693586707115, -0.07169400900602341, -0.04202380031347275, 0.1335122287273407, 0.06873449683189392, -0.07114100456237793, -0.10384578257799149, 0.04994374141097069, 0.16223253309726715, -0.07776468247175217, 0.05541754886507988, -0.07988350838422775, 0.00031175027834251523, 0.011942963115870953, -0.10235651582479477, 0.08454562723636627, -0.12409913539886475, 0.037054721266031265, -0.020700708031654358, 0.08071409165859222, -0.07732994854450226, 0.06719618290662766, 0.045946136116981506, 0.018465761095285416, -0.13710419833660126, -0.08356048911809921, -0.08459349721670151, -0.11741095781326294, 0.08014591038227081, -0.07009068876504898, -0.01680058427155018, -0.004938212689012289, -0.005063761491328478, 0.06344558298587799, 0.1687050610780716, 0.11002980917692184, -0.09116675704717636, 0.05356039106845856, 0.14986078441143036, 0.042274169623851776, -0.21843557059764862, -0.12023910880088806, 0.007607377599924803, -0.02247767709195614, 0.012624630704522133, -0.07951419800519943, 0.17075297236442566, 0.10194302350282669, -0.04498767852783203, 0.02593356929719448, -0.1862184852361679, -0.07105249166488647, 0.1991921365261078, 0.01663839817047119, 0.20778508484363556, -0.10448882728815079, -0.016221530735492706, -0.04982702061533928, -0.30539077520370483, 0.12677273154258728, -0.04344837740063667, 0.05283081531524658, -0.03074481524527073, 0.023963451385498047, 0.007753887213766575, -0.08395050466060638, 0.14084672927856445, -0.06587578356266022, -0.009269479662179947, -0.036956787109375, -0.056568391621112823, -0.03440190106630325, -0.05837487801909447, 0.19667506217956543, -0.1258840709924698, 0.05251967906951904, -0.2673305869102478, -0.030852194875478745, -0.0769677385687828, 0.010886146686971188, 0.02620900608599186, -0.07995623350143433, -0.05539951100945473, 0.026155728846788406, 0.018751470372080803, -0.017231296747922897, 0.06518320739269257, 0.044059447944164276, -0.09304922074079514, 0.09739602357149124, 0.02554742433130741, -0.1608714610338211, -0.16637060046195984, -0.0479009672999382, -0.06529770791530609, 0.0706959143280983, -0.24515722692012787, 0.013088718056678772, 0.1253669410943985, -0.04393821209669113, 0.053046904504299164, 0.020987916737794876, -0.044032976031303406, -0.007530269678682089, 0.06546474248170853, -0.11226397752761841, -0.11513649672269821, -0.010166866704821587, 0.061194922775030136, -0.11237258464097977, 0.033960096538066864, 0.11704972386360168, -0.11042073369026184, -0.054910775274038315, 0.007768017705529928, 0.0029103897977620363, -0.06279253214597702, 0.19347134232521057, 0.05785389244556427, 0.06023195758461952, -0.12497633695602417, 0.05528616905212402, 0.029737314209342003, 0.004244891460984945, -0.028984559699892998, 0.02437966875731945, -0.07772278785705566, -0.09705115854740143, -0.022962603718042374, 0.02740439772605896, -0.06443672627210617, 0.001985318260267377, -0.011111686937510967, -0.031979333609342575, 0.09944088757038116, -0.015976155176758766, 0.07169914990663528, -0.022672858089208603, -0.0944117084145546, -0.08492643386125565, -0.04767565801739693, 0.04849269241094589, 0.12003042548894882, 0.010990886017680168, -0.13191825151443481, 0.021800445392727852, -0.025004344061017036, 0.09861580282449722, -0.050012607127428055, 0.019665850326418877, -0.08197677880525589, -0.0006582426140084863, -0.25057360529899597, -0.03398319333791733, -0.10431826114654541, -0.023949377238750458, -0.03153952956199646, -0.0563490130007267, -0.08713081479072571, 0.012478240765631199, -0.12137346714735031, -0.008338352665305138, 0.024376828223466873, 0.0414888970553875, -0.075553759932518, -0.01166431326419115, 0.04616377502679825, -0.030254393815994263, 0.013015925884246826, 0.10346214473247528, 0.01363136526197195, 0.06209844350814819, 0.023666726425290108, -0.12092690914869308, 0.03601691871881485, 0.010908531956374645, 0.10509999841451645, -0.012867621146142483, 0.042903833091259, 0.024409255012869835, 0.05175182595849037, -0.052568770945072174, -0.014281831681728363, -0.08386437594890594, -0.0847158133983612, -0.009929030202329159, -0.05673615261912346, -0.054032567888498306, -0.00047322659520432353, 0.07045760005712509, 0.10399027913808823, 0.2112104892730713, 0.013820544816553593, -0.006528216879814863, -0.14521363377571106, 0.023019088432192802, -0.09410878270864487, -0.14880062639713287, -0.030717791989445686, -0.04793441668152809, 0.008355415426194668, -0.010533464141190052, 0.17281436920166016, 0.06335610151290894, 0.028813302516937256, -0.009614099748432636, -0.01824527233839035, 0.12691420316696167, -0.024212850257754326, 0.25333335995674133, 0.06533042341470718, 0.018862316384911537, -0.04679446667432785, 0.09416339546442032, 0.11711692065000534, 0.1860288828611374, -0.006871094927191734, 0.2002803385257721, 0.014836536720395088, 0.17782296240329742, -0.014293723739683628, -0.039869364351034164, -0.08319902420043945, -0.15063847601413727, 0.008634958416223526, 0.08103308826684952, -0.00956881232559681, 0.2735652029514313, 0.06359971314668655, -0.08324477076530457, -0.03176070377230644, -0.056376297026872635, -0.02924581989645958, -0.10588857531547546, -0.005526999477297068, -0.04076043516397476, -0.10698230564594269, -0.018841106444597244, -0.08223460614681244, -0.005757766775786877, 0.15194183588027954, 0.041929081082344055, 0.013178670778870583, 0.06914211064577103, -0.03837234899401665, -0.06962881982326508, 0.04732752591371536, 0.005001225508749485, -0.016532843932509422, -0.021682268008589745, 0.024035315960645676, -0.06805480271577835, -0.003782909829169512, 0.024841511622071266, -0.035490188747644424, -0.04469330236315727, 0.06726477295160294, -0.018435228615999222, -0.09142414480447769, -0.06786926835775375, 0.05137123540043831, 0.019718043506145477, 0.15613017976284027, 0.03481588140130043, 0.03615415096282959, -0.028046587482094765, 0.21019145846366882, -0.09974755346775055, -0.060160260647535324, -0.1222698986530304, 0.2657252848148346, 0.018265608698129654, 0.04854070395231247, 0.008205811493098736, -0.04526197165250778, -0.044233065098524094, 0.2991161346435547, 0.20659160614013672, -0.1076648011803627, -0.036816779524087906, 0.03695816919207573, -0.02312527596950531, 0.008195903152227402, 0.08242617547512054, 0.0793689489364624, 0.19877517223358154, -0.13395997881889343, 0.03178107738494873, -0.03764738142490387, -0.050014689564704895, -0.059847522526979446, 0.08509553968906403, 0.032545410096645355, -0.03234443441033363, -0.019119102507829666, 0.058315787464380264, 0.026424812152981758, -0.030124321579933167, -0.12307226657867432, -0.022901412099599838, -0.10471159964799881, -0.028018558397889137, -0.10263557732105255, 0.0432860441505909, 0.10165981948375702, -0.10110646486282349, 0.04883308336138725, 0.0393093079328537, 0.02862524427473545, -0.19455735385417938, -0.10496211796998978, 0.1793404519557953, 0.14279867708683014, 0.21795837581157684, 0.025775935500860214, 0.014225280843675137, 0.12430645525455475, 0.008795320987701416, -0.17508716881275177, 0.02677423320710659, 0.024797586724162102, -0.07712505757808685, 0.04712522029876709, -0.07651825249195099, -0.019902056083083153, -0.07291306555271149, -0.014455490745604038, -0.09747525304555893, -0.0053262473084032536, -0.03526700660586357, -0.011105275712907314, -0.0715174749493599, -0.009238836355507374, -0.030995918437838554, 0.056596770882606506, 0.1481659710407257, -0.08255837112665176, -0.060545433312654495, -0.10591071099042892, 0.08990395069122314, 0.07073106616735458, -0.12026645988225937, -0.03789130970835686, -0.113156758248806, -0.021472599357366562, -0.00448389770463109, -0.022041888907551765, -0.17264090478420258, 0.0018960487795993686, -0.03908678889274597, -0.010286493226885796, -0.04189025238156319, 0.10108500719070435, 0.09971848130226135, 0.004484681412577629, 0.006737891118973494, 0.00042909724288620055, -0.06404360383749008, 0.023989848792552948, -0.07458364218473434, -0.04934152215719223 ]
null
null
transformers
#harry potter
{"tags": ["conversational"]}
text-generation
Invincible/Chat_bot-Harrypotter-medium
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#harry potter
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
#harry potter Model
{"tags": ["conversational"]}
text-generation
Invincible/Chat_bot-Harrypotter-small
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "has_space", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
#harry potter Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n" ]
[ 55 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n" ]
[ -0.0020731890108436346, 0.034266941249370575, -0.005774117540568113, 0.004248267505317926, 0.14393343031406403, 0.004326540976762772, 0.08896105736494064, 0.14543265104293823, -0.02302609197795391, 0.005462841596454382, 0.15414410829544067, 0.16123731434345245, -0.01616818644106388, 0.06624367088079453, -0.06798949837684631, -0.27222639322280884, 0.06252840161323547, 0.04033168777823448, -0.0042655146680772305, 0.1149275004863739, 0.0867869034409523, -0.07195974141359329, 0.08031850308179855, -0.010707243345677853, -0.14797940850257874, 0.027399519458413124, 0.027168817818164825, -0.11926408857107162, 0.1205340251326561, 0.04608513414859772, 0.08750468492507935, 0.018780281767249107, -0.08323448896408081, -0.13803936541080475, 0.03054818883538246, 0.03042440116405487, -0.06272798776626587, 0.06205490604043007, 0.04915359988808632, -0.08692146092653275, 0.11027362942695618, 0.05846209451556206, -0.021504774689674377, 0.04821402579545975, -0.173249289393425, -0.0497460775077343, -0.018249358981847763, -0.004099908750504255, 0.02475488930940628, 0.10208485275506973, -0.04358411207795143, 0.11388547718524933, -0.11227327585220337, 0.09600768983364105, 0.13744568824768066, -0.32189610600471497, -0.005977143067866564, 0.12905555963516235, 0.08356072753667831, 0.07893235981464386, -0.05513899773359299, 0.06879978626966476, 0.026153596118092537, 0.016823088750243187, 0.01882046088576317, -0.06101960316300392, -0.1321486234664917, 0.06851786375045776, -0.1029922217130661, -0.06102414429187775, 0.23576463758945465, -0.05459221452474594, 0.0850215032696724, -0.06047354266047478, -0.1171741634607315, -0.06511004269123077, -0.012023513205349445, 0.013670753687620163, -0.06820649653673172, 0.08349429816007614, 0.00736558623611927, -0.0910419449210167, -0.1503107100725174, -0.009757339023053646, -0.18359589576721191, 0.1544029712677002, 0.010258159600198269, 0.04417330399155617, -0.18897868692874908, 0.09543006867170334, -0.0019848651718348265, -0.09227047860622406, 0.0379180908203125, -0.09267305582761765, 0.025528281927108765, 0.02594062313437462, -0.07617612928152084, -0.04994349926710129, 0.07540341466665268, 0.10172723978757858, -0.03571772947907448, 0.007284308318048716, -0.01317865401506424, 0.08920414000749588, 0.050415460020303726, 0.0920315757393837, -0.024628832936286926, -0.029775982722640038, 0.0030826895963400602, -0.10573206096887589, 0.00843293871730566, -0.08909433335065842, -0.17530705034732819, -0.033279649913311005, 0.038942400366067886, 0.06327997148036957, 0.03506982699036598, 0.11513926833868027, -0.020643576979637146, -0.0004622370470315218, 0.044502582401037216, -0.04962502419948578, 0.01620616763830185, 0.015400436706840992, 0.024300534278154373, 0.09366749972105026, 0.00024095026310533285, 0.02871517464518547, -0.1108408123254776, 0.016502954065799713, -0.08566248416900635, -0.004433690570294857, -0.04066275432705879, -0.08080097287893295, 0.014394298195838928, -0.08052104711532593, -0.0014747381210327148, -0.16010569036006927, -0.0941496267914772, 0.006874208338558674, -0.008340749889612198, -0.04847903922200203, -0.06897178292274475, -0.028291959315538406, -0.039629727602005005, 0.07005634158849716, -0.07429031282663345, 0.012378060258924961, -0.0653066337108612, 0.09632273763418198, -0.04399619624018669, 0.09719543159008026, -0.1355123370885849, 0.08746109157800674, -0.10122440755367279, -0.013804182410240173, -0.05389239266514778, 0.07130532711744308, -0.004290519282221794, 0.07858801633119583, -0.003894622204825282, -0.026532486081123352, -0.10342510789632797, 0.07591511309146881, -0.029038161039352417, 0.1919892430305481, -0.09368238598108292, -0.09697038680315018, 0.24372151494026184, -0.04206692799925804, -0.11992959678173065, 0.11316732317209244, 0.006276176776736975, 0.04031015560030937, 0.06636199355125427, 0.23529867827892303, -0.002608133712783456, -0.015463003888726234, 0.05858722701668739, 0.1285160332918167, -0.09163093566894531, -0.022528203204274178, 0.02665521204471588, -0.035680610686540604, -0.06949988007545471, 0.03786681219935417, 0.09224521368741989, 0.06898946315050125, -0.04217932000756264, -0.038546912372112274, -0.0338650681078434, 0.006019831635057926, 0.10229165107011795, -0.004237710032612085, 0.11900407075881958, -0.06430190056562424, -0.06083345785737038, -0.0039004783611744642, -0.007743727415800095, -0.025927990674972534, 0.03889498487114906, -0.020975790917873383, 0.13977456092834473, -0.020214391872286797, 0.050080306828022, -0.1659611612558365, -0.07867800444364548, -0.0276208333671093, 0.15121620893478394, 0.023065028712153435, 0.16074787080287933, 0.05593082308769226, -0.04575453698635101, 0.0020971912890672684, 0.015426015481352806, 0.14330679178237915, 0.002297409577295184, -0.08078709989786148, -0.045803289860486984, 0.06078236922621727, -0.07078943401575089, 0.02853701077401638, -0.06128615140914917, 0.02451801672577858, 0.0706944391131401, 0.11360251158475876, -0.012172793038189411, 0.04050501063466072, -0.007806553039699793, 0.005355477333068848, -0.08260910212993622, 0.006272532045841217, 0.09126780182123184, -0.007062161341309547, -0.05587177723646164, 0.23702523112297058, -0.21233628690242767, 0.19319729506969452, 0.20568932592868805, -0.2847190499305725, 0.017599696293473244, -0.08135107904672623, -0.04634881764650345, 0.0296412892639637, 0.034921593964099884, -0.07091964036226273, 0.11610180884599686, -0.03123846836388111, 0.1735609918832779, -0.04871121793985367, -0.033698420971632004, -0.02400193363428116, -0.05103839933872223, -0.023231912404298782, 0.07538758218288422, 0.07964178919792175, -0.10268472135066986, 0.2096041589975357, 0.21891969442367554, 0.029522806406021118, 0.20605546236038208, 0.020199809223413467, -0.01082384493201971, 0.06585343927145004, -0.016593173146247864, -0.07647227495908737, -0.05193748697638512, -0.25636377930641174, -0.04254206269979477, 0.08694203943014145, 0.05027908831834793, 0.11748719960451126, -0.11812889575958252, -0.03973527252674103, 0.0017026892164722085, -0.0044732606038451195, 0.010201654396951199, 0.10733214765787125, 0.0688849464058876, 0.13163818418979645, 0.0035053531173616648, -0.015395179390907288, 0.0933142676949501, 0.021278366446495056, -0.07218139618635178, 0.16777180135250092, -0.14471881091594696, -0.3617521822452545, -0.12198661267757416, -0.1411694437265396, -0.04819782078266144, 0.05570744723081589, 0.12146272510290146, -0.11843276768922806, -0.013039637356996536, -0.024426942691206932, 0.10403992235660553, -0.10458782315254211, 0.015547837130725384, -0.09316565841436386, 0.023360151797533035, -0.09507838636636734, -0.10290220379829407, -0.04919681325554848, -0.02349056676030159, -0.07685697078704834, 0.13987404108047485, -0.06632959097623825, 0.05164608359336853, 0.21594153344631195, 0.03643343225121498, 0.04860004410147667, -0.03824276477098465, 0.2174932211637497, -0.10651476681232452, 0.004577175248414278, 0.1883121132850647, -0.010507632978260517, 0.07504907250404358, 0.14718979597091675, -0.006049822084605694, -0.06113997846841812, 0.021373562514781952, -0.008945688605308533, -0.09400025755167007, -0.19167540967464447, -0.1440424621105194, -0.14082567393779755, 0.07228381931781769, 0.027764417231082916, 0.06478160619735718, 0.15267089009284973, 0.05694347992539406, -0.026157980784773827, -0.006062425673007965, -0.001836199895478785, 0.0684063658118248, 0.23882564902305603, -0.07312719523906708, 0.15863476693630219, -0.03803245723247528, -0.148991659283638, 0.08423012495040894, 0.08482091128826141, 0.10031978040933609, 0.04883745685219765, 0.06448925286531448, 0.024240154772996902, 0.09675179421901703, 0.13343869149684906, 0.061844173818826675, 0.022185444831848145, -0.026203498244285583, -0.04098205268383026, -0.028983715921640396, -0.021278686821460724, 0.060860130935907364, 0.10284382104873657, -0.18223826587200165, -0.03360753133893013, -0.12674574553966522, 0.1040237694978714, 0.05630733072757721, 0.10208160430192947, -0.18108898401260376, 0.003050506114959717, 0.09536994993686676, -0.032557163387537, -0.1301579475402832, 0.0850055143237114, 0.06722985208034515, -0.11821058392524719, 0.015397914685308933, -0.02095544897019863, 0.11126109957695007, -0.031123479828238487, 0.10620614886283875, -0.09822628647089005, -0.09220608323812485, 0.013774980790913105, 0.11459406465291977, -0.2817303538322449, 0.21255555748939514, -0.013365482911467552, -0.09690005332231522, -0.11579300463199615, -0.004715035669505596, 0.01031493116170168, 0.0819380059838295, 0.08188709616661072, 0.004763775505125523, -0.04350537434220314, -0.06545519083738327, 0.004248070530593395, 0.019060388207435608, 0.12491510063409805, -0.03152519837021828, -0.01991986855864525, -0.04806303605437279, 0.011300591751933098, -0.0015421127900481224, 0.01802166923880577, 0.01983943209052086, -0.20397375524044037, 0.09817983210086823, 0.07011082023382187, 0.06267958134412766, 0.022111909464001656, -0.009729073382914066, -0.14869281649589539, 0.22171661257743835, -0.02809896692633629, -0.0771496519446373, -0.10737742483615875, -0.05013793334364891, 0.06141689419746399, -0.04688161984086037, 0.041116632521152496, -0.08103673905134201, 0.03962651267647743, -0.07487211376428604, -0.17772899568080902, 0.12835821509361267, -0.08348777145147324, -0.042941171675920486, -0.025282789021730423, 0.1864084005355835, -0.0846327543258667, 0.024463225156068802, 0.025082062929868698, 0.04613133519887924, -0.1508028209209442, -0.10233563929796219, 0.034852705895900726, -0.03161567449569702, 0.061152249574661255, 0.04001912102103233, -0.04340772330760956, -0.021880418062210083, -0.002970570931211114, -0.011320682242512703, 0.33755841851234436, 0.15072861313819885, -0.08390255272388458, 0.17842750251293182, 0.0893208310008049, -0.059796981513500214, -0.3357309103012085, -0.09483138471841812, -0.12697452306747437, -0.025288153439760208, -0.021405275911092758, -0.16736409068107605, 0.04016929119825363, -0.003834964707493782, -0.03241279721260071, 0.10695530474185944, -0.25454771518707275, -0.0813552588224411, 0.1530611217021942, -0.051993608474731445, 0.3512592017650604, -0.1353636085987091, -0.08938448131084442, -0.027285385876893997, -0.11751596629619598, 0.17193706333637238, -0.07499987632036209, 0.11728648841381073, -0.005291353445500135, 0.14058533310890198, 0.0594446137547493, -0.032975900918245316, 0.11937713623046875, -0.008806196972727776, -0.023774700239300728, -0.11386077105998993, -0.08634026348590851, 0.04117414727807045, -0.0033683227375149727, 0.016631845384836197, -0.07227682322263718, 0.02188601717352867, -0.1352013796567917, -0.020081689581274986, -0.10218049585819244, 0.05960511416196823, 0.02450513280928135, -0.07391975075006485, -0.044624634087085724, -0.05516489967703819, -0.005635458510369062, 0.015539255924522877, 0.21460223197937012, -0.08054444938898087, 0.18822970986366272, 0.14798088371753693, 0.0750354528427124, -0.1478407084941864, -0.005493863020092249, -0.03167466074228287, -0.051466576755046844, 0.08480866998434067, -0.12806963920593262, 0.05007537081837654, 0.09602449834346771, -0.04866054281592369, 0.08426439762115479, 0.10378798842430115, 0.00529234204441309, 0.003562262048944831, 0.1266377568244934, -0.24999721348285675, -0.05188959464430809, -0.06728829443454742, -0.0003314604109618813, 0.07470729202032089, 0.05989599972963333, 0.18490374088287354, 0.024284880608320236, -0.02933247573673725, -0.001147680333815515, 0.02046186476945877, -0.044130854308605194, 0.034657470881938934, 0.020751554518938065, 0.037146806716918945, -0.13429945707321167, 0.049100302159786224, 0.03831800818443298, -0.14490972459316254, 0.02793888933956623, 0.15596450865268707, -0.09589001536369324, -0.1481330692768097, -0.08178485929965973, 0.046700187027454376, -0.09863997250795364, -0.003060641000047326, -0.016482530161738396, -0.13233160972595215, 0.0721844807267189, 0.10570328682661057, 0.0632612556219101, 0.0926874577999115, -0.05276959761977196, -0.02356615848839283, -0.005535936914384365, -0.013608732260763645, -0.017031483352184296, 0.00047467724652960896, -0.06871786713600159, 0.08851433545351028, -0.02970702014863491, 0.14091646671295166, -0.09792686998844147, -0.08993403613567352, -0.16552817821502686, 0.012215564027428627, -0.11382917314767838, -0.10604946315288544, -0.08692184090614319, -0.06279279291629791, 0.007451801095157862, -0.03690037131309509, -0.05121577903628349, -0.05880220606923103, -0.13037677109241486, 0.025712331756949425, -0.05368543416261673, 0.04174434766173363, -0.08266101777553558, 0.009202999994158745, 0.08040843904018402, -0.025321047753095627, 0.1427605152130127, 0.10867537558078766, -0.09636122733354568, 0.08708717674016953, -0.10933805257081985, -0.10561708360910416, 0.0996691957116127, 0.015306972898542881, 0.049583129584789276, 0.0882255807518959, 0.0016521752113476396, 0.047729525715112686, 0.05468335375189781, 0.05270431563258171, 0.010714812204241753, -0.11086291074752808, 0.06701637804508209, -0.046916425228118896, -0.14871534705162048, -0.0383060947060585, -0.04576587677001953, 0.023959442973136902, 0.014766783453524113, 0.09013618528842926, -0.03914914280176163, 0.09170293807983398, -0.060116108506917953, 0.03544970601797104, -0.005962125025689602, -0.17961421608924866, -0.025273950770497322, -0.07678066939115524, 0.036338284611701965, 0.009770811535418034, 0.27444127202033997, 0.07005681097507477, -0.02579980343580246, 0.03809122368693352, 0.09221042692661285, 0.04013144597411156, 0.01235515158623457, 0.17545528709888458, 0.1118883416056633, -0.06960049271583557, -0.11137815564870834, 0.06916595250368118, 0.02774476259946823, 0.030671268701553345, 0.11741524934768677, 0.028308389708399773, 0.02884010225534439, 0.09906800836324692, -0.010664747096598148, -0.029787031933665276, -0.11760692298412323, -0.12204014509916306, -0.025804514065384865, 0.0716206356883049, -0.08077048510313034, 0.07161043584346771, 0.15348944067955017, -0.024815790355205536, 0.04494022950530052, -0.04187069460749626, -0.05125942826271057, -0.16044385731220245, -0.13453450798988342, -0.06714465469121933, -0.1462772637605667, -0.01798534393310547, -0.10550841689109802, 0.07317068427801132, 0.0905640497803688, 0.054012611508369446, -0.04726504907011986, 0.1088385358452797, 0.04488391429185867, -0.10305679589509964, 0.04867062717676163, -0.028838563710451126, 0.10472944378852844, -0.0389210507273674, -0.017331164330244064, -0.08582847565412521, 0.018834469839930534, -0.00014729268150404096, 0.05825033783912659, -0.046236004680395126, 0.0008270144462585449, -0.15260833501815796, -0.09336699545383453, -0.067965067923069, 0.06514385342597961, -0.03987060859799385, 0.16180802881717682, 0.006504714023321867, -0.019208962097764015, 0.027142219245433807, 0.2522609531879425, -0.09437862038612366, -0.03748486936092377, -0.04197218641638756, 0.18040455877780914, 0.026413097977638245, 0.10892705619335175, -0.04485548287630081, -0.022241802886128426, -0.11629731208086014, 0.34659260511398315, 0.3378466069698334, -0.09852437674999237, 0.030723217874765396, 0.025790590792894363, 0.035837359726428986, 0.11793298274278641, 0.10910405218601227, 0.1060420423746109, 0.2840439975261688, -0.07986118644475937, -0.04112262278795242, -0.015220209956169128, -0.020856084302067757, -0.09601940214633942, 0.10299155116081238, 0.04667018726468086, -0.07291784137487411, -0.0344402976334095, 0.06851313263177872, -0.2328837513923645, 0.11787183582782745, -0.1064424142241478, -0.21074175834655762, -0.06903064996004105, 0.035422950983047485, 0.14039748907089233, -0.0034193163737654686, 0.10519111156463623, -0.008336585015058517, -0.09666894376277924, 0.04311183840036392, 0.018499037250876427, -0.19733557105064392, 0.004534261301159859, 0.0827038586139679, -0.06582990288734436, -0.009068409912288189, -0.034264057874679565, 0.03624148294329643, 0.08922430127859116, 0.05437808111310005, -0.01910148747265339, 0.05042428895831108, 0.014998827129602432, -0.0677507072687149, -0.0006768365274183452, 0.03367190062999725, 0.02013298124074936, -0.1020888015627861, 0.08180907368659973, -0.17628344893455505, 0.053729098290205, -0.013982406817376614, -0.0291798934340477, -0.0029725844506174326, -0.01890522800385952, -0.055641546845436096, 0.06260602921247482, 0.07296348363161087, -0.011743206530809402, -0.02574125863611698, -0.04272527992725372, -0.04611913114786148, -0.03326372802257538, -0.08508988469839096, -0.11325842887163162, -0.13927727937698364, -0.09787482768297195, 0.09634150564670563, -0.008824790827929974, -0.18197888135910034, 0.0028776151593774557, -0.06104812026023865, 0.08618874102830887, -0.14188407361507416, 0.08006776124238968, 0.08249889314174652, 0.00013928746921010315, -0.0090348981320858, -0.021353812888264656, 0.04725958779454231, 0.07949267327785492, -0.11032622307538986, -0.06586744636297226 ]
null
null
null
#Harry Potter DialoDPT Model
{"tags": ["conversational"]}
text-generation
Invincible/DialoGPT-medium-harryPotter
[ "conversational", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #conversational #region-us
#Harry Potter DialoDPT Model
[]
[ "TAGS\n#conversational #region-us \n" ]
[ 10 ]
[ "passage: TAGS\n#conversational #region-us \n" ]
[ 0.04639962688088417, 0.010033470578491688, -0.010517087765038013, -0.09196841716766357, 0.07825888693332672, 0.025966141372919083, 0.0816626027226448, 0.03981694206595421, 0.1679982990026474, -0.043665021657943726, 0.11948301643133163, 0.05959230661392212, -0.03424782678484917, -0.034178510308265686, -0.03257700800895691, -0.1518038958311081, 0.018241867423057556, -0.03490595519542694, 0.09715951234102249, 0.046818334609270096, -0.022061990574002266, -0.08366407454013824, 0.008475017733871937, -0.06431017816066742, -0.04472750052809715, 0.10980460792779922, 0.019003495573997498, -0.011012797243893147, 0.15410423278808594, -0.0074986726976931095, 0.14888158440589905, 0.009007624350488186, -0.1188141256570816, -0.28230994939804077, 0.02435300685465336, -0.021203843876719475, -0.07150904089212418, 0.0029600884299725294, 0.03619120270013809, -0.10715486854314804, 0.004403713159263134, 0.13426031172275543, 0.04114455729722977, 0.10832296311855316, -0.2866811156272888, -0.07511094957590103, -0.01938454620540142, -0.07511914521455765, 0.0601775124669075, 0.018052373081445694, -0.038240283727645874, 0.1376611739397049, -0.2073964774608612, 0.014560118317604065, -0.006958445999771357, -0.24119918048381805, 0.02869522012770176, 0.1752537488937378, 0.009645363315939903, 0.1909479796886444, -0.06857001781463623, 0.11254259198904037, 0.02171272039413452, -0.030739247798919678, -0.2002624124288559, -0.06604453176259995, -0.07298440486192703, 0.1499089151620865, -0.045723117887973785, -0.0578390471637249, 0.34621670842170715, 0.040796760469675064, 0.04295415058732033, 0.07716298848390579, -0.04492316022515297, -0.055111076682806015, 0.04104352369904518, -0.046185605227947235, -0.031033141538500786, 0.15494981408119202, 0.09487586468458176, -0.09688284248113632, -0.14496852457523346, 0.03130095824599266, -0.21760596334934235, 0.1465475857257843, -0.02235398069024086, 0.11142805963754654, -0.2653426229953766, -0.05278157815337181, -0.14670948684215546, -0.002750956919044256, 0.02518310956656933, -0.09457869827747345, -0.04452421888709068, -0.026268228888511658, 0.0005124040762893856, 0.050814010202884674, 0.048315394669771194, 0.07558848708868027, -0.06942778080701828, 0.05394355580210686, -0.06892558932304382, 0.12330366671085358, 0.11638157814741135, 0.05569762736558914, 0.13839077949523926, 0.022933602333068848, -0.11806239187717438, -0.17838133871555328, -0.019715335220098495, -0.0601036474108696, -0.10126364231109619, 0.08322658389806747, -0.1737145632505417, 0.1338171660900116, 0.0012900691945105791, -0.049971867352724075, -0.12574702501296997, 0.08353690057992935, -0.10762350261211395, 0.015366755425930023, -0.07289839535951614, 0.014196229167282581, 0.014544172212481499, 0.09311159700155258, -0.14271733164787292, 0.045371901243925095, 0.08196624368429184, 0.008659054525196552, -0.10070403665304184, -0.020334109663963318, -0.061532121151685715, 0.07091420143842697, 0.0486479289829731, -0.06415147334337234, 0.032452572137117386, -0.09036554396152496, -0.024567680433392525, -0.027267752215266228, -0.025782402604818344, -0.021218160167336464, 0.07835555076599121, -0.055066075176000595, 0.09253078699111938, -0.04640072211623192, -0.041711848229169846, -0.11547397822141647, -0.08965431153774261, 0.08147980272769928, 0.027172693982720375, 0.06959657371044159, -0.12756861746311188, 0.02954922616481781, -0.07777036726474762, 0.09570813924074173, -0.006574113853275776, -0.0012808392057195306, 0.004620495717972517, 0.1427043229341507, 0.08222948759794235, 0.09464042633771896, -0.22559843957424164, 0.03648834675550461, -0.12657727301120758, 0.24771882593631744, -0.12381736189126968, -0.044696640223264694, 0.2730959355831146, -0.02501245029270649, -0.1168116107583046, 0.06332620233297348, 0.0016639905516058207, 0.08099539577960968, 0.11538345366716385, 0.41944384574890137, -0.22503520548343658, -0.10161785036325455, 0.09927807748317719, 0.24778489768505096, -0.14139696955680847, -0.0006701856036670506, 0.06758461147546768, -0.15533412992954254, -0.136672705411911, -0.006923824083060026, 0.1993810385465622, 0.04563012346625328, -0.09049045294523239, -0.0581219419836998, 0.07278088480234146, 0.00251517235301435, 0.13227328658103943, 0.04847939684987068, 0.010761215351521969, -0.09316329658031464, 0.046553950756788254, -0.037219900637865067, 0.036988820880651474, 0.1257375329732895, -0.011618656106293201, -0.05261800438165665, 0.03806666284799576, 0.013964165933430195, 0.033028051257133484, -0.1064353734254837, -0.12926249206066132, -0.05708497390151024, 0.1741386204957962, 0.1096852496266365, 0.20943976938724518, 0.08182037621736526, -0.12570415437221527, 0.0029703727923333645, 0.045532144606113434, 0.05547904968261719, 0.04228522256016731, 0.019039174541831017, -0.04716009274125099, 0.13804899156093597, -0.0858609527349472, 0.010859129019081593, -0.09182798862457275, -0.042282480746507645, 0.13651718199253082, 0.041210491210222244, 0.07498065382242203, -0.010899536311626434, 0.015351326204836369, 0.028546204790472984, 0.08829564601182938, -0.004360926803201437, 0.10361789911985397, -0.01836715266108513, -0.07148222625255585, 0.15339210629463196, -0.13760370016098022, 0.13399995863437653, 0.11577713489532471, -0.25445905327796936, 0.024489950388669968, -0.16331978142261505, -0.048566605895757675, -0.0037442597094923258, 0.09262824058532715, -0.07037632167339325, 0.1059286817908287, 0.009663842618465424, -0.008387367241084576, -0.007202888373285532, 0.011079453863203526, -0.11152531206607819, -0.05292370170354843, -0.10301605612039566, 0.10126874595880508, 0.05541692301630974, -0.14166110754013062, 0.16527962684631348, 0.3414488136768341, 0.17333562672138214, 0.27744242548942566, -0.057956866919994354, -0.03626478835940361, 0.010029622353613377, -0.00044385663932189345, -0.09770774841308594, 0.09110020101070404, -0.31978389620780945, -0.03541385754942894, 0.02267313003540039, 0.007412234786897898, 0.1255423128604889, -0.13101543486118317, -0.09881267696619034, -0.010800042189657688, 0.025675276294350624, -0.03900112956762314, 0.03929384797811508, -0.014210461638867855, 0.08690384775400162, 0.0927920937538147, -0.036249399185180664, 0.14510478079319, -0.011207361705601215, -0.05273498222231865, 0.03845807909965515, -0.19859567284584045, -0.2588069438934326, -0.03773140534758568, -0.13656504452228546, -0.0028873272240161896, 0.04133884236216545, 0.03800595924258232, -0.1847713142633438, -0.0074713281355798244, 0.11246740072965622, 0.11249840259552002, -0.2133566290140152, -0.06725399941205978, -0.004905305802822113, 0.07729097455739975, -0.13444942235946655, -0.017578812316060066, -0.031222449615597725, -0.08281540870666504, -0.04920298978686333, 0.03066551499068737, -0.13418962061405182, 0.06677845120429993, 0.2178623527288437, 0.12527887523174286, 0.049752127379179, -0.0385160967707634, 0.16139256954193115, -0.15277819335460663, -0.1438697725534439, 0.042516376823186874, -0.07740364223718643, 0.05806797742843628, 0.21390840411186218, 0.032026711851358414, -0.07256529480218887, -0.0132212582975626, -0.012072612531483173, -0.07205180823802948, -0.24367475509643555, -0.10030107945203781, -0.09424323588609695, 0.19197365641593933, -0.0990254282951355, 0.03203873708844185, 0.14764715731143951, -0.06457089632749557, 0.08433501422405243, -0.19763901829719543, -0.010215999558568, 0.01770659349858761, 0.22750094532966614, -0.15916487574577332, 0.00014442045358009636, -0.04882880300283432, -0.05247480422258377, 0.09052883088588715, 0.11802905797958374, -0.02051357924938202, 0.273624449968338, 0.16127364337444305, 0.06911300867795944, 0.07706662267446518, 0.10484999418258667, -0.04469823092222214, 0.0611993744969368, -0.05855664238333702, -0.006833828054368496, 0.004713037051260471, -0.047871965914964676, 0.016841065138578415, 0.2382238805294037, -0.24595330655574799, 0.03640567511320114, -0.16953878104686737, 0.13202151656150818, -0.11020241677761078, 0.08590279519557953, 0.07235612720251083, 0.0316399447619915, 0.1150963231921196, 0.030863238498568535, -0.08577798306941986, 0.16981296241283417, 0.10846661031246185, -0.12081541866064072, -0.06076256185770035, 0.06473146378993988, 0.08517883718013763, -0.04448635131120682, 0.12020564824342728, -0.21790917217731476, -0.14890499413013458, 0.02830875851213932, 0.09715487062931061, -0.20258614420890808, 0.30610308051109314, 0.03891199454665184, -0.15730910003185272, -0.0673779845237732, -0.12655381858348846, -0.05232610926032066, 0.05670171231031418, 0.10477700084447861, 0.042930278927087784, -0.0985770970582962, -0.04290907457470894, 0.04275950416922569, -0.004747000988572836, 0.19975899159908295, 0.003670648904517293, -0.15413632988929749, -0.04198495298624039, 0.03424621373414993, -0.06237080693244934, -0.0023813066072762012, 0.003565198974683881, -0.1303248107433319, 0.024640655145049095, 0.050463344901800156, -0.016641467809677124, 0.040866199880838394, 0.10756327211856842, -0.014962024055421352, 0.07353220880031586, 0.038472678512334824, 0.04593467339873314, -0.07964198291301727, -0.15523113310337067, 0.016211804002523422, -0.023164959624409676, -0.022165657952427864, -0.09395032376050949, -0.08139438927173615, -0.13410617411136627, -0.09676485508680344, 0.10384535789489746, -0.06187068298459053, 0.1079651489853859, -0.04443218186497688, 0.22777260839939117, -0.01876998320221901, 0.0707821175456047, -0.0014519646065309644, 0.017383376136422157, -0.04173330217599869, -0.05079682916402817, 0.13796241581439972, -0.16388940811157227, 0.03631523996591568, 0.1287132054567337, 0.020674366503953934, -0.011654446832835674, -0.020724603906273842, -0.10179019719362259, 0.2584770619869232, 0.2532082200050354, 0.008431713096797466, 0.20354236662387848, 0.2779310643672943, -0.03405376151204109, -0.23847854137420654, -0.06443439424037933, -0.24608860909938812, -0.10001913458108902, 0.11060019582509995, -0.17335651814937592, 0.048826683312654495, 0.04266653582453728, -0.057426001876592636, 0.15894554555416107, -0.26584717631340027, 0.018543260172009468, 0.16676761209964752, -0.08710185438394547, 0.556063711643219, -0.08401168882846832, -0.1706315577030182, 0.028705457225441933, -0.11849171668291092, 0.1369921863079071, -0.059715449810028076, 0.05587036535143852, 0.06141930818557739, 0.1030082255601883, 0.0791819840669632, 0.024286393076181412, 0.2086247056722641, -0.030721409246325493, -0.011694102548062801, -0.08707722276449203, -0.2644178867340088, 0.022543715313076973, 0.014050757512450218, -0.15220579504966736, 0.06714692711830139, -0.03763264790177345, -0.12996013462543488, -0.00833086110651493, -0.09469889849424362, -0.03442717716097832, 0.05498296394944191, -0.05582961067557335, -0.04872966185212135, -0.02503621205687523, -0.12678851187229156, 0.0248456709086895, 0.2782087028026581, -0.12460757046937943, 0.20962512493133545, 0.03189510107040405, 0.0826069712638855, -0.11556048691272736, -0.040044378489255905, -0.08514855802059174, -0.04452597722411156, 0.06780480593442917, -0.04552831873297691, 0.01640397682785988, 0.13416710495948792, -0.0347602553665638, 0.11645430326461792, 0.054678838700056076, -0.04116342216730118, 0.0018401920096948743, 0.12186210602521896, -0.19740338623523712, -0.20969319343566895, -0.04371960833668709, 0.03845932334661484, 0.13964368402957916, 0.008396233431994915, 0.07325775921344757, 0.15447303652763367, -0.012220986187458038, 0.017707353457808495, 0.0063921562395989895, -0.10938490182161331, -0.10873667150735855, 0.054379791021347046, 0.013983300887048244, -0.09227976948022842, 0.18084652721881866, 0.03675472363829613, -0.22814933955669403, -0.07893285900354385, 0.202446848154068, -0.030374113470315933, -0.05819692462682724, -0.21532276272773743, 0.09139268845319748, -0.01710049994289875, -0.04101932793855667, 0.09945792704820633, -0.04600068926811218, -0.011849126778542995, 0.2088441699743271, 0.005288805812597275, 0.11521650105714798, 0.02289087511599064, -0.014231379143893719, 0.18881471455097198, -0.05520625784993172, -0.1449955552816391, -0.09115351736545563, -0.029631074517965317, -0.0884295105934143, -0.029015889391303062, 0.16390375792980194, -0.09958739578723907, -0.19185857474803925, -0.27840521931648254, 0.10097097605466843, -0.09882879257202148, -0.14626872539520264, -0.06603177636861801, -0.08046457916498184, 0.06351024657487869, 0.0007621019030921161, -0.021881122142076492, -0.08205366134643555, -0.1492452621459961, 0.13080784678459167, 0.1057455912232399, 0.08206558227539062, -0.016450341790914536, 0.016596172004938126, 0.19690342247486115, 0.026534590870141983, 0.14594069123268127, 0.17451751232147217, -0.05074344202876091, 0.15319328010082245, -0.20988412201404572, -0.07780496776103973, 0.11590725928544998, -0.025719670578837395, 0.04735324904322624, 0.19499944150447845, -0.11897840350866318, -0.006798566784709692, 0.019707852974534035, 0.05558319017291069, -0.0690290778875351, -0.07785819470882416, 0.07048150897026062, 0.04877069592475891, -0.25241997838020325, -0.007160451728850603, -0.17783494293689728, 0.10817551612854004, -0.04739189147949219, -0.0037109223194420338, 0.0740538164973259, 0.08902791887521744, 0.06466685980558395, 0.05149034038186073, 0.03837009146809578, -0.11509545892477036, 0.045814137905836105, -0.08034229278564453, 0.009427596814930439, -0.0007844272186048329, 0.3414205014705658, -0.04865121468901634, -0.012500427663326263, 0.060768552124500275, 0.13266195356845856, -0.040937576442956924, -0.004120932426303625, 0.07744668424129486, 0.11807578802108765, -0.07814747095108032, -0.13197903335094452, 0.0416797399520874, -0.044970154762268066, -0.03262122720479965, 0.10802089422941208, 0.04302893206477165, 0.08631748706102371, 0.037648510187864304, -0.020762383937835693, -0.009974390268325806, 0.06859339028596878, -0.17212650179862976, 0.037296079099178314, -0.045919448137283325, -0.1130448579788208, 0.08897913247346878, 0.16728170216083527, -0.00013685932208318263, 0.05126078054308891, -0.09991825371980667, -0.01692856475710869, -0.12863412499427795, -0.03461017832159996, 0.042484767735004425, -0.11316732317209244, 0.051238011568784714, -0.04773739352822304, 0.047609876841306686, 0.19828583300113678, 0.02608226239681244, -0.07328592985868454, 0.11490452289581299, -0.07990892231464386, -0.14335277676582336, -0.0557478666305542, 0.0005818892968818545, 0.15513694286346436, -0.12246192991733551, -0.07545425742864609, -0.12798281013965607, -0.088837631046772, -0.08355767279863358, 0.0524747408926487, -0.04950229078531265, -0.11297126859426498, -0.17672379314899445, -0.03879760950803757, -0.02510312758386135, 0.11135838180780411, -0.112035371363163, 0.23329482972621918, -0.01199720986187458, 0.05557756870985031, 0.02991287223994732, 0.24918290972709656, -0.022521326318383217, 0.10415615141391754, -0.02151179313659668, 0.05253418907523155, -0.10356061160564423, 0.14413990080356598, -0.0780073031783104, -0.022134484723210335, -0.07592874020338058, 0.26220473647117615, 0.24513402581214905, -0.07298863679170609, -0.015757491812109947, -0.050771016627550125, 0.0689423605799675, 0.1046677827835083, 0.06776474416255951, 0.01116007100790739, 0.30758199095726013, -0.07274506241083145, 0.028703520074486732, 0.05941295251250267, 0.025450630113482475, -0.009023242630064487, -0.00031586099066771567, 0.07820562273263931, -0.02096210978925228, -0.08039145916700363, 0.15984933078289032, -0.2520323693752289, 0.12485187500715256, -0.00880131684243679, -0.2363835871219635, -0.03988468647003174, -0.07471023499965668, 0.1589323729276657, -0.03234702721238136, 0.1501270979642868, -0.02978230081498623, -0.21741677820682526, -0.12460041046142578, 0.03790215402841568, -0.33398324251174927, -0.20619212090969086, 0.13948045670986176, 0.0760318860411644, 0.023805538192391396, -0.021741479635238647, 0.025529982522130013, 0.0032104600686579943, 0.04961394891142845, 0.03460799530148506, 0.02477840706706047, 0.08047868311405182, -0.07015020400285721, -0.22745169699192047, 0.017628446221351624, 0.04063417389988899, -0.024304617196321487, 0.08310901373624802, -0.1729861944913864, -0.011919168755412102, 0.1467619687318802, -0.04285425320267677, 0.047341711819171906, 0.06456191837787628, -0.14956869184970856, 0.022001322358846664, 0.02662065252661705, 0.04635908454656601, -0.03859921917319298, 0.035746656358242035, -0.052021801471710205, 0.009805927984416485, -0.16483484208583832, -0.14164559543132782, 0.07857505232095718, -0.07611528784036636, 0.14186875522136688, -0.05144434794783592, -0.03638307377696037, 0.02091086283326149, 0.01707182452082634, 0.19947703182697296, -0.05914916470646858, 0.018417075276374817, 0.1404166966676712, 0.018141740933060646, 0.03283080831170082, -0.22961781919002533, 0.11031536012887955, 0.013199768029153347, -0.014010419137775898, -0.01816931739449501 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # roberta-base-bne-finetuned-amazon_reviews_multi This model is a fine-tuned version of [BSC-TeMU/roberta-base-bne](https://huggingface.co/BSC-TeMU/roberta-base-bne) on the amazon_reviews_multi dataset. ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 2 ### Framework versions - Transformers 4.9.2 - Pytorch 1.9.0+cu102 - Datasets 1.11.0 - Tokenizers 0.10.3
{"license": "cc-by-4.0", "tags": ["generated_from_trainer"], "datasets": ["amazon_reviews_multi"], "model_index": [{"name": "roberta-base-bne-finetuned-amazon_reviews_multi", "results": [{"task": {"name": "Text Classification", "type": "text-classification"}, "dataset": {"name": "amazon_reviews_multi", "type": "amazon_reviews_multi", "args": "es"}}]}]}
text-classification
IsabellaKarabasz/roberta-base-bne-finetuned-amazon_reviews_multi
[ "transformers", "pytorch", "roberta", "text-classification", "generated_from_trainer", "dataset:amazon_reviews_multi", "license:cc-by-4.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us
# roberta-base-bne-finetuned-amazon_reviews_multi This model is a fine-tuned version of BSC-TeMU/roberta-base-bne on the amazon_reviews_multi dataset. ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 2 ### Framework versions - Transformers 4.9.2 - Pytorch 1.9.0+cu102 - Datasets 1.11.0 - Tokenizers 0.10.3
[ "# roberta-base-bne-finetuned-amazon_reviews_multi\n\nThis model is a fine-tuned version of BSC-TeMU/roberta-base-bne on the amazon_reviews_multi dataset.", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2", "### Framework versions\n\n- Transformers 4.9.2\n- Pytorch 1.9.0+cu102\n- Datasets 1.11.0\n- Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us \n", "# roberta-base-bne-finetuned-amazon_reviews_multi\n\nThis model is a fine-tuned version of BSC-TeMU/roberta-base-bne on the amazon_reviews_multi dataset.", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2", "### Framework versions\n\n- Transformers 4.9.2\n- Pytorch 1.9.0+cu102\n- Datasets 1.11.0\n- Tokenizers 0.10.3" ]
[ 64, 55, 6, 12, 8, 3, 90, 34 ]
[ "passage: TAGS\n#transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-amazon_reviews_multi #license-cc-by-4.0 #autotrain_compatible #endpoints_compatible #region-us \n# roberta-base-bne-finetuned-amazon_reviews_multi\n\nThis model is a fine-tuned version of BSC-TeMU/roberta-base-bne on the amazon_reviews_multi dataset.## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 2e-05\n- train_batch_size: 16\n- eval_batch_size: 16\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 2### Framework versions\n\n- Transformers 4.9.2\n- Pytorch 1.9.0+cu102\n- Datasets 1.11.0\n- Tokenizers 0.10.3" ]
[ -0.06923318654298782, 0.15117035806179047, -0.003487436566501856, 0.100824274122715, 0.13460879027843475, 0.02384221740067005, 0.1518108993768692, 0.13672751188278198, -0.10227956622838974, 0.017931077629327774, 0.06974198669195175, 0.0466911680996418, 0.04018523916602135, 0.15156802535057068, -0.036817584186792374, -0.22626231610774994, 0.020160827785730362, 0.010358340106904507, 0.0019566502887755632, 0.113700732588768, 0.12807650864124298, -0.09231914579868317, 0.08930063247680664, -0.011499404907226562, -0.12876737117767334, 0.013458937406539917, -0.0019482114585116506, -0.09016718715429306, 0.06989605724811554, 0.010718491859734058, 0.08745279908180237, 0.013989703729748726, 0.10987730324268341, -0.23577134311199188, 0.006594392005354166, 0.050010185688734055, 0.0355403795838356, 0.0882439911365509, 0.006983253639191389, -0.04730434715747833, 0.10188674926757812, -0.09130962938070297, 0.13579411804676056, 0.01598808355629444, -0.08760616928339005, -0.18901175260543823, -0.11072028428316116, 0.10113519430160522, 0.05081205442547798, 0.08618451654911041, 0.014611813239753246, 0.18062110245227814, -0.05814983323216438, 0.08182695508003235, 0.24807387590408325, -0.25868889689445496, -0.05315713584423065, 0.01423950120806694, 0.07378601282835007, 0.10024622827768326, -0.09384903311729431, -0.027977604418992996, 0.055974412709474564, 0.0447002537548542, 0.10564301908016205, -0.035811059176921844, -0.08695347607135773, -0.004197849426418543, -0.1231616735458374, -0.03928253427147865, 0.2671722173690796, 0.03432304039597511, -0.07120071351528168, -0.0881500318646431, -0.01042099017649889, -0.09353148192167282, -0.026501720771193504, -0.017831293866038322, 0.05511808022856712, -0.08389993757009506, -0.07731762528419495, -0.06841947883367538, -0.07345554977655411, -0.02425581030547619, 0.022932082414627075, 0.08440186828374863, 0.05796055123209953, 0.031910959631204605, -0.05434723198413849, 0.09338673949241638, 0.010482171550393105, -0.1119697317481041, -0.04140486195683479, -0.035782843828201294, -0.06207864731550217, -0.057258110493421555, -0.03130526468157768, -0.02276673913002014, -0.012411709874868393, 0.23739802837371826, -0.03937293589115143, 0.03453746810555458, 0.00672404607757926, 0.026076121255755424, 0.000022057578462408856, 0.16669875383377075, -0.002701172372326255, -0.009750971570611, 0.015152586624026299, 0.0860707014799118, 0.024001093581318855, -0.010487019084393978, -0.10861869156360626, -0.028792113065719604, 0.05892937630414963, 0.05981843173503876, -0.040962979197502136, -0.0015781534602865577, -0.06807056814432144, -0.06241920590400696, 0.021292222663760185, -0.12917780876159668, 0.03520014137029648, -0.05235794931650162, -0.04494500532746315, -0.06111454963684082, 0.03747200593352318, 0.015629246830940247, -0.03133680671453476, 0.08322477340698242, -0.06457263231277466, -0.002907088026404381, -0.06991668045520782, -0.03763760253787041, 0.035489778965711594, -0.10294730961322784, 0.03927076980471611, -0.08323962241411209, -0.20054912567138672, -0.040801532566547394, 0.0400589257478714, -0.06330032646656036, -0.06996583193540573, -0.002191564766690135, -0.040020134299993515, 0.0006327414885163307, -0.019014690071344376, 0.1233990341424942, -0.05351775139570236, 0.0687122493982315, 0.03538334742188454, 0.02963550202548504, 0.01580161601305008, 0.029847213998436928, -0.09136643260717392, 0.012072325684130192, -0.12288952618837357, 0.05973702669143677, -0.08257081359624863, 0.022729776799678802, -0.10260294377803802, -0.10379625111818314, 0.0077809421345591545, -0.01080207247287035, 0.036505114287137985, 0.10184917598962784, -0.1361539512872696, -0.0203527994453907, 0.14447428286075592, -0.06775745004415512, -0.08590223640203476, 0.0941649079322815, -0.08500593155622482, 0.06403407454490662, 0.08249261975288391, 0.1469317525625229, 0.11718259006738663, -0.106892891228199, 0.015285681933164597, 0.005181541200727224, 0.05457815155386925, -0.00104239780921489, 0.08770681917667389, 0.011958228424191475, 0.007725980598479509, 0.03678719699382782, -0.06511769443750381, -0.046609699726104736, -0.06147366017103195, -0.08738943934440613, -0.061208609491586685, -0.0786241739988327, 0.051402460783720016, 0.017637480050325394, 0.03027227707207203, -0.09705217182636261, -0.09898865967988968, 0.0954582542181015, 0.13427428901195526, -0.036825355142354965, 0.018110428005456924, -0.05224521458148956, 0.05069377273321152, -0.03541447967290878, -0.02689112164080143, -0.2020176351070404, -0.05500516667962074, 0.05573880299925804, -0.04324347898364067, 0.06863345950841904, -0.006885608192533255, 0.04325481504201889, 0.02429128810763359, -0.07812050729990005, -0.003736851504072547, -0.12772919237613678, -0.017935913056135178, -0.08550934493541718, -0.17318664491176605, -0.04680757224559784, -0.041993942111730576, 0.08605213463306427, -0.18405619263648987, 0.019671762362122536, -0.027424201369285583, 0.12836594879627228, 0.059073470532894135, -0.049574270844459534, 0.023751311004161835, 0.04299469664692879, -0.008249020203948021, -0.07932513952255249, 0.018337750807404518, 0.010607623495161533, -0.0883631557226181, 0.018135594204068184, -0.08086783438920975, 0.12008430808782578, 0.07838113605976105, 0.11803364753723145, -0.08437617123126984, 0.03455893695354462, -0.0478588305413723, -0.03486163541674614, -0.11052430421113968, 0.02786261960864067, 0.20726226270198822, 0.01861906610429287, 0.11264851689338684, -0.1142488569021225, -0.09394571185112, 0.02228461764752865, -0.023197568953037262, 0.0013156847562640905, 0.09220290929079056, 0.044447075575590134, -0.09033424407243729, 0.09107165783643723, 0.11811964213848114, -0.015439092181622982, 0.13360556960105896, -0.05495240166783333, -0.07952280342578888, -0.0363273099064827, -0.026055755093693733, -0.022187482565641403, 0.1310262680053711, -0.04413272812962532, -0.004200166091322899, 0.04673898592591286, 0.013570314273238182, 0.010752616450190544, -0.16467224061489105, -0.009251730516552925, 0.03832217678427696, -0.040164053440093994, -0.002973671304062009, -0.011181910522282124, 0.027149992063641548, 0.08244173228740692, 0.03333457559347153, 0.006789159495383501, 0.023128649219870567, 0.011498456820845604, -0.0846388041973114, 0.17133314907550812, -0.09187710285186768, -0.18606534600257874, -0.1555800586938858, 0.032858956605196, -0.0369146466255188, -0.02697666548192501, 0.0307807344943285, -0.055789172649383545, -0.058978065848350525, -0.08934811502695084, -0.04781227186322212, -0.057695869356393814, -0.031100407242774963, 0.03180663287639618, 0.05863703414797783, 0.05887520685791969, -0.12377317994832993, -0.0034001434687525034, 0.002712413901463151, -0.03011871874332428, -0.012510138563811779, 0.049407053738832474, 0.09935110807418823, 0.07657065987586975, -0.030027808621525764, 0.0032683820463716984, -0.031106695532798767, 0.21197101473808289, -0.08576866239309311, -0.03597823902964592, 0.12221835553646088, -0.010004611685872078, 0.03340883180499077, 0.12867382168769836, 0.027662355452775955, -0.09839042276144028, 0.03249531239271164, 0.03338596969842911, -0.031629595905542374, -0.31794270873069763, -0.00852465070784092, -0.019239909946918488, -0.06225844472646713, 0.09811370819807053, 0.05484435334801674, -0.025606418028473854, 0.04541719704866409, -0.0193315502256155, 0.06339829415082932, 0.02234545350074768, 0.11603344231843948, 0.06488517671823502, 0.030229102820158005, 0.09835769981145859, -0.05954187363386154, -0.033525388687849045, 0.09663984179496765, 0.050078075379133224, 0.27883169054985046, -0.0013864361681044102, 0.13551469147205353, 0.04900071397423744, 0.10112955421209335, 0.003603914985433221, 0.016162704676389694, 0.04797224700450897, 0.04210607334971428, -0.019287187606096268, -0.034559134393930435, -0.01984509266912937, 0.0324038565158844, -0.03698046877980232, 0.030623501166701317, -0.107272669672966, -0.0033538572024554014, 0.030701596289873123, 0.27332180738449097, 0.004197043366730213, -0.27941566705703735, -0.09030507504940033, 0.03813358023762703, -0.061434678733348846, -0.04336192458868027, 0.021120712161064148, 0.06525881588459015, -0.1738593578338623, 0.06828521192073822, -0.036795709282159805, 0.10362201184034348, -0.11008935421705246, -0.0030930947978049517, 0.01286833081394434, 0.05282978340983391, 0.0011922633275389671, 0.09084043651819229, -0.2389078438282013, 0.20517870783805847, 0.012984762899577618, 0.09246176481246948, -0.05029440298676491, 0.011791019700467587, -0.010883857496082783, 0.05761455371975899, 0.10527510941028595, 0.013369167223572731, -0.10575585067272186, -0.11672570556402206, -0.06882144510746002, 0.014121245592832565, 0.08819392323493958, -0.01874065212905407, 0.08064532279968262, -0.041951294988393784, -0.006763093173503876, 0.010827567428350449, -0.11221496015787125, -0.1469801366329193, -0.14038874208927155, 0.02009054273366928, -0.005005980376154184, -0.05817059427499771, -0.07917478680610657, -0.11034266650676727, 0.048306237906217575, 0.15806744992733002, 0.006332657299935818, -0.06867112964391708, -0.12450993806123734, 0.03328173607587814, 0.13275398313999176, -0.059913478791713715, 0.01973162591457367, 0.02118678018450737, 0.159262552857399, -0.00018713971076067537, -0.0710625946521759, 0.024528132751584053, -0.03502639755606651, -0.19258537888526917, -0.04299885407090187, 0.1314098834991455, 0.025876473635435104, 0.05622834712266922, -0.019010618329048157, 0.026281066238880157, -0.029417548328638077, -0.0844632089138031, 0.0017485368298366666, 0.08518112450838089, 0.11256397515535355, 0.06344851106405258, -0.08539638668298721, 0.02453688159584999, -0.07935665547847748, -0.03674773871898651, 0.14091315865516663, 0.16925635933876038, -0.09181675314903259, 0.1340055912733078, 0.04818420112133026, -0.1110651046037674, -0.13164788484573364, 0.00983627699315548, 0.09712313860654831, 0.010616048239171505, 0.07629495859146118, -0.14834748208522797, 0.07366891205310822, 0.08965340256690979, -0.016177156940102577, 0.052604157477617264, -0.28564387559890747, -0.13661985099315643, 0.04630701616406441, 0.0902378261089325, 0.029254131019115448, -0.10542503744363785, -0.02808612398803234, -0.06724537909030914, -0.16461622714996338, 0.09535981714725494, -0.08602610230445862, 0.1085880771279335, -0.02373478189110756, 0.09994814544916153, 0.00946374423801899, -0.025500860065221786, 0.13635209202766418, 0.051946837455034256, 0.10076946765184402, -0.045835964381694794, 0.017608419060707092, 0.10298499464988708, -0.0786682590842247, 0.08947157859802246, -0.031634584069252014, 0.06496751308441162, -0.14524677395820618, -0.050888098776340485, -0.03711411729454994, 0.04892010986804962, -0.058727558702230453, -0.027902301400899887, -0.056054484099149704, 0.04427128657698631, 0.029408853501081467, -0.04119386151432991, 0.13005942106246948, 0.029679449275135994, 0.07549811154603958, 0.06472765654325485, 0.1121697947382927, 0.007432642392814159, -0.14061878621578217, -0.02822023071348667, -0.045662347227334976, 0.04423889145255089, -0.17355215549468994, 0.028418544679880142, 0.10304689407348633, 0.011978656984865665, 0.14753703773021698, 0.009684491902589798, -0.0699194148182869, -0.0030743873212486506, 0.03578807786107063, -0.09674584865570068, -0.10334207117557526, -0.018483256921172142, -0.06131841242313385, -0.14742253720760345, 0.001234787399880588, 0.12883029878139496, -0.06849358975887299, -0.06405863910913467, -0.019861526787281036, 0.03031078539788723, -0.02438402734696865, 0.14853522181510925, 0.057576317340135574, 0.06286044418811798, -0.09112848341464996, 0.17045944929122925, 0.10465003550052643, -0.05463838949799538, 0.06919903308153152, 0.06490626186132431, -0.1009526401758194, -0.04300939291715622, 0.06570576876401901, 0.15939021110534668, -0.041368599981069565, -0.04820791259407997, -0.10944243520498276, -0.08227552473545074, 0.07274939864873886, 0.11167098581790924, 0.0637463927268982, -0.0013751169899478555, 0.0033450911287218332, -0.01284393947571516, -0.09911691397428513, 0.1115410178899765, 0.07154470682144165, 0.07597701996564865, -0.15108130872249603, -0.02459609881043434, 0.05290383845567703, 0.061655908823013306, -0.011553000658750534, 0.027934355661273003, -0.09033173322677612, -0.001193314790725708, -0.13367843627929688, 0.03217669576406479, -0.009886540472507477, 0.03348705917596817, -0.026499353349208832, -0.054430197924375534, -0.05106896162033081, 0.0582982636988163, -0.07653432339429855, -0.05402996391057968, 0.012629769742488861, 0.08421628177165985, -0.10018917918205261, -0.008399378508329391, 0.04876323789358139, -0.0787222757935524, 0.07482186704874039, 0.057065073400735855, 0.010957127436995506, 0.03833116218447685, -0.012368264608085155, 0.01335282251238823, -0.0030613355338573456, 0.0334327295422554, 0.031094824895262718, -0.15789639949798584, 0.00979549903422594, -0.0003149261756334454, 0.06634202599525452, 0.021515168249607086, 0.06205837428569794, -0.16248875856399536, -0.0404728502035141, -0.016024179756641388, -0.082888662815094, -0.04265918582677841, 0.03239230439066887, 0.09211613982915878, 0.04214250296354294, 0.17848563194274902, -0.06711395829916, 0.04215696081519127, -0.18084292113780975, -0.024552829563617706, -0.021805595606565475, -0.0647168755531311, -0.1340566724538803, -0.059669993817806244, 0.04915735125541687, -0.06635843217372894, 0.19722822308540344, 0.010761426761746407, 0.1252647489309311, 0.038568053394556046, -0.02827974408864975, -0.07325860857963562, 0.010925588198006153, 0.11219878494739532, 0.030346788465976715, -0.035940371453762054, 0.09391575306653976, -0.03319520875811577, 0.06599150598049164, 0.015248806215822697, 0.11512210220098495, 0.195462167263031, 0.06535650044679642, 0.049924690276384354, 0.07578403502702713, -0.03673194348812103, -0.0992644727230072, 0.07156636565923691, 0.02184540592133999, 0.09654255211353302, -0.030292222276329994, 0.13047385215759277, 0.12252824008464813, -0.17074204981327057, 0.06924843788146973, -0.040904588997364044, -0.09977104514837265, -0.12467780709266663, -0.07443451136350632, -0.11291048675775528, -0.10894573479890823, 0.028040753677487373, -0.142184317111969, -0.006002638954669237, 0.05260021239519119, -0.00682448735460639, -0.01678856462240219, 0.07296055555343628, -0.024268731474876404, -0.016495492309331894, 0.08254702389240265, 0.019406773149967194, -0.014411681331694126, -0.05043629929423332, -0.03578310087323189, 0.03115202859044075, 0.01743854209780693, 0.061650350689888, -0.024871060624718666, 0.0069711217656731606, 0.0012998295715078712, -0.02540196105837822, -0.07832267135381699, 0.039201054722070694, 0.02519344910979271, 0.053447175770998, 0.030518805608153343, 0.05202074348926544, -0.012658230029046535, -0.015443895943462849, 0.31399914622306824, -0.051058873534202576, -0.08075595647096634, -0.16602075099945068, 0.19767558574676514, 0.050511330366134644, -0.04062078520655632, 0.06778894364833832, -0.09620071947574615, -0.007697163615375757, 0.16679984331130981, 0.19023729860782623, -0.0066157435066998005, -0.024019863456487656, -0.0006301264511421323, -0.010052952915430069, -0.012020455673336983, 0.1106393039226532, 0.087193563580513, -0.016081158071756363, -0.03581589460372925, -0.001773226773366332, 0.004406265914440155, -0.01626555249094963, -0.06588029861450195, 0.0935099795460701, -0.005053420551121235, -0.004135051276534796, -0.03808080032467842, 0.08415868133306503, -0.02552018314599991, -0.19025984406471252, 0.0284019373357296, -0.17197471857070923, -0.19217394292354584, -0.009881719015538692, 0.048553936183452606, -0.021075788885354996, 0.03518758341670036, 0.013753301464021206, -0.030029546469449997, 0.12649929523468018, -0.0022735127713531256, -0.10128016769886017, -0.11040951311588287, 0.10168333351612091, -0.06886423379182816, 0.19387884438037872, -0.006802830379456282, 0.0546376071870327, 0.08551853895187378, 0.015883563086390495, -0.14537931978702545, 0.03444842994213104, 0.05423709377646446, 0.02267785556614399, 0.03548844903707504, 0.16753436625003815, -0.04536937177181244, 0.0873432382941246, 0.055865123867988586, -0.09213170409202576, -0.04009918496012688, -0.06512992829084396, 0.00922153890132904, -0.0987432599067688, 0.017924709245562553, -0.09266092628240585, 0.14599590003490448, 0.1990104764699936, -0.0532536543905735, -0.015183850191533566, -0.06493537873029709, 0.05536579713225365, 0.07607972621917725, 0.059590406715869904, -0.0003668335557449609, -0.18311847746372223, -0.0007425411604344845, 0.08596638590097427, 0.036600880324840546, -0.28683027625083923, -0.06702311336994171, 0.05108857527375221, -0.041751377284526825, -0.03697732090950012, 0.11387184262275696, 0.05637555569410324, 0.030224807560443878, -0.05172831565141678, -0.12662391364574432, -0.04040999338030815, 0.13051821291446686, -0.17201107740402222, -0.04263782501220703 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # This model is a fine-tuned version of [hf-test/xls-r-dummy](https://huggingface.co/hf-test/xls-r-dummy) on the MOZILLA-FOUNDATION/COMMON_VOICE_7_0 - AB dataset. It achieves the following results on the evaluation set: - Loss: 156.8789 - Wer: 1.3456 ## 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: 2 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - training_steps: 10 - mixed_precision_training: Native AMP ### Training results ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.1+cu102 - Datasets 1.18.1.dev0 - Tokenizers 0.11.0
{"language": ["ab"], "tags": ["automatic-speech-recognition", "mozilla-foundation/common_voice_7_0", "generated_from_trainer"], "datasets": ["common_voice"], "model-index": [{"name": "", "results": []}]}
automatic-speech-recognition
Iskaj/hf-challenge-test
[ "transformers", "pytorch", "tensorboard", "wav2vec2", "automatic-speech-recognition", "mozilla-foundation/common_voice_7_0", "generated_from_trainer", "ab", "dataset:common_voice", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "ab" ]
TAGS #transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_7_0 #generated_from_trainer #ab #dataset-common_voice #endpoints_compatible #region-us
# This model is a fine-tuned version of hf-test/xls-r-dummy on the MOZILLA-FOUNDATION/COMMON_VOICE_7_0 - AB dataset. It achieves the following results on the evaluation set: - Loss: 156.8789 - Wer: 1.3456 ## 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: 2 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - training_steps: 10 - mixed_precision_training: Native AMP ### Training results ### Framework versions - Transformers 4.16.0.dev0 - Pytorch 1.10.1+cu102 - Datasets 1.18.1.dev0 - Tokenizers 0.11.0
[ "# \n\nThis model is a fine-tuned version of hf-test/xls-r-dummy on the MOZILLA-FOUNDATION/COMMON_VOICE_7_0 - AB dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 156.8789\n- Wer: 1.3456", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 2\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- training_steps: 10\n- mixed_precision_training: Native AMP", "### Training results", "### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.1+cu102\n- Datasets 1.18.1.dev0\n- Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_7_0 #generated_from_trainer #ab #dataset-common_voice #endpoints_compatible #region-us \n", "# \n\nThis model is a fine-tuned version of hf-test/xls-r-dummy on the MOZILLA-FOUNDATION/COMMON_VOICE_7_0 - AB dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 156.8789\n- Wer: 1.3456", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 2\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- training_steps: 10\n- mixed_precision_training: Native AMP", "### Training results", "### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.1+cu102\n- Datasets 1.18.1.dev0\n- Tokenizers 0.11.0" ]
[ 75, 70, 6, 12, 8, 3, 101, 4, 41 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_7_0 #generated_from_trainer #ab #dataset-common_voice #endpoints_compatible #region-us \n# \n\nThis model is a fine-tuned version of hf-test/xls-r-dummy on the MOZILLA-FOUNDATION/COMMON_VOICE_7_0 - AB dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 156.8789\n- Wer: 1.3456## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0003\n- train_batch_size: 2\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- training_steps: 10\n- mixed_precision_training: Native AMP### Training results### Framework versions\n\n- Transformers 4.16.0.dev0\n- Pytorch 1.10.1+cu102\n- Datasets 1.18.1.dev0\n- Tokenizers 0.11.0" ]
[ -0.11955516040325165, 0.1077391505241394, -0.0046463776379823685, 0.031557124108076096, 0.13835538923740387, 0.01547481119632721, 0.06890618056058884, 0.17141468822956085, -0.0923127681016922, 0.10604371130466461, 0.05213674530386925, 0.0068789152428507805, 0.0969434529542923, 0.07295062392950058, 0.0010760776931419969, -0.24731694161891937, 0.016492461785674095, -0.014540532603859901, -0.057164717465639114, 0.08313304930925369, 0.12770959734916687, -0.08393647521734238, 0.021685324609279633, 0.044753823429346085, -0.14249494671821594, 0.01785906031727791, -0.029377782717347145, -0.05126398056745529, 0.08163737505674362, 0.02749287523329258, 0.06185664236545563, 0.004774395376443863, 0.055019959807395935, -0.23522146046161652, 0.0009408165933564305, 0.0789300799369812, 0.06284314393997192, 0.07973113656044006, 0.09881824254989624, 0.013493639416992664, 0.07425598800182343, -0.11557605117559433, 0.037434618920087814, 0.08561550080776215, -0.07901272922754288, -0.248990997672081, -0.10286055505275726, 0.04647131264209747, 0.07928591966629028, 0.10591154545545578, -0.02860272116959095, 0.11379583179950714, -0.04681720584630966, 0.061481233686208725, 0.21399691700935364, -0.2243250459432602, -0.041760750114917755, -0.0013878807658329606, 0.07477142661809921, 0.05618095397949219, -0.1089632511138916, 0.002916505793109536, 0.06109736114740372, 0.021726438775658607, 0.03714120388031006, 0.01695471815764904, -0.0055059343576431274, -0.023709379136562347, -0.10881884396076202, -0.06910934299230576, 0.19553512334823608, 0.06261005997657776, -0.059270229190588, -0.10913214087486267, -0.00771046569570899, -0.12400887161493301, -0.021803321316838264, 0.0007215850055217743, 0.008994599804282188, -0.028471210971474648, -0.03179950267076492, -0.037369467318058014, -0.0886162742972374, -0.058127712458372116, 0.059730108827352524, 0.10730490833520889, 0.043459683656692505, -0.005994051694869995, -0.024365361779928207, 0.09243976324796677, -0.027813095599412918, -0.13949979841709137, -0.04508274048566818, -0.0011781678767874837, -0.08042102307081223, -0.025635939091444016, -0.049572233110666275, -0.05303463712334633, 0.03875439614057541, 0.09381336718797684, -0.05346136912703514, 0.07873301208019257, -0.007309277076274157, 0.0167992003262043, -0.017108222469687462, 0.17951421439647675, -0.03401583805680275, -0.035943903028964996, -0.004315866157412529, 0.11910348385572433, -0.006192091386765242, -0.01589796133339405, -0.0581928975880146, -0.029257718473672867, 0.13259129226207733, 0.0906149372458458, -0.007206335663795471, -0.0004431350389495492, -0.08718176186084747, -0.029637055471539497, 0.0031246866565197706, -0.14255031943321228, 0.03797247260808945, 0.019990013912320137, -0.06684231758117676, 0.03485376387834549, 0.02664291299879551, -0.0038817243184894323, -0.07060416787862778, 0.022401267662644386, -0.04900712892413139, -0.01670289784669876, -0.06994786113500595, -0.0745549276471138, 0.027833525091409683, -0.02589755691587925, 0.0007268000044859946, -0.060660552233457565, -0.11662724614143372, -0.05996989831328392, 0.009859414771199226, -0.07983225584030151, -0.06882069259881973, -0.016779078170657158, -0.06371969729661942, 0.021402262151241302, -0.016522545367479324, 0.12164941430091858, -0.017365990206599236, 0.08043226599693298, 0.062158044427633286, 0.022255098447203636, 0.06369133293628693, 0.06925969570875168, -0.03160782530903816, 0.05395736172795296, -0.11026886105537415, 0.12547537684440613, -0.11836713552474976, 0.042399872094392776, -0.14604929089546204, -0.09186571836471558, -0.005287002306431532, -0.02159036323428154, 0.11100095510482788, 0.13007599115371704, -0.1589781641960144, -0.06452001631259918, 0.1337020844221115, -0.06350657343864441, -0.06370238959789276, 0.12392329424619675, -0.001427216688171029, -0.000975092756561935, 0.049820661544799805, 0.16519753634929657, 0.14903534948825836, -0.10903208702802658, -0.014300043694674969, -0.005307078827172518, 0.08446864783763885, 0.04357653111219406, 0.07431954890489578, -0.08274206519126892, 0.0004207376332487911, 0.01929439976811409, -0.053733233362436295, 0.014691470190882683, -0.07492426037788391, -0.06716091185808182, -0.0407630056142807, -0.05902127921581268, 0.04161493852734566, 0.02819971553981304, 0.015426295809447765, -0.07756135612726212, -0.12301686406135559, 0.047570500522851944, 0.1286458522081375, -0.06965826451778412, 0.03330644592642784, -0.08686253428459167, 0.06008535623550415, -0.05420660227537155, 0.0006625487585552037, -0.20017853379249573, -0.04169008880853653, 0.06592812389135361, -0.10251747816801071, 0.026465043425559998, 0.003963836003094912, 0.05704732611775398, 0.0279171634465456, -0.010079838335514069, -0.04025021567940712, -0.08997552841901779, -0.010518272407352924, -0.07894748449325562, -0.17254896461963654, -0.07885458320379257, -0.027523213997483253, 0.16638652980327606, -0.2088235467672348, -0.00273105688393116, 0.049331847578287125, 0.12691251933574677, -0.005042792297899723, -0.0617821104824543, 0.032699815928936005, 0.03308871388435364, 0.006743554957211018, -0.09036469459533691, 0.01902027055621147, 0.015279499813914299, -0.12395766377449036, 0.012895865365862846, -0.1531127393245697, -0.029402555897831917, 0.0744837149977684, 0.065280482172966, -0.05532579869031906, -0.037197358906269073, -0.05615600571036339, -0.054555658251047134, -0.04099644720554352, -0.0714513435959816, 0.1854778528213501, 0.031230363994836807, 0.12259547412395477, -0.07020245492458344, -0.04994162917137146, 0.01850188709795475, -0.005847121588885784, -0.019258122891187668, 0.0841711014509201, -0.03705853223800659, -0.06751686334609985, 0.058019135147333145, 0.058086637407541275, -0.040720149874687195, 0.14740438759326935, -0.08428558707237244, -0.11024907231330872, -0.01615067757666111, 0.027341827750205994, 0.026966819539666176, 0.09754069149494171, -0.15303562581539154, -0.0023423072416335344, 0.052493855357170105, 0.017055777832865715, 0.04193203151226044, -0.16244949400424957, 0.03828318789601326, 0.05109381303191185, -0.052958689630031586, -0.007500953506678343, -0.001045413431711495, 0.012243139557540417, 0.06609760969877243, 0.007434618193656206, -0.0036669056862592697, 0.011722014285624027, -0.03997478634119034, -0.08957253396511078, 0.1510714292526245, -0.12251830101013184, -0.15770138800144196, -0.1612638384103775, 0.03764589875936508, -0.024736715480685234, -0.02446194365620613, 0.02238685078918934, -0.10684096068143845, -0.06792623549699783, -0.05826480686664581, 0.006933021359145641, -0.08566195517778397, 0.0026372887659817934, 0.08558765798807144, -0.00964405108243227, 0.1374862790107727, -0.13523615896701813, 0.011701934039592743, 0.01307854987680912, -0.05509684607386589, -0.023089099675416946, 0.014447650872170925, 0.0723503902554512, 0.12294875085353851, 0.008546656928956509, 0.019050313159823418, -0.027050886303186417, 0.22766101360321045, -0.10767237842082977, -0.007652048021554947, 0.14800205826759338, 0.010487796738743782, 0.06810326129198074, 0.09316355735063553, 0.024615006521344185, -0.06345536559820175, 0.017259249463677406, 0.031157754361629486, -0.0019437122391536832, -0.2883946895599365, -0.024193050339818, -0.06683287769556046, -0.06123568117618561, 0.07375673204660416, 0.04588194191455841, 0.05753065273165703, 0.028830695897340775, -0.05387856066226959, 0.036868590861558914, -0.013169722631573677, 0.08092904090881348, 0.11897601932287216, 0.02749628759920597, 0.07706063985824585, -0.03287313133478165, 0.00695496192201972, 0.047599200159311295, 0.020211337134242058, 0.2584669291973114, 0.01467741746455431, 0.21615438163280487, 0.039568107575178146, 0.13451825082302094, 0.007233037147670984, 0.030507419258356094, 0.008523075841367245, 0.0075014629401266575, 0.030254032462835312, -0.06417234987020493, -0.038066353648900986, 0.008842922747135162, 0.08763795346021652, 0.038205426186323166, -0.10298385471105576, 0.016998710110783577, 0.0032555258367210627, 0.274953693151474, 0.0642533153295517, -0.257779061794281, -0.0702233836054802, 0.013979518786072731, -0.04454950615763664, -0.09158508479595184, -0.013350573368370533, 0.10317817330360413, -0.14428022503852844, 0.05289377644658089, -0.054204061627388, 0.10043202340602875, -0.04555552080273628, 0.012256157584488392, 0.036180511116981506, 0.13158872723579407, 0.00046735708019696176, 0.09257671236991882, -0.21637211740016937, 0.1952313929796219, 0.0165235698223114, 0.09734843671321869, -0.044979169964790344, 0.06379527598619461, 0.02235920913517475, 0.015178149566054344, 0.08619970828294754, 0.0074476865120232105, -0.060806334018707275, -0.15817129611968994, -0.09168609976768494, 0.010205271653831005, 0.12040980160236359, -0.02772246114909649, 0.08766172081232071, -0.05833777040243149, -0.006384660955518484, 0.028668617829680443, -0.03910712152719498, -0.16714580357074738, -0.1300499439239502, 0.04998220130801201, 0.04730091243982315, 0.057865358889102936, -0.09692077338695526, -0.08761736005544662, -0.029962647706270218, 0.1683875471353531, -0.05743524432182312, -0.07156989723443985, -0.1420777291059494, 0.09526745975017548, 0.1652868688106537, -0.05292398855090141, 0.028796909376978874, 0.005877543240785599, 0.16792063415050507, 0.016279062256217003, -0.03504517674446106, 0.04206261411309242, -0.07052820920944214, -0.17784596979618073, -0.045786052942276, 0.19313809275627136, 0.005210711620748043, 0.06359701603651047, 0.000937465054448694, -0.0049358089454472065, 0.0037688622251152992, -0.07307213544845581, 0.04577178880572319, 0.08089374005794525, 0.002661644946783781, 0.05749727785587311, -0.015654785558581352, 0.004795961547642946, -0.08953173458576202, -0.04203158617019653, 0.12744265794754028, 0.2151317000389099, -0.06031092256307602, 0.05176694318652153, 0.06224648654460907, -0.07888097316026688, -0.1446620225906372, 0.022989053279161453, 0.15442387759685516, 0.055375613272190094, 0.0247808787971735, -0.18137560784816742, 0.022907594218850136, 0.07446011155843735, -0.027035024017095566, 0.03648111969232559, -0.299570232629776, -0.12040432542562485, 0.07998182624578476, 0.042384155094623566, -0.00405919412150979, -0.14577355980873108, -0.09115304797887802, -0.04111773148179054, -0.0870397686958313, -0.004053156357258558, -0.01779302954673767, 0.12848272919654846, -0.001291975611820817, 0.07374757528305054, 0.047695476561784744, -0.03486276790499687, 0.1764899492263794, 0.018069706857204437, 0.0320601724088192, -0.015144381672143936, 0.06803729385137558, 0.07026594132184982, -0.0733475536108017, 0.05865733325481415, -0.05395624041557312, 0.05154899135231972, -0.17572304606437683, -0.012410648167133331, -0.07476481795310974, 0.04583033174276352, -0.051085107028484344, -0.013507697731256485, -0.01875835470855236, 0.03567129001021385, 0.03750905022025108, 0.000693491951096803, 0.032791391015052795, -0.025149811059236526, 0.061852216720581055, 0.1461268663406372, 0.11515087634325027, 0.051688410341739655, -0.16724495589733124, 0.0015936073614284396, -0.0038153757341206074, 0.07738929241895676, -0.11990044265985489, 0.029194358736276627, 0.0989585667848587, 0.038310930132865906, 0.13434138894081116, 0.015467306599020958, -0.1454877108335495, 0.013038275763392448, 0.03892689570784569, -0.03407707437872887, -0.1770571619272232, -0.05184989795088768, 0.07336290925741196, -0.15586505830287933, -0.0019370702793821692, 0.10171206295490265, -0.05432511493563652, -0.021636003628373146, -0.007323405705392361, 0.013297243975102901, -0.04571538046002388, 0.21213312447071075, 0.04019825905561447, 0.10485529154539108, -0.07898671180009842, 0.11947988718748093, 0.08464283496141434, -0.06401795148849487, 0.07096102833747864, 0.04693087935447693, -0.04513305425643921, -0.009617944248020649, 0.024733595550060272, 0.06713443249464035, 0.024797899648547173, -0.064824678003788, -0.0638626292347908, -0.11903346329927444, 0.028528783470392227, 0.017870979383587837, 0.019757723435759544, 0.022524474188685417, -0.027998851612210274, 0.0078410804271698, -0.14373493194580078, 0.09337365627288818, 0.07943199574947357, 0.06257355213165283, -0.13799819350242615, 0.0632065162062645, 0.009979351423680782, 0.036971911787986755, 0.007064524572342634, -0.02702142484486103, -0.0668523907661438, 0.005825519096106291, -0.141178160905838, -0.0036171528045088053, -0.012416229583323002, -0.02591657266020775, 0.0011585038155317307, -0.03943650797009468, -0.006475154310464859, 0.08031630516052246, -0.07339932769536972, -0.0942138284444809, -0.002009213902056217, 0.0703125149011612, -0.08959124982357025, 0.005587675608694553, 0.04375986009836197, -0.12584252655506134, 0.07371238619089127, 0.05538564175367355, 0.02427765354514122, 0.01453875470906496, -0.06428655236959457, -0.042003337293863297, 0.03405652567744255, 0.02082633227109909, 0.04547110199928284, -0.12210232019424438, -0.013370562344789505, -0.024280216544866562, 0.020112628117203712, -0.019404584541916847, -0.003420092398300767, -0.12555351853370667, -0.05567764863371849, -0.045519016683101654, -0.006690033245831728, -0.05707979574799538, 0.04896174371242523, 0.06467649340629578, 0.04209182411432266, 0.13595600426197052, -0.07151532918214798, 0.07031241804361343, -0.203629270195961, -0.0020597034599632025, -0.036933623254299164, -0.027828944846987724, -0.04492118954658508, -0.023605231195688248, 0.08981446176767349, -0.054602425545454025, 0.06673847138881683, -0.03527995944023132, 0.10319741070270538, 0.03394852951169014, -0.042340222746133804, -0.003593898145481944, 0.00925415474921465, 0.18535014986991882, 0.07184794545173645, -0.0001996319042518735, 0.08703061938285828, -0.03901013731956482, 0.0564761720597744, 0.0970521867275238, 0.10112056136131287, 0.17553722858428955, 0.0015325790736824274, 0.07982676476240158, 0.07688561081886292, -0.09654484689235687, -0.13959641754627228, 0.09491746127605438, -0.017311997711658478, 0.13442659378051758, -0.03362450376152992, 0.13216888904571533, 0.14142268896102905, -0.16586369276046753, 0.0742882713675499, -0.05545377731323242, -0.10869571566581726, -0.09429986774921417, -0.08929701149463654, -0.0664600282907486, -0.1340835988521576, 0.02010832540690899, -0.10313321650028229, 0.056469619274139404, 0.06947924941778183, 0.015353047288954258, -0.014133483171463013, 0.1487497240304947, 0.020011868327856064, -0.03765486925840378, 0.11225134134292603, -0.01442804653197527, 0.008265720680356026, -0.013154958374798298, -0.05496864765882492, 0.09849144518375397, 0.03334087133407593, 0.10262474417686462, -0.008097503334283829, -0.02666326053440571, 0.05831405520439148, -0.002345271408557892, -0.12119187414646149, 0.024748001247644424, -0.014158718287944794, 0.026126738637685776, 0.08089353889226913, 0.050917088985443115, 0.00027101297746412456, -0.045177359133958817, 0.22412808239459991, -0.06711999326944351, -0.06262020766735077, -0.1296185553073883, 0.16471374034881592, 0.030997348949313164, -0.024646054953336716, 0.037805523723363876, -0.1310579627752304, 0.0024767923168838024, 0.14925627410411835, 0.10114959627389908, -0.006411319132894278, -0.02622690051794052, -0.02105378732085228, -0.02477896213531494, -0.07050654292106628, 0.10876364260911942, 0.08590086549520493, -0.010724316351115704, -0.029219161719083786, 0.06539963185787201, -0.007883477956056595, -0.06981871277093887, -0.08605426549911499, 0.09825005382299423, 0.015548991970717907, -0.007311419118195772, -0.008030395023524761, 0.09604897350072861, 0.004613244906067848, -0.1773543804883957, -0.0045258947648108006, -0.10666149109601974, -0.17237049341201782, -0.0446285717189312, 0.08403465151786804, 0.0456077940762043, 0.06053619831800461, -0.023044947534799576, 0.005976030137389898, 0.1723497062921524, -0.017072785645723343, -0.027508201077580452, -0.08393558859825134, 0.0798463523387909, -0.10198582708835602, 0.17434050142765045, 0.011873606592416763, 0.06418434530496597, 0.09015999734401703, 0.023479783907532692, -0.1530485451221466, 0.028550904244184494, 0.05829399824142456, -0.09363428503274918, 0.05383920669555664, 0.22559592127799988, -0.0023924659471958876, 0.0743492990732193, 0.02520878054201603, -0.11747264862060547, -0.032678354531526566, -0.05338305979967117, 0.008549360558390617, -0.082790806889534, -0.008293325081467628, -0.05519732087850571, 0.13535985350608826, 0.18784312903881073, -0.08072023838758469, -0.03542562946677208, -0.06669648736715317, -0.005259571131318808, 0.05402761697769165, 0.13073435425758362, -0.027245277538895607, -0.1959255337715149, 0.014545287936925888, 0.001414709840901196, 0.031565647572278976, -0.21496643126010895, -0.07926563918590546, 0.03239087760448456, -0.056534525007009506, -0.040818069130182266, 0.10478312522172928, 0.05294850096106529, 0.026168406009674072, -0.03129725903272629, -0.10313215106725693, -0.0358395054936409, 0.1495893895626068, -0.16140609979629517, -0.04438835009932518 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # newnew This model is a fine-tuned version of [facebook/wav2vec2-xls-r-300m](https://huggingface.co/facebook/wav2vec2-xls-r-300m) on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - NL dataset. It achieves the following results on the evaluation set: - Loss: 11.4375 - Wer: 1.0 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - gradient_accumulation_steps: 4 - total_train_batch_size: 32 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 4000 - num_epochs: 50.0 - mixed_precision_training: Native AMP ### Training results ### Framework versions - Transformers 4.17.0.dev0 - Pytorch 1.10.2+cu102 - Datasets 1.18.3.dev0 - Tokenizers 0.11.0
{"language": ["nl"], "license": "apache-2.0", "tags": ["automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "generated_from_trainer"], "datasets": ["common_voice"], "model-index": [{"name": "newnew", "results": []}]}
automatic-speech-recognition
Iskaj/newnew
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "generated_from_trainer", "nl", "dataset:common_voice", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "nl" ]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #generated_from_trainer #nl #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us
# newnew This model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - NL dataset. It achieves the following results on the evaluation set: - Loss: 11.4375 - Wer: 1.0 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - gradient_accumulation_steps: 4 - total_train_batch_size: 32 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 4000 - num_epochs: 50.0 - mixed_precision_training: Native AMP ### Training results ### Framework versions - Transformers 4.17.0.dev0 - Pytorch 1.10.2+cu102 - Datasets 1.18.3.dev0 - Tokenizers 0.11.0
[ "# newnew\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - NL dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 11.4375\n- Wer: 1.0", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- gradient_accumulation_steps: 4\n- total_train_batch_size: 32\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 4000\n- num_epochs: 50.0\n- mixed_precision_training: Native AMP", "### Training results", "### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.3.dev0\n- Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #generated_from_trainer #nl #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n", "# newnew\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - NL dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 11.4375\n- Wer: 1.0", "## Model description\n\nMore information needed", "## Intended uses & limitations\n\nMore information needed", "## Training and evaluation data\n\nMore information needed", "## Training procedure", "### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- gradient_accumulation_steps: 4\n- total_train_batch_size: 32\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 4000\n- num_epochs: 50.0\n- mixed_precision_training: Native AMP", "### Training results", "### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.3.dev0\n- Tokenizers 0.11.0" ]
[ 79, 73, 6, 12, 8, 3, 142, 4, 39 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #generated_from_trainer #nl #dataset-common_voice #license-apache-2.0 #endpoints_compatible #region-us \n# newnew\n\nThis model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - NL dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 11.4375\n- Wer: 1.0## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- gradient_accumulation_steps: 4\n- total_train_batch_size: 32\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 4000\n- num_epochs: 50.0\n- mixed_precision_training: Native AMP### Training results### Framework versions\n\n- Transformers 4.17.0.dev0\n- Pytorch 1.10.2+cu102\n- Datasets 1.18.3.dev0\n- Tokenizers 0.11.0" ]
[ -0.13116024434566498, 0.16673648357391357, -0.00418110890313983, 0.04085119813680649, 0.1036147028207779, 0.0032772975973784924, 0.057705819606781006, 0.17463469505310059, -0.057642143219709396, 0.11373009532690048, 0.01916438899934292, 0.025421367958188057, 0.08967834711074829, 0.10937341302633286, -0.004373957868665457, -0.2069254219532013, 0.024055682122707367, -0.036594539880752563, -0.028843311592936516, 0.08299528807401657, 0.09173385798931122, -0.08349284529685974, 0.03165556490421295, 0.03630552440881729, -0.06161891669034958, -0.0009263341198675334, -0.04047930985689163, -0.06126882880926132, 0.05745520070195198, 0.007738828659057617, 0.00800394732505083, 0.019192514941096306, 0.06702042371034622, -0.24396827816963196, -0.005041229538619518, 0.08307859301567078, 0.05289636179804802, 0.059898097068071365, 0.12994951009750366, -0.009410434402525425, 0.10797260701656342, -0.13969561457633972, 0.04238147661089897, 0.06765366345643997, -0.06261222064495087, -0.23988062143325806, -0.11583664268255234, 0.03415532037615776, 0.11631330847740173, 0.10667870938777924, -0.03151610493659973, 0.08723583072423935, -0.08664524555206299, 0.06223507225513458, 0.19866766035556793, -0.25147882103919983, -0.02319071628153324, -0.0038082979153841734, 0.027838796377182007, 0.010208748281002045, -0.10291554778814316, 0.013101727701723576, 0.043051499873399734, 0.0009795872028917074, 0.043487537652254105, 0.008111339993774891, -0.007332043722271919, 0.00922683160752058, -0.13323484361171722, -0.01831519417464733, 0.1832912266254425, 0.07386622577905655, -0.051050588488578796, -0.12832218408584595, 0.009369499050080776, -0.1155741810798645, -0.026989266276359558, -0.019102653488516808, 0.008088388480246067, -0.042920779436826706, -0.05655506253242493, -0.01376858726143837, -0.054741475731134415, -0.034243106842041016, 0.041707370430231094, 0.09743071347475052, 0.0352819450199604, -0.009260364808142185, -0.005078058689832687, 0.08967087417840958, -0.03762607276439667, -0.13216525316238403, -0.056022994220256805, 0.01340133510529995, -0.1392090618610382, -0.03446459025144577, -0.049299173057079315, -0.014401094056665897, 0.019354568794369698, 0.11155610531568527, 0.01587892882525921, 0.06859518587589264, 0.008403608575463295, -0.009689497761428356, -0.009902700781822205, 0.16567517817020416, -0.045953795313835144, -0.1454225778579712, -0.015942703932523727, 0.10797568410634995, 0.01267217006534338, -0.01783812791109085, -0.030140215530991554, -0.0162461269646883, 0.09243988245725632, 0.08419301360845566, 0.019687239080667496, 0.000868623610585928, -0.08209899067878723, -0.02623114362359047, -0.011511603370308876, -0.15642672777175903, 0.0608571358025074, 0.04574824869632721, -0.09872983396053314, 0.02759948931634426, 0.015344596467912197, -0.011762446723878384, -0.07892362028360367, 0.07888000458478928, -0.04301692545413971, -0.012450573034584522, -0.055772628635168076, -0.05194297432899475, 0.044236063957214355, -0.03130636736750603, -0.023171111941337585, -0.03353054076433182, -0.1417216956615448, -0.07450177520513535, 0.02156573347747326, -0.09298506379127502, -0.04015966132283211, -0.06541205197572708, -0.05624348670244217, 0.03167930245399475, -0.031537655740976334, 0.07063867151737213, -0.03932810574769974, 0.058038558810949326, 0.022959694266319275, 0.019574645906686783, 0.10618128627538681, 0.06081755459308624, -0.050254836678504944, 0.0448366217315197, -0.0764833614230156, 0.12466854602098465, -0.09708322584629059, 0.014119572006165981, -0.14764991402626038, -0.08044403046369553, -0.009222259745001793, -0.014938585460186005, 0.09133128821849823, 0.1411730796098709, -0.20813685655593872, -0.0776185616850853, 0.0860794261097908, -0.05792232230305672, -0.07317772507667542, 0.12363223731517792, -0.011148018762469292, -0.018825527280569077, 0.06066365912556648, 0.14663046598434448, 0.18461544811725616, -0.09695342183113098, -0.044817764312028885, -0.024089407175779343, 0.08522170037031174, 0.03905458375811577, 0.06048009544610977, -0.06582587212324142, 0.04231846332550049, 0.022526774555444717, -0.08401209115982056, 0.009137339890003204, -0.05523647740483284, -0.0829203799366951, -0.0336935855448246, -0.07044190913438797, 0.05115579441189766, 0.005816963035613298, 0.012384620495140553, -0.06493183970451355, -0.12801054120063782, 0.003368623089045286, 0.1373293399810791, -0.05844608694314957, 0.015955550596117973, -0.08987466990947723, 0.09970524907112122, -0.03481016308069229, -0.003749508410692215, -0.17244204878807068, -0.04322280362248421, 0.053193651139736176, -0.13825668394565582, 0.018496796488761902, 0.037026844918727875, 0.050813350826501846, 0.025687014684081078, -0.011079554446041584, -0.022030537948012352, -0.06309518963098526, -0.021065030246973038, -0.04249970614910126, -0.17976070940494537, -0.06781813502311707, -0.02271624468266964, 0.1699778139591217, -0.18488436937332153, -0.015960680320858955, 0.051795270293951035, 0.140841543674469, 0.010402824729681015, -0.06475455313920975, 0.015630852431058884, 0.03539443388581276, 0.0076385559514164925, -0.06805070489645004, 0.013758374378085136, 0.00488234031945467, -0.1268172413110733, 0.008847882971167564, -0.1455501765012741, -0.0172121524810791, 0.06437899172306061, 0.07249847799539566, -0.0442206971347332, -0.03025517612695694, -0.03982128947973251, -0.03760642185807228, -0.04547233134508133, -0.024924466386437416, 0.1882498860359192, 0.04278431832790375, 0.1017787829041481, -0.07238820195198059, -0.08031507581472397, 0.008117707446217537, 0.023520205169916153, -0.016664402559399605, 0.10117147117853165, 0.033729907125234604, -0.05762690305709839, 0.04298673942685127, 0.06951470673084259, -0.029370993375778198, 0.13267864286899567, -0.059495192021131516, -0.09913931041955948, -0.04112446680665016, 0.02262168750166893, 0.0072761052288115025, 0.08944669365882874, -0.12715311348438263, 0.0012618731707334518, 0.050942227244377136, 0.027581149712204933, 0.03514610975980759, -0.14658860862255096, 0.031044594943523407, 0.05103130638599396, -0.05333638936281204, 0.0031738588586449623, 0.011047120206058025, 0.019086318090558052, 0.06553958356380463, 0.005987763870507479, -0.03638692572712898, -0.015445160679519176, -0.04912102222442627, -0.10228012502193451, 0.14543458819389343, -0.1111220270395279, -0.17984116077423096, -0.14017289876937866, 0.03932297229766846, -0.06751881539821625, -0.03962021321058273, 0.017167892307043076, -0.09863043576478958, -0.07584010809659958, -0.07582404464483261, 0.031135722994804382, -0.051478590816259384, -0.001887504942715168, 0.08548770844936371, 0.011152477003633976, 0.09330833703279495, -0.12742875516414642, 0.01964065618813038, -0.007877896539866924, -0.04331017658114433, -0.052399247884750366, 0.06013418734073639, 0.052847981452941895, 0.12372399866580963, 0.044622231274843216, 0.030623579397797585, -0.02787867560982704, 0.1917383074760437, -0.12208787351846695, 0.010685022920370102, 0.13476482033729553, 0.016571413725614548, 0.04636253044009209, 0.10660411417484283, 0.017909299582242966, -0.07318150252103806, 0.007056434638798237, 0.051208384335041046, -0.0024760118685662746, -0.2673510015010834, -0.06710189580917358, -0.08071491122245789, -0.022984076291322708, 0.0721682757139206, 0.03516241908073425, 0.008332209661602974, 0.019288722425699234, -0.03379371017217636, -0.012491104193031788, 0.002570631681010127, 0.06751031428575516, 0.12374060600996017, 0.04557815566658974, 0.09227841347455978, -0.03588756546378136, 0.0036965489853173494, 0.06325158476829529, -0.005479924380779266, 0.24991072714328766, -0.011238317005336285, 0.1430068165063858, 0.029784508049488068, 0.13653035461902618, -0.016590910032391548, 0.03596438094973564, 0.018634798005223274, 0.005602051503956318, 0.03137613832950592, -0.08101344853639603, -0.04740346968173981, 0.0249991025775671, 0.09162851423025131, 0.008286057971417904, -0.09623540192842484, 0.04109112545847893, 0.02912115305662155, 0.2475282847881317, 0.0977926030755043, -0.2663976550102234, -0.039408810436725616, 0.014959190972149372, -0.02399224229156971, -0.03597240522503853, 0.004652934614568949, 0.09342015534639359, -0.10808612406253815, 0.10910234600305557, -0.04888155311346054, 0.0803503468632698, -0.0813698023557663, 0.001523990067653358, 0.06160714477300644, 0.0988808274269104, 0.029411423951387405, 0.0852714255452156, -0.14852067828178406, 0.17694638669490814, 0.01297635305672884, 0.08843299001455307, -0.058405857533216476, 0.053689587861299515, 0.0000259252901742002, -0.015660008415579796, 0.10041821748018265, 0.007116833236068487, -0.09588988870382309, -0.11009551584720612, -0.10026461631059647, 0.006276645231992006, 0.12442952394485474, -0.026975518092513084, 0.09813009202480316, -0.052283767610788345, -0.03287997841835022, 0.0077335527166724205, -0.02565927244722843, -0.15018804371356964, -0.16046173870563507, 0.06828711926937103, 0.04024983569979668, 0.02081386186182499, -0.06898307055234909, -0.10095833986997604, -0.06521198898553848, 0.19263669848442078, -0.061203546822071075, -0.030771763995289803, -0.1357908397912979, 0.04603777080774307, 0.19333219528198242, -0.05447867885231972, 0.024474671110510826, 0.0255677942186594, 0.1337720900774002, 0.013904058374464512, -0.04866359382867813, 0.048052120953798294, -0.07490827143192291, -0.17394688725471497, -0.04580182209610939, 0.19243109226226807, 0.03152715042233467, 0.05181813985109329, 0.0182937178760767, 0.0003512984549161047, 0.03204977884888649, -0.08473969250917435, 0.02625676430761814, 0.10500282049179077, 0.00021688957349397242, 0.06890926510095596, -0.029012786224484444, -0.015552704222500324, -0.08418913185596466, -0.0302310548722744, 0.10927533358335495, 0.24296192824840546, -0.07353797554969788, 0.09553322196006775, 0.04042818769812584, -0.07508892565965652, -0.14541734755039215, 0.026725322008132935, 0.11530215293169022, 0.05004964396357536, 0.03412504866719246, -0.15073275566101074, 0.04553620517253876, 0.06502749770879745, -0.02377442456781864, 0.02738502249121666, -0.3102383315563202, -0.11778109520673752, 0.058303363621234894, 0.010138632729649544, 0.021513892337679863, -0.11861132085323334, -0.07834485173225403, -0.03633357584476471, -0.07637109607458115, 0.020826926454901695, -0.016895797103643417, 0.11789686232805252, -0.0016474416479468346, 0.05470746383070946, 0.054575707763433456, -0.031536590307950974, 0.1573975533246994, 0.06018710136413574, 0.02868790552020073, -0.029742371290922165, 0.10360534489154816, 0.020603029057383537, -0.07834522426128387, 0.06843195855617523, -0.0497642382979393, 0.044149138033390045, -0.1658017784357071, -0.012912355363368988, -0.06160084530711174, 0.03755879029631615, -0.04385703429579735, -0.004877938888967037, -0.04373058304190636, 0.0559341125190258, 0.07974298298358917, -0.006717126816511154, 0.051135558634996414, -0.011907657608389854, 0.062018781900405884, 0.09948946535587311, 0.10897442698478699, 0.05027831718325615, -0.15433624386787415, 0.007149433717131615, 0.005729643162339926, 0.039824310690164566, -0.09596008062362671, 0.039141520857810974, 0.12834098935127258, 0.03505809232592583, 0.13466958701610565, 0.011751946061849594, -0.12323769927024841, -0.009912925772368908, 0.0650799497961998, -0.05460142716765404, -0.1583641618490219, -0.024292249232530594, 0.01534736156463623, -0.13530156016349792, 0.01682140678167343, 0.13635016977787018, -0.033407751470804214, -0.010654307901859283, -0.0033750229049474, 0.04526606574654579, -0.031240789219737053, 0.21348251402378082, 0.003724555717781186, 0.08631818741559982, -0.0794154480099678, 0.12406567484140396, 0.06561047583818436, -0.07161644101142883, 0.0561060793697834, 0.034405238926410675, -0.05396628752350807, -0.014426272362470627, 0.02264314331114292, 0.08384490013122559, 0.01590689830482006, -0.060851000249385834, -0.07642964273691177, -0.11509547382593155, 0.06593447923660278, 0.016957327723503113, 0.010754186660051346, 0.029762009158730507, -0.031454820185899734, -0.020874349400401115, -0.1002345010638237, 0.09014572948217392, 0.11126360297203064, 0.03336377814412117, -0.13255897164344788, 0.07343833148479462, -0.00522463396191597, 0.031175263226032257, -0.0025392372626811266, -0.014284438453614712, -0.07068788260221481, 0.002772432751953602, -0.11685066670179367, -0.0063162678852677345, -0.044011883437633514, -0.005166231654584408, -0.006578383967280388, -0.02818477712571621, -0.049443017691373825, 0.056298017501831055, -0.08716481178998947, -0.07685065269470215, -0.014253353700041771, 0.07101328670978546, -0.11254656314849854, 0.015103746205568314, 0.032640714198350906, -0.12240732461214066, 0.08117357641458511, 0.025965513661503792, 0.02186652272939682, 0.0303049236536026, -0.05333072319626808, -0.04915919154882431, 0.017070287838578224, 0.03810969740152359, 0.056844089180231094, -0.15060582756996155, 0.016267703846096992, -0.00382936280220747, 0.01179965678602457, -0.0024284287355840206, -0.024054860696196556, -0.12261000275611877, -0.03326474875211716, -0.03684874251484871, -0.018311230465769768, -0.04209670051932335, 0.0419599749147892, 0.06717600673437119, 0.036844998598098755, 0.15990088880062103, -0.059938378632068634, 0.054818008095026016, -0.1948091685771942, -0.020785368978977203, -0.025431497022509575, -0.01254169549793005, -0.004857450723648071, -0.02607543021440506, 0.10807093232870102, -0.027931485325098038, 0.08485410362482071, -0.02200985699892044, 0.08838258683681488, 0.020817069336771965, -0.05832903832197189, -0.010177701711654663, 0.017974887043237686, 0.12148238718509674, 0.07649848610162735, -0.00036245069350115955, 0.07686977833509445, -0.0488039068877697, 0.042150698602199554, 0.07482758164405823, 0.1298297643661499, 0.14227011799812317, 0.035661131143569946, 0.08302681148052216, 0.06685582548379898, -0.14916931092739105, -0.11101888865232468, 0.11778835207223892, -0.06927958130836487, 0.1452992558479309, -0.03633427992463112, 0.12735691666603088, 0.11175958812236786, -0.16842061281204224, 0.0921449065208435, -0.041664574295282364, -0.09520922601222992, -0.11612731218338013, -0.12105777114629745, -0.07794060558080673, -0.1457047015428543, 0.030218489468097687, -0.09620130807161331, 0.057600025087594986, 0.03137741610407829, 0.03225370869040489, -0.004673012997955084, 0.0841652899980545, -0.03934350237250328, -0.0388508066534996, 0.11506268382072449, -0.00156557303853333, 0.007788598537445068, 0.004428244195878506, -0.03837122023105621, 0.05888907611370087, 0.02682724967598915, 0.10933566838502884, -0.016743993386626244, -0.012616748921573162, 0.07360062748193741, 0.010298829525709152, -0.08255307376384735, 0.01900584250688553, -0.04381100460886955, 0.04745663329958916, 0.10395632684230804, 0.06138011813163757, -0.00013993306492920965, -0.03426119312644005, 0.24691621959209442, -0.07377145439386368, -0.04789760708808899, -0.1366838961839676, 0.1189790889620781, 0.06854383647441864, 0.00042190030217170715, 0.03738097846508026, -0.12350583076477051, -0.01802215911448002, 0.14278823137283325, 0.13359978795051575, -0.007623118348419666, -0.02181159518659115, -0.02382287010550499, -0.01094834040850401, -0.05565979704260826, 0.073951855301857, 0.0705714151263237, 0.07269363105297089, -0.00513032078742981, 0.04785274341702461, -0.020590970292687416, -0.05332222580909729, -0.05134884640574455, 0.10501977056264877, -0.013944700360298157, -0.0025226466823369265, -0.008185550570487976, 0.10299564152956009, -0.023335065692663193, -0.19084393978118896, 0.0013163038529455662, -0.15828076004981995, -0.20494575798511505, -0.03767523542046547, 0.09083329141139984, 0.04611107334494591, 0.06319478154182434, -0.006150243803858757, -0.035077374428510666, 0.16274142265319824, -0.009331787005066872, -0.04743972793221474, -0.1154836043715477, 0.05498408153653145, -0.07768317312002182, 0.18356432020664215, 0.018012335523962975, 0.047545913606882095, 0.09893321990966797, 0.021948281675577164, -0.14378443360328674, 0.03903314471244812, 0.06577175110578537, -0.09806856513023376, 0.07356496900320053, 0.21043075621128082, -0.03171628713607788, 0.1396821141242981, 0.05540851876139641, -0.05136294662952423, -0.01919751986861229, -0.042418014258146286, 0.01763259433209896, -0.09138578176498413, 0.006418890785425901, -0.057609640061855316, 0.1469859480857849, 0.17490434646606445, -0.07125566154718399, -0.011240563355386257, -0.05835430696606636, 0.025436846539378166, -0.0009976753499358892, 0.11984610557556152, -0.007472587749361992, -0.1942107379436493, 0.03800838068127632, -0.01743694581091404, 0.0483526811003685, -0.1937091201543808, -0.07623550295829773, 0.05688256397843361, -0.06926621496677399, -0.04550721496343613, 0.11556229740381241, 0.0461532361805439, 0.009081171825528145, -0.04201112315058708, -0.14997194707393646, -0.006704563274979591, 0.11683710664510727, -0.1556471288204193, -0.05103476345539093 ]
null
null
transformers
Copy of "facebook/wav2vec2-large-xlsr-53-dutch"
{}
automatic-speech-recognition
Iskaj/w2v-xlsr-dutch-lm-added
[ "transformers", "pytorch", "jax", "wav2vec2", "automatic-speech-recognition", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us
Copy of "facebook/wav2vec2-large-xlsr-53-dutch"
[]
[ "TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n" ]
[ 40 ]
[ "passage: TAGS\n#transformers #pytorch #jax #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n" ]
[ -0.05520883575081825, -0.008646681904792786, -0.008018726482987404, -0.060088928788900375, 0.1007847860455513, -0.0292293019592762, 0.05964343622326851, 0.10686095058917999, 0.10739415138959885, -0.01164542231708765, 0.11132402718067169, 0.20903414487838745, 0.005836382042616606, 0.013538715429604053, -0.06662390381097794, -0.21774783730506897, 0.09300372004508972, 0.05124324560165405, 0.09108112007379532, 0.11376826465129852, 0.08719377219676971, -0.0705416277050972, 0.030646177008748055, 0.0438455194234848, -0.14898668229579926, 0.04239804297685623, 0.07311956584453583, -0.14683018624782562, 0.10160050541162491, 0.035731177777051926, 0.08891130238771439, 0.027592897415161133, -0.025279540568590164, -0.203080952167511, 0.0077365608885884285, -0.0126784797757864, -0.014253828674554825, -0.00009400059207109734, 0.04767890274524689, -0.06345359236001968, 0.0007240321720018983, 0.057060372084379196, 0.01239398680627346, 0.07904556393623352, -0.08287377655506134, -0.19299457967281342, 0.019776539877057076, 0.0462152361869812, 0.06457283347845078, 0.09371671080589294, -0.017986197024583817, 0.15232150256633759, -0.09601083397865295, 0.11244513839483261, 0.11834072321653366, -0.33702611923217773, 0.018078483641147614, -0.009527747519314289, 0.07668261975049973, -0.0007561621605418622, -0.02491014637053013, 0.07113195210695267, -0.0039043689612299204, 0.01859980635344982, -0.043953657150268555, -0.06144404038786888, -0.1698601394891739, 0.022788790985941887, -0.09072008728981018, -0.05219818651676178, 0.1800680011510849, -0.013840656727552414, 0.05101819336414337, -0.0689249113202095, -0.04390235245227814, -0.020639879629015923, -0.03388247266411781, -0.06293778866529465, -0.044609736651182175, 0.0647280290722847, -0.037183742970228195, -0.033090416342020035, -0.11231329292058945, -0.049976643174886703, -0.1896541565656662, 0.2827622592449188, 0.009863598272204399, 0.08638477325439453, -0.20055502653121948, 0.0049318429082632065, -0.011532715521752834, -0.05728884041309357, -0.0028706409502774477, -0.038755740970373154, 0.001110266544856131, 0.03174684941768646, -0.08665116876363754, -0.02034619264304638, 0.10075230896472931, 0.05397653579711914, 0.05256221070885658, 0.0602729357779026, -0.03779386729001999, 0.08836158365011215, -0.01917053759098053, 0.12977372109889984, -0.009962945245206356, 0.011651611886918545, 0.037047579884529114, -0.13428425788879395, 0.011519179679453373, -0.04944038391113281, -0.10863669216632843, -0.07307018339633942, 0.06953173130750656, 0.10231954604387283, 0.01550260465592146, 0.03262646496295929, -0.041217170655727386, -0.011500310152769089, -0.008254689164459705, -0.08074594289064407, -0.0025965124368667603, 0.045754075050354004, 0.05021486431360245, 0.1867215484380722, 0.0010751065565273166, 0.03467054292559624, -0.11695636063814163, 0.01971476897597313, 0.018119223415851593, 0.029762862250208855, 0.04567493498325348, -0.022037126123905182, 0.01709323562681675, -0.07620749622583389, 0.03438013792037964, -0.2075476497411728, -0.04566282406449318, 0.011683503165841103, -0.03103620372712612, 0.012368589639663696, -0.028685299679636955, -0.07850856333971024, -0.022475600242614746, 0.030561251565814018, -0.08611314743757248, -0.03607698902487755, -0.04568910598754883, 0.09297359734773636, 0.031389329582452774, 0.11687154322862625, -0.12178464233875275, 0.06331431120634079, -0.05094152316451073, -0.02735126204788685, -0.003123947186395526, 0.0655236467719078, -0.023816604167222977, 0.11231297999620438, -0.07347766309976578, -0.02559247612953186, -0.10592029243707657, 0.06253241747617722, -0.048180028796195984, 0.13234001398086548, -0.11429455131292343, -0.12434430420398712, 0.22978979349136353, -0.07951546460390091, -0.10718183219432831, 0.10063659399747849, 0.0425039678812027, 0.0009782436536625028, 0.09216511994600296, 0.2721182107925415, -0.018381934612989426, -0.14054232835769653, 0.08060290664434433, 0.10771725326776505, -0.162608802318573, -0.10000457614660263, 0.025532491505146027, -0.060998424887657166, -0.10523740947246552, 0.03214658796787262, 0.04351823031902313, 0.06920909136533737, -0.04847847297787666, -0.06569861620664597, -0.026530100032687187, -0.06444277614355087, 0.023703867569565773, -0.020394207909703255, 0.0868985503911972, -0.059925664216279984, -0.0055310605093836784, -0.05678969994187355, 0.030905695632100105, -0.029902081936597824, 0.07052925229072571, -0.15524347126483917, 0.0949217826128006, -0.042138732969760895, 0.027845295146107674, -0.1784445196390152, 0.1017780527472496, -0.013691543601453304, 0.08397173136472702, 0.04650235176086426, 0.048899292945861816, 0.1041073128581047, -0.09368649125099182, 0.039071545004844666, -0.0372849702835083, 0.16884459555149078, 0.047809943556785583, -0.013089906424283981, -0.06500948220491409, 0.04194708168506622, -0.06844871491193771, -0.04223976284265518, 0.004793712869286537, -0.025785334408283234, 0.07761066406965256, 0.1118321344256401, 0.008934088051319122, 0.017340248450636864, -0.010854427702724934, 0.02726447395980358, -0.004969021771103144, 0.03428574651479721, 0.08450519293546677, -0.020276611670851707, -0.059278249740600586, 0.26410624384880066, -0.1344589740037918, 0.26212939620018005, 0.23855656385421753, -0.27947214245796204, 0.041264139115810394, 0.09293615072965622, 0.02076832763850689, 0.00009489567310083658, 0.10197970271110535, -0.03817233070731163, 0.1929888278245926, -0.027235548943281174, 0.14330388605594635, -0.04403098672628403, -0.010508970357477665, 0.031092863529920578, -0.03735235705971718, -0.06019442901015282, 0.047712910920381546, 0.014583472162485123, -0.1078040823340416, 0.09534596651792526, 0.16999348998069763, -0.038001738488674164, 0.11020708084106445, -0.009529492817819118, -0.009573731571435928, 0.053167201578617096, -0.001688646269030869, -0.038371492177248, -0.018330655992031097, -0.2886263132095337, -0.09417534619569778, 0.06366973370313644, -0.006979304365813732, 0.10385368019342422, -0.13106344640254974, -0.013895686715841293, -0.0026595047675073147, -0.05133606120944023, -0.06721845269203186, 0.08484964072704315, 0.019429363310337067, 0.07514579594135284, -0.022240841761231422, -0.11895940452814102, 0.07319658249616623, -0.039415180683135986, -0.10268864780664444, 0.07334757596254349, -0.12382817268371582, -0.3017628490924835, -0.12058725208044052, -0.13653551042079926, 0.027973419055342674, 0.053833235055208206, 0.11597637832164764, -0.11301863938570023, -0.0007980384398251772, 0.034768007695674896, 0.01303547527641058, -0.10090849548578262, 0.05661139637231827, 0.021901054307818413, 0.03552302345633507, -0.018164681270718575, -0.08906517922878265, -0.04229789972305298, -0.0652017816901207, -0.00038844483788125217, 0.07753629982471466, -0.07280424237251282, 0.07932975143194199, 0.17343884706497192, 0.05125611647963524, 0.08470729738473892, -0.01617450825870037, 0.1319326013326645, -0.06342044472694397, -0.11061256378889084, 0.16889438033103943, -0.06182142347097397, 0.02038906328380108, 0.14940577745437622, 0.002303206128999591, -0.08363105356693268, -0.04017257317900658, -0.09494972229003906, -0.08421704173088074, -0.18043312430381775, -0.11087973415851593, -0.08851602673530579, -0.018511341884732246, 0.018658466637134552, 0.04058422893285751, 0.11249382793903351, -0.02365671470761299, 0.038317348808050156, -0.060440804809331894, 0.047937456518411636, 0.05572078377008438, 0.19555911421775818, -0.03484908491373062, 0.11651558429002762, -0.05510226637125015, -0.1141679584980011, 0.04124678298830986, 0.05106450244784355, 0.07661276310682297, 0.16519410908222198, 0.033805813640356064, -0.0012862790608778596, 0.13812528550624847, 0.1829705387353897, 0.10839138180017471, 0.05122152343392372, -0.02383611351251602, 0.02514634281396866, -0.026758583262562752, -0.08380606025457382, 0.0645628273487091, 0.253768652677536, -0.10047966986894608, -0.03828002139925957, -0.19118811190128326, 0.051919590681791306, 0.17646479606628418, 0.06295067816972733, -0.19652028381824493, 0.013064560480415821, 0.06728433817625046, -0.08778215199708939, -0.03523985296487808, 0.13488316535949707, 0.01252924557775259, -0.09392467141151428, 0.07508125901222229, 0.021564042195677757, 0.07183757424354553, -0.06459719687700272, 0.08245591074228287, -0.10153636336326599, -0.14413879811763763, 0.06275416910648346, 0.04846175014972687, -0.2716688811779022, 0.2092909812927246, -0.014336485415697098, 0.026030035689473152, -0.06125255674123764, -0.013543212786316872, 0.005016325507313013, 0.064639613032341, 0.1481105387210846, -0.0076029058545827866, -0.08345254510641098, -0.10900726914405823, -0.004589881282299757, 0.06094781309366226, 0.1549045443534851, 0.04293995723128319, -0.03372286632657051, -0.022630082443356514, -0.06324223428964615, -0.0029619329143315554, -0.06417239457368851, -0.05768229067325592, -0.11213269084692001, 0.017764804884791374, 0.19696642458438873, 0.12131115794181824, 0.00908786803483963, -0.014574273489415646, -0.12945164740085602, 0.14542199671268463, -0.1704718917608261, -0.006283031776547432, -0.06176302582025528, -0.17762146890163422, 0.0829932764172554, -0.048381078988313675, 0.0518474355340004, -0.02778284065425396, 0.007407803554087877, -0.053062960505485535, -0.16944250464439392, 0.13473346829414368, -0.11926622688770294, -0.009615969844162464, -0.037790145725011826, 0.23626093566417694, -0.03822505846619606, 0.0036073143128305674, 0.06460852175951004, 0.019317133352160454, -0.09105978161096573, -0.03518106788396835, 0.0936088040471077, 0.13681556284427643, -0.07892338186502457, 0.02969539724290371, 0.03405575826764107, -0.17030002176761627, -0.07577340304851532, 0.029855091124773026, 0.27936047315597534, 0.1012192964553833, -0.06027766689658165, 0.18619433045387268, 0.21127037703990936, -0.013665824197232723, -0.27832359075546265, -0.16331523656845093, -0.07705911993980408, -0.0064806449227035046, -0.11495726555585861, -0.0973035991191864, 0.07352525740861893, -0.06204964220523834, -0.05761382356286049, 0.07757467776536942, -0.18213210999965668, -0.09650038927793503, 0.19941926002502441, -0.03020590730011463, 0.4264107942581177, -0.0746331587433815, -0.13681602478027344, -0.04980485141277313, -0.18408203125, 0.1101316288113594, 0.009374374523758888, 0.07747730612754822, 0.023776942864060402, 0.07478487491607666, 0.04971988499164581, -0.03820893540978432, 0.10443353652954102, 0.04529966041445732, -0.05351785570383072, -0.05602303519845009, -0.06608933955430984, -0.03764785826206207, 0.013204113580286503, 0.039716534316539764, 0.013579401187598705, 0.013302997685968876, -0.0941821038722992, -0.05868455022573471, -0.12613214552402496, 0.07949566841125488, 0.08200299739837646, -0.0016152899479493499, 0.05356327444314957, -0.1322493553161621, -0.020380180329084396, 0.0395619235932827, 0.19289666414260864, -0.0890485942363739, 0.09592141956090927, 0.16126300394535065, 0.14130939543247223, -0.15085116028785706, 0.0035714670084416866, -0.055325910449028015, -0.10413377732038498, 0.13325951993465424, -0.0059446897357702255, 0.06967764347791672, 0.07209615409374237, 0.016518322750926018, 0.025899963453412056, 0.08370824158191681, -0.02641710825264454, 0.009898005984723568, 0.1038997620344162, -0.1585969775915146, -0.06282123923301697, -0.01694438047707081, 0.026202667504549026, 0.15689991414546967, 0.11068955063819885, 0.15323524177074432, 0.01677156798541546, -0.030072379857301712, -0.04532374441623688, 0.0022670766338706017, -0.13489502668380737, 0.08090516924858093, 0.058943770825862885, 0.0280345156788826, -0.16503609716892242, 0.054474737495183945, -0.02795504964888096, -0.20914386212825775, 0.01729094423353672, 0.03772549331188202, -0.10719403624534607, -0.1141572967171669, -0.1014893501996994, 0.049524784088134766, -0.037061940878629684, -0.11610905826091766, 0.026378454640507698, -0.15117961168289185, 0.08010434359312057, 0.20737367868423462, 0.057099875062704086, 0.09440191090106964, -0.06653791666030884, -0.0335921011865139, -0.001502931583672762, -0.047548506408929825, -0.04035215452313423, -0.017634261399507523, -0.1148129403591156, 0.011524208821356297, 0.015709230676293373, 0.13746562600135803, -0.09596714377403259, -0.09889952838420868, -0.13204346597194672, 0.0883413776755333, -0.10549690574407578, -0.03414616361260414, -0.11170385032892227, -0.03111325576901436, 0.06716148555278778, -0.08926519751548767, -0.03913705796003342, 0.010362507775425911, -0.10733360797166824, 0.04188211262226105, 0.005258060526102781, 0.008876625448465347, -0.09449481964111328, -0.006852950435131788, 0.06483502686023712, -0.0348733626306057, 0.11899540573358536, 0.2442418932914734, -0.13602183759212494, 0.15497824549674988, -0.16362205147743225, -0.18722543120384216, 0.14445807039737701, 0.012817827053368092, 0.011556779965758324, 0.02069488726556301, 0.009843941777944565, 0.12534938752651215, 0.04145539924502373, 0.02425847016274929, 0.1433001011610031, -0.07507094740867615, 0.03251229226589203, -0.05235063657164574, -0.11432471871376038, -0.034538719803094864, -0.07095101475715637, 0.13873012363910675, 0.061226941645145416, 0.110189288854599, -0.04277905076742172, 0.06173032894730568, 0.011749529279768467, 0.036018941551446915, -0.060792241245508194, -0.12542606890201569, -0.052374422550201416, -0.038679007440805435, 0.04017660394310951, -0.03664626181125641, 0.21436528861522675, -0.08598648756742477, 0.01914510875940323, 0.019254878163337708, -0.028997164219617844, -0.09010422974824905, 0.041474565863609314, 0.2764735519886017, 0.11130914092063904, -0.037452951073646545, -0.054915282875299454, 0.025635171681642532, 0.024135995656251907, 0.03965264558792114, -0.018251042813062668, 0.15040844678878784, 0.04925666004419327, 0.17050090432167053, 0.09631998091936111, 0.03360392153263092, -0.09130565822124481, -0.12625686824321747, -0.08450088649988174, 0.0354669913649559, -0.025169042870402336, 0.1200709417462349, 0.16215801239013672, 0.02598092518746853, 0.013705053366720676, -0.026896728202700615, -0.015416502021253109, -0.17336052656173706, -0.103535957634449, -0.08922532200813293, -0.12238478660583496, 0.029963968321681023, -0.018501145765185356, 0.04170133173465729, 0.04613778740167618, 0.05619122087955475, -0.028358930721879005, 0.056866612285375595, 0.035359058529138565, -0.07428544014692307, 0.10751842707395554, -0.04661032184958458, -0.009150302968919277, 0.004514045547693968, -0.019219858571887016, -0.015753040090203285, -0.029094671830534935, -0.008750800043344498, 0.04716022312641144, -0.13504143059253693, 0.009157789871096611, -0.12803052365779877, -0.10406670719385147, -0.03415429964661598, 0.03338004648685455, -0.033716436475515366, 0.09975575655698776, 0.07636328041553497, -0.054985977709293365, 0.0374305285513401, 0.16491828858852386, -0.1062309518456459, -0.1244325190782547, -0.022968150675296783, 0.2064799666404724, 0.04286797344684601, 0.1441083550453186, -0.038880035281181335, -0.0010595157509669662, -0.11875659972429276, 0.3063475489616394, 0.22988051176071167, -0.03468199819326401, 0.06694876402616501, -0.002075185300782323, 0.046248652040958405, 0.035000964999198914, 0.03949766978621483, 0.1420452743768692, 0.2941529452800751, -0.011275515891611576, -0.04364975541830063, -0.03164488449692726, -0.03347105160355568, -0.08372427523136139, 0.04639275372028351, -0.057767294347286224, -0.1216292455792427, -0.03620408847928047, 0.08741797506809235, -0.20928288996219635, 0.09130683541297913, -0.02860230766236782, -0.17052024602890015, -0.03482964262366295, 0.01801435463130474, 0.12747062742710114, 0.07983006536960602, 0.05867208540439606, -0.03412390872836113, -0.09584086388349533, 0.05022595822811127, 0.02779911644756794, -0.24647192656993866, 0.03222321346402168, 0.025910954922437668, -0.07380422949790955, -0.04184453934431076, -0.0030725551769137383, 0.1289704144001007, 0.022884780541062355, 0.1370476633310318, -0.005044944118708372, 0.12549711763858795, -0.011180901899933815, -0.09235663712024689, -0.003211679868400097, 0.13162975013256073, -0.0010731775546446443, 0.011960781179368496, 0.051228225231170654, -0.16039206087589264, 0.046323325484991074, -0.06613495945930481, -0.026925384998321533, -0.05472852289676666, -0.0012375242076814175, -0.03881782665848732, 0.037734873592853546, -0.02314143255352974, -0.016745029017329216, -0.025247497484087944, 0.006567020434886217, 0.002616078360006213, 0.027610264718532562, -0.09419254958629608, -0.1353081911802292, -0.1466193050146103, -0.08186660706996918, -0.031372178345918655, 0.020581120625138283, -0.10569340735673904, -0.0074782962910830975, -0.08295618742704391, 0.017598522827029228, -0.07318132370710373, 0.035138681530952454, 0.09142499417066574, 0.007507120259106159, 0.01243360061198473, -0.06741520762443542, 0.12761646509170532, 0.1358533352613449, -0.1411505788564682, -0.11447643488645554 ]
null
null
transformers
Model cloned from https://huggingface.co/facebook/wav2vec2-large-xlsr-53-dutch Currently bugged: Logits size 48, vocab size 50
{}
automatic-speech-recognition
Iskaj/w2v-xlsr-dutch-lm
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us
Model cloned from URL Currently bugged: Logits size 48, vocab size 50
[]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n" ]
[ 37 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #endpoints_compatible #region-us \n" ]
[ -0.0721188485622406, -0.028641358017921448, -0.008131618611514568, -0.06536999344825745, 0.10369497537612915, -0.029162423685193062, 0.05449262633919716, 0.09215618669986725, 0.09012462943792343, 0.0024160705506801605, 0.09899672865867615, 0.19874386489391327, 0.0032586746383458376, -0.005444767884910107, -0.07112546265125275, -0.21837934851646423, 0.09600707143545151, 0.055372726172208786, 0.09617701917886734, 0.10875947028398514, 0.0784798189997673, -0.07249201834201813, 0.032563697546720505, 0.0496663972735405, -0.13367274403572083, 0.037079449743032455, 0.058643877506256104, -0.1467711329460144, 0.11741682142019272, 0.03624606877565384, 0.09462464600801468, 0.015703529119491577, -0.025202931836247444, -0.2087007611989975, 0.0028133990708738565, -0.010769401676952839, -0.015249740332365036, -0.01163998618721962, 0.05165225267410278, -0.06630266457796097, 0.009819267317652702, 0.04223077744245529, 0.007102530915290117, 0.07885675877332687, -0.07011023163795471, -0.16595390439033508, 0.027373118326067924, 0.04979840666055679, 0.06278723478317261, 0.09646070003509521, -0.015308019705116749, 0.15824733674526215, -0.10311099886894226, 0.11664288491010666, 0.11729957163333893, -0.34086450934410095, 0.025533635169267654, -0.018387693911790848, 0.06145255267620087, -0.005980021320283413, -0.023320090025663376, 0.08407841622829437, -0.009680325165390968, 0.02594558708369732, -0.06523970514535904, -0.053816139698028564, -0.17229726910591125, 0.02152976207435131, -0.10039443522691727, -0.05630653724074364, 0.14903028309345245, -0.02459312416613102, 0.050798237323760986, -0.070815309882164, -0.06357286870479584, -0.017195679247379303, -0.024608483538031578, -0.05171274393796921, -0.05008924379944801, 0.05738884210586548, -0.0357147753238678, -0.03484039008617401, -0.11432810872793198, -0.056904442608356476, -0.20911253988742828, 0.30520865321159363, 0.01152665913105011, 0.09113361686468124, -0.19182562828063965, 0.018077926710247993, -0.016760041937232018, -0.04602903127670288, -0.009070603176951408, -0.03480092063546181, -0.005194336175918579, 0.03196761757135391, -0.09672658145427704, -0.005024821497499943, 0.09619411826133728, 0.05404296889901161, 0.048924271017313004, 0.05579700693488121, -0.05309535190463066, 0.08241341263055801, -0.028520308434963226, 0.12802933156490326, -0.022204747423529625, 0.005049536935985088, 0.019602568820118904, -0.15963000059127808, 0.021364036947488785, -0.046107299625873566, -0.1059512197971344, -0.09832640737295151, 0.05150148272514343, 0.10308951884508133, 0.007624712772667408, 0.02769755758345127, -0.02915896475315094, -0.005024684127420187, -0.0010898011969402432, -0.08071205765008926, -0.0027757075149565935, 0.06134745106101036, 0.054733775556087494, 0.2042790800333023, 0.01401777658611536, 0.027865497395396233, -0.13477809727191925, 0.03430946171283722, 0.029110778123140335, 0.03076641820371151, 0.06137247383594513, -0.027149634435772896, 0.016688477247953415, -0.10584334284067154, 0.02761022001504898, -0.2108437865972519, -0.038738854229450226, 0.019536681473255157, -0.04570518061518669, 0.011210971511900425, -0.005862658843398094, -0.07294338941574097, -0.02412441000342369, 0.026644060388207436, -0.0848965272307396, -0.02483426034450531, -0.04335634037852287, 0.09084957093000412, 0.035603780299425125, 0.1144782155752182, -0.13740399479866028, 0.06781121343374252, -0.041382916271686554, -0.024146918207406998, 0.006467015482485294, 0.0786295235157013, -0.017164042219519615, 0.09126786887645721, -0.07609090209007263, -0.0363796167075634, -0.11339505016803741, 0.061230018734931946, -0.03372715786099434, 0.1294335424900055, -0.10931240767240524, -0.12374426424503326, 0.2250494360923767, -0.0921396017074585, -0.09642865508794785, 0.09675160050392151, 0.047799888998270035, -0.023683663457632065, 0.09046079218387604, 0.26092445850372314, -0.006438442971557379, -0.1344638615846634, 0.06955351680517197, 0.11876583099365234, -0.1670559197664261, -0.10538151115179062, 0.01964217610657215, -0.07074971497058868, -0.09296547621488571, 0.021963927894830704, 0.01981767639517784, 0.060468241572380066, -0.05301972106099129, -0.0665108859539032, -0.03185911104083061, -0.06936094164848328, 0.04747062921524048, -0.03376079350709915, 0.07992979139089584, -0.04860096052289009, 0.00022167984570842236, -0.040190186351537704, 0.026694048196077347, -0.03910767287015915, 0.08643262833356857, -0.152516707777977, 0.10339003056287766, -0.03455405682325363, 0.02255146950483322, -0.18151403963565826, 0.1193070039153099, -0.021366599947214127, 0.08709456026554108, 0.044252097606658936, 0.053591787815093994, 0.10817640274763107, -0.07318807393312454, 0.037599824368953705, -0.03522860258817673, 0.1588101089000702, 0.05225297436118126, -0.018174700438976288, -0.05587159842252731, 0.034731682389974594, -0.06348273903131485, -0.047311894595623016, 0.009232322685420513, -0.02524193562567234, 0.10357552021741867, 0.11902469396591187, -0.002044686349108815, 0.023700617253780365, -0.015857627615332603, 0.033494967967271805, -0.003626496996730566, 0.031247051432728767, 0.08235985040664673, -0.02272169478237629, -0.0769941657781601, 0.25266093015670776, -0.14026528596878052, 0.23503975570201874, 0.24047064781188965, -0.29727834463119507, 0.048978712409734726, 0.07219430804252625, 0.01735152304172516, 0.0021673247683793306, 0.0925217941403389, -0.05285301432013512, 0.20381318032741547, -0.01743427850306034, 0.1389402598142624, -0.03674538433551788, -0.0029116040095686913, 0.03353562951087952, -0.03337210416793823, -0.05041591078042984, 0.04755973070859909, 0.0015957624418660998, -0.08388978242874146, 0.0828937366604805, 0.15193380415439606, -0.0368693470954895, 0.09280958771705627, -0.005733860656619072, -0.016735907644033432, 0.06162073463201523, 0.012068409472703934, -0.032136328518390656, -0.02572881057858467, -0.3251122832298279, -0.08921423554420471, 0.06767655909061432, -0.004273096099495888, 0.1147976741194725, -0.1401272714138031, 0.006002949085086584, 0.006024875678122044, -0.059807486832141876, -0.07236415892839432, 0.07770498842000961, 0.020530637353658676, 0.07419945299625397, -0.02522803470492363, -0.11176551133394241, 0.07386600971221924, -0.03610837087035179, -0.10568254441022873, 0.07786476612091064, -0.11866384744644165, -0.2900512218475342, -0.14687477052211761, -0.14070986211299896, 0.02008247748017311, 0.06637454032897949, 0.119004026055336, -0.11709826439619064, -0.004356969613581896, 0.037115056067705154, 0.03698491305112839, -0.08836003392934799, 0.06865092366933823, 0.029483821243047714, 0.030205586925148964, -0.02406148426234722, -0.09716613590717316, -0.03349224105477333, -0.07106846570968628, -0.01235450804233551, 0.08198442310094833, -0.06806303560733795, 0.07756998389959335, 0.1869477778673172, 0.04971100017428398, 0.08263817429542542, -0.0121439378708601, 0.12353795021772385, -0.05943383276462555, -0.10815918445587158, 0.17252440750598907, -0.07307032495737076, 0.02297825925052166, 0.14187809824943542, 0.000404434947995469, -0.07981004565954208, -0.044941119849681854, -0.09086789190769196, -0.09349201619625092, -0.19090873003005981, -0.12945573031902313, -0.08469346910715103, -0.027750767767429352, 0.003936579450964928, 0.03929224982857704, 0.10053049772977829, -0.015164372511208057, 0.0318857803940773, -0.06527750939130783, 0.037118468433618546, 0.04925777390599251, 0.22011712193489075, -0.035632967948913574, 0.11447834223508835, -0.06257307529449463, -0.11675461381673813, 0.042986106127500534, 0.060705941170454025, 0.10117717832326889, 0.15401828289031982, 0.027867771685123444, 0.005864634178578854, 0.11680784821510315, 0.1787092089653015, 0.12349317967891693, 0.057697635143995285, -0.014458432793617249, 0.04202825948596001, -0.031030582264065742, -0.07545241713523865, 0.06351669877767563, 0.24637570977210999, -0.10907962918281555, -0.04299181327223778, -0.17554126679897308, 0.06269893795251846, 0.17280790209770203, 0.06886234879493713, -0.19033943116664886, 0.009430297650396824, 0.06161557883024216, -0.08718495815992355, -0.039426445960998535, 0.12834890186786652, 0.03255130723118782, -0.08927353471517563, 0.08593298494815826, 0.023056067526340485, 0.06641831994056702, -0.06849268823862076, 0.08725766092538834, -0.10478068888187408, -0.15477952361106873, 0.06414807587862015, 0.04578937590122223, -0.24747368693351746, 0.2281670868396759, -0.015506764873862267, 0.026676084846258163, -0.07251138240098953, -0.014630771242082119, 0.005118122790008783, 0.07661780714988708, 0.14594794809818268, -0.005033341236412525, -0.04946841299533844, -0.12404008209705353, -0.007966546341776848, 0.0572483129799366, 0.17199034988880157, 0.05051308125257492, -0.031220808625221252, -0.007178888190537691, -0.06425842642784119, -0.0023619099520146847, -0.057564083486795425, -0.04774671047925949, -0.10623916983604431, 0.013821293599903584, 0.2107272744178772, 0.11030402034521103, 0.008771294727921486, -0.014119311235845089, -0.14217756688594818, 0.13927903771400452, -0.20314770936965942, -0.012101659551262856, -0.06178198382258415, -0.17580774426460266, 0.09098359942436218, -0.047833316028118134, 0.06665368378162384, -0.0246900487691164, 0.007919765077531338, -0.05927768722176552, -0.15633289515972137, 0.1300991028547287, -0.11683275550603867, -0.019420908764004707, -0.02266664244234562, 0.2542378008365631, -0.02868989109992981, -0.00022344836906995624, 0.06588499993085861, 0.012667160481214523, -0.07948637753725052, -0.045111484825611115, 0.08735814690589905, 0.14315460622310638, -0.08427585661411285, 0.053661324083805084, 0.03975791856646538, -0.17768527567386627, -0.07372710108757019, 0.034207575023174286, 0.2839866280555725, 0.07747307419776917, -0.057250987738370895, 0.18260008096694946, 0.20878978073596954, -0.010367152281105518, -0.28379762172698975, -0.15502293407917023, -0.07944010198116302, 0.0009141949703916907, -0.11721421778202057, -0.09218011796474457, 0.09241478890180588, -0.06837643682956696, -0.05737648904323578, 0.07152894884347916, -0.19546766579151154, -0.0981190875172615, 0.219879612326622, -0.034856200218200684, 0.4114883840084076, -0.06148048862814903, -0.1459461748600006, -0.0555725172162056, -0.18084096908569336, 0.0894971713423729, -0.026558540761470795, 0.0820658728480339, 0.01966485008597374, 0.09183495491743088, 0.05033127963542938, -0.04245033487677574, 0.10872094333171844, 0.0760914608836174, -0.057044703513383865, -0.05393856763839722, -0.05787365511059761, -0.03484024107456207, 0.016244076192378998, 0.03970678150653839, 0.029991568997502327, 0.023477301001548767, -0.08885850012302399, -0.06251884996891022, -0.12129434943199158, 0.0884556919336319, 0.0841657966375351, -0.0031620634254068136, 0.051357369869947433, -0.14773449301719666, -0.021893896162509918, 0.04363230988383293, 0.14964716136455536, -0.09176138788461685, 0.07405997067689896, 0.17426884174346924, 0.14886562526226044, -0.14664708077907562, 0.003058107104152441, -0.05776814743876457, -0.1011233702301979, 0.12968605756759644, 0.024770202115178108, 0.06956075131893158, 0.08249596506357193, 0.019914090633392334, 0.00811604131013155, 0.09039079397916794, -0.020434709265828133, 0.0070288218557834625, 0.09483665227890015, -0.15127912163734436, -0.07125047594308853, -0.015156523324549198, 0.017886854708194733, 0.1545657217502594, 0.14007161557674408, 0.16529449820518494, 0.02486141212284565, -0.012096241116523743, -0.04985383525490761, -0.005592867266386747, -0.14501993358135223, 0.09596604108810425, 0.056048765778541565, 0.03177822381258011, -0.1689673811197281, 0.053186409175395966, -0.04085535928606987, -0.19084806740283966, 0.013390779495239258, 0.017495164647698402, -0.11244485527276993, -0.11561312526464462, -0.10894180089235306, 0.02844228409230709, -0.06521294265985489, -0.13255275785923004, 0.043576110154390335, -0.16649563610553741, 0.08408192545175552, 0.2183782309293747, 0.05991727486252785, 0.10767434537410736, -0.08789479732513428, -0.03133482486009598, 0.005640141665935516, -0.058524247258901596, -0.03673648089170456, -0.011027595959603786, -0.10944608598947525, 0.0506475605070591, 0.013274303637444973, 0.13179078698158264, -0.09587356448173523, -0.10142890363931656, -0.11364098638296127, 0.09812068939208984, -0.14064590632915497, -0.030631106346845627, -0.1098189726471901, -0.03166437894105911, 0.06403834372758865, -0.0851232185959816, -0.03693908452987671, 0.017473148182034492, -0.0980556383728981, 0.05528227239847183, -0.004201426636427641, 0.001913837855681777, -0.10883459448814392, 0.002962311264127493, 0.062244582921266556, -0.040038544684648514, 0.12362077832221985, 0.249018132686615, -0.14891332387924194, 0.1465185135602951, -0.18008393049240112, -0.19724424183368683, 0.1500670164823532, 0.01500400435179472, 0.009510787203907967, 0.02629696950316429, 0.012114698998630047, 0.12700627744197845, 0.040209777653217316, 0.028408609330654144, 0.17248576879501343, -0.06685706973075867, 0.03851442039012909, -0.0759325698018074, -0.10440655797719955, -0.034970253705978394, -0.07160848379135132, 0.1400478631258011, 0.06202966347336769, 0.09748422354459763, -0.03615143150091171, 0.06252597272396088, 0.02196015976369381, 0.035767797380685806, -0.06036775931715965, -0.10780566930770874, -0.04740653187036514, -0.03826800733804703, 0.042743176221847534, -0.031614698469638824, 0.2334204912185669, -0.10858950763940811, 0.038850028067827225, 0.011987561360001564, -0.008462372235953808, -0.09795255213975906, 0.03197858855128288, 0.2952418327331543, 0.1218862533569336, -0.03296373039484024, -0.066999152302742, 0.013009646907448769, 0.01815200038254261, 0.030443403869867325, 0.001572250621393323, 0.14926548302173615, 0.023670630529522896, 0.17915105819702148, 0.10188481956720352, 0.02828742191195488, -0.12838032841682434, -0.1490498036146164, -0.09192974120378494, 0.03111591562628746, -0.03810209035873413, 0.11369074881076813, 0.14607982337474823, 0.016350792720913887, 0.01697431318461895, -0.004843822680413723, -0.022071609273552895, -0.1752617508172989, -0.10440753400325775, -0.08142578601837158, -0.11838482320308685, 0.032670944929122925, -0.014440135098993778, 0.03735579550266266, 0.05140050873160362, 0.05859667435288429, -0.02119131200015545, 0.09585927426815033, 0.009440023452043533, -0.06592240929603577, 0.10088648647069931, -0.04326128214597702, 0.013741651549935341, 0.016331855207681656, -0.03154413402080536, -0.010452311486005783, -0.019497450441122055, -0.005802567582577467, 0.046686772257089615, -0.13079345226287842, 0.010648160241544247, -0.12401501834392548, -0.09085725992918015, -0.041131582111120224, 0.029086057096719742, -0.03246871381998062, 0.11770851910114288, 0.07890281081199646, -0.06317076832056046, 0.028930896893143654, 0.13956138491630554, -0.11462242156267166, -0.15169039368629456, -0.012151491828262806, 0.19187034666538239, 0.049830734729766846, 0.14869624376296997, -0.039655085653066635, -0.011490479111671448, -0.1268738955259323, 0.3134293258190155, 0.21894627809524536, -0.029566623270511627, 0.06968390941619873, 0.012242328375577927, 0.04945865646004677, 0.05147209390997887, 0.037134476006031036, 0.14212264120578766, 0.3142167627811432, -0.005606405436992645, -0.0678129643201828, -0.029410207644104958, -0.040482621639966965, -0.08318427950143814, 0.060821712017059326, -0.06858836114406586, -0.13105294108390808, -0.042223330587148666, 0.09486715495586395, -0.21290788054466248, 0.08625967800617218, -0.014330721460282803, -0.16493283212184906, -0.025777185335755348, 0.025004224851727486, 0.12373810261487961, 0.08473566174507141, 0.059048641473054886, -0.032053492963314056, -0.10001970827579498, 0.0649167001247406, 0.03845933824777603, -0.2532598376274109, 0.04978358373045921, 0.01770191080868244, -0.07009257376194, -0.05270304158329964, -0.0012992133852094412, 0.13695812225341797, 0.01977551355957985, 0.1564396768808365, 0.00699559086933732, 0.1385391801595688, -0.011141940020024776, -0.10966970771551132, 0.0020350429695099592, 0.13195984065532684, -0.00764200184494257, -0.012492666952311993, 0.04399271681904793, -0.17780189216136932, 0.0534556619822979, -0.018362876027822495, -0.0200018472969532, -0.0611613392829895, -0.025413908064365387, -0.040704384446144104, 0.02814488857984543, -0.029701540246605873, -0.01489523146301508, -0.018930602818727493, 0.009367123246192932, -0.0017991254571825266, 0.015221191570162773, -0.11187604814767838, -0.1212301030755043, -0.15346519649028778, -0.07677175104618073, -0.032612718641757965, 0.027920229360461235, -0.09698854386806488, -0.016907071694731712, -0.0763961598277092, 0.026637034490704536, -0.07471530884504318, 0.02430429309606552, 0.08550451695919037, 0.001998303458094597, 0.014178152196109295, -0.058580655604600906, 0.12117161601781845, 0.1384691596031189, -0.1377907544374466, -0.12039846181869507 ]
null
null
transformers
# xlsr300m_cv_7.0_nl_lm
{"language": ["nl"], "license": "apache-2.0", "tags": ["automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "nl", "robust-speech-event", "model_for_talk", "hf-asr-leaderboard"], "datasets": ["mozilla-foundation/common_voice_8_0"], "model-index": [{"name": "XLS-R-300M - Dutch", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Common Voice 8 NL", "type": "mozilla-foundation/common_voice_8_0", "args": "nl"}, "metrics": [{"type": "wer", "value": 32, "name": "Test WER"}, {"type": "cer", "value": 17, "name": "Test CER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Dev Data", "type": "speech-recognition-community-v2/dev_data", "args": "nl"}, "metrics": [{"type": "wer", "value": 37.44, "name": "Test WER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Test Data", "type": "speech-recognition-community-v2/eval_data", "args": "nl"}, "metrics": [{"type": "wer", "value": 38.74, "name": "Test WER"}]}]}]}
automatic-speech-recognition
Iskaj/xlsr300m_cv_7.0_nl_lm
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "nl", "robust-speech-event", "model_for_talk", "hf-asr-leaderboard", "dataset:mozilla-foundation/common_voice_8_0", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "nl" ]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us
# xlsr300m_cv_7.0_nl_lm
[ "# xlsr300m_cv_7.0_nl_lm" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n", "# xlsr300m_cv_7.0_nl_lm" ]
[ 110, 15 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n# xlsr300m_cv_7.0_nl_lm" ]
[ -0.14019881188869476, 0.06807677447795868, -0.006067667622119188, -0.0576205737888813, 0.08792361617088318, -0.07807305455207825, 0.12916088104248047, 0.09787455201148987, 0.03690830245614052, 0.019406389445066452, 0.07089699059724808, 0.1296369880437851, 0.04368612915277481, -0.007270239293575287, -0.00296089518815279, -0.1517094224691391, 0.08624736219644547, -0.010226907208561897, 0.07672815024852753, 0.0649590715765953, 0.12929408252239227, -0.05678349733352661, 0.034972310066223145, 0.06668983399868011, -0.022167429327964783, 0.05124596133828163, 0.017818180844187737, -0.10575707256793976, 0.12851010262966156, 0.08469925075769424, -0.05760883539915085, 0.025253038853406906, 0.012343945913016796, -0.2019534409046173, 0.03956015780568123, 0.022662244737148285, 0.036829303950071335, 0.01912643387913704, 0.0076653179712593555, -0.030356919392943382, 0.05763291195034981, 0.07551737129688263, -0.08724929392337799, 0.12402286380529404, -0.031153401359915733, -0.15347135066986084, -0.052119411528110504, 0.06451555341482162, 0.00006812874198658392, 0.07368741929531097, -0.03355802223086357, 0.08026581257581711, -0.07864960283041, 0.10615371912717819, 0.16791599988937378, -0.19946689903736115, -0.024038953706622124, -0.02479100599884987, 0.004168067593127489, -0.025063415989279747, -0.02772616781294346, 0.11491037905216217, 0.020124971866607666, -0.02537435293197632, -0.07130764424800873, -0.046030886471271515, -0.12111866474151611, -0.02532694675028324, -0.09675455093383789, 0.0015301546081900597, 0.26439252495765686, 0.07680856436491013, 0.039807651191949844, -0.06376776844263077, -0.013768806122243404, 0.10795341432094574, -0.03992009535431862, 0.0006742319674231112, -0.008294363506138325, 0.043300483375787735, 0.024762773886322975, -0.0650128647685051, -0.0647171139717102, -0.04802805185317993, -0.049034398049116135, 0.22934436798095703, -0.0048273843713104725, 0.030520975589752197, -0.11194969713687897, -0.001892880885861814, -0.011965935118496418, -0.07532625645399094, -0.03894396126270294, 0.0016106357797980309, -0.024087373167276382, 0.08678404241800308, 0.00010732041846495122, 0.03893638402223587, 0.186318039894104, -0.03968363627791405, 0.07333351671695709, -0.0093497633934021, -0.0482344850897789, 0.08742306381464005, -0.05167239531874657, 0.09768559783697128, -0.15110208094120026, -0.03590698167681694, 0.06456786394119263, 0.04467892646789551, 0.0950636938214302, -0.04509466141462326, -0.09967295825481415, 0.0007236524834297597, -0.01733686588704586, 0.0759812518954277, 0.0616472102701664, 0.07242532819509506, -0.01537417434155941, -0.019664866849780083, -0.05290049687027931, -0.10036858171224594, -0.01809689588844776, 0.07672262191772461, -0.0016088522970676422, 0.19535954296588898, 0.0262320414185524, 0.06060168892145157, -0.08845458924770355, -0.09086988121271133, -0.0057281912304461, 0.04133772850036621, 0.007871012203395367, -0.02403731271624565, 0.08470108360052109, -0.020406320691108704, -0.012384582310914993, -0.11727134883403778, -0.01730886846780777, -0.01702498272061348, -0.05440877005457878, 0.008333704434335232, -0.11202722042798996, -0.10792002826929092, -0.060174401849508286, -0.004172615706920624, -0.06647858023643494, 0.030429981648921967, -0.041163548827171326, 0.05143854767084122, 0.05424448847770691, 0.06556998193264008, -0.07212776690721512, 0.08095744252204895, 0.009433010593056679, 0.01175475399941206, 0.04032119736075401, 0.08463834971189499, -0.09592562913894653, 0.06292404234409332, -0.06940431892871857, 0.0014893996994942427, -0.07917258888483047, 0.05818186700344086, 0.018153658136725426, 0.15579868853092194, -0.07661675661802292, -0.10329990833997726, 0.11320031434297562, -0.04208686575293541, -0.07832461595535278, 0.12847505509853363, 0.0583295002579689, -0.010801373980939388, 0.11136120557785034, 0.2677193284034729, 0.001483861356973648, -0.10777734220027924, -0.0011096870293840766, 0.057809580117464066, -0.06962139159440994, -0.0690431222319603, 0.06652894616127014, -0.1038501113653183, -0.021715950220823288, 0.03131407871842384, 0.055327631533145905, 0.08291035890579224, -0.05577557533979416, -0.05452924966812134, -0.007079881150275469, -0.09931458532810211, 0.026404842734336853, -0.024192659184336662, -0.05738275498151779, -0.02113073132932186, -0.03942257538437843, -0.04787527024745941, 0.1137724295258522, -0.08744312822818756, 0.06754028797149658, -0.18028388917446136, 0.12377846240997314, -0.09904411435127258, 0.046272505074739456, -0.07946901768445969, 0.10235168039798737, -0.0435505136847496, 0.053548526018857956, 0.07281443476676941, 0.07453528791666031, 0.030926749110221863, -0.08445271849632263, -0.008475324138998985, 0.002458945382386446, 0.08460061252117157, 0.01602494716644287, -0.0064269364811480045, -0.21466480195522308, 0.0042000119574368, -0.0524938628077507, 0.12194573134183884, -0.06362783163785934, -0.0039002257399260998, 0.12594418227672577, 0.10388138145208359, -0.03530028089880943, 0.009855665266513824, 0.09791853278875351, 0.0016287588514387608, 0.01196868997067213, 0.002733067609369755, 0.04194992780685425, -0.012007421813905239, -0.13560086488723755, 0.23420526087284088, -0.16761289536952972, 0.13546207547187805, 0.1417466402053833, -0.14248889684677124, 0.12585844099521637, 0.11913192272186279, -0.021789219230413437, -0.026783626526594162, 0.059048090130090714, -0.07280337810516357, 0.12851236760616302, -0.030469108372926712, 0.11499059200286865, -0.07148668169975281, 0.009702407754957676, 0.019171297550201416, -0.03081425651907921, -0.00782504491508007, 0.11463788896799088, 0.05387658625841141, 0.014229255728423595, 0.04035674035549164, 0.007790355011820793, -0.048261139541864395, 0.18732963502407074, -0.007310496177524328, -0.009359646588563919, 0.04285622388124466, -0.017659664154052734, -0.052494730800390244, 0.12192507088184357, -0.3589649796485901, -0.07226288318634033, 0.03853590041399002, -0.01411897037178278, 0.09444490075111389, -0.13170592486858368, 0.012136688455939293, -0.02116631530225277, -0.13534331321716309, -0.04393643140792847, 0.11775605380535126, -0.054461926221847534, 0.11267245560884476, -0.05909222364425659, -0.2109067589044571, 0.00203138729557395, -0.07506135106086731, -0.12156729400157928, 0.028612170368433, -0.02576080895960331, -0.2739392817020416, -0.07564269751310349, -0.0700947642326355, -0.13017484545707703, 0.007806665264070034, 0.08149595558643341, -0.11214769631624222, 0.016401244327425957, -0.0378880612552166, 0.0494500994682312, -0.04614885896444321, 0.007955745793879032, 0.11126726865768433, -0.044561583548784256, 0.023393064737319946, -0.1640046238899231, -0.021263480186462402, -0.08397028595209122, -0.004465657286345959, -0.037777382880449295, -0.006423258688300848, 0.12698645889759064, 0.2139657586812973, 0.1269930899143219, 0.0676029846072197, -0.012828945182263851, 0.07195750623941422, -0.1260250359773636, -0.049130260944366455, 0.2044629603624344, 0.029504628852009773, 0.0072065009735524654, 0.12754280865192413, 0.022109664976596832, -0.017911961302161217, -0.04353561997413635, 0.011516532860696316, -0.05449910834431648, -0.17450666427612305, -0.13184937834739685, -0.12497161328792572, -0.018594685941934586, -0.10061327368021011, 0.035361867398023605, 0.0766211524605751, -0.0570073239505291, -0.047180745750665665, -0.1085425615310669, 0.06285107135772705, -0.009932393208146095, 0.19110429286956787, -0.06594807654619217, 0.10306913405656815, -0.06570059061050415, -0.07590346038341522, 0.03443918004631996, 0.01591288112103939, 0.04715003818273544, 0.12406551837921143, 0.0917244404554367, 0.0503498874604702, 0.08832460641860962, 0.07072332501411438, 0.04592781141400337, 0.00424975948408246, 0.009779366664588451, 0.016835171729326248, -0.10095829516649246, -0.052290935069322586, 0.03522379696369171, 0.23843686282634735, -0.0007201496628113091, -0.038915544748306274, -0.0053341686725616455, 0.06873515248298645, 0.27063149213790894, 0.07543551921844482, -0.11005941778421402, -0.010889509692788124, 0.024075621739029884, -0.06919215619564056, 0.02668129839003086, 0.07477813214063644, 0.11738365888595581, -0.055543798953294754, 0.09328723698854446, 0.08237303793430328, 0.07276489585638046, -0.08199159055948257, 0.07988221198320389, -0.13437901437282562, 0.047972820699214935, 0.040832940489053726, 0.06685759127140045, -0.2501767575740814, 0.23005546629428864, 0.020243315026164055, 0.05854542925953865, -0.06241147220134735, 0.0064658247865736485, 0.0706738755106926, 0.13185174763202667, 0.11643290519714355, 0.016883661970496178, 0.07589387893676758, -0.02133045718073845, -0.10237830132246017, 0.07100745290517807, 0.03579990565776825, 0.053710464388132095, -0.0278635136783123, -0.004424295388162136, -0.07030782103538513, 0.03579637408256531, -0.009703721851110458, -0.1944354623556137, -0.06652417033910751, 0.08238860964775085, 0.2969183027744293, 0.08264032006263733, -0.023261357098817825, -0.061677977442741394, -0.10658792406320572, 0.08645806461572647, -0.15631258487701416, -0.011893923394382, -0.057239074259996414, -0.13507862389087677, 0.06037433072924614, -0.043880611658096313, -0.06655948609113693, -0.004457962699234486, 0.0725933387875557, -0.03288736194372177, -0.05334815755486488, 0.09860537201166153, -0.1140303984284401, -0.07964999973773956, 0.008522593416273594, 0.263461709022522, -0.027888741344213486, 0.06633297353982925, 0.0458679273724556, -0.05021226778626442, -0.025507202371954918, -0.050458405166864395, 0.14806875586509705, 0.19745473563671112, -0.19672557711601257, 0.03996115177869797, 0.039508238434791565, -0.0669044703245163, -0.10474890470504761, -0.014015709981322289, 0.17953774333000183, 0.1093093752861023, -0.02592562884092331, 0.14667554199695587, 0.21505524218082428, -0.06693762540817261, -0.24863353371620178, -0.11604378372430801, -0.07656130939722061, 0.024157997220754623, -0.1484108567237854, -0.12312512844800949, 0.026859013363718987, -0.05111010745167732, -0.06999325007200241, 0.07736077904701233, -0.24731072783470154, -0.1025017723441124, 0.1772923320531845, -0.12143532186746597, 0.2875908613204956, -0.07262281328439713, -0.0803733691573143, -0.08221951127052307, -0.035081278532743454, -0.012455933727324009, -0.14079736173152924, 0.09877286106348038, 0.035361189395189285, 0.06763315945863724, 0.010286961682140827, -0.0055436077527701855, 0.11609797179698944, 0.06283403933048248, -0.06292050331830978, -0.035691842436790466, -0.041822709143161774, 0.04425649717450142, 0.0022710408084094524, 0.08832430839538574, -0.09954249113798141, -0.032636914402246475, -0.14285367727279663, -0.04041234776377678, -0.11244988441467285, 0.09969320148229599, 0.04909960925579071, 0.010492650792002678, 0.02621210552752018, -0.08743578940629959, 0.0185267124325037, 0.11132490634918213, 0.15289287269115448, -0.17348678410053253, 0.07124330848455429, 0.15378035604953766, 0.23047339916229248, -0.23567698895931244, 0.0031245441641658545, -0.07216603308916092, -0.02905791439116001, 0.10400724411010742, -0.0008390399743802845, 0.060918692499399185, 0.043512385338544846, 0.0388219878077507, 0.057729464024305344, 0.030079424381256104, -0.09978931397199631, 0.041271597146987915, 0.041725046932697296, -0.10976596921682358, -0.17719759047031403, -0.036881573498249054, 0.06474320590496063, 0.028681397438049316, 0.17721927165985107, 0.21584561467170715, -0.019698936492204666, 0.022988783195614815, -0.02552027627825737, 0.06233172491192818, -0.13847577571868896, 0.11350540816783905, 0.09483475983142853, 0.06594469398260117, -0.14358356595039368, 0.05865047872066498, -0.04450790211558342, 0.003286325139924884, -0.009507875889539719, 0.029613584280014038, -0.027072636410593987, -0.11652231216430664, -0.19488026201725006, 0.052638694643974304, 0.025180568918585777, -0.14258867502212524, -0.07582639157772064, -0.1503235101699829, 0.04963420704007149, 0.13475251197814941, 0.01277072448283434, 0.06436695903539658, -0.05795222148299217, -0.04553603008389473, -0.009380631148815155, -0.011924381367862225, -0.005472676362842321, -0.04343283921480179, -0.11074496805667877, -0.0017475393833592534, 0.01842358522117138, 0.12066484242677689, -0.05279853194952011, -0.11332827061414719, -0.049134328961372375, 0.0874505415558815, -0.11657514423131943, -0.061931926757097244, -0.08906358480453491, 0.008036989718675613, 0.0459483377635479, -0.10666857659816742, -0.04996859282255173, 0.056027304381132126, -0.09421572834253311, 0.02107388898730278, 0.015303589403629303, 0.08147982507944107, -0.11090847104787827, 0.045365482568740845, 0.014940905384719372, -0.04161181300878525, 0.167689710855484, 0.11590415984392166, -0.13734056055545807, 0.034988921135663986, -0.21430043876171112, -0.13073305785655975, 0.10146304219961166, 0.04979226738214493, -0.018494412302970886, -0.008067535236477852, -0.04336369037628174, 0.11037014424800873, 0.0639728382229805, -0.018397830426692963, 0.03914404660463333, -0.08509055525064468, 0.03314213827252388, -0.06437654793262482, -0.03140252083539963, 0.02162752114236355, 0.01378735899925232, 0.08107782155275345, 0.10287154465913773, 0.06334833055734634, -0.052650921046733856, 0.024557840079069138, -0.0702022910118103, 0.07735852897167206, -0.011857372708618641, -0.08274521678686142, -0.03577626496553421, -0.026843741536140442, 0.09604067355394363, -0.03259482607245445, 0.14988715946674347, -0.034265968948602676, -0.030954262241721153, 0.004258662462234497, -0.06580554693937302, 0.02663804031908512, 0.012455344200134277, 0.11691411584615707, 0.05223724991083145, 0.03476618230342865, 0.06238710507750511, -0.06472519785165787, 0.10275284200906754, 0.06223667412996292, 0.025344928726553917, 0.08460097014904022, 0.18784575164318085, 0.12320517003536224, 0.21105840802192688, -0.024174902588129044, 0.010663054883480072, -0.011366568505764008, -0.053688935935497284, 0.05822688713669777, -0.08855810016393661, 0.10472282767295837, 0.15446636080741882, 0.05482669174671173, 0.024088026955723763, -0.009784054011106491, 0.0005864848499186337, -0.15331929922103882, -0.1534932404756546, -0.06082507595419884, -0.15873825550079346, 0.00439433241263032, -0.03757613152265549, 0.02026081643998623, 0.040460772812366486, 0.05779149383306503, -0.023209763690829277, 0.014901441521942616, 0.02499842457473278, -0.0413011759519577, 0.13812291622161865, -0.08889485895633698, -0.017182335257530212, -0.10529398173093796, -0.039808932691812515, 0.09717193245887756, 0.04631190747022629, 0.03924207389354706, 0.028957750648260117, -0.11174720525741577, 0.04465501010417938, -0.06486472487449646, -0.08477439731359482, -0.007329510524868965, -0.042233895510435104, 0.04775422066450119, 0.07722233980894089, 0.09516759216785431, -0.07166697829961777, 0.035446297377347946, 0.10658460855484009, -0.08329490572214127, -0.12220743298530579, -0.041704099625349045, 0.028157247230410576, -0.052323196083307266, 0.08065121620893478, -0.10956437140703201, -0.05379914864897728, -0.06552039086818695, 0.2804208993911743, 0.25140437483787537, -0.07439330220222473, 0.05223267897963524, -0.09291904419660568, 0.023975728079676628, -0.03711938485503197, -0.0539274737238884, 0.12938137352466583, 0.11394497752189636, 0.04490315914154053, -0.03950038552284241, -0.031976118683815, -0.052334919571876526, -0.06438127905130386, 0.024014044553041458, -0.068971186876297, -0.07713936269283295, -0.0073773846961557865, 0.09093469381332397, -0.13137619197368622, -0.0796557068824768, -0.16848881542682648, -0.09684102982282639, -0.06380505859851837, -0.01995503343641758, 0.05908004194498062, 0.16327811777591705, 0.040123213082551956, -0.06846368312835693, -0.05685003101825714, 0.09283335506916046, 0.018145408481359482, -0.16301701962947845, -0.06688813120126724, 0.03686250373721123, -0.16956311464309692, 0.01457100361585617, -0.03664526715874672, 0.05510438606142998, 0.05433060601353645, 0.08203267306089401, -0.010329039767384529, 0.11276261508464813, 0.03764490410685539, -0.13740311563014984, -0.012504935264587402, 0.13227558135986328, 0.017326610162854195, 0.1359950751066208, 0.022141950204968452, -0.07927937805652618, 0.02979283779859543, -0.006345107685774565, -0.040699463337659836, -0.05278022959828377, 0.01611751690506935, -0.0494779571890831, 0.03233649581670761, -0.005026689730584621, -0.08395922183990479, -0.06254437565803528, 0.0037168911658227444, -0.02812892571091652, -0.014616122469305992, -0.1494988054037094, -0.09983271360397339, -0.18552541732788086, -0.01693032681941986, -0.17982947826385498, 0.011934230104088783, -0.05798400938510895, -0.023864733055233955, -0.05388745293021202, -0.015858082100749016, 0.01791241206228733, -0.01164582185447216, 0.12355073541402817, 0.009086338803172112, -0.006907919887453318, -0.12943027913570404, 0.10023069381713867, 0.15369701385498047, -0.12802565097808838, -0.08188029378652573 ]
null
null
transformers
# xlsr300m_cv_8.0_nl #### Evaluation Commands 1. To evaluate on `mozilla-foundation/common_voice_8_0` with split `test` ```bash python eval.py --model_id Iskaj/xlsr300m_cv_8.0_nl --dataset mozilla-foundation/common_voice_8_0 --config nl --split test ``` 2. To evaluate on `speech-recognition-community-v2/dev_data` ```bash python eval.py --model_id Iskaj/xlsr300m_cv_8.0_nl --dataset speech-recognition-community-v2/dev_data --config nl --split validation --chunk_length_s 5.0 --stride_length_s 1.0 ``` ### Inference ```python import torch from datasets import load_dataset from transformers import AutoModelForCTC, AutoProcessor import torchaudio.functional as F model_id = "Iskaj/xlsr300m_cv_8.0_nl" sample_iter = iter(load_dataset("mozilla-foundation/common_voice_8_0", "nl", split="test", streaming=True, use_auth_token=True)) sample = next(sample_iter) resampled_audio = F.resample(torch.tensor(sample["audio"]["array"]), 48_000, 16_000).numpy() model = AutoModelForCTC.from_pretrained(model_id) processor = AutoProcessor.from_pretrained(model_id) inputs = processor(resampled_audio, sampling_rate=16_000, return_tensors="pt") with torch.no_grad(): logits = model(**inputs).logits predicted_ids = torch.argmax(logits, dim=-1) transcription = processor.batch_decode(predicted_ids) transcription[0].lower() #'het kontine schip lag aangemeert in de aven' ```
{"language": ["nl"], "license": "apache-2.0", "tags": ["automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "mozilla-foundation/common_voice_7_0", "nl", "robust-speech-event", "model_for_talk", "hf-asr-leaderboard"], "datasets": ["mozilla-foundation/common_voice_8_0"], "model-index": [{"name": "XLS-R-300M - Dutch", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Common Voice 8 NL", "type": "mozilla-foundation/common_voice_8_0", "args": "nl"}, "metrics": [{"type": "wer", "value": 46.94, "name": "Test WER"}, {"type": "cer", "value": 21.65, "name": "Test CER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Dev Data", "type": "speech-recognition-community-v2/dev_data", "args": "nl"}, "metrics": [{"type": "wer", "value": "???", "name": "Test WER"}, {"type": "cer", "value": "???", "name": "Test CER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Test Data", "type": "speech-recognition-community-v2/eval_data", "args": "nl"}, "metrics": [{"type": "wer", "value": 42.56, "name": "Test WER"}]}]}]}
automatic-speech-recognition
Iskaj/xlsr300m_cv_8.0_nl
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "mozilla-foundation/common_voice_8_0", "mozilla-foundation/common_voice_7_0", "nl", "robust-speech-event", "model_for_talk", "hf-asr-leaderboard", "dataset:mozilla-foundation/common_voice_8_0", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "nl" ]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #mozilla-foundation/common_voice_7_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us
# xlsr300m_cv_8.0_nl #### Evaluation Commands 1. To evaluate on 'mozilla-foundation/common_voice_8_0' with split 'test' 2. To evaluate on 'speech-recognition-community-v2/dev_data' ### Inference
[ "# xlsr300m_cv_8.0_nl", "#### Evaluation Commands\n1. To evaluate on 'mozilla-foundation/common_voice_8_0' with split 'test'\n\n\n\n2. To evaluate on 'speech-recognition-community-v2/dev_data'", "### Inference" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #mozilla-foundation/common_voice_7_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n", "# xlsr300m_cv_8.0_nl", "#### Evaluation Commands\n1. To evaluate on 'mozilla-foundation/common_voice_8_0' with split 'test'\n\n\n\n2. To evaluate on 'speech-recognition-community-v2/dev_data'", "### Inference" ]
[ 126, 15, 56, 5 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #mozilla-foundation/common_voice_8_0 #mozilla-foundation/common_voice_7_0 #nl #robust-speech-event #model_for_talk #hf-asr-leaderboard #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n# xlsr300m_cv_8.0_nl#### Evaluation Commands\n1. To evaluate on 'mozilla-foundation/common_voice_8_0' with split 'test'\n\n\n\n2. To evaluate on 'speech-recognition-community-v2/dev_data'### Inference" ]
[ -0.1440040022134781, 0.0652627944946289, -0.007480740547180176, -0.03545564413070679, 0.10270577669143677, -0.04120936989784241, 0.12912490963935852, 0.10806139558553696, 0.007939116097986698, 0.03558751940727234, 0.004935710225254297, 0.09396173059940338, 0.06132928654551506, -0.006045186892151833, -0.03996869549155235, -0.08095082640647888, 0.07033483684062958, 0.000428682251367718, 0.09157946705818176, 0.11848704516887665, 0.12255994975566864, -0.07277386635541916, 0.014788848347961903, 0.07312848418951035, -0.08312571793794632, 0.022477736696600914, 0.037109971046447754, -0.07406147569417953, 0.10631676018238068, 0.04166653752326965, -0.005818487145006657, 0.0784202292561531, 0.0014893671032041311, -0.21286866068840027, 0.030748412013053894, 0.055955007672309875, 0.04062435403466225, 0.027246352285146713, 0.08243943005800247, -0.01798085682094097, 0.026832615956664085, 0.07751646637916565, -0.06219209358096123, 0.12657174468040466, 0.013689585030078888, -0.1838950514793396, -0.08920007199048996, 0.043756019324064255, 0.08682418614625931, 0.07381211221218109, -0.039695460349321365, 0.0693407729268074, -0.12247156351804733, 0.1175118163228035, 0.22149676084518433, -0.17640206217765808, -0.015412564389407635, 0.019871724769473076, -0.01498417928814888, -0.02486911416053772, -0.04004475846886635, 0.06531697511672974, -0.00193223194219172, -0.027759814634919167, -0.008817741647362709, -0.05485914275050163, -0.056150902062654495, -0.0442112497985363, -0.12019947916269302, -0.04002964124083519, 0.22983619570732117, 0.0687822699546814, -0.0256197489798069, -0.05404846742749214, -0.017991235479712486, 0.022559912875294685, -0.026697881519794464, -0.010257231071591377, -0.011905456893146038, -0.003986709751188755, 0.04488806426525116, -0.055587925016880035, -0.07179877161979675, -0.11161424219608307, -0.014212189242243767, 0.1706039309501648, 0.01570931263267994, 0.005345132667571306, -0.042785417288541794, 0.06913647055625916, 0.014531631022691727, -0.10102171450853348, -0.07959095388650894, 0.03899645805358887, -0.1262172907590866, 0.03186159208416939, -0.04019893705844879, -0.06176191568374634, 0.15909458696842194, 0.050304800271987915, 0.029589245095849037, 0.010459385812282562, -0.07503104954957962, 0.06478845328092575, -0.06069518253207207, 0.11786837130784988, -0.07894773036241531, -0.013699635863304138, 0.07036915421485901, 0.07225403189659119, 0.04818890616297722, -0.010846284218132496, -0.06521590054035187, -0.04325788468122482, 0.11476923525333405, 0.10446179658174515, 0.06117977946996689, 0.021704871207475662, -0.028033660724759102, -0.0484953448176384, -0.09988944977521896, -0.15644387900829315, 0.010060848668217659, 0.09403946995735168, 0.00553837651386857, 0.1121625080704689, 0.022343093529343605, 0.029323935508728027, -0.11698434501886368, -0.0336858294904232, -0.005995282903313637, 0.047433286905288696, -0.0237312912940979, -0.048779185861349106, 0.07311707735061646, -0.042048823088407516, -0.05609064921736717, -0.12511257827281952, -0.06671983003616333, -0.03996076434850693, -0.0016877485904842615, -0.026146143674850464, -0.07712431997060776, -0.06419120728969574, -0.07618686556816101, -0.02580220252275467, -0.07261853665113449, 0.061029184609651566, -0.035291723906993866, 0.06140870973467827, 0.07423478364944458, 0.02045375294983387, 0.046333178877830505, 0.08192452043294907, -0.009615197777748108, 0.0235538799315691, -0.031622450798749924, 0.14682844281196594, -0.12422409653663635, 0.016884854063391685, -0.15117183327674866, -0.020868435502052307, -0.02806153893470764, -0.00022119069762993604, 0.06343552470207214, 0.16546891629695892, -0.09564366191625595, -0.08175405114889145, 0.09185651689767838, -0.08645894378423691, -0.11779896169900894, 0.16566991806030273, 0.04727626591920853, -0.003006676910445094, 0.08245895802974701, 0.1752890646457672, 0.1235189214348793, -0.09139885008335114, 0.008373408578336239, 0.022601520642638206, -0.0072254217229783535, -0.05287615582346916, 0.10336699336767197, -0.07690361887216568, -0.01958460547029972, 0.018144026398658752, -0.11326204985380173, 0.053648512810468674, -0.0437435507774353, -0.05914123356342316, -0.03986924886703491, -0.04772036895155907, 0.07416875660419464, -0.014317209832370281, -0.03552926704287529, -0.038302794098854065, -0.09240269660949707, -0.03466463461518288, 0.08733624964952469, -0.09650357067584991, 0.07063222676515579, -0.15200088918209076, 0.18375854194164276, -0.1504279226064682, 0.044045258313417435, -0.13925443589687347, 0.05599835142493248, 0.02744225040078163, 0.014977047219872475, 0.0045762998051941395, 0.08719611167907715, -0.00632407795637846, -0.06453957408666611, -0.002954372437670827, -0.027987461537122726, 0.0007997386273927987, -0.008985757827758789, -0.014690127223730087, -0.1571774035692215, -0.06108180806040764, -0.024312598630785942, 0.11196769773960114, -0.05785796418786049, 0.01645600236952305, 0.16221821308135986, 0.07188265770673752, -0.024583088234066963, -0.0021094069816172123, 0.05063096806406975, 0.008801349438726902, -0.021947046741843224, 0.009885377250611782, 0.022728707641363144, 0.009931794367730618, -0.10278824716806412, 0.13528944551944733, -0.09551851451396942, 0.0811832919716835, 0.06614671647548676, -0.09282849729061127, 0.08900288492441177, 0.051615290343761444, -0.04488419368863106, -0.019072849303483963, -0.04253079369664192, -0.09645149111747742, 0.09397921711206436, 0.020687177777290344, 0.1043466180562973, -0.10960927605628967, -0.031088462099432945, 0.017611445859074593, -0.03260725364089012, 0.02913445048034191, 0.08980235457420349, 0.03189247474074364, 0.060054928064346313, 0.025515321642160416, -0.001628301222808659, -0.1280995011329651, 0.08828584849834442, -0.033748600631952286, -0.04213765636086464, 0.007206544745713472, 0.06671995669603348, -0.014538418501615524, 0.04650430381298065, -0.3270025849342346, -0.023847505450248718, 0.0584796667098999, 0.019000550732016563, 0.057134754955768585, -0.13744451105594635, 0.051848068833351135, 0.021555645391345024, -0.1494566798210144, -0.0022549526765942574, 0.09689483046531677, -0.01042200904339552, 0.06576163321733475, -0.04296954721212387, -0.14197956025600433, 0.004190148785710335, -0.07644684612751007, -0.15717874467372894, 0.07602248340845108, 0.004737774841487408, -0.23536540567874908, -0.10690860450267792, -0.07389861345291138, -0.1442391723394394, -0.002240204019472003, 0.12093380838632584, -0.08679953217506409, -0.004202236887067556, -0.07724522799253464, 0.05774849280714989, -0.017004624009132385, 0.01972297951579094, 0.07580293715000153, 0.004249368328601122, 0.019663238897919655, -0.11974810808897018, -0.015794700011610985, -0.0517117939889431, -0.02789980173110962, -0.014471464790403843, 0.014438924379646778, 0.06549517810344696, 0.20207946002483368, 0.06969776749610901, 0.08031924068927765, -0.022822514176368713, 0.11120990663766861, -0.1064595878124237, -0.015946198254823685, 0.26017317175865173, 0.022457631304860115, 0.009705270640552044, 0.1291121542453766, 0.016547556966543198, -0.00915502104908228, -0.017719080671668053, 0.02268851362168789, -0.05022819712758064, -0.248562291264534, -0.07941365242004395, -0.11220063269138336, -0.06189935281872749, -0.0617634616792202, 0.03164583444595337, 0.0987049862742424, 0.00801337230950594, -0.0343254953622818, -0.08350758254528046, 0.07305418699979782, 0.00210453849285841, 0.18308928608894348, -0.016607042402029037, 0.12042150646448135, -0.03388748690485954, -0.00884630810469389, 0.01006714440882206, 0.03349164500832558, 0.1773650348186493, 0.049725115299224854, 0.1454281061887741, 0.09495407342910767, 0.0928705483675003, 0.02988576889038086, 0.07215330749750137, -0.00358068966306746, 0.04982437938451767, 0.07026303559541702, -0.09746040403842926, -0.07335776835680008, -0.004691054113209248, 0.17534561455249786, 0.02760169841349125, -0.07175891846418381, 0.02028236910700798, 0.0517633780837059, 0.3434292674064636, 0.06462132930755615, -0.1616576761007309, -0.04423586279153824, -0.002026733011007309, -0.06498546153306961, 0.030292531475424767, 0.0057697538286447525, 0.11245673894882202, -0.08242236077785492, 0.0504283681511879, 0.006854582577943802, 0.10964519530534744, -0.07084514200687408, 0.03560613840818405, -0.07894060015678406, 0.07199189811944962, 0.04514744505286217, 0.08174196630716324, -0.22987933456897736, 0.182594433426857, -0.0020815383177250624, 0.06604651361703873, -0.06016731634736061, 0.04280376806855202, 0.043700702488422394, 0.13796429336071014, 0.11085109412670135, 0.00915916170924902, 0.10093796998262405, -0.01931782439351082, -0.07589941471815109, 0.03761102259159088, 0.02789604850113392, -0.025826551020145416, 0.04471030831336975, -0.024709399789571762, -0.05246147885918617, -0.011236554011702538, 0.056387756019830704, -0.2020007073879242, -0.0329904742538929, 0.09465711563825607, 0.16587026417255402, 0.08104174584150314, -0.07383128255605698, -0.09136457741260529, -0.0705394297838211, 0.16654863953590393, -0.19626747071743011, -0.06317788362503052, -0.09949634969234467, -0.04049178212881088, 0.055266059935092926, -0.061120644211769104, -0.048095814883708954, -0.031570855528116226, 0.13927941024303436, -0.008982080034911633, -0.02882233075797558, 0.054312217980623245, -0.1017320305109024, -0.10341114550828934, 0.009329176507890224, 0.24924346804618835, -0.04390735551714897, 0.04993143305182457, 0.08822272717952728, -0.04982655122876167, -0.0029326218646019697, -0.05895614996552467, 0.05934850126504898, 0.13538257777690887, -0.16429297626018524, 0.08190391957759857, -0.0016364625189453363, -0.08794005215167999, -0.1070462092757225, -0.010087378323078156, 0.17098237574100494, 0.06116921827197075, -0.018096545711159706, 0.09710010141134262, 0.13025307655334473, -0.08337541669607162, -0.21823062002658844, -0.05593850091099739, 0.07139509171247482, 0.03665221109986305, -0.07129999250173569, -0.09450661391019821, 0.03845006600022316, 0.010599146597087383, -0.06276465952396393, 0.058815550059080124, -0.2506207525730133, -0.09708688408136368, 0.10412294417619705, -0.03219246119260788, 0.15130598843097687, -0.08953527361154556, -0.10966810584068298, -0.07588246464729309, -0.08520950376987457, -0.029772063717246056, -0.0921417698264122, 0.11441867798566818, 0.017921049147844315, -0.01609339378774166, 0.01512332446873188, -0.032951295375823975, 0.10497509688138962, 0.11487777531147003, -0.03667573630809784, -0.004665843676775694, 0.03902818635106087, 0.11089826375246048, -0.05531635880470276, 0.12590795755386353, -0.07122081518173218, 0.011943516321480274, -0.1489570587873459, -0.04046747088432312, -0.1045253574848175, 0.09623422473669052, 0.0035411203280091286, 0.008181940764188766, 0.015446232631802559, -0.06298010051250458, 0.05257468298077583, 0.07473864406347275, 0.11526675522327423, -0.148121640086174, 0.05455780774354935, 0.26560816168785095, 0.20131342113018036, -0.17350329458713531, -0.10137733072042465, -0.04123936966061592, -0.005380407907068729, 0.0848613753914833, -0.056541990488767624, 0.09620516747236252, 0.05025573447346687, 0.03188591077923775, 0.09846057742834091, 0.031100308522582054, -0.12175789475440979, 0.03287595510482788, 0.026413852348923683, -0.03606158494949341, -0.2079106718301773, -0.04644626006484032, 0.01938273198902607, -0.08154353499412537, 0.12195320427417755, 0.21141469478607178, -0.010307990945875645, 0.01776527240872383, 0.00633954769000411, 0.03783274069428444, -0.11917875707149506, 0.17446762323379517, 0.009247890673577785, 0.13506737351417542, -0.10352138429880142, 0.03260715305805206, -0.00501939095556736, 0.04826541990041733, -0.03259633854031563, 0.036748889833688736, -0.08750364929437637, -0.09999413788318634, -0.14677634835243225, 0.029576534405350685, 0.06078460440039635, -0.09703163802623749, -0.11451137065887451, -0.17914849519729614, 0.05243214964866638, 0.06797686964273453, 0.046750910580158234, 0.08299276977777481, -0.029676785692572594, -0.059384994208812714, -0.01794080249965191, 0.06736946851015091, 0.035572927445173264, 0.0076732630841434, -0.11825583875179291, -0.012871524319052696, 0.023761525750160217, 0.12645843625068665, -0.046048354357481, -0.0915849432349205, -0.028979575261473656, 0.09010721743106842, -0.16532891988754272, -0.027808070182800293, -0.06033062934875488, -0.011701072566211224, 0.0366516150534153, -0.07466989010572433, -0.05271577090024948, 0.10610957443714142, -0.09037134051322937, -0.010291824117302895, -0.03108486533164978, 0.07936203479766846, -0.088064044713974, 0.05291585996747017, 0.0040969401597976685, -0.10594892501831055, 0.166080042719841, 0.06360272318124771, -0.10091326385736465, 0.020520955324172974, -0.17892739176750183, -0.09257272630929947, 0.06734184175729752, 0.053636156022548676, -0.010666390880942345, -0.15200519561767578, 0.018776610493659973, 0.09628283232450485, 0.037162356078624725, -0.023769201710820198, 0.052616626024246216, -0.10527236759662628, -0.0038348508533090353, -0.07372774183750153, -0.013908253982663155, -0.00642751669511199, 0.045481082051992416, 0.053095318377017975, 0.12642024457454681, 0.13950055837631226, -0.03621748089790344, 0.06758860498666763, -0.13676884770393372, 0.029732314869761467, 0.005293349735438824, -0.0205126591026783, -0.06081344187259674, -0.05104755610227585, 0.09108307957649231, -0.02695939876139164, 0.06862130761146545, 0.0013374465052038431, 0.05121108144521713, 0.010089592076838017, -0.049229469150304794, 0.08600328117609024, 0.0034199231304228306, 0.10919313132762909, 0.05376097932457924, 0.02166823484003544, 0.07865037024021149, -0.11771728843450546, 0.0657653659582138, -0.037770383059978485, 0.061796676367521286, 0.13161325454711914, 0.12067122757434845, 0.13000042736530304, 0.19438393414020538, -0.0006811643252149224, -0.040704723447561264, 0.04282226413488388, -0.055175911635160446, 0.0895591527223587, -0.05076804384589195, 0.11870106309652328, 0.18195393681526184, -0.008998650126159191, 0.06701356172561646, 0.04691856727004051, -0.025610851123929024, -0.12495196610689163, -0.19111959636211395, -0.0787159651517868, -0.18974770605564117, 0.0055699096992611885, -0.05704406276345253, -0.01790124922990799, 0.03858739882707596, 0.0553290918469429, -0.006439746357500553, 0.08081667870283127, 0.041145361959934235, -0.06575171649456024, 0.1405176818370819, -0.0992126315832138, -0.028546208515763283, -0.007603448815643787, -0.02442692592740059, 0.13313594460487366, 0.06653673201799393, 0.08856268227100372, 0.043644312769174576, -0.08971375226974487, 0.06089949607849121, -0.03353280574083328, -0.0995749905705452, 0.018546808511018753, -0.04943571612238884, 0.0177699513733387, 0.12391490489244461, 0.0697464644908905, -0.03695862367749214, 0.021371962502598763, 0.09985487163066864, -0.06240454316139221, -0.08771263808012009, -0.09584509581327438, 0.03313663229346275, 0.008246243931353092, 0.06204276531934738, -0.037127044051885605, -0.07709034532308578, -0.0483093187212944, 0.22989442944526672, 0.1321677267551422, 0.013304715044796467, 0.01530876848846674, -0.023539789021015167, -0.000015237999832606874, -0.031055821105837822, -0.0009753155172802508, 0.09277603030204773, 0.0856563001871109, 0.05051528289914131, 0.022895075380802155, -0.014192058704793453, -0.088022880256176, -0.055089350789785385, -0.002373387571424246, -0.06320759654045105, -0.051535457372665405, -0.020039599388837814, 0.13814890384674072, -0.0732090100646019, -0.1232963278889656, -0.04634587839245796, -0.04803644120693207, -0.10649912804365158, -0.01383888628333807, 0.07472963631153107, 0.0679209977388382, 0.03231086954474449, -0.06503444164991379, -0.040287479758262634, 0.18248045444488525, -0.005988141987472773, -0.06682100147008896, -0.0866011306643486, 0.04877031221985817, -0.14853957295417786, 0.03412872552871704, -0.029646530747413635, 0.08229446411132812, 0.08475887030363083, 0.05069445073604584, -0.07381760329008102, 0.12395142018795013, 0.03957200422883034, -0.12385377287864685, 0.054659485816955566, 0.16774232685565948, 0.013892053626477718, 0.135200634598732, 0.014128461480140686, -0.09142421931028366, -0.008855446241796017, -0.009584960527718067, -0.0033423868007957935, -0.1128106564283371, 0.0016712092328816652, -0.06030559912323952, 0.016234036535024643, 0.04370289668440819, -0.09309647977352142, -0.02733910083770752, -0.049282874912023544, 0.005014959257096052, -0.00586151285097003, -0.06220501288771629, -0.0487690195441246, -0.2308080494403839, 0.051604047417640686, -0.09530693292617798, 0.0028433671686798334, -0.12912113964557648, -0.03578190132975578, -0.022360416129231453, -0.03376995399594307, -0.013207866810262203, 0.031422995030879974, 0.08047010004520416, 0.024845313280820847, -0.01859254762530327, -0.24833731353282928, 0.06838958710432053, 0.16037128865718842, -0.16283363103866577, -0.07642770558595657 ]
null
null
transformers
# xlsr_300m_CV_8.0_50_EP_new_params_nl
{"language": ["nl"], "license": "apache-2.0", "tags": ["automatic-speech-recognition", "hf-asr-leaderboard", "model_for_talk", "mozilla-foundation/common_voice_8_0", "nl", "robust-speech-event"], "datasets": ["mozilla-foundation/common_voice_8_0"], "model-index": [{"name": "XLS-R-300M - Dutch", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Common Voice 8 NL", "type": "mozilla-foundation/common_voice_8_0", "args": "nl"}, "metrics": [{"type": "wer", "value": 35.44, "name": "Test WER"}, {"type": "cer", "value": 19.57, "name": "Test CER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Dev Data", "type": "speech-recognition-community-v2/dev_data", "args": "nl"}, "metrics": [{"type": "wer", "value": 37.17, "name": "Test WER"}]}, {"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "Robust Speech Event - Test Data", "type": "speech-recognition-community-v2/eval_data", "args": "nl"}, "metrics": [{"type": "wer", "value": 38.73, "name": "Test WER"}]}]}]}
automatic-speech-recognition
Iskaj/xlsr_300m_CV_8.0_50_EP_new_params_nl
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "hf-asr-leaderboard", "model_for_talk", "mozilla-foundation/common_voice_8_0", "nl", "robust-speech-event", "dataset:mozilla-foundation/common_voice_8_0", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "nl" ]
TAGS #transformers #pytorch #wav2vec2 #automatic-speech-recognition #hf-asr-leaderboard #model_for_talk #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us
# xlsr_300m_CV_8.0_50_EP_new_params_nl
[ "# xlsr_300m_CV_8.0_50_EP_new_params_nl" ]
[ "TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #hf-asr-leaderboard #model_for_talk #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n", "# xlsr_300m_CV_8.0_50_EP_new_params_nl" ]
[ 110, 24 ]
[ "passage: TAGS\n#transformers #pytorch #wav2vec2 #automatic-speech-recognition #hf-asr-leaderboard #model_for_talk #mozilla-foundation/common_voice_8_0 #nl #robust-speech-event #dataset-mozilla-foundation/common_voice_8_0 #license-apache-2.0 #model-index #endpoints_compatible #region-us \n# xlsr_300m_CV_8.0_50_EP_new_params_nl" ]
[ -0.15578420460224152, 0.05097978562116623, -0.005861265119165182, -0.07213830202817917, 0.10517104715108871, -0.06951741129159927, 0.12145137786865234, 0.08898612856864929, -0.008940470404922962, 0.03246443346142769, 0.07357454299926758, 0.1122710183262825, 0.05755456164479256, -0.02374253422021866, -0.0023871371522545815, -0.1566196233034134, 0.07963913679122925, -0.0034719491377472878, 0.09699941426515579, 0.052624985575675964, 0.12354952841997147, -0.05462721362709999, 0.04560885950922966, 0.09553985297679901, -0.028655359521508217, 0.06881024688482285, 0.013815110549330711, -0.10341799259185791, 0.12072312831878662, 0.08800455182790756, -0.05178425833582878, 0.018531333655118942, 0.008196321316063404, -0.1748001128435135, 0.04201202094554901, 0.0264725424349308, 0.02606992982327938, 0.010842038318514824, 0.025593062862753868, -0.057810522615909576, 0.04243384674191475, 0.08134102076292038, -0.09759843349456787, 0.12901869416236877, -0.030591629445552826, -0.18516333401203156, -0.05693957954645157, 0.04211322218179703, 0.01769261248409748, 0.08919140696525574, -0.037488121539354324, 0.0649956539273262, -0.06768684834241867, 0.09097947925329208, 0.21226052939891815, -0.19077539443969727, -0.02512028068304062, -0.06380870193243027, -0.016868965700268745, -0.02611006423830986, -0.03308951482176781, 0.09565920382738113, 0.011758876964449883, -0.015273449942469597, -0.07087839394807816, -0.049932654947042465, -0.09437032788991928, -0.030769234523177147, -0.09617248922586441, 0.01659361831843853, 0.271617591381073, 0.08304553478956223, 0.04028674215078354, -0.02092716470360756, -0.017517266795039177, 0.08137001097202301, -0.033921122550964355, 0.013800638727843761, -0.015660768374800682, 0.030892949551343918, 0.03717253729701042, -0.05632536858320236, -0.0695771798491478, -0.0535411573946476, -0.06272768974304199, 0.2648342549800873, -0.005950316321104765, 0.027797391638159752, -0.11010465770959854, -0.005194578319787979, -0.004686581902205944, -0.0818183422088623, -0.041783854365348816, 0.012908480130136013, -0.014653886668384075, 0.10113023221492767, -0.012578697875142097, 0.005704948678612709, 0.1736220419406891, -0.04396853223443031, 0.06620611995458603, 0.0008815161418169737, -0.04913963004946709, 0.09874138981103897, -0.05722334235906601, 0.08482811599969864, -0.16859318315982819, -0.01458567101508379, 0.05441560968756676, 0.055602267384529114, 0.09738622605800629, -0.05387122556567192, -0.1026315689086914, 0.014021341688930988, -0.005116099026054144, 0.051063358783721924, 0.036890387535095215, 0.05600009486079216, -0.009766400791704655, -0.009772758930921555, -0.07256301492452621, -0.11827025562524796, -0.013756174594163895, 0.07985587418079376, 0.01995133049786091, 0.22457748651504517, 0.008962948806583881, 0.05726802349090576, -0.10161283612251282, -0.057588450610637665, -0.01627328060567379, 0.05346961319446564, 0.012775285169482231, -0.019158072769641876, 0.07898484915494919, -0.01831337995827198, -0.00806251261383295, -0.12071139365434647, 0.018191779032349586, -0.024286165833473206, -0.05477864667773247, 0.008312014862895012, -0.08700958639383316, -0.1071874126791954, -0.068906769156456, 0.006461860612034798, -0.06599601358175278, 0.03044029511511326, -0.04409977048635483, 0.05144988372921944, 0.05865640193223953, 0.05411984398961067, -0.07449869066476822, 0.09416686743497849, 0.0333658903837204, 0.010393387638032436, 0.04616731032729149, 0.06626497209072113, -0.09661906212568283, 0.041715383529663086, -0.06423754245042801, 0.0009124036878347397, -0.0982862040400505, 0.059466395527124405, 0.03230006620287895, 0.14665864408016205, -0.05963706225156784, -0.1226157620549202, 0.11366590112447739, -0.046703040599823, -0.05148472636938095, 0.13748805224895477, 0.06398438662290573, -0.04718119278550148, 0.10257463157176971, 0.25966647267341614, -0.0067870416678488255, -0.09796825051307678, -0.0004238906258251518, 0.0591970793902874, -0.04255617409944534, -0.08293161541223526, 0.08831090480089188, -0.12391383200883865, -0.012158095836639404, 0.0232149139046669, 0.03939129412174225, 0.07353182882070541, -0.05776238068938255, -0.046479880809783936, 0.011565583758056164, -0.08896753191947937, 0.00990683026611805, -0.03205979987978935, -0.049911998212337494, -0.02371036447584629, -0.0474502332508564, -0.08191626518964767, 0.10445437580347061, -0.09829501062631607, 0.06212660297751427, -0.1695336103439331, 0.1319373995065689, -0.1135467067360878, 0.034882087260484695, -0.06843041628599167, 0.14542090892791748, -0.060823455452919006, 0.04302659630775452, 0.07411326467990875, 0.05828368663787842, 0.030144982039928436, -0.07631273567676544, -0.005063301417976618, 0.0047189099714159966, 0.058228809386491776, 0.019503962248563766, 0.011489194817841053, -0.22402805089950562, 0.0095739820972085, -0.04349248856306076, 0.12323644757270813, -0.037985917180776596, -0.009451829828321934, 0.15056465566158295, 0.10381835699081421, -0.04204144701361656, 0.005734235513955355, 0.08088803291320801, 0.004411966539919376, 0.013078290969133377, 0.012706991285085678, 0.029814792796969414, 0.0007640187977813184, -0.12663528323173523, 0.2296537607908249, -0.18110965192317963, 0.15803082287311554, 0.14451783895492554, -0.1695946305990219, 0.13563470542430878, 0.11143580079078674, -0.010105566121637821, -0.02800975926220417, 0.053059421479701996, -0.09465179592370987, 0.14783063530921936, -0.030894910916686058, 0.12745968997478485, -0.08349177986383438, 0.02477513812482357, 0.03187716007232666, -0.03195764869451523, -0.01139855943620205, 0.11029037088155746, 0.08896646648645401, 0.00942136999219656, 0.04185128211975098, 0.024619383737444878, -0.08414685726165771, 0.20735566318035126, -0.009123790077865124, -0.024178659543395042, 0.036034077405929565, -0.01865624263882637, -0.048264168202877045, 0.1295279711484909, -0.3781863749027252, -0.07260490208864212, 0.03996384143829346, -0.005266936961561441, 0.10542536526918411, -0.14829885959625244, 0.019064227119088173, -0.018112435936927795, -0.12643539905548096, -0.04138273000717163, 0.11143328994512558, -0.06750659644603729, 0.09900946170091629, -0.06078660115599632, -0.213778555393219, -0.002359059639275074, -0.07016625255346298, -0.13324080407619476, 0.02757001668214798, -0.03859343379735947, -0.255734384059906, -0.08076585084199905, -0.05793914571404457, -0.13346125185489655, 0.0066911326721310616, 0.0917242094874382, -0.11925320327281952, 0.02002272754907608, -0.04175394028425217, 0.0415201261639595, -0.07098092138767242, 0.01245622243732214, 0.13240216672420502, -0.05912865698337555, 0.011104373261332512, -0.15925893187522888, -0.03184382990002632, -0.08087325096130371, 0.0022414466366171837, -0.04122304171323776, -0.0009113960550166667, 0.12025527656078339, 0.19984275102615356, 0.13442733883857727, 0.08083293586969376, -0.012691551819443703, 0.07494436949491501, -0.12496376037597656, -0.05438671261072159, 0.20238950848579407, 0.033697955310344696, 0.01435030810534954, 0.11294499039649963, 0.0217776820063591, -0.008853539824485779, -0.06849692016839981, 0.013248427771031857, -0.0535283163189888, -0.17008349299430847, -0.10738114267587662, -0.13760194182395935, -0.04154893755912781, -0.09406182914972305, 0.03161568567156792, 0.04415011778473854, -0.04959714412689209, -0.06147504970431328, -0.1024647206068039, 0.047972939908504486, -0.012405590154230595, 0.16448694467544556, -0.05880430340766907, 0.10040497034788132, -0.05190540477633476, -0.07430519163608551, 0.029627302661538124, 0.017973938956856728, 0.05866725370287895, 0.1419517546892166, 0.09520293772220612, 0.04788541793823242, 0.08735194057226181, 0.06790032982826233, 0.05163262039422989, 0.0024471005890518427, -0.0006558657623827457, 0.014323496259748936, -0.10490236431360245, -0.05196421220898628, 0.03302352502942085, 0.22538329660892487, 0.015951938927173615, -0.05208861827850342, 0.013638751581311226, 0.05200042575597763, 0.2695592939853668, 0.06813374161720276, -0.11693470925092697, 0.006177527364343405, 0.0071138376370072365, -0.05823205038905144, 0.024237660691142082, 0.0774843692779541, 0.10262477397918701, -0.03764164820313454, 0.10868356376886368, 0.07732685655355453, 0.06021375209093094, -0.07616273313760757, 0.08451557159423828, -0.1452355980873108, 0.062196675688028336, 0.03836116939783096, 0.06191244721412659, -0.24165809154510498, 0.25357532501220703, 0.025035008788108826, 0.06005300208926201, -0.05604592710733414, 0.008343619294464588, 0.0727124959230423, 0.12877081334590912, 0.09852160513401031, 0.02406398393213749, 0.07690142840147018, 0.013651094399392605, -0.0859658345580101, 0.07590079307556152, 0.05627875402569771, 0.04027364403009415, -0.023410234600305557, -0.004921062383800745, -0.06021157652139664, 0.03017529472708702, 0.004481992218643427, -0.19828493893146515, -0.0901489183306694, 0.09987466037273407, 0.30969563126564026, 0.08442729711532593, -0.02957087941467762, -0.08625896275043488, -0.10779067873954773, 0.053015295416116714, -0.18337401747703552, -0.009757610969245434, -0.05991695076227188, -0.12087513506412506, 0.032403070479631424, -0.04563246667385101, -0.06922774016857147, -0.01088597159832716, 0.08534549176692963, -0.03275392949581146, -0.034957267343997955, 0.10397104918956757, -0.1161636933684349, -0.07615738362073898, 0.012785695493221283, 0.28179940581321716, -0.02241857536137104, 0.06374453008174896, 0.040629319846630096, -0.05717965587973595, -0.031059540808200836, -0.045910563319921494, 0.16013504564762115, 0.19733527302742004, -0.19592134654521942, 0.060374245047569275, 0.047746144235134125, -0.0795501172542572, -0.10505320876836777, -0.02234327606856823, 0.18046408891677856, 0.11432332545518875, -0.00563289038836956, 0.12084398418664932, 0.24087631702423096, -0.055422838777303696, -0.24739423394203186, -0.13033807277679443, -0.05606080964207649, 0.03737811744213104, -0.16280832886695862, -0.12327545136213303, 0.02541888877749443, -0.03331868723034859, -0.06390636414289474, 0.06727733463048935, -0.24534180760383606, -0.09406202286481857, 0.17899364233016968, -0.10902204364538193, 0.320671021938324, -0.08508811146020889, -0.07520817965269089, -0.10098519921302795, -0.036839019507169724, -0.04491017013788223, -0.15768690407276154, 0.11007232964038849, 0.03954457864165306, 0.054161716252565384, -0.0025875892024487257, -0.0119820861145854, 0.12746582925319672, 0.06521487236022949, -0.05871447175741196, -0.03278084844350815, -0.03380372375249863, 0.06232304498553276, 0.018457232043147087, 0.07519407570362091, -0.11708530783653259, -0.03360029682517052, -0.127141535282135, -0.038992058485746384, -0.12064235657453537, 0.09125406295061111, 0.053287699818611145, 0.01864420250058174, 0.030721401795744896, -0.10079097002744675, 0.01682094670832157, 0.10762524604797363, 0.1468386948108673, -0.17419928312301636, 0.07217922061681747, 0.16287021338939667, 0.2219231128692627, -0.2845202088356018, -0.025905409827828407, -0.08528131246566772, -0.023275919258594513, 0.10899119824171066, 0.02312975563108921, 0.061333779245615005, 0.03989746421575546, 0.045715298503637314, 0.05747700855135918, 0.04475642368197441, -0.12457334995269775, 0.04785384610295296, 0.04624927416443825, -0.10690886527299881, -0.20837433636188507, -0.043529294431209564, 0.09411421418190002, 0.026696737855672836, 0.19301429390907288, 0.2292509377002716, -0.013680883683264256, 0.023485438898205757, -0.027411144226789474, 0.044280584901571274, -0.13689377903938293, 0.12185730040073395, 0.0973660871386528, 0.0627298653125763, -0.14935947954654694, 0.05666094645857811, -0.06022851914167404, 0.01764780282974243, 0.007809194270521402, 0.025317983701825142, -0.020237836986780167, -0.12093520164489746, -0.22210437059402466, 0.07473865896463394, 0.03481942415237427, -0.1415770798921585, -0.09705428779125214, -0.1508500725030899, 0.06348361074924469, 0.10890992730855942, 0.012930796481668949, 0.040225401520729065, -0.05567903071641922, -0.05220523849129677, -0.0006241838564164937, -0.022976817563176155, -0.02873990312218666, -0.037844572216272354, -0.11913067102432251, -0.003775347489863634, 0.018980298191308975, 0.11523911356925964, -0.039471764117479324, -0.10637904703617096, -0.042705319821834564, 0.0863388255238533, -0.09897581487894058, -0.06320226937532425, -0.0876915454864502, 0.0010874909348785877, 0.06313397735357285, -0.09127605706453323, -0.06154247000813484, 0.05811646208167076, -0.10220455378293991, 0.01465611718595028, 0.01459517516195774, 0.07753502577543259, -0.0913514643907547, 0.06306854635477066, 0.012607119977474213, -0.044473230838775635, 0.1524321734905243, 0.12309877574443817, -0.13897860050201416, 0.041065897792577744, -0.2119588404893875, -0.15017342567443848, 0.08904621750116348, 0.04370424523949623, -0.012616146355867386, -0.009886883199214935, -0.03984878212213516, 0.12076882272958755, 0.07110477238893509, -0.027880867943167686, 0.04588186740875244, -0.08161841332912445, 0.03653283417224884, -0.06674966961145401, -0.03055414929986, 0.019528217613697052, 0.021200919523835182, 0.088599793612957, 0.09899484366178513, 0.07583362609148026, -0.03971478343009949, 0.02141665853559971, -0.06533996015787125, 0.08034757524728775, -0.009365643374621868, -0.08404779434204102, -0.019348109140992165, -0.04084864258766174, 0.09752903133630753, -0.03176679462194443, 0.1325068175792694, -0.02981407754123211, -0.00844642985612154, 0.002323195105418563, -0.09048350155353546, 0.020641710609197617, 0.016020825132727623, 0.11334146559238434, 0.06529706716537476, 0.02110513672232628, 0.04676833376288414, -0.08218204975128174, 0.11670166254043579, 0.08584552258253098, 0.03095484897494316, 0.08248946815729141, 0.17920827865600586, 0.1447521448135376, 0.21954137086868286, -0.056602101773023605, 0.007351590320467949, -0.025571277365088463, -0.02803579717874527, 0.06753889471292496, -0.07260499894618988, 0.10728226602077484, 0.2117237001657486, 0.07192015647888184, 0.019162524491548538, -0.009312351234257221, -0.0015401368727907538, -0.15488381683826447, -0.15842857956886292, -0.06734596192836761, -0.17567452788352966, 0.011454102583229542, -0.03151874616742134, 0.02280036360025406, 0.05001867562532425, 0.05940711498260498, -0.01873631402850151, 0.03618406876921654, 0.045686423778533936, -0.07736923545598984, 0.14608916640281677, -0.09575776755809784, -0.010225174017250538, -0.10490614920854568, -0.058548975735902786, 0.1226569339632988, 0.027322066947817802, 0.051533039659261703, 0.022378941997885704, -0.11611797660589218, 0.03070177137851715, -0.0732341855764389, -0.08984994888305664, 0.006557056680321693, -0.05968299135565758, 0.05054408311843872, 0.07538861781358719, 0.07431762665510178, -0.06421834975481033, 0.03919316083192825, 0.0794186145067215, -0.07880532741546631, -0.09836997836828232, -0.03990912809967995, -0.002791273407638073, -0.01711174100637436, 0.08955252170562744, -0.11064814776182175, -0.061102792620658875, -0.054350465536117554, 0.27456024289131165, 0.24491390585899353, -0.06190568208694458, 0.05011019855737686, -0.08226951211690903, 0.026087770238518715, -0.036189571022987366, -0.06465379148721695, 0.1364504098892212, 0.08567861467599869, 0.05071554705500603, -0.021288972347974777, -0.04731040075421333, -0.04247918352484703, -0.06574986129999161, 0.016593849286437035, -0.04441870003938675, -0.07553086429834366, 0.008853181265294552, 0.08709662407636642, -0.09766717255115509, -0.0937810018658638, -0.184288889169693, -0.0969521775841713, -0.07141561061143875, -0.022268978878855705, 0.06471024453639984, 0.16729550063610077, 0.04916338622570038, -0.06525939702987671, -0.07430676370859146, 0.10266835987567902, 0.02679305523633957, -0.15892823040485382, -0.07871661335229874, 0.03280274197459221, -0.21010097861289978, -0.0037902325857430696, -0.03717782720923424, 0.04231281206011772, 0.06596673280000687, 0.09467297047376633, 0.009276047348976135, 0.12245611846446991, 0.0350002646446228, -0.11244705319404602, -0.00894784927368164, 0.14546719193458557, 0.018953153863549232, 0.11325372010469437, 0.013010261580348015, -0.08060964196920395, 0.02593175694346428, -0.01586473360657692, -0.038396403193473816, -0.035941045731306076, 0.02975299395620823, -0.05594725161790848, 0.023398570716381073, -0.009516729973256588, -0.07292287051677704, -0.06716164946556091, 0.01038661040365696, -0.0160581823438406, -0.008793063461780548, -0.13635334372520447, -0.08427242189645767, -0.1978609561920166, -0.013790923170745373, -0.17805598676204681, 0.01598622091114521, -0.06738439947366714, -0.018135417252779007, -0.044607777148485184, -0.028393233194947243, 0.02086135558784008, -0.024501780048012733, 0.11318236589431763, 0.017217107117176056, -0.015624478459358215, -0.14686010777950287, 0.09075513482093811, 0.14578408002853394, -0.1380636841058731, -0.07941319048404694 ]
null
null
null
#sherlock
{"tags": ["conversational"]}
text-generation
Istiaque190515/Sherlock
[ "conversational", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #conversational #region-us
#sherlock
[]
[ "TAGS\n#conversational #region-us \n" ]
[ 10 ]
[ "passage: TAGS\n#conversational #region-us \n" ]
[ 0.04639962688088417, 0.010033470578491688, -0.010517087765038013, -0.09196841716766357, 0.07825888693332672, 0.025966141372919083, 0.0816626027226448, 0.03981694206595421, 0.1679982990026474, -0.043665021657943726, 0.11948301643133163, 0.05959230661392212, -0.03424782678484917, -0.034178510308265686, -0.03257700800895691, -0.1518038958311081, 0.018241867423057556, -0.03490595519542694, 0.09715951234102249, 0.046818334609270096, -0.022061990574002266, -0.08366407454013824, 0.008475017733871937, -0.06431017816066742, -0.04472750052809715, 0.10980460792779922, 0.019003495573997498, -0.011012797243893147, 0.15410423278808594, -0.0074986726976931095, 0.14888158440589905, 0.009007624350488186, -0.1188141256570816, -0.28230994939804077, 0.02435300685465336, -0.021203843876719475, -0.07150904089212418, 0.0029600884299725294, 0.03619120270013809, -0.10715486854314804, 0.004403713159263134, 0.13426031172275543, 0.04114455729722977, 0.10832296311855316, -0.2866811156272888, -0.07511094957590103, -0.01938454620540142, -0.07511914521455765, 0.0601775124669075, 0.018052373081445694, -0.038240283727645874, 0.1376611739397049, -0.2073964774608612, 0.014560118317604065, -0.006958445999771357, -0.24119918048381805, 0.02869522012770176, 0.1752537488937378, 0.009645363315939903, 0.1909479796886444, -0.06857001781463623, 0.11254259198904037, 0.02171272039413452, -0.030739247798919678, -0.2002624124288559, -0.06604453176259995, -0.07298440486192703, 0.1499089151620865, -0.045723117887973785, -0.0578390471637249, 0.34621670842170715, 0.040796760469675064, 0.04295415058732033, 0.07716298848390579, -0.04492316022515297, -0.055111076682806015, 0.04104352369904518, -0.046185605227947235, -0.031033141538500786, 0.15494981408119202, 0.09487586468458176, -0.09688284248113632, -0.14496852457523346, 0.03130095824599266, -0.21760596334934235, 0.1465475857257843, -0.02235398069024086, 0.11142805963754654, -0.2653426229953766, -0.05278157815337181, -0.14670948684215546, -0.002750956919044256, 0.02518310956656933, -0.09457869827747345, -0.04452421888709068, -0.026268228888511658, 0.0005124040762893856, 0.050814010202884674, 0.048315394669771194, 0.07558848708868027, -0.06942778080701828, 0.05394355580210686, -0.06892558932304382, 0.12330366671085358, 0.11638157814741135, 0.05569762736558914, 0.13839077949523926, 0.022933602333068848, -0.11806239187717438, -0.17838133871555328, -0.019715335220098495, -0.0601036474108696, -0.10126364231109619, 0.08322658389806747, -0.1737145632505417, 0.1338171660900116, 0.0012900691945105791, -0.049971867352724075, -0.12574702501296997, 0.08353690057992935, -0.10762350261211395, 0.015366755425930023, -0.07289839535951614, 0.014196229167282581, 0.014544172212481499, 0.09311159700155258, -0.14271733164787292, 0.045371901243925095, 0.08196624368429184, 0.008659054525196552, -0.10070403665304184, -0.020334109663963318, -0.061532121151685715, 0.07091420143842697, 0.0486479289829731, -0.06415147334337234, 0.032452572137117386, -0.09036554396152496, -0.024567680433392525, -0.027267752215266228, -0.025782402604818344, -0.021218160167336464, 0.07835555076599121, -0.055066075176000595, 0.09253078699111938, -0.04640072211623192, -0.041711848229169846, -0.11547397822141647, -0.08965431153774261, 0.08147980272769928, 0.027172693982720375, 0.06959657371044159, -0.12756861746311188, 0.02954922616481781, -0.07777036726474762, 0.09570813924074173, -0.006574113853275776, -0.0012808392057195306, 0.004620495717972517, 0.1427043229341507, 0.08222948759794235, 0.09464042633771896, -0.22559843957424164, 0.03648834675550461, -0.12657727301120758, 0.24771882593631744, -0.12381736189126968, -0.044696640223264694, 0.2730959355831146, -0.02501245029270649, -0.1168116107583046, 0.06332620233297348, 0.0016639905516058207, 0.08099539577960968, 0.11538345366716385, 0.41944384574890137, -0.22503520548343658, -0.10161785036325455, 0.09927807748317719, 0.24778489768505096, -0.14139696955680847, -0.0006701856036670506, 0.06758461147546768, -0.15533412992954254, -0.136672705411911, -0.006923824083060026, 0.1993810385465622, 0.04563012346625328, -0.09049045294523239, -0.0581219419836998, 0.07278088480234146, 0.00251517235301435, 0.13227328658103943, 0.04847939684987068, 0.010761215351521969, -0.09316329658031464, 0.046553950756788254, -0.037219900637865067, 0.036988820880651474, 0.1257375329732895, -0.011618656106293201, -0.05261800438165665, 0.03806666284799576, 0.013964165933430195, 0.033028051257133484, -0.1064353734254837, -0.12926249206066132, -0.05708497390151024, 0.1741386204957962, 0.1096852496266365, 0.20943976938724518, 0.08182037621736526, -0.12570415437221527, 0.0029703727923333645, 0.045532144606113434, 0.05547904968261719, 0.04228522256016731, 0.019039174541831017, -0.04716009274125099, 0.13804899156093597, -0.0858609527349472, 0.010859129019081593, -0.09182798862457275, -0.042282480746507645, 0.13651718199253082, 0.041210491210222244, 0.07498065382242203, -0.010899536311626434, 0.015351326204836369, 0.028546204790472984, 0.08829564601182938, -0.004360926803201437, 0.10361789911985397, -0.01836715266108513, -0.07148222625255585, 0.15339210629463196, -0.13760370016098022, 0.13399995863437653, 0.11577713489532471, -0.25445905327796936, 0.024489950388669968, -0.16331978142261505, -0.048566605895757675, -0.0037442597094923258, 0.09262824058532715, -0.07037632167339325, 0.1059286817908287, 0.009663842618465424, -0.008387367241084576, -0.007202888373285532, 0.011079453863203526, -0.11152531206607819, -0.05292370170354843, -0.10301605612039566, 0.10126874595880508, 0.05541692301630974, -0.14166110754013062, 0.16527962684631348, 0.3414488136768341, 0.17333562672138214, 0.27744242548942566, -0.057956866919994354, -0.03626478835940361, 0.010029622353613377, -0.00044385663932189345, -0.09770774841308594, 0.09110020101070404, -0.31978389620780945, -0.03541385754942894, 0.02267313003540039, 0.007412234786897898, 0.1255423128604889, -0.13101543486118317, -0.09881267696619034, -0.010800042189657688, 0.025675276294350624, -0.03900112956762314, 0.03929384797811508, -0.014210461638867855, 0.08690384775400162, 0.0927920937538147, -0.036249399185180664, 0.14510478079319, -0.011207361705601215, -0.05273498222231865, 0.03845807909965515, -0.19859567284584045, -0.2588069438934326, -0.03773140534758568, -0.13656504452228546, -0.0028873272240161896, 0.04133884236216545, 0.03800595924258232, -0.1847713142633438, -0.0074713281355798244, 0.11246740072965622, 0.11249840259552002, -0.2133566290140152, -0.06725399941205978, -0.004905305802822113, 0.07729097455739975, -0.13444942235946655, -0.017578812316060066, -0.031222449615597725, -0.08281540870666504, -0.04920298978686333, 0.03066551499068737, -0.13418962061405182, 0.06677845120429993, 0.2178623527288437, 0.12527887523174286, 0.049752127379179, -0.0385160967707634, 0.16139256954193115, -0.15277819335460663, -0.1438697725534439, 0.042516376823186874, -0.07740364223718643, 0.05806797742843628, 0.21390840411186218, 0.032026711851358414, -0.07256529480218887, -0.0132212582975626, -0.012072612531483173, -0.07205180823802948, -0.24367475509643555, -0.10030107945203781, -0.09424323588609695, 0.19197365641593933, -0.0990254282951355, 0.03203873708844185, 0.14764715731143951, -0.06457089632749557, 0.08433501422405243, -0.19763901829719543, -0.010215999558568, 0.01770659349858761, 0.22750094532966614, -0.15916487574577332, 0.00014442045358009636, -0.04882880300283432, -0.05247480422258377, 0.09052883088588715, 0.11802905797958374, -0.02051357924938202, 0.273624449968338, 0.16127364337444305, 0.06911300867795944, 0.07706662267446518, 0.10484999418258667, -0.04469823092222214, 0.0611993744969368, -0.05855664238333702, -0.006833828054368496, 0.004713037051260471, -0.047871965914964676, 0.016841065138578415, 0.2382238805294037, -0.24595330655574799, 0.03640567511320114, -0.16953878104686737, 0.13202151656150818, -0.11020241677761078, 0.08590279519557953, 0.07235612720251083, 0.0316399447619915, 0.1150963231921196, 0.030863238498568535, -0.08577798306941986, 0.16981296241283417, 0.10846661031246185, -0.12081541866064072, -0.06076256185770035, 0.06473146378993988, 0.08517883718013763, -0.04448635131120682, 0.12020564824342728, -0.21790917217731476, -0.14890499413013458, 0.02830875851213932, 0.09715487062931061, -0.20258614420890808, 0.30610308051109314, 0.03891199454665184, -0.15730910003185272, -0.0673779845237732, -0.12655381858348846, -0.05232610926032066, 0.05670171231031418, 0.10477700084447861, 0.042930278927087784, -0.0985770970582962, -0.04290907457470894, 0.04275950416922569, -0.004747000988572836, 0.19975899159908295, 0.003670648904517293, -0.15413632988929749, -0.04198495298624039, 0.03424621373414993, -0.06237080693244934, -0.0023813066072762012, 0.003565198974683881, -0.1303248107433319, 0.024640655145049095, 0.050463344901800156, -0.016641467809677124, 0.040866199880838394, 0.10756327211856842, -0.014962024055421352, 0.07353220880031586, 0.038472678512334824, 0.04593467339873314, -0.07964198291301727, -0.15523113310337067, 0.016211804002523422, -0.023164959624409676, -0.022165657952427864, -0.09395032376050949, -0.08139438927173615, -0.13410617411136627, -0.09676485508680344, 0.10384535789489746, -0.06187068298459053, 0.1079651489853859, -0.04443218186497688, 0.22777260839939117, -0.01876998320221901, 0.0707821175456047, -0.0014519646065309644, 0.017383376136422157, -0.04173330217599869, -0.05079682916402817, 0.13796241581439972, -0.16388940811157227, 0.03631523996591568, 0.1287132054567337, 0.020674366503953934, -0.011654446832835674, -0.020724603906273842, -0.10179019719362259, 0.2584770619869232, 0.2532082200050354, 0.008431713096797466, 0.20354236662387848, 0.2779310643672943, -0.03405376151204109, -0.23847854137420654, -0.06443439424037933, -0.24608860909938812, -0.10001913458108902, 0.11060019582509995, -0.17335651814937592, 0.048826683312654495, 0.04266653582453728, -0.057426001876592636, 0.15894554555416107, -0.26584717631340027, 0.018543260172009468, 0.16676761209964752, -0.08710185438394547, 0.556063711643219, -0.08401168882846832, -0.1706315577030182, 0.028705457225441933, -0.11849171668291092, 0.1369921863079071, -0.059715449810028076, 0.05587036535143852, 0.06141930818557739, 0.1030082255601883, 0.0791819840669632, 0.024286393076181412, 0.2086247056722641, -0.030721409246325493, -0.011694102548062801, -0.08707722276449203, -0.2644178867340088, 0.022543715313076973, 0.014050757512450218, -0.15220579504966736, 0.06714692711830139, -0.03763264790177345, -0.12996013462543488, -0.00833086110651493, -0.09469889849424362, -0.03442717716097832, 0.05498296394944191, -0.05582961067557335, -0.04872966185212135, -0.02503621205687523, -0.12678851187229156, 0.0248456709086895, 0.2782087028026581, -0.12460757046937943, 0.20962512493133545, 0.03189510107040405, 0.0826069712638855, -0.11556048691272736, -0.040044378489255905, -0.08514855802059174, -0.04452597722411156, 0.06780480593442917, -0.04552831873297691, 0.01640397682785988, 0.13416710495948792, -0.0347602553665638, 0.11645430326461792, 0.054678838700056076, -0.04116342216730118, 0.0018401920096948743, 0.12186210602521896, -0.19740338623523712, -0.20969319343566895, -0.04371960833668709, 0.03845932334661484, 0.13964368402957916, 0.008396233431994915, 0.07325775921344757, 0.15447303652763367, -0.012220986187458038, 0.017707353457808495, 0.0063921562395989895, -0.10938490182161331, -0.10873667150735855, 0.054379791021347046, 0.013983300887048244, -0.09227976948022842, 0.18084652721881866, 0.03675472363829613, -0.22814933955669403, -0.07893285900354385, 0.202446848154068, -0.030374113470315933, -0.05819692462682724, -0.21532276272773743, 0.09139268845319748, -0.01710049994289875, -0.04101932793855667, 0.09945792704820633, -0.04600068926811218, -0.011849126778542995, 0.2088441699743271, 0.005288805812597275, 0.11521650105714798, 0.02289087511599064, -0.014231379143893719, 0.18881471455097198, -0.05520625784993172, -0.1449955552816391, -0.09115351736545563, -0.029631074517965317, -0.0884295105934143, -0.029015889391303062, 0.16390375792980194, -0.09958739578723907, -0.19185857474803925, -0.27840521931648254, 0.10097097605466843, -0.09882879257202148, -0.14626872539520264, -0.06603177636861801, -0.08046457916498184, 0.06351024657487869, 0.0007621019030921161, -0.021881122142076492, -0.08205366134643555, -0.1492452621459961, 0.13080784678459167, 0.1057455912232399, 0.08206558227539062, -0.016450341790914536, 0.016596172004938126, 0.19690342247486115, 0.026534590870141983, 0.14594069123268127, 0.17451751232147217, -0.05074344202876091, 0.15319328010082245, -0.20988412201404572, -0.07780496776103973, 0.11590725928544998, -0.025719670578837395, 0.04735324904322624, 0.19499944150447845, -0.11897840350866318, -0.006798566784709692, 0.019707852974534035, 0.05558319017291069, -0.0690290778875351, -0.07785819470882416, 0.07048150897026062, 0.04877069592475891, -0.25241997838020325, -0.007160451728850603, -0.17783494293689728, 0.10817551612854004, -0.04739189147949219, -0.0037109223194420338, 0.0740538164973259, 0.08902791887521744, 0.06466685980558395, 0.05149034038186073, 0.03837009146809578, -0.11509545892477036, 0.045814137905836105, -0.08034229278564453, 0.009427596814930439, -0.0007844272186048329, 0.3414205014705658, -0.04865121468901634, -0.012500427663326263, 0.060768552124500275, 0.13266195356845856, -0.040937576442956924, -0.004120932426303625, 0.07744668424129486, 0.11807578802108765, -0.07814747095108032, -0.13197903335094452, 0.0416797399520874, -0.044970154762268066, -0.03262122720479965, 0.10802089422941208, 0.04302893206477165, 0.08631748706102371, 0.037648510187864304, -0.020762383937835693, -0.009974390268325806, 0.06859339028596878, -0.17212650179862976, 0.037296079099178314, -0.045919448137283325, -0.1130448579788208, 0.08897913247346878, 0.16728170216083527, -0.00013685932208318263, 0.05126078054308891, -0.09991825371980667, -0.01692856475710869, -0.12863412499427795, -0.03461017832159996, 0.042484767735004425, -0.11316732317209244, 0.051238011568784714, -0.04773739352822304, 0.047609876841306686, 0.19828583300113678, 0.02608226239681244, -0.07328592985868454, 0.11490452289581299, -0.07990892231464386, -0.14335277676582336, -0.0557478666305542, 0.0005818892968818545, 0.15513694286346436, -0.12246192991733551, -0.07545425742864609, -0.12798281013965607, -0.088837631046772, -0.08355767279863358, 0.0524747408926487, -0.04950229078531265, -0.11297126859426498, -0.17672379314899445, -0.03879760950803757, -0.02510312758386135, 0.11135838180780411, -0.112035371363163, 0.23329482972621918, -0.01199720986187458, 0.05557756870985031, 0.02991287223994732, 0.24918290972709656, -0.022521326318383217, 0.10415615141391754, -0.02151179313659668, 0.05253418907523155, -0.10356061160564423, 0.14413990080356598, -0.0780073031783104, -0.022134484723210335, -0.07592874020338058, 0.26220473647117615, 0.24513402581214905, -0.07298863679170609, -0.015757491812109947, -0.050771016627550125, 0.0689423605799675, 0.1046677827835083, 0.06776474416255951, 0.01116007100790739, 0.30758199095726013, -0.07274506241083145, 0.028703520074486732, 0.05941295251250267, 0.025450630113482475, -0.009023242630064487, -0.00031586099066771567, 0.07820562273263931, -0.02096210978925228, -0.08039145916700363, 0.15984933078289032, -0.2520323693752289, 0.12485187500715256, -0.00880131684243679, -0.2363835871219635, -0.03988468647003174, -0.07471023499965668, 0.1589323729276657, -0.03234702721238136, 0.1501270979642868, -0.02978230081498623, -0.21741677820682526, -0.12460041046142578, 0.03790215402841568, -0.33398324251174927, -0.20619212090969086, 0.13948045670986176, 0.0760318860411644, 0.023805538192391396, -0.021741479635238647, 0.025529982522130013, 0.0032104600686579943, 0.04961394891142845, 0.03460799530148506, 0.02477840706706047, 0.08047868311405182, -0.07015020400285721, -0.22745169699192047, 0.017628446221351624, 0.04063417389988899, -0.024304617196321487, 0.08310901373624802, -0.1729861944913864, -0.011919168755412102, 0.1467619687318802, -0.04285425320267677, 0.047341711819171906, 0.06456191837787628, -0.14956869184970856, 0.022001322358846664, 0.02662065252661705, 0.04635908454656601, -0.03859921917319298, 0.035746656358242035, -0.052021801471710205, 0.009805927984416485, -0.16483484208583832, -0.14164559543132782, 0.07857505232095718, -0.07611528784036636, 0.14186875522136688, -0.05144434794783592, -0.03638307377696037, 0.02091086283326149, 0.01707182452082634, 0.19947703182697296, -0.05914916470646858, 0.018417075276374817, 0.1404166966676712, 0.018141740933060646, 0.03283080831170082, -0.22961781919002533, 0.11031536012887955, 0.013199768029153347, -0.014010419137775898, -0.01816931739449501 ]
null
null
transformers
#harry_bot
{"tags": ["conversational"]}
text-generation
Istiaque190515/harry_bot_discord
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#harry_bot
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
#harry_potter
{"tags": ["conversational"]}
text-generation
Istiaque190515/harry_potter
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
#harry_potter
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
# Tohru DialoGPT model
{"tags": ["conversational"]}
text-generation
ItoYagura/DialoGPT-medium-tohru
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Tohru DialoGPT model
[ "# Tohru DialoGPT model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Tohru DialoGPT model" ]
[ 51, 8 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Tohru DialoGPT model" ]
[ -0.01709621399641037, 0.03250964730978012, -0.00497213052585721, 0.01048628892749548, 0.1560472697019577, 0.02115590125322342, 0.16008637845516205, 0.1615598499774933, -0.025013191625475883, -0.015615839511156082, 0.09047058969736099, 0.13441920280456543, 0.028767025098204613, 0.10986929386854172, -0.05632030591368675, -0.3535804748535156, 0.06495098769664764, 0.034212514758110046, 0.021139467135071754, 0.11725467443466187, 0.08200818300247192, -0.019335726276040077, 0.10304675996303558, -0.002308337250724435, -0.12290521711111069, 0.015800200402736664, 0.009109227918088436, -0.12993644177913666, 0.09271310269832611, 0.050603240728378296, 0.0172602329403162, 0.0038808134850114584, -0.03797983378171921, -0.14253105223178864, 0.03884626179933548, -0.026014667004346848, -0.055855121463537216, 0.03906962275505066, 0.024382764473557472, -0.09306854009628296, 0.15492378175258636, 0.08203995227813721, -0.016873443499207497, 0.03778896480798721, -0.16017940640449524, 0.05118372291326523, 0.01302091684192419, 0.0591144785284996, 0.05617772042751312, 0.08447276055812836, -0.04664438217878342, 0.09969935566186905, -0.06532890349626541, 0.1063043624162674, 0.055909279733896255, -0.31621333956718445, -0.024924807250499725, 0.1260686069726944, 0.04266129434108734, 0.08543680608272552, -0.052550170570611954, 0.07016175985336304, 0.010875225998461246, 0.009006413631141186, -0.061446622014045715, -0.10317928344011307, -0.08699223399162292, 0.008257177658379078, -0.10212943702936172, -0.013514900580048561, 0.2332543283700943, -0.046409182250499725, 0.060732048004865646, -0.0426228903234005, -0.11276660859584808, -0.02447499707341194, -0.05486513674259186, -0.045132506638765335, -0.08425410091876984, 0.10314826667308807, 0.01268130075186491, -0.10358026623725891, -0.12719330191612244, -0.03744253143668175, -0.15892279148101807, 0.17718850076198578, 0.03546883538365364, 0.04206560552120209, -0.21015550196170807, 0.07790535688400269, 0.005402761977165937, -0.10596582293510437, 0.019900819286704063, -0.08628451824188232, -0.027722157537937164, 0.008844939060509205, -0.029806483536958694, -0.05898965522646904, 0.07776321470737457, 0.08952793478965759, 0.012239443138241768, 0.032954588532447815, -0.02923969179391861, 0.0372653603553772, 0.05414820462465286, 0.05209856107831001, -0.03805973380804062, -0.06953756511211395, 0.02309677191078663, -0.07264108210802078, 0.0023096194490790367, -0.05620940402150154, -0.16603325307369232, -0.04883826896548271, 0.06286580115556717, 0.04139487445354462, 0.02877454087138176, 0.13330063223838806, 0.015218239277601242, -0.056522924453020096, 0.025230737403035164, -0.036990050226449966, -0.02238762006163597, 0.01178343128412962, 0.004690570291131735, 0.1555398404598236, 0.008248427882790565, 0.028474919497966766, -0.10892504453659058, 0.013519905507564545, -0.06417863816022873, 0.012490589171648026, -0.006714597810059786, -0.02070317044854164, -0.002486608223989606, -0.0286568570882082, -0.01567840948700905, -0.1399032324552536, -0.1991003155708313, 0.005914590787142515, -0.004134784452617168, -0.06053449958562851, -0.06430930644273758, -0.1008622944355011, -0.010557002387940884, 0.05435500666499138, -0.06617375463247299, -0.04959440231323242, -0.057454753667116165, 0.09000062942504883, -0.012749656103551388, 0.08984896540641785, -0.08924535661935806, 0.08490081131458282, -0.0899648517370224, -0.032113008201122284, -0.11454014480113983, 0.10543473064899445, 0.008978443220257759, 0.05189943313598633, -0.02646094188094139, -0.011790172196924686, -0.11853767931461334, 0.06125578656792641, -0.047386907041072845, 0.2670668661594391, -0.08225658535957336, -0.10411040484905243, 0.308113694190979, -0.10444162040948868, -0.10395874083042145, 0.14308622479438782, 0.003899991512298584, 0.12208973616361618, 0.11454306542873383, 0.17981919646263123, 0.005714898928999901, 0.010832028463482857, 0.05484498664736748, 0.07807162404060364, -0.09726226329803467, 0.0012660083593800664, 0.031232837587594986, -0.00009330042666988447, -0.07621084153652191, 0.021884799003601074, 0.11091390997171402, 0.05337012931704521, -0.051350388675928116, -0.034220658242702484, -0.018152819946408272, 0.018666457384824753, 0.07087663561105728, -0.033887796103954315, 0.1357692927122116, -0.0012585468357428908, -0.047242194414138794, 0.018021589145064354, 0.06090707331895828, -0.061597153544425964, 0.04799005761742592, -0.08375845849514008, 0.09592954069375992, -0.06427330523729324, 0.05473388358950615, -0.14043454825878143, -0.004612964112311602, -0.022760463878512383, 0.1710139960050583, 0.08712789416313171, 0.13605989515781403, 0.06948663294315338, -0.044450484216213226, -0.01816401816904545, 0.033273112028837204, 0.1522061824798584, -0.018943151459097862, -0.0582844503223896, -0.08719920367002487, 0.11188603937625885, -0.07146131247282028, 0.07855387032032013, -0.05790788680315018, 0.002325478009879589, 0.021204853430390358, 0.11567019671201706, -0.003971640020608902, 0.05213803052902222, 0.04614754766225815, -0.015161346644163132, -0.03769853711128235, 0.010186160914599895, 0.0869244933128357, -0.008982699364423752, -0.07922114431858063, 0.22196859121322632, -0.1785763055086136, 0.13588231801986694, 0.16743586957454681, -0.21823592483997345, -0.0037671681493520737, -0.09927859902381897, -0.025961395353078842, -0.011949554085731506, 0.06632442027330399, -0.04109780862927437, 0.18610364198684692, -0.01333539467304945, 0.1731746345758438, -0.038639605045318604, 0.009942134842276573, -0.009931432083249092, -0.07133965939283371, 0.006647954694926739, 0.05439369007945061, 0.11246330291032791, -0.2019621580839157, 0.17026293277740479, 0.06120821461081505, 0.04001329094171524, 0.23653535544872284, 0.025080736726522446, -0.03702281787991524, 0.04171231761574745, 0.03492511808872223, -0.05188126489520073, -0.07500598579645157, -0.26519060134887695, -0.03704088553786278, 0.06406823545694351, 0.06660456955432892, 0.1137145608663559, -0.08362141251564026, -0.019719351083040237, -0.03493483364582062, -0.03254951164126396, 0.07044755667448044, 0.15871742367744446, 0.014634020626544952, 0.1283074915409088, -0.015895571559667587, -0.07667185366153717, 0.050803665071725845, 0.0078044733963906765, -0.08240915834903717, 0.16637611389160156, -0.11933963745832443, -0.38280588388442993, -0.1321592628955841, -0.18704023957252502, -0.06520542502403259, 0.047674525529146194, 0.08922754228115082, -0.11746473610401154, -0.011496923863887787, 0.015413906425237656, 0.08303338289260864, -0.08456703275442123, 0.017885757610201836, -0.07519849389791489, 0.00033426331356167793, -0.124847911298275, -0.08483923971652985, -0.050803374499082565, -0.050973039120435715, -0.10546355694532394, 0.12148214131593704, -0.16094206273555756, 0.01266690157353878, 0.21230311691761017, 0.060167644172906876, 0.055178917944431305, -0.040057916194200516, 0.17741993069648743, -0.10770322382450104, 0.023140303790569305, 0.2084440439939499, -0.042408816516399384, 0.08010770380496979, 0.1604578197002411, -0.018557367846369743, -0.06966560333967209, 0.03219228982925415, -0.03176579996943474, -0.03909856081008911, -0.20245742797851562, -0.12038453668355942, -0.13501857221126556, 0.10508599877357483, 0.002007655566558242, 0.06047586724162102, 0.14295674860477448, 0.07105854898691177, -0.034517306834459305, 0.003447636729106307, 0.020060615614056587, 0.08798051625490189, 0.24201305210590363, -0.058043282479047775, 0.1357387751340866, -0.02080288715660572, -0.1743502914905548, 0.09332146495580673, 0.08572792261838913, 0.1206926628947258, 0.08837013691663742, 0.05560943856835365, 0.01944158226251602, 0.020901944488286972, 0.13497155904769897, 0.04935465753078461, 0.01141174416989088, -0.017629263922572136, -0.05927448347210884, -0.04333692789077759, -0.03959771990776062, 0.07331578433513641, 0.06458564847707748, -0.14218448102474213, -0.01573846861720085, -0.016698192805051804, 0.06994924694299698, 0.0529368594288826, 0.0955585315823555, -0.13781501352787018, -0.01823446713387966, 0.0721726045012474, -0.06797691434621811, -0.10654694586992264, 0.06846077740192413, 0.016271471977233887, -0.13818615674972534, 0.04280318319797516, -0.047821223735809326, 0.08944959193468094, -0.08459105342626572, 0.07272224873304367, -0.12003708630800247, -0.05555339902639389, -0.004586832597851753, 0.10222501307725906, -0.28584161400794983, 0.22419054806232452, 0.006695591378957033, -0.04833891987800598, -0.09695128351449966, 0.004015697166323662, 0.054495010524988174, 0.1127224788069725, 0.08717991411685944, -0.01566265895962715, 0.01652311533689499, 0.015745924785733223, -0.09204893559217453, 0.045715149492025375, 0.11713960021734238, -0.013984153978526592, -0.01568293198943138, -0.051198847591876984, -0.004942400846630335, -0.02007964439690113, -0.055754367262125015, -0.004834297113120556, -0.13728895783424377, 0.1163281500339508, 0.06021065264940262, 0.0806783065199852, 0.045719485729932785, -0.04328088089823723, -0.057698868215084076, 0.22371789813041687, 0.061976052820682526, -0.07200898230075836, -0.0870777890086174, -0.04239998012781143, 0.09021161496639252, -0.08144152909517288, 0.03607471287250519, -0.07035337388515472, -0.0023327942471951246, -0.029900845140218735, -0.1733854115009308, 0.09433882683515549, -0.08046164363622665, -0.05004355311393738, -0.021173439919948578, 0.19057974219322205, -0.031075334176421165, 0.007700455375015736, 0.0264656450599432, 0.001145319314673543, -0.1059466004371643, -0.08968943357467651, -0.015873270109295845, 0.03410129249095917, 0.014466687105596066, 0.07066435366868973, -0.04932723194360733, -0.1034352257847786, -0.056608185172080994, -0.017796022817492485, 0.30342260003089905, 0.12945865094661713, -0.011957024224102497, 0.17660517990589142, 0.15455621480941772, -0.053203754127025604, -0.27045994997024536, -0.12569773197174072, -0.08621266484260559, -0.013897156342864037, -0.06957444548606873, -0.18779943883419037, 0.04512113705277443, -0.06400030106306076, -0.029343461617827415, 0.07420055568218231, -0.258890837430954, -0.08596532046794891, 0.16412904858589172, -0.010256895795464516, 0.42585739493370056, -0.11864155530929565, -0.07791449129581451, -0.009768462739884853, -0.12031970173120499, 0.15028338134288788, -0.018201539292931557, 0.15436218678951263, -0.027456015348434448, 0.18912605941295624, 0.03978050500154495, 0.007000768557190895, 0.060786835849285126, 0.018897097557783127, -0.06226102262735367, -0.09834340959787369, -0.06647518277168274, -0.004916488192975521, 0.03142198547720909, 0.04588276147842407, -0.05865582078695297, 0.015887051820755005, -0.16665180027484894, -0.046610720455646515, -0.06273074448108673, 0.034494802355766296, 0.03953738510608673, -0.07738387584686279, -0.0017290597315877676, -0.01911812089383602, 0.0026760981418192387, 0.023982392624020576, 0.12838900089263916, -0.09100832045078278, 0.10312264412641525, 0.0934656411409378, 0.11085278540849686, -0.08619438111782074, 0.015418835915625095, -0.07654767483472824, -0.05462096258997917, 0.05862176790833473, -0.11377347260713577, 0.008745833300054073, 0.08430761098861694, -0.050397176295518875, 0.12137440592050552, 0.07401799410581589, -0.01581762172281742, 0.029688138514757156, 0.11376632750034332, -0.22997470200061798, -0.04816540330648422, -0.06610023975372314, -0.046955108642578125, 0.05599198117852211, 0.09805039316415787, 0.21024931967258453, -0.01836746744811535, -0.032433804124593735, 0.013035805895924568, 0.034320201724767685, -0.06783509999513626, 0.06315620243549347, -0.0071115512400865555, -0.0035556782968342304, -0.12933260202407837, 0.0618448331952095, 0.0025169504806399345, -0.07234509289264679, 0.027616819366812706, 0.16231119632720947, -0.11234256625175476, -0.1138715073466301, -0.10740290582180023, 0.12590143084526062, -0.0896836668252945, -0.012917518615722656, -0.039437513798475266, -0.07401143014431, 0.04110797867178917, 0.10310114175081253, 0.04316333681344986, 0.06259048730134964, -0.11213751137256622, -0.0012672203592956066, -0.012768343091011047, -0.007323953788727522, 0.08572284877300262, -0.024526989087462425, -0.06637419015169144, 0.06337826699018478, -0.032714664936065674, 0.13300323486328125, -0.10119124501943588, -0.11492542922496796, -0.15199683606624603, 0.015704752877354622, -0.077028788626194, -0.07191857695579529, -0.13587439060211182, -0.06147536262869835, -0.00930184219032526, -0.05464478209614754, -0.04851904511451721, -0.060119323432445526, -0.10642814636230469, 0.06226229667663574, -0.040602460503578186, 0.029755856841802597, -0.059079453349113464, 0.03064311109483242, 0.06396143138408661, -0.013843851163983345, 0.1642616093158722, 0.16428473591804504, -0.11503810435533524, 0.09803328663110733, -0.12546175718307495, -0.04400777816772461, 0.1058167815208435, 0.01865619793534279, 0.037965744733810425, 0.04821508377790451, 0.01943790353834629, 0.04837961494922638, 0.06760387867689133, 0.04640284925699234, 0.07035939395427704, -0.08388327062129974, 0.06388615071773529, -0.11847654730081558, -0.10442641377449036, -0.03126547113060951, -0.028615016490221024, 0.0323910228908062, 0.04226698353886604, 0.0847233310341835, -0.07292349636554718, 0.09626949578523636, -0.0780898854136467, 0.04615961015224457, 0.011820724233984947, -0.1551591157913208, -0.028033437207341194, -0.11658366024494171, 0.0364486388862133, 0.007179002743214369, 0.1915608048439026, 0.021636372432112694, -0.014831863343715668, 0.001799752120859921, 0.02286340668797493, 0.027172284200787544, -0.03509018197655678, 0.16422726213932037, 0.1460229903459549, -0.04440322518348694, -0.08700592070817947, 0.06375803798437119, 0.02076003886759281, 0.007475052494555712, 0.09184432774782181, -0.027015836909413338, -0.03640224412083626, 0.11149760335683823, 0.009997362270951271, 0.02737993374466896, -0.11235035210847855, -0.1378173679113388, -0.049687765538692474, 0.03251488879323006, -0.05530548468232155, 0.11711546033620834, 0.17346134781837463, -0.0038994529750198126, 0.02364000864326954, 0.0015856969403102994, -0.06602340936660767, -0.18317283689975739, -0.16050617396831512, -0.08066875487565994, -0.15988852083683014, 0.011643631383776665, -0.12281929701566696, 0.05162528157234192, -0.00004486846228246577, 0.08207304775714874, -0.07164662331342697, 0.08819151669740677, 0.02670217677950859, -0.10676361620426178, 0.08369064331054688, -0.0328945592045784, 0.10891470313072205, -0.011727849021553993, -0.021449770778417587, -0.09893330186605453, 0.06444969773292542, 0.02502632327377796, 0.044135916978120804, -0.02028890699148178, 0.02488553710281849, -0.13922692835330963, -0.08007558435201645, -0.06238313019275665, 0.07034344226121902, -0.01378630567342043, 0.16874881088733673, 0.03286069631576538, -0.03817995637655258, 0.03327452391386032, 0.2207740843296051, -0.07315242290496826, -0.08991681039333344, -0.08187814056873322, 0.1984131783246994, -0.004921474494040012, 0.09082711488008499, -0.04127500206232071, -0.012942338362336159, -0.11003953218460083, 0.3590719401836395, 0.28063055872917175, -0.10256340354681015, 0.02623734250664711, 0.03623548522591591, 0.04779459163546562, 0.10845742374658585, 0.10139843076467514, 0.05892660841345787, 0.29385456442832947, -0.06416400521993637, -0.050335027277469635, -0.027360767126083374, -0.044068969786167145, -0.05551673471927643, 0.020857051014900208, 0.04665983095765114, -0.05902085825800896, -0.01635047234594822, 0.11934911459684372, -0.2776642143726349, 0.07602324336767197, -0.1767628937959671, -0.18869665265083313, -0.08371999114751816, 0.00030257776961661875, 0.06891326606273651, 0.05774001404643059, 0.08404664695262909, -0.018674025312066078, -0.08011288195848465, 0.06287386268377304, 0.03202009201049805, -0.1784677356481552, 0.0023444073740392923, 0.0930994525551796, -0.06380736827850342, -0.08784504234790802, -0.012290175072848797, 0.05742580071091652, 0.06651192903518677, 0.06647416204214096, -0.00024541880702599883, 0.040606334805488586, -0.016768552362918854, -0.045649100095033646, 0.02353932149708271, 0.07508563250303268, 0.019966179504990578, -0.10767806321382523, 0.0732930526137352, -0.10667667537927628, 0.037309832870960236, 0.001400506473146379, -0.018899552524089813, -0.01692676916718483, 0.021603401750326157, -0.07296288013458252, 0.0951092541217804, 0.09188826382160187, -0.005061787087470293, -0.0020726032089442015, -0.039542168378829956, -0.0006072530522942543, -0.022448744624853134, -0.10494329035282135, -0.10986816883087158, -0.18903718888759613, -0.13479456305503845, 0.1022474393248558, 0.024479569867253304, -0.15344655513763428, 0.004763657692819834, -0.10072167962789536, 0.06813353300094604, -0.14708930253982544, 0.11592067033052444, 0.03766747936606407, 0.01578848622739315, 0.01284846942871809, -0.00987193826586008, 0.04133506119251251, 0.0851285383105278, -0.16659200191497803, -0.08620350062847137 ]
null
null
transformers
# Pickle Rick DialoGPT Model
{"tags": ["conversational"]}
text-generation
ItzJorinoPlays/DialoGPT-small-PickleRick
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Pickle Rick DialoGPT Model
[ "# Pickle Rick DialoGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Pickle Rick DialoGPT Model" ]
[ 51, 9 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Pickle Rick DialoGPT Model" ]
[ 0.0058993385173380375, 0.1619562804698944, -0.004587709438055754, 0.0385812371969223, 0.11588868498802185, -0.017457257956266403, 0.09316802024841309, 0.15668858587741852, 0.07545545697212219, -0.02798120118677616, 0.14093835651874542, 0.29368025064468384, -0.027022473514080048, 0.1396280825138092, -0.060662053525447845, -0.32904529571533203, 0.06321495771408081, 0.07671381533145905, -0.034521400928497314, 0.12581796944141388, 0.10196451097726822, -0.03163152188062668, 0.07773653417825699, -0.008280466310679913, -0.1559668481349945, -0.0022210367023944855, 0.011594783514738083, -0.08917389810085297, 0.09171605110168457, 0.04315163195133209, 0.02517375908792019, 0.027167772874236107, -0.060092661529779434, -0.13026316463947296, 0.03929268568754196, 0.007671361789107323, -0.04417162016034126, 0.06867704540491104, 0.008285324089229107, -0.07503512501716614, 0.08596473932266235, 0.08800012618303299, 0.009898614138364792, 0.035116441547870636, -0.12044626474380493, 0.01564759388566017, -0.023345310240983963, 0.08170449733734131, 0.05755900219082832, 0.057269178330898285, -0.020680608227849007, 0.1298748254776001, -0.053844012320041656, 0.14535315334796906, 0.13121692836284637, -0.25281015038490295, -0.025971509516239166, 0.14663000404834747, 0.03530444949865341, 0.04637977108359337, -0.03171122819185257, 0.08393704891204834, 0.01036533061414957, -0.023528506979346275, -0.081522136926651, -0.0698234885931015, -0.17471787333488464, 0.032362502068281174, -0.08752668648958206, -0.000162934185937047, 0.2652263045310974, -0.03375345095992088, 0.04847963899374008, -0.08833389729261398, -0.08924433588981628, -0.045371778309345245, -0.05029955133795738, -0.05710778385400772, -0.0649331584572792, 0.059287551790475845, -0.0261569581925869, -0.08958372473716736, -0.07659363746643066, -0.04077419638633728, -0.12047025561332703, 0.20310577750205994, 0.025158246979117393, 0.01060959231108427, -0.1561371088027954, 0.0420084185898304, 0.008616884239017963, -0.07542465627193451, -0.007505746558308601, -0.04265642538666725, -0.0039015640504658222, -0.032300788909196854, -0.018529970198869705, -0.04037284106016159, 0.09366095811128616, 0.09250497817993164, 0.015315008349716663, 0.049070652574300766, -0.06864721328020096, 0.01959678903222084, 0.08221181482076645, 0.025242449715733528, -0.010700326412916183, 0.050066132098436356, -0.0015752939507365227, -0.10591909289360046, -0.018500572070479393, -0.06274815648794174, -0.1668626070022583, 0.005927858874201775, 0.059458907693624496, 0.04085804149508476, 0.046590130776166916, 0.13134393095970154, -0.005633298773318529, -0.07168418914079666, 0.07265260815620422, -0.02112627401947975, -0.03240225091576576, 0.010393179021775723, -0.002702479250729084, 0.12603437900543213, -0.021428145468235016, 0.06602418422698975, -0.0939527228474617, -0.005564493127167225, -0.08638820797204971, -0.009777053259313107, -0.0009475352708250284, -0.052499521523714066, -0.002583494409918785, -0.047065723687410355, 0.00014845095574855804, -0.12080570310354233, -0.20949827134609222, -0.00951287243515253, -0.00690437713637948, -0.056546151638031006, -0.1618029773235321, -0.09912993758916855, -0.007960542105138302, 0.022523632273077965, -0.01786457560956478, -0.06371623277664185, -0.04386352375149727, 0.10283196717500687, -0.08579278737306595, 0.06802897155284882, -0.039671964943408966, 0.07774323225021362, -0.06753021478652954, -0.03952382877469063, -0.1539383828639984, 0.13204719126224518, -0.01215711236000061, 0.08754615485668182, -0.06633497029542923, -0.024492532014846802, -0.09110807627439499, 0.05348900705575943, -0.08458034694194794, 0.23766568303108215, -0.14590497314929962, -0.0984019860625267, 0.23342201113700867, -0.038761675357818604, -0.09964418411254883, 0.1271894872188568, -0.02193457819521427, 0.09766336530447006, 0.12920738756656647, 0.26638728380203247, 0.10445629060268402, 0.022684678435325623, 0.09291891753673553, 0.1438002586364746, -0.09099967777729034, -0.037171900272369385, 0.011973484419286251, -0.03724273666739464, -0.14921912550926208, 0.020951315760612488, 0.05760779231786728, 0.04827747493982315, -0.02330176904797554, -0.006240669637918472, 0.002549842931330204, -0.007153150625526905, 0.07376614958047867, -0.019311092793941498, 0.11387014389038086, -0.020048078149557114, -0.03365037962794304, -0.04371778666973114, 0.04054033383727074, -0.05036790668964386, 0.02289513498544693, -0.07071653008460999, 0.05727434530854225, -0.012974729761481285, 0.042299479246139526, -0.13735051453113556, -0.09735013544559479, -0.009532429277896881, 0.13487239181995392, 0.04192778095602989, 0.0798909068107605, 0.03146982565522194, -0.06744115054607391, 0.05010773986577988, 0.03282007575035095, 0.2262941598892212, -0.010226873680949211, -0.08935389667749405, -0.09492555260658264, 0.08711972087621689, -0.060863591730594635, 0.009226953610777855, -0.05720803141593933, -0.007304414175450802, 0.03557156026363373, 0.1004762127995491, -0.04019083082675934, -0.009387343190610409, 0.025655347853899002, -0.04025714471936226, -0.04147520661354065, -0.01095036044716835, 0.11008654534816742, 0.011473038233816624, -0.04689908027648926, 0.22168554365634918, -0.12869799137115479, 0.10685773938894272, 0.1274925023317337, -0.17383867502212524, -0.01994903013110161, -0.14320646226406097, -0.012550918385386467, 0.006810900755226612, 0.02129124477505684, -0.0222553089261055, 0.2051335573196411, -0.009014936164021492, 0.16195262968540192, -0.04107201471924782, -0.0639914721250534, -0.02925150841474533, -0.03398604691028595, -0.017234163358807564, 0.09069791436195374, 0.08243148028850555, -0.19299864768981934, 0.17240338027477264, -0.01174830086529255, 0.08686590939760208, 0.1845824271440506, 0.025994503870606422, 0.06304411590099335, 0.05657156556844711, 0.06536659598350525, -0.05513831973075867, -0.11848551034927368, -0.21264445781707764, 0.005392975173890591, 0.06092318892478943, 0.03239551931619644, 0.08168546855449677, -0.054205723106861115, -0.03595162183046341, -0.0005732590798288584, -0.030750777572393417, 0.009462516754865646, 0.13684925436973572, 0.008318529464304447, 0.10168953239917755, -0.02004571631550789, -0.058178193867206573, 0.0727427676320076, 0.009895402006804943, -0.06887516379356384, 0.20407508313655853, -0.1265125274658203, -0.3043576776981354, -0.08042750507593155, -0.24734801054000854, -0.02911240980029106, 0.05415266007184982, 0.0861324816942215, -0.15681427717208862, -0.027865415439009666, 0.008793490007519722, 0.011923201382160187, -0.11198054254055023, -0.004918746650218964, -0.029646430164575577, -0.03246663883328438, -0.12929315865039825, -0.1003405898809433, -0.04409944266080856, -0.03464546799659729, -0.04040668532252312, 0.09967022389173508, -0.14567501842975616, -0.01291603222489357, 0.20842044055461884, 0.08145846426486969, 0.07038916647434235, -0.037487320601940155, 0.20477619767189026, -0.07316339015960693, 0.008328374475240707, 0.1635517179965973, -0.03778360038995743, 0.06047655642032623, 0.1257275640964508, -0.005820502992719412, -0.06825295835733414, 0.040019456297159195, -0.015698760747909546, -0.0412236750125885, -0.20728349685668945, -0.12248402833938599, -0.1120738834142685, 0.09471553564071655, 0.07910062372684479, 0.06573032587766647, 0.21120136976242065, 0.08776689320802689, -0.04514183849096298, 0.06485791504383087, 0.04894191771745682, 0.0644625797867775, 0.2707473635673523, -0.07259046286344528, 0.11253365874290466, 0.011623559519648552, -0.15343467891216278, 0.051020510494709015, 0.055223263800144196, 0.07561230659484863, 0.07580104470252991, 0.21182438731193542, -0.014472958631813526, 0.0367954820394516, 0.11827964335680008, 0.07789640128612518, 0.01991073042154312, -0.019446661695837975, -0.04347381740808487, -0.0254607442766428, -0.027989089488983154, 0.012957124039530754, 0.0960448682308197, -0.18107828497886658, 0.012583152391016483, 0.021501202136278152, 0.02593543939292431, 0.09298407286405563, 0.020524082705378532, -0.179819256067276, 0.027830950915813446, 0.05755043402314186, -0.025499291718006134, -0.10845643281936646, 0.08593711256980896, -0.02538434788584709, -0.13137543201446533, 0.018785113468766212, -0.039150170981884, 0.09809329360723495, -0.08765986561775208, 0.058995287865400314, -0.07800676673650742, -0.04816050827503204, -0.01638617552816868, 0.13252319395542145, -0.24168215692043304, 0.17275425791740417, -0.021619943901896477, -0.05688641220331192, -0.08997846394777298, -0.014482101425528526, 0.010080749168992043, 0.03957030177116394, 0.15056663751602173, -0.0066594574600458145, -0.009325491264462471, 0.016450408846139908, -0.07363742589950562, 0.013033195398747921, 0.08612717688083649, -0.07664351910352707, -0.0133766308426857, -0.08208399266004562, 0.002608823124319315, 0.0022308044135570526, -0.09696725010871887, 0.02786606177687645, -0.1663709580898285, 0.09006643295288086, 0.054728638380765915, 0.11423870921134949, 0.03192771226167679, -0.02258547581732273, -0.07055886834859848, 0.2314566969871521, 0.004537861794233322, -0.10297058522701263, -0.12628237903118134, 0.006670661270618439, 0.05771397054195404, -0.07913409173488617, 0.009720549918711185, -0.07962032407522202, 0.05253149941563606, -0.039929237216711044, -0.1687983125448227, 0.10029898583889008, -0.09381435811519623, -0.04212415963411331, -0.023407001048326492, 0.17770633101463318, -0.025441061705350876, -0.002652012510225177, 0.04270473122596741, 0.037245213985443115, -0.08491729944944382, -0.08970969915390015, -0.03011610358953476, -0.06464488804340363, -0.02935124933719635, 0.07574480772018433, -0.04295804724097252, 0.04973316937685013, -0.0787377879023552, -0.0022486187517642975, 0.32607707381248474, 0.14009398221969604, -0.02963980659842491, 0.22657468914985657, 0.08023352921009064, -0.06348711252212524, -0.26392894983291626, -0.140398308634758, -0.03353816270828247, -0.08984290063381195, -0.0459207184612751, -0.23548126220703125, 0.1530275046825409, -0.04426930844783783, -0.02157759480178356, 0.0631156712770462, -0.24130022525787354, -0.08349213004112244, 0.19260439276695251, -0.025778144598007202, 0.43061363697052, -0.07461101561784744, -0.08166572451591492, -0.02757728286087513, -0.12861183285713196, 0.19246847927570343, 0.05775083601474762, 0.09571715444326401, -0.022816278040409088, 0.16579654812812805, 0.06837824732065201, 0.005156153813004494, 0.03685687854886055, 0.04982184246182442, -0.04203634709119797, -0.08357532322406769, -0.12165859341621399, -0.15737086534500122, 0.03258458897471428, 0.01868266426026821, -0.065349280834198, 0.0626922994852066, -0.1271257996559143, -0.04898378252983093, -0.09884925186634064, 0.046945977956056595, 0.03406780585646629, -0.04725346341729164, 0.004668579436838627, -0.04215443506836891, 0.02147863060235977, 0.022945566102862358, 0.2296273112297058, -0.054780326783657074, 0.17888858914375305, 0.01791154220700264, 0.13198918104171753, -0.0757002905011177, -0.11493861675262451, -0.06003217771649361, -0.04145459830760956, 0.04801218956708908, -0.06175670027732849, 0.02200544998049736, 0.07842299342155457, 0.008202793076634407, 0.087114118039608, 0.11483781039714813, 0.0074542127549648285, -0.017749516293406487, 0.05507413670420647, -0.2256474792957306, -0.07865089923143387, -0.0661136656999588, 0.005370344966650009, 0.022652268409729004, 0.013082947582006454, 0.19910287857055664, 0.012391654774546623, -0.04069948196411133, 0.010455277748405933, 0.038765933364629745, 0.02340429276227951, 0.06539138406515121, 0.039739858359098434, 0.036004744470119476, -0.15136489272117615, 0.031361162662506104, 0.021910127252340317, -0.02660786174237728, 0.04703580588102341, 0.12731283903121948, -0.11494383215904236, -0.11393268406391144, -0.014524124562740326, 0.10545110702514648, -0.09152242541313171, 0.028855694457888603, -0.039560992270708084, -0.10328534990549088, 0.07031446695327759, 0.14485794305801392, 0.06466004997491837, 0.07046198844909668, -0.10159176588058472, -0.043476857244968414, -0.057221077382564545, 0.03597358241677284, 0.021519895642995834, -0.018700070679187775, -0.0789683610200882, 0.02850303426384926, -0.06092703342437744, 0.1397363841533661, -0.07559560984373093, -0.09968070685863495, -0.1794380396604538, -0.0069864606484770775, 0.0194862000644207, -0.05742911249399185, -0.0933806449174881, -0.026015382260084152, 0.001588418148458004, -0.02874007076025009, -0.00093829445540905, -0.024410223588347435, -0.11236245930194855, 0.02535727620124817, -0.03653137385845184, 0.03345096483826637, -0.0819447934627533, 0.01867326907813549, 0.07993806153535843, -0.020878633484244347, 0.11647039651870728, 0.10705878585577011, -0.08709436655044556, 0.09975379705429077, -0.16777752339839935, -0.06759338080883026, 0.08623769879341125, 0.020343896001577377, 0.025853294879198074, 0.0008502770215272903, 0.008564434945583344, 0.026506302878260612, 0.06669393181800842, 0.03105955943465233, 0.05682208389043808, -0.09290866553783417, 0.024626566097140312, -0.08708344399929047, -0.09172607213258743, -0.08246500045061111, -0.026453781872987747, 0.004742349497973919, 0.06040501594543457, 0.12181392312049866, -0.04216815531253815, 0.07811149209737778, -0.04875222221016884, 0.025668252259492874, 0.00814452487975359, -0.17905527353286743, -0.0252552293241024, -0.048963941633701324, 0.040451161563396454, 0.01221546158194542, 0.1346043348312378, 0.059246309101581573, -0.10409330576658249, 0.03695043921470642, 0.08198054134845734, 0.03934842348098755, -0.023521751165390015, 0.20487447082996368, 0.10252969712018967, -0.03863285109400749, -0.05631063133478165, 0.07866846024990082, 0.03741810470819473, -0.004008843097835779, 0.09066407382488251, -0.009370210580527782, -0.12897494435310364, 0.03742879629135132, -0.026176609098911285, -0.029477084055542946, -0.06433921307325363, -0.06758162379264832, -0.04266534373164177, 0.03844607621431351, -0.002260200446471572, 0.12513467669487, 0.10643286257982254, -0.02939715050160885, 0.029996713623404503, 0.026119908317923546, -0.0626700147986412, -0.21140682697296143, -0.19872358441352844, -0.09302785992622375, -0.1489015519618988, 0.015862541273236275, -0.1426301896572113, 0.08218356966972351, 0.05705731362104416, 0.06612300872802734, -0.004392270464450121, 0.03720344975590706, 0.0012386804446578026, -0.09755164384841919, 0.05834505334496498, -0.06159573793411255, 0.04834617301821709, -0.048831358551979065, -0.0010317061096429825, -0.0868586003780365, 0.03777875378727913, 0.010687778703868389, 0.017999708652496338, -0.015305832959711552, 0.028873784467577934, -0.12865042686462402, -0.11963684856891632, -0.05817703902721405, 0.033665187656879425, -0.024925190955400467, 0.1345517784357071, 0.025420941412448883, -0.02768510766327381, 0.024296915158629417, 0.23714593052864075, -0.039117731153964996, -0.058524440973997116, -0.05845203250646591, 0.1638999879360199, 0.03384474292397499, 0.0646592527627945, -0.014833472669124603, 0.02441597543656826, -0.05725857987999916, 0.32993292808532715, 0.23477110266685486, -0.05748286843299866, 0.02130132168531418, -0.017397046089172363, 0.0353742390871048, 0.18674492835998535, 0.11825889348983765, 0.09040585905313492, 0.2579461634159088, -0.07512740045785904, -0.009630825370550156, -0.006932802964001894, -0.04944128915667534, -0.11401350796222687, -0.020312508568167686, 0.07770278304815292, -0.0692402720451355, 0.001985257025808096, 0.13597141206264496, -0.26467692852020264, 0.09494927525520325, -0.15388475358486176, -0.11968517303466797, -0.052025988698005676, -0.04701850563287735, 0.0756668746471405, 0.014131045900285244, 0.08472657948732376, -0.02845834195613861, -0.08107288181781769, 0.09847420454025269, 0.016823993995785713, -0.25171440839767456, 0.022406768053770065, 0.07454883307218552, -0.03846339136362076, -0.03355355188250542, -0.020877519622445107, 0.08412244915962219, 0.057069726288318634, 0.007685428950935602, -0.020370488986372948, 0.003955297637730837, -0.02796817198395729, -0.06616200506687164, 0.0536954328417778, 0.046934980899095535, 0.01222646702080965, -0.06546832621097565, 0.05421752110123634, -0.16331255435943604, 0.02677500620484352, 0.029947074130177498, -0.013463260605931282, -0.022783612832427025, 0.033932872116565704, -0.07838812470436096, 0.0838930681347847, 0.1018618643283844, -0.019496571272611618, -0.015890222042798996, -0.026159219443798065, -0.036621324717998505, -0.0044233547523617744, -0.07234358787536621, -0.09454478323459625, -0.1775694489479065, -0.14917884767055511, 0.022916661575436592, -0.015957890078425407, -0.15450972318649292, 0.015395762398838997, -0.1583821326494217, 0.026083122938871384, -0.11309610307216644, 0.1017133817076683, 0.08734823763370514, 0.018606944009661674, -0.0008142292499542236, 0.1328551173210144, 0.011255539953708649, 0.07267436385154724, -0.12730030715465546, -0.08182208985090256 ]
null
null
transformers
# Thor DialogGPT Model
{"tags": ["conversational"]}
text-generation
J-Chiang/DialoGPT-small-thor
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
# Thor DialogGPT Model
[ "# Thor DialogGPT Model" ]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "# Thor DialogGPT Model" ]
[ 51, 6 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Thor DialogGPT Model" ]
[ -0.005856621079146862, 0.04284031689167023, -0.004534080158919096, 0.06394263356924057, 0.11545960605144501, -0.007892575114965439, 0.1859910935163498, 0.09923907369375229, 0.01756756193935871, -0.03802919760346413, 0.14074701070785522, 0.1699994057416916, 0.01821916550397873, 0.03409187123179436, -0.044527750462293625, -0.3213210105895996, 0.0446368046104908, 0.017343731597065926, -0.02834700047969818, 0.1075291559100151, 0.06840056926012039, -0.034956566989421844, 0.06281977146863937, -0.011058809235692024, -0.07107068598270416, 0.001856509828940034, 0.027122698724269867, -0.08688952028751373, 0.1317024827003479, 0.054408762603998184, 0.013431292958557606, 0.03832397609949112, -0.03740428015589714, -0.11383805423974991, 0.053852103650569916, -0.04804184287786484, -0.039538413286209106, 0.07279234379529953, -0.0023527408484369516, -0.08105991780757904, 0.14026618003845215, 0.11997546255588531, 0.005008439999073744, 0.05453754588961601, -0.1006583645939827, 0.022239189594984055, 0.02976381406188011, 0.09469208866357803, 0.032226286828517914, 0.0858982652425766, -0.016001690179109573, 0.07225396484136581, -0.058897651731967926, 0.08722686767578125, 0.1285191923379898, -0.390220046043396, -0.050868306308984756, 0.26251834630966187, 0.12447724491357803, 0.1407976746559143, -0.08077177405357361, 0.12170516699552536, 0.023073814809322357, 0.05166158452630043, 0.05013230815529823, -0.05987228825688362, -0.16944798827171326, 0.05360199138522148, -0.10336289554834366, 0.05568493530154228, 0.277228444814682, -0.06100120767951012, 0.06565330177545547, -0.08762623369693756, -0.08136828243732452, -0.0799003541469574, 0.0021528347861021757, -0.07307461649179459, -0.0612066350877285, 0.06028866022825241, -0.008307049050927162, -0.12251812219619751, -0.11216915398836136, -0.04802480712532997, -0.16581808030605316, 0.16348077356815338, 0.0024281262885779142, 0.060373540967702866, -0.226588636636734, 0.1417679339647293, 0.004673421382904053, -0.0830094963312149, -0.020221484825015068, -0.12346531450748444, -0.001733729150146246, 0.003950502257794142, -0.07198844850063324, -0.10711304843425751, 0.05058356747031212, 0.1761104166507721, -0.02468019165098667, 0.0025053254794329405, 0.0028616779018193483, 0.07867177575826645, 0.03975280374288559, 0.0563296414911747, -0.01031126081943512, -0.12751105427742004, 0.022692453116178513, -0.06062474101781845, 0.030407119542360306, -0.08767715096473694, -0.18533827364444733, -0.07038877159357071, 0.004634049721062183, 0.017401160672307014, -0.012091830372810364, 0.1358247697353363, -0.02636057883501053, -0.04886180907487869, 0.09206046909093857, -0.01826603151857853, -0.031579550355672836, 0.0022849079687148333, 0.000865716312546283, 0.0690452978014946, 0.06822080165147781, 0.04445630684494972, -0.10563872009515762, 0.008597665466368198, -0.053948886692523956, 0.00015738153888378292, -0.00618067616596818, -0.05736774578690529, 0.005905759986490011, 0.013490050099790096, -0.01811547577381134, -0.13084077835083008, -0.10251757502555847, 0.0132644884288311, 0.02354377694427967, -0.05269745737314224, -0.13788866996765137, -0.09069127589464188, -0.04126792773604393, 0.05465838313102722, -0.04945189133286476, -0.0467810295522213, -0.046334583312273026, 0.025333385914564133, -0.08721981197595596, 0.16721408069133759, -0.10294324904680252, 0.06167053058743477, -0.0952141210436821, -0.033442627638578415, -0.09614359587430954, 0.07955186814069748, -0.055755458772182465, 0.038155049085617065, 0.002071552677080035, -0.025533143430948257, -0.12509068846702576, 0.047608084976673126, -0.0406574048101902, 0.23320648074150085, -0.09171217679977417, -0.09155339002609253, 0.2890630066394806, -0.07777247577905655, -0.1706305742263794, 0.09846064448356628, 0.011949184350669384, 0.05598209798336029, 0.11189655214548111, 0.1784118413925171, -0.07967481762170792, 0.022151844576001167, 0.08385071158409119, 0.10868234932422638, -0.12370485067367554, 0.012446788139641285, 0.034158531576395035, 0.0009326740982942283, -0.07470987737178802, 0.029567940160632133, 0.11818737536668777, 0.02818591706454754, -0.025047222152352333, -0.017533332109451294, -0.0025851463433355093, -0.004338157828897238, 0.09817083179950714, -0.01607217639684677, 0.11710815131664276, -0.04907247796654701, -0.02303880639374256, 0.013867179863154888, -0.017912497743964195, -0.05053092539310455, 0.06277278065681458, -0.00935546588152647, 0.05773458257317543, -0.0718383938074112, 0.0587264820933342, -0.12458860874176025, -0.11227434873580933, -0.042463675141334534, 0.15564212203025818, 0.06382986903190613, 0.19407185912132263, 0.0887782946228981, -0.025956448167562485, -0.05727291852235794, 0.05702860280871391, 0.13692361116409302, -0.02475113421678543, -0.08625442534685135, -0.15399645268917084, 0.04175032675266266, -0.07220953702926636, 0.11015883088111877, -0.15730860829353333, 0.04216615483164787, 0.01650323159992695, 0.08344080299139023, -0.0007186331786215305, 0.017280656844377518, 0.06268637627363205, -0.038633231073617935, -0.0875997245311737, -0.009034651331603527, 0.08611170202493668, -0.04033667966723442, -0.14005227386951447, 0.2943840026855469, -0.11982236802577972, 0.1313801258802414, 0.19242826104164124, -0.2044113278388977, -0.03318648412823677, -0.10251253843307495, -0.03626353666186333, -0.017565850168466568, 0.03158093988895416, -0.02957109920680523, 0.15583311021327972, -0.01320975087583065, 0.13815906643867493, -0.03258335217833519, -0.06300979852676392, -0.05439893901348114, -0.05463264510035515, 0.03168042376637459, 0.09689006209373474, 0.1442239135503769, -0.14316591620445251, 0.1528083235025406, 0.05931643396615982, -0.016331886872649193, 0.2584688067436218, 0.104627825319767, -0.005979560315608978, 0.09280256927013397, -0.031682513654232025, -0.034978706389665604, -0.03188252076506615, -0.22968637943267822, -0.028014229610562325, 0.07034429907798767, 0.008283424191176891, 0.10193975269794464, -0.12095558643341064, -0.07596743851900101, 0.004494545049965382, -0.014797626063227654, 0.022502224892377853, 0.13351349532604218, 0.0037510981783270836, 0.132799431681633, -0.007724330760538578, -0.059410471469163895, 0.0833011344075203, 0.0031389661598950624, -0.10945156961679459, 0.18048717081546783, -0.09081162512302399, -0.2649480700492859, -0.10642144829034805, -0.11107189953327179, -0.1083189994096756, 0.05167142674326897, 0.08348912745714188, -0.11927776038646698, -0.01655617542564869, -0.057998109608888626, 0.1394614726305008, -0.08375338464975357, 0.008493191562592983, -0.04891066625714302, -0.013728839345276356, -0.11686775088310242, -0.11609353125095367, -0.055579233914613724, -0.03112107329070568, -0.08118833601474762, 0.14082980155944824, -0.09514060616493225, 0.036468975245952606, 0.22890956699848175, 0.044429879635572433, 0.04607904329895973, -0.021336723119020462, 0.21460451185703278, -0.09102868288755417, 0.05480124056339264, 0.08593758940696716, -0.040376752614974976, 0.05540580302476883, 0.15253980457782745, 0.03680409491062164, -0.06352906674146652, 0.039269424974918365, -0.010568593628704548, -0.09814243018627167, -0.2458059936761856, -0.06794990599155426, -0.10579181462526321, 0.11631271243095398, 0.03566348925232887, 0.07877621799707413, 0.16484732925891876, 0.10035701841115952, -0.009961106814444065, -0.020045334473252296, 0.10285260528326035, 0.0774940773844719, 0.1755746603012085, -0.04560042917728424, 0.148416206240654, -0.009732348844408989, -0.12533223628997803, 0.06390640139579773, 0.08654792606830597, 0.054130010306835175, 0.06331025809049606, -0.008685191161930561, 0.012021362781524658, -0.004539800342172384, 0.11813681572675705, 0.09476468712091446, 0.02888246811926365, -0.07783272862434387, -0.015597236342728138, -0.04787643626332283, -0.021118124946951866, 0.0871768593788147, 0.019947901368141174, -0.0828898623585701, 0.012082795612514019, -0.05271672457456589, 0.06672804802656174, 0.09446284919977188, 0.08844897150993347, -0.200395405292511, -0.08628503978252411, 0.10412723571062088, -0.04981847107410431, -0.07321951538324356, 0.09004547446966171, 0.08958030492067337, -0.13930098712444305, 0.08047898858785629, -0.05598382651805878, 0.10514861345291138, 0.01048964075744152, 0.06413889676332474, -0.04228191077709198, -0.07101939618587494, 0.0012479278957471251, 0.048160530626773834, -0.17922231554985046, 0.1550816297531128, -0.04093955457210541, -0.08226222544908524, -0.08030703663825989, -0.01421362441033125, 0.031099628657102585, 0.17271333932876587, 0.10370264202356339, 0.00971115194261074, 0.0858599990606308, 0.023745926097035408, 0.016796596348285675, 0.04979633912444115, 0.054427772760391235, -0.13719439506530762, -0.0027391589246690273, -0.017848409712314606, 0.015547433868050575, -0.04017149657011032, -0.030715379863977432, -0.025613045319914818, -0.16402718424797058, 0.10065383464097977, 0.06436343491077423, 0.11712169647216797, 0.04708883538842201, -0.07342668622732162, -0.12296188622713089, 0.3290991187095642, 0.0014490651665255427, -0.11924038827419281, -0.07885515689849854, -0.06451530754566193, 0.061353620141744614, -0.029630262404680252, 0.011187964119017124, -0.03828481212258339, 0.03462429344654083, -0.11513987183570862, -0.18908551335334778, 0.12599360942840576, -0.07930266857147217, -0.06929726898670197, 0.0007873685681261122, 0.17313888669013977, 0.013422868214547634, 0.05698053166270256, 0.01065170019865036, 0.019300203770399094, -0.11263174563646317, -0.10426623374223709, -0.0018925879849120975, 0.06221567094326019, -0.02549906075000763, -0.028164640069007874, 0.019759709015488625, -0.0058654118329286575, -0.01795734092593193, -0.004910812247544527, 0.28751662373542786, 0.13508561253547668, -0.07083931565284729, 0.19287192821502686, 0.0658593475818634, -0.03149590641260147, -0.2877390682697296, -0.08645571023225784, -0.10088103264570236, -0.04013652354478836, 0.0214293971657753, -0.1231645867228508, 0.15062905848026276, -0.06467533111572266, -0.02895295061171055, 0.19714711606502533, -0.25948426127433777, -0.11217290908098221, 0.06764928996562958, 0.0015612943097949028, 0.3912673592567444, -0.09396053105592728, -0.08323220163583755, -0.03169676661491394, -0.2170637547969818, 0.14170074462890625, -0.07165522873401642, 0.13256396353244781, -0.04346892610192299, 0.19634069502353668, 0.03934894874691963, -0.023244334384799004, 0.12943658232688904, 0.010217231698334217, -0.06805168837308884, -0.13843439519405365, -0.016859712079167366, 0.0024800228420645, 0.01297357864677906, 0.08484012633562088, -0.11623940616846085, -0.018020395189523697, -0.06509805470705032, -0.07072143256664276, -0.08159841597080231, 0.0576438345015049, 0.032447464764118195, -0.09506504237651825, -0.010273149237036705, -0.03179177641868591, -0.0011545204324647784, 0.007488922215998173, 0.25699228048324585, -0.121213898062706, 0.24241279065608978, 0.05010196194052696, 0.19077061116695404, -0.1312338262796402, 0.019310489296913147, -0.026547329500317574, -0.0606112964451313, 0.12372846901416779, -0.13939744234085083, 0.007301847450435162, 0.12789897620677948, -0.04061652347445488, 0.04597560316324234, 0.09838873893022537, 0.029343612492084503, 0.009738258086144924, 0.08963716775178909, -0.2912674844264984, -0.08678342401981354, -0.05842103436589241, -0.0696541965007782, 0.08120635151863098, 0.1404658704996109, 0.2177639603614807, -0.07570316642522812, -0.04803256690502167, 0.03319956734776497, 0.03433913737535477, -0.056646738201379776, 0.03443853184580803, 0.010099615901708603, 0.036713700741529465, -0.13111300766468048, 0.06319142878055573, -0.026147814467549324, -0.14008986949920654, 0.02699360065162182, 0.18189355731010437, -0.1082276999950409, -0.13700923323631287, -0.11768602579832077, -0.004912107717245817, -0.10896972566843033, -0.001725201727822423, -0.02153700217604637, -0.13771697878837585, 0.04761384427547455, 0.07392793893814087, 0.04304962232708931, 0.04884268343448639, -0.08425632864236832, -0.007162862922996283, 0.03584989905357361, -0.0032708800863474607, 0.0011616881238296628, 0.004537895787507296, -0.044798992574214935, 0.025636747479438782, -0.036753248423337936, 0.12395330518484116, -0.10987751185894012, -0.06661668419837952, -0.11827048659324646, 0.01645287498831749, -0.16980665922164917, -0.12089058756828308, -0.13460062444210052, -0.049274992197752, -0.04522600769996643, -0.0445292703807354, -0.039821114391088486, -0.015596278011798859, -0.12331226468086243, 0.04052012786269188, -0.0817100927233696, 0.005158012732863426, -0.08288652449846268, 0.030313896015286446, 0.046560537070035934, -0.012607797048985958, 0.16498219966888428, 0.12635156512260437, -0.15511994063854218, 0.0529027134180069, -0.19355612993240356, -0.02590019814670086, 0.09340381622314453, -0.0031026029027998447, 0.037139471620321274, 0.10830309987068176, -0.04381975159049034, 0.01950426772236824, 0.047016192227602005, 0.07645632326602936, 0.011939053423702717, -0.0747927650809288, 0.01736816205084324, -0.03908810764551163, -0.09585414826869965, -0.04151128605008125, -0.040661122649908066, 0.04422951862215996, 0.028684070333838463, 0.05917508155107498, -0.06513958424329758, 0.07103899866342545, -0.1304181069135666, 0.04512714222073555, 0.04788008704781532, -0.13292060792446136, -0.06331360340118408, -0.04827089235186577, 0.03911497816443443, -0.054056789726018906, 0.22400271892547607, 0.009606907144188881, -0.04487478360533714, 0.026842178776860237, 0.09752628207206726, 0.07200212776660919, 0.005456386134028435, 0.14106027781963348, 0.09169662743806839, -0.042196426540613174, -0.09712523967027664, 0.06768728792667389, 0.04287964105606079, -0.02050655335187912, 0.1539892554283142, -0.07671508193016052, -0.054666049778461456, 0.100925974547863, -0.009070947766304016, 0.05838043987751007, -0.1061708852648735, -0.12983280420303345, -0.0045770867727696896, 0.02633831650018692, -0.05348020792007446, 0.0936758741736412, 0.21375277638435364, 0.030250011011958122, 0.010884005576372147, -0.015496696345508099, -0.05053943395614624, -0.1995810568332672, -0.28706735372543335, -0.08335421234369278, -0.11790847778320312, 0.018501101061701775, -0.1424223780632019, 0.033453378826379776, 0.05292971059679985, 0.11942945420742035, -0.04116776958107948, 0.12790058553218842, 0.10743222385644913, -0.09878402948379517, 0.04350460693240166, -0.018385833129286766, 0.06134319305419922, -0.016661830246448517, 0.024773117154836655, -0.05756858363747597, 0.048295311629772186, -0.03320877254009247, 0.03194084018468857, -0.047532834112644196, -0.013892248272895813, -0.09978756308555603, -0.0847344920039177, -0.05233166739344597, 0.07669022679328918, -0.030659839510917664, 0.12572486698627472, 0.058608248829841614, -0.026266591623425484, 0.009670961648225784, 0.24462372064590454, -0.09267045557498932, -0.08880864828824997, -0.07890184223651886, 0.19577647745609283, -0.010706502944231033, 0.12081659585237503, -0.03978026658296585, -0.007879449054598808, -0.10318124294281006, 0.2877555787563324, 0.3719474673271179, -0.10993286967277527, 0.030569763854146004, 0.011588620953261852, 0.04064377024769783, 0.10005132853984833, 0.043707579374313354, 0.0689656063914299, 0.24648581445217133, -0.08528094738721848, -0.028861768543720245, -0.030287601053714752, -0.0033969986252486706, -0.033990528434515, 0.01639431342482567, 0.05298136547207832, -0.04941406846046448, -0.03565215691924095, 0.0907902643084526, -0.2751966118812561, 0.11278293281793594, -0.17932435870170593, -0.17538733780384064, -0.09003593772649765, -0.02466999925673008, 0.08280904591083527, -0.017506372183561325, 0.060038596391677856, 0.011193502694368362, -0.06567111611366272, 0.10521219670772552, 0.020786121487617493, -0.17372439801692963, 0.05509461835026741, 0.0756232813000679, -0.09809636324644089, -0.03135690465569496, -0.03433593362569809, 0.016435613855719566, 0.0636162981390953, 0.06462334841489792, -0.006781947333365679, 0.03248092159628868, 0.025755055248737335, -0.04014143720269203, -0.05386704206466675, 0.10611101239919662, 0.03239041939377785, -0.0472179539501667, 0.0934951901435852, -0.10460104793310165, 0.02264663390815258, 0.04738399013876915, -0.017439836636185646, -0.017330128699541092, 0.02929423376917839, -0.03657044097781181, 0.08145612478256226, 0.12986193597316742, -0.008099354803562164, -0.02266290783882141, -0.046425607055425644, -0.05419274419546127, -0.029959827661514282, -0.097385473549366, -0.11238425970077515, -0.14919601380825043, -0.08745059370994568, 0.014221866615116596, 0.016350552439689636, -0.1672496497631073, -0.00934707559645176, -0.11444231867790222, 0.0528169609606266, -0.0923173725605011, 0.048089027404785156, 0.11144591122865677, 0.01612219214439392, 0.012640537694096565, -0.025146208703517914, 0.08639540523290634, 0.09865108877420425, -0.1962602287530899, -0.08526644110679626 ]
null
null
transformers
## Model description This model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset. ## How to use ```python from transformers.pipelines import pipeline model_name = "JAlexis/PruebaBert" nlp = pipeline('question-answering', model=model_name, tokenizer=model_name) inputs = { 'question': 'How can I protect myself against covid-19?', 'context': 'Preventative measures consist of recommendations to wear a mask in public, maintain social distancing of at least six feet, wash hands regularly, and use hand sanitizer. To facilitate this aim, we adapt the conceptual model and measures of Liao et al. [6] to the current context of the COVID-19 pandemic and the culture of the USA. Applying this model in a different time and context provides an opportunity to make comparisons of reactions to information sources across a decade of evolving attitudes toward media and government, between two cultures (Hong Kong vs. the USA), and between two considerably different global pandemics (H1N1 vs. COVID-19). ', 'question': 'How can I protect myself against covid-19?', 'context': ' ', } nlp(inputs) ``` ## Overview ``` Language model: deepset/bert-base-cased-squad2 Language: English Downstream-task: Q&A Datasets: CORD-19 from 31rd January 2022 Code: Haystack and FARM Infrastructure: Tesla T4 ``` ## Hyperparameters ``` batch_size = 8 n_epochs = 7 max_seq_len = max_length learning_rate = AdamW: 2e-5 ```
{"language": "en", "tags": ["pytorch", "question-answering"], "datasets": ["squad2", "cord19"], "metrics": ["f1"], "widget": [{"text": "How can I protect myself against covid-19?", "context": "Preventative measures consist of recommendations to wear a mask in public, maintain social distancing of at least six feet, wash hands regularly, and use hand sanitizer. To facilitate this aim, we adapt the conceptual model and measures of Liao et al. [6] to the current context of the COVID-19 pandemic and the culture of the USA. Applying this model in a different time and context provides an opportunity to make comparisons of reactions to information sources across a decade of evolving attitudes toward media and government, between two cultures (Hong Kong vs. the USA), and between two considerably different global pandemics (H1N1 vs. COVID-19)."}, {"text": "How can I protect myself against covid-19?", "context": " "}]}
question-answering
JAlexis/Bertv1_fine
[ "transformers", "pytorch", "bert", "question-answering", "en", "dataset:squad2", "dataset:cord19", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #has_space #region-us
## Model description This model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset. ## How to use ## Overview ## Hyperparameters
[ "## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.", "## How to use", "## Overview", "## Hyperparameters" ]
[ "TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #has_space #region-us \n", "## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.", "## How to use", "## Overview", "## Hyperparameters" ]
[ 48, 32, 4, 3, 5 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #has_space #region-us \n## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.## How to use## Overview## Hyperparameters" ]
[ -0.09651433676481247, 0.012336142361164093, -0.002330036601051688, 0.018268417567014694, 0.08749478310346603, 0.05608363449573517, 0.03669748082756996, 0.09330844134092331, -0.008716179057955742, 0.05186276137828827, 0.1418342888355255, 0.1121855080127716, 0.002448681043460965, 0.04892309755086899, -0.07602433860301971, -0.18165156245231628, 0.043441955000162125, 0.06323637813329697, -0.09021070599555969, 0.13335885107517242, 0.058199744671583176, -0.15840446949005127, 0.07304771989583969, -0.03284427523612976, -0.15214137732982635, 0.0332770012319088, 0.01939142867922783, -0.045973941683769226, 0.10665422677993774, -0.004422102123498917, 0.16184450685977936, 0.01607438735663891, 0.06298737227916718, -0.11452118307352066, 0.04113033413887024, 0.02599404565989971, -0.014508750289678574, 0.1259618103504181, -0.0043068318627774715, -0.0463206022977829, 0.015583462081849575, -0.048304226249456406, 0.06473035365343094, 0.02027871459722519, -0.13731040060520172, -0.11877342313528061, -0.05326006934046745, 0.016633421182632446, 0.11569634824991226, 0.0743488222360611, -0.024711204692721367, 0.16875527799129486, -0.17130692303180695, -0.0008055565995164216, 0.13578465580940247, -0.25735944509506226, -0.03430283069610596, 0.13990746438503265, 0.07886252552270889, 0.023980263620615005, -0.028832977637648582, 0.06196535378694534, 0.03356007859110832, 0.03818092122673988, 0.06841127574443817, -0.08766130357980728, -0.12759965658187866, 0.07744991779327393, -0.13925327360630035, -0.034720826894044876, 0.1474006175994873, 0.013384830206632614, 0.040704146027565, -0.010691676288843155, -0.11239199340343475, 0.028009284287691116, -0.04481879249215126, -0.041307397186756134, 0.01334212627261877, -0.011967906728386879, -0.030345307663083076, -0.00881736446171999, -0.12166368961334229, -0.09938544780015945, -0.15162985026836395, 0.14122258126735687, -0.016416793689131737, 0.102205790579319, -0.2064138650894165, 0.058964964002370834, -0.1238924115896225, -0.10192867368459702, 0.062014706432819366, -0.08989635854959488, -0.035776231437921524, -0.014752708375453949, -0.05991971865296364, -0.055858150124549866, 0.08844226598739624, 0.18363472819328308, 0.016330771148204803, -0.004036488011479378, 0.07911346107721329, 0.03525027260184288, 0.11679352819919586, 0.0916726216673851, -0.14593660831451416, -0.09615176916122437, 0.004176279064267874, -0.0173079464584589, 0.005470190197229385, -0.03722767159342766, -0.11384503543376923, -0.03826557472348213, 0.01358326431363821, 0.038992203772068024, 0.07671520113945007, 0.017616575583815575, -0.056303221732378006, -0.06685453653335571, 0.06724858283996582, -0.05035321041941643, 0.029594508931040764, 0.018456684425473213, -0.035705193877220154, -0.012076114304363728, -0.011763098649680614, 0.03531302884221077, 0.009498870000243187, 0.07978708297014236, -0.10494662821292877, -0.022497892379760742, -0.05601489543914795, -0.13810808956623077, 0.03202888369560242, -0.09309834241867065, 0.04399144649505615, -0.06520786136388779, -0.05518101155757904, 0.012230996042490005, 0.049634966999292374, -0.046925511211156845, -0.0031838961876928806, 0.027195395901799202, -0.042048435658216476, 0.025598688051104546, -0.025810131803154945, 0.09081359207630157, -0.059036217629909515, 0.024332210421562195, 0.01128119695931673, 0.09139484912157059, -0.13546933233737946, 0.04242793470621109, -0.10237352550029755, 0.02520502544939518, -0.26023152470588684, 0.03514237329363823, -0.0497698076069355, 0.05654187127947807, -0.1013687402009964, -0.07171199470758438, -0.027392404153943062, 0.02257346548140049, 0.042538393288850784, 0.14746995270252228, -0.20815537869930267, -0.034393977373838425, 0.05736713111400604, -0.06779807060956955, -0.14547260105609894, 0.07207087427377701, -0.08480339497327805, 0.021499542519450188, 0.021949756890535355, 0.24025224149227142, 0.018212905153632164, -0.03231726214289665, -0.019277172163128853, 0.06347454339265823, -0.0646914690732956, -0.08884324878454208, 0.10762631148099899, -0.014133845455944538, -0.007178896106779575, -0.019504085183143616, -0.011096503585577011, 0.015131617896258831, -0.11863142997026443, -0.06676870584487915, -0.020065881311893463, -0.07328882813453674, 0.10377883166074753, 0.014215000905096531, 0.034907709807157516, -0.068770632147789, -0.011228716932237148, 0.09827568382024765, 0.04820147901773453, 0.004735815804451704, -0.009358915500342846, -0.0942205935716629, 0.13549156486988068, -0.19271455705165863, -0.020522773265838623, -0.21047212183475494, -0.08546453714370728, -0.022442707791924477, 0.14823056757450104, 0.028330540284514427, 0.06355380266904831, 0.06639126688241959, -0.044970814138650894, -0.006749256514012814, -0.025493860244750977, 0.054777685552835464, 0.05430831387639046, -0.07980374246835709, -0.15006405115127563, -0.10042957216501236, -0.06634543836116791, 0.01847526803612709, -0.08034996688365936, -0.0324089340865612, -0.034424588084220886, 0.1271028071641922, -0.0013725865865126252, 0.037475019693374634, 0.0376962311565876, 0.0037577853072434664, 0.014895636588335037, -0.022641489282250404, 0.07277105003595352, -0.043597232550382614, -0.06575415283441544, 0.01848059520125389, -0.08684533834457397, 0.10816781967878342, 0.13128505647182465, -0.21348685026168823, 0.004443066194653511, 0.051319003105163574, -0.030160848051309586, 0.02215859852731228, -0.027820823714137077, -0.0010635008802637458, 0.14135654270648956, -0.0072243232280015945, 0.03727583959698677, -0.08869083225727081, -0.014145617373287678, 0.006996484939008951, -0.05076921358704567, 0.025462964549660683, 0.06307496130466461, 0.15585897862911224, -0.2409512847661972, 0.09093624353408813, 0.2592020630836487, 0.02479667402803898, 0.023156430572271347, -0.027741774916648865, -0.05435943976044655, -0.06428728997707367, -0.08987534046173096, -0.0656990185379982, 0.1669953316450119, -0.16679099202156067, -0.016743367537856102, 0.07929307967424393, -0.019414590671658516, 0.052732206881046295, -0.1261948198080063, -0.03492904081940651, 0.04343990236520767, 0.03130768984556198, -0.08916635066270828, 0.05765454098582268, 0.05824805423617363, 0.08400489389896393, 0.011605842038989067, -0.07541969418525696, 0.04115507751703262, -0.011720651760697365, -0.047587066888809204, 0.1813715696334839, -0.09704597294330597, -0.18195053935050964, -0.0018422463908791542, 0.0036411129403859377, 0.0021809127647429705, -0.00030518195126205683, 0.027529068291187286, -0.07271040230989456, -0.030184399336576462, -0.00792346429079771, 0.09884229302406311, -0.048301514238119125, 0.010496596805751324, -0.04201392084360123, -0.03146960958838463, 0.005013915244489908, -0.11053048819303513, -0.0360679030418396, -0.09456636756658554, -0.04724476858973503, 0.07346352934837341, 0.03670300915837288, 0.09168186783790588, 0.16800326108932495, -0.028209161013364792, 0.017528384923934937, 0.0009831998031586409, 0.2926536202430725, -0.04285445809364319, 0.02326238341629505, 0.1925644874572754, -0.026947392150759697, 0.010545480065047741, 0.1970902681350708, 0.08094100654125214, -0.0683903694152832, -0.02941795252263546, 0.02638513408601284, -0.053693562746047974, -0.1855778992176056, -0.12981745600700378, -0.0681777074933052, -0.0029257123824208975, 0.010939248837530613, -0.013808971270918846, -0.03059069812297821, 0.08536151796579361, 0.06217396259307861, -0.05565112829208374, -0.13009677827358246, 0.012279593385756016, 0.1606684774160385, -0.02937409281730652, 0.12027846276760101, -0.01276679988950491, -0.08580214530229568, 0.07392752170562744, -0.014747241511940956, 0.08817951381206512, 0.05957968533039093, 0.03184362128376961, 0.0656985193490982, 0.20376980304718018, 0.07565011084079742, 0.12697967886924744, -0.022700171917676926, -0.06842944025993347, -0.022996924817562103, -0.03383319079875946, -0.0731772780418396, -0.00864558108150959, 0.07485899329185486, -0.011099681258201599, -0.06826979666948318, -0.004661024082452059, 0.054344724863767624, 0.0025359122082591057, 0.15340209007263184, -0.20729708671569824, -0.036951325833797455, 0.01599334180355072, -0.0032180838752537966, -0.06831420958042145, 0.044603131711483, 0.11080675572156906, -0.05576995015144348, -0.0532398596405983, -0.024941742420196533, 0.11758964508771896, -0.007364654913544655, 0.05729864537715912, -0.044447243213653564, 0.008947380818426609, 0.0010415059514343739, 0.08754397928714752, -0.10783791542053223, 0.19213241338729858, 0.03802231699228287, -0.040407825261354446, -0.042116474360227585, -0.03810655325651169, -0.013137759640812874, 0.10052579641342163, 0.09323274344205856, 0.0217960886657238, -0.015017586760222912, -0.07341384142637253, -0.06974887102842331, 0.05949712544679642, 0.06474883109331131, -0.062236592173576355, 0.050156377255916595, 0.012334465980529785, -0.012556290253996849, 0.050354376435279846, 0.08893653005361557, -0.09753231704235077, -0.050722330808639526, 0.0004939899081364274, -0.0005216051358729601, -0.07553941756486893, -0.021070530638098717, -0.04783308506011963, -0.0025636800564825535, 0.08923839777708054, 0.16728079319000244, -0.0504593700170517, -0.11554452031850815, 0.028559528291225433, 0.20363998413085938, -0.060081496834754944, 0.06487596035003662, -0.008709623478353024, 0.0051617929711937904, 0.02754446305334568, -0.15517917275428772, 0.1537211537361145, -0.10629045963287354, 0.0012814013753086329, -0.048802293837070465, 0.14061743021011353, -0.008165483362972736, 0.05989885330200195, 0.028576092794537544, 0.058602962642908096, -0.07133260369300842, -0.1003994569182396, 0.017759067937731743, -0.03621424362063408, 0.12756434082984924, 0.08103480190038681, 0.028325894847512245, -0.018736079335212708, 0.05499448627233505, 0.1161888986825943, 0.23800578713417053, 0.10440238565206528, -0.10868655145168304, 0.08002356439828873, 0.09256886690855026, 0.001588153070770204, -0.2769627273082733, -0.0010037798201665282, -0.05688180774450302, 0.001701711560599506, 0.05680358409881592, -0.10362881422042847, 0.20467369258403778, -0.0224831011146307, -0.03309415653347969, -0.010920052416622639, -0.2950046956539154, -0.06616932898759842, 0.1556045413017273, 0.04823051393032074, 0.2294880896806717, -0.07109925150871277, -0.061519332230091095, -0.009013539180159569, -0.24270445108413696, 0.24578313529491425, -0.17604947090148926, 0.06423776596784592, -0.018317773938179016, 0.13828226923942566, 0.036781951785087585, -0.05623793229460716, 0.11499880999326706, 0.00034021068131551147, 0.05360871180891991, -0.060281362384557724, -0.16173329949378967, 0.13827472925186157, -0.012942944653332233, 0.03739377111196518, 0.0019979183562099934, 0.08561214059591293, -0.1819283664226532, 0.005723643582314253, -0.08638551831245422, 0.023836607113480568, -0.02691643126308918, -0.0743497759103775, -0.05950765311717987, -0.00805603712797165, 0.00801079347729683, -0.008741765283048153, 0.11605220288038254, 0.0042970613576471806, 0.10690320283174515, 0.06581147760152817, 0.11072271317243576, -0.133072629570961, -0.10195614397525787, 0.009208140894770622, -0.03312975540757179, 0.0992002859711647, -0.1758727878332138, 0.05200925096869469, 0.15044938027858734, 0.033511992543935776, 0.055470824241638184, 0.07426615059375763, -0.007836994715034962, -0.03613346070051193, 0.07689522206783295, -0.21146005392074585, -0.1681876927614212, 0.005642803851515055, -0.025126975029706955, -0.07563465088605881, 0.09813250601291656, 0.0985742136836052, -0.0019263630965724587, -0.06000319495797157, -0.0031197955831885338, -0.006748010404407978, -0.1033928319811821, 0.13108687102794647, 0.1145399957895279, 0.059258975088596344, -0.16248466074466705, 0.06401599198579788, 0.020193861797451973, -0.07057400047779083, -0.020651904866099358, 0.07048298418521881, -0.08287693560123444, -0.09782324731349945, 0.052196089178323746, 0.24410438537597656, -0.152671217918396, -0.00046063101035542786, -0.05784178897738457, -0.10180923342704773, 0.04229229688644409, 0.22793057560920715, 0.10404814034700394, 0.01186972763389349, -0.037926752120256424, -0.03311490640044212, -0.028725264593958855, 0.03742730990052223, 0.0396440289914608, 0.0067198690958321095, -0.07975640147924423, 0.014452283270657063, -0.03913390263915062, 0.09334363043308258, -0.0908457562327385, -0.002179924864321947, -0.11252390593290329, 0.005940271075814962, -0.2318417876958847, -0.04913564771413803, -0.022776732221245766, -0.01669486053287983, 0.006855776999145746, -0.04137938469648361, -0.05927086994051933, -0.02143046259880066, -0.10595383495092392, 0.0071812099777162075, 0.00723980413749814, 0.01387825608253479, -0.1567658632993698, -0.005421095993369818, 0.04547389969229698, 0.017474817112088203, 0.11518462002277374, 0.10301247984170914, -0.009081656113266945, 0.04136103019118309, -0.09228695929050446, -0.17645080387592316, 0.0320291630923748, 0.026098646223545074, 0.15031813085079193, -0.029980020597577095, -0.01498139277100563, 0.021535126492381096, -0.002578127197921276, -0.0008899780223146081, 0.029568176716566086, -0.06626953929662704, 0.00738567765802145, -0.045885585248470306, -0.05303645879030228, -0.028949381783604622, -0.056739818304777145, 0.11406136304140091, 0.08016356080770493, 0.09276110678911209, 0.03157532960176468, 0.08024875819683075, -0.17940588295459747, -0.005593053996562958, -0.048079755157232285, -0.08876245468854904, -0.11850090324878693, -0.0055533810518682, 0.05805058032274246, -0.06196710839867592, 0.17290537059307098, 0.033373355865478516, 0.052710290998220444, 0.0047689503990113735, 0.170880526304245, 0.10871516168117523, 0.04283986985683441, 0.24794678390026093, 0.03468339145183563, -0.061444446444511414, -0.02558276429772377, 0.10632195323705673, 0.046112753450870514, 0.06953738629817963, 0.14418745040893555, 0.09110920131206512, 0.13241322338581085, 0.058981843292713165, 0.0498901791870594, -0.01828462816774845, -0.06810016185045242, -0.06844418495893478, -0.0019937236793339252, 0.015042237937450409, -0.01947917230427265, 0.12777842581272125, 0.0991879552602768, -0.059921104460954666, 0.06805428862571716, -0.0614134706556797, -0.07660654932260513, -0.11330505460500717, -0.10536249727010727, -0.0589764229953289, -0.1322147250175476, -0.03400273621082306, -0.16774186491966248, -0.009874147363007069, 0.15572769939899445, 0.02492332272231579, -0.01096317172050476, 0.197108194231987, -0.009015021845698357, 0.0027983884792774916, 0.028109056875109673, 0.032219741493463516, 0.028268922120332718, 0.03871552273631096, 0.04583367332816124, -0.00461250264197588, 0.01918523944914341, -0.004325753543525934, -0.02751871943473816, -0.062414009124040604, 0.03225511685013771, -0.0493413470685482, -0.11966205388307571, -0.04650833457708359, 0.015282887034118176, 0.011341379024088383, 0.12373459339141846, -0.000019773822714341804, 0.040713995695114136, -0.00984183419495821, 0.27614033222198486, -0.0861702635884285, -0.08778121322393417, -0.07889413833618164, 0.16185925900936127, -0.048516225069761276, 0.06834815442562103, -0.0038828174583613873, -0.07196789234876633, -0.05997748300433159, 0.18165773153305054, 0.32277268171310425, -0.16051238775253296, 0.03009626641869545, 0.03229482099413872, 0.008074263110756874, -0.013692592270672321, 0.05731293186545372, 0.03996291384100914, 0.12607485055923462, -0.1123068556189537, -0.054380252957344055, -0.06943243741989136, -0.04325946792960167, -0.019294915720820427, -0.024697542190551758, 0.12497575581073761, -0.03577738255262375, -0.03431302309036255, 0.10873682051897049, -0.12291806191205978, -0.07594519108533859, -0.013171297498047352, -0.21230767667293549, -0.11533728241920471, -0.0570070706307888, 0.13910339772701263, 0.033064231276512146, 0.10919847339391708, -0.05817370116710663, -0.0008418912184424698, 0.02834518812596798, 0.011201898567378521, -0.16100293397903442, -0.08515585213899612, 0.12099460512399673, -0.08568427711725235, 0.10926147550344467, 0.0026736308354884386, 0.06428492814302444, 0.12078262120485306, 0.014283456839621067, -0.08965348452329636, 0.023770486935973167, 0.050517622381448746, -0.061550382524728775, -0.025005225092172623, 0.0661330372095108, 0.0324573814868927, 0.0033946409821510315, 0.0511515773832798, -0.25208884477615356, -0.0016223607817664742, -0.07001838833093643, -0.014591263607144356, -0.07250382006168365, -0.015906138345599174, -0.06648798286914825, 0.11337634176015854, 0.07827139645814896, -0.04876136779785156, -0.004083086736500263, -0.03726095333695412, 0.022253844887018204, 0.06282909214496613, 0.030510228127241135, -0.09666673839092255, -0.10472546517848969, 0.016965551301836967, 0.061408039182424545, -0.03131777420639992, -0.09278643876314163, -0.022008322179317474, -0.02181115746498108, 0.021860724315047264, -0.03881856054067612, 0.04712716117501259, 0.12239722907543182, 0.04784125089645386, -0.029583225026726723, -0.04669835790991783, -0.011338001117110252, 0.09447453171014786, -0.12724779546260834, -0.071458600461483 ]
null
null
transformers
## Model description This model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset. ## How to use ```python from transformers.pipelines import pipeline model_name = "JAlexis/PruebaBert" nlp = pipeline('question-answering', model=model_name, tokenizer=model_name) inputs = { 'question': 'How can I protect myself against covid-19?', 'context': 'Preventative measures consist of recommendations to wear a mask in public, maintain social distancing of at least six feet, wash hands regularly, and use hand sanitizer. To facilitate this aim, we adapt the conceptual model and measures of Liao et al. [6] to the current context of the COVID-19 pandemic and the culture of the USA. Applying this model in a different time and context provides an opportunity to make comparisons of reactions to information sources across a decade of evolving attitudes toward media and government, between two cultures (Hong Kong vs. the USA), and between two considerably different global pandemics (H1N1 vs. COVID-19). ', 'question': 'How can I protect myself against covid-19?', 'context': ' ', } nlp(inputs) ``` ## Overview ``` Language model: deepset/bert-base-cased-squad2 Language: English Downstream-task: Q&A Datasets: CORD-19 from 31rd January 2022 Code: Haystack and FARM Infrastructure: Tesla T4 ``` ## Hyperparameters ``` batch_size = 8 n_epochs = 9 max_seq_len = max_length learning_rate = AdamW: 1e-5 ```
{"language": "en", "tags": ["pytorch", "question-answering"], "datasets": ["squad2", "cord19"], "metrics": ["EM (exact match)"], "widget": [{"text": "How can I protect myself against covid-19?", "context": "Preventative measures consist of recommendations to wear a mask in public, maintain social distancing of at least six feet, wash hands regularly, and use hand sanitizer. To facilitate this aim, we adapt the conceptual model and measures of Liao et al. [6] to the current context of the COVID-19 pandemic and the culture of the USA. Applying this model in a different time and context provides an opportunity to make comparisons of reactions to information sources across a decade of evolving attitudes toward media and government, between two cultures (Hong Kong vs. the USA), and between two considerably different global pandemics (H1N1 vs. COVID-19)."}, {"text": "How can I protect myself against covid-19?", "context": " "}]}
question-answering
JAlexis/PruebaBert
[ "transformers", "pytorch", "bert", "question-answering", "en", "dataset:squad2", "dataset:cord19", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #region-us
## Model description This model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset. ## How to use ## Overview ## Hyperparameters
[ "## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.", "## How to use", "## Overview", "## Hyperparameters" ]
[ "TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #region-us \n", "## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.", "## How to use", "## Overview", "## Hyperparameters" ]
[ 44, 32, 4, 3, 5 ]
[ "passage: TAGS\n#transformers #pytorch #bert #question-answering #en #dataset-squad2 #dataset-cord19 #endpoints_compatible #region-us \n## Model description \nThis model was obtained by fine-tuning deepset/bert-base-cased-squad2 on Cord19 Dataset.## How to use## Overview## Hyperparameters" ]
[ -0.1046748086810112, 0.001475242548622191, -0.003101753769442439, 0.015607194043695927, 0.11349891871213913, 0.05707438290119171, 0.04191378504037857, 0.08935923129320145, -0.021401245146989822, 0.032592032104730606, 0.13996006548404694, 0.14566057920455933, 0.014030168764293194, 0.04123534634709358, -0.09385943412780762, -0.1791883111000061, 0.034671518951654434, 0.07060227543115616, -0.07070154696702957, 0.14280393719673157, 0.057495538145303726, -0.14908455312252045, 0.0745125263929367, -0.0448523685336113, -0.17191077768802643, 0.025893982499837875, 0.031314101070165634, -0.041680507361888885, 0.10577892512083054, 0.006590771488845348, 0.1568436175584793, 0.014115173369646072, 0.07743538171052933, -0.13156187534332275, 0.04574676975607872, 0.011344749480485916, -0.0022523608058691025, 0.12750528752803802, 0.0030513303354382515, -0.045263566076755524, -0.0025486776139587164, -0.013657462783157825, 0.07332426309585571, 0.030698658898472786, -0.1406288892030716, -0.09547920525074005, -0.037680692970752716, 0.0200041551142931, 0.15019172430038452, 0.08384013175964355, -0.017518896609544754, 0.15700621902942657, -0.1623506397008896, 0.0017831880832090974, 0.12027429044246674, -0.24292656779289246, -0.031145228073000908, 0.11217065900564194, 0.046194326132535934, 0.009218343533575535, -0.024579619988799095, 0.03634234517812729, 0.038457054644823074, 0.03821876645088196, 0.0395834855735302, -0.09371846914291382, -0.12232310324907303, 0.05270761251449585, -0.1302197277545929, -0.01824958622455597, 0.11433638632297516, 0.02424238622188568, 0.03184344992041588, 0.007440581917762756, -0.0980634018778801, 0.059447791427373886, -0.06531547009944916, -0.051579903811216354, 0.006960295606404543, -0.008757461793720722, -0.02472097985446453, 0.0027574561536312103, -0.10601756721735, -0.10192249715328217, -0.15069593489170074, 0.14433591067790985, -0.00790366530418396, 0.10411360114812851, -0.21955494582653046, 0.05116521939635277, -0.13585540652275085, -0.09801460057497025, 0.06356549263000488, -0.08451838046312332, -0.030661778524518013, -0.0320480614900589, -0.03517485037446022, -0.08857518434524536, 0.11444400250911713, 0.19502291083335876, 0.014399910345673561, 0.007274710573256016, 0.06473848223686218, 0.02307441085577011, 0.11230318248271942, 0.08931541442871094, -0.1371147185564041, -0.08359330147504807, 0.028795026242733, -0.026092002168297768, -0.009179304353892803, -0.026964478194713593, -0.11006546765565872, -0.015885593369603157, 0.015363223850727081, 0.05637161433696747, 0.06505502015352249, 0.01994497887790203, -0.07074742764234543, -0.09049869328737259, 0.04980769008398056, -0.06268713623285294, 0.00921914353966713, 0.015915319323539734, -0.045975636690855026, 0.013611862435936928, -0.043708641082048416, 0.042210087180137634, -0.018944842740893364, 0.11064665764570236, -0.09310270845890045, -0.02580925077199936, -0.05199259892106056, -0.11781813949346542, 0.02950792759656906, -0.08264625817537308, 0.04623689502477646, -0.04903420805931091, -0.08525330573320389, 0.006735893432050943, 0.05045507475733757, -0.041585955768823624, 0.004187365528196096, -0.01104526687413454, -0.021906081587076187, -0.003570056054741144, -0.02439558319747448, 0.0737689882516861, -0.05978511646389961, 0.02983824536204338, 0.025596855208277702, 0.06211532652378082, -0.14014098048210144, 0.037932898849248886, -0.11760096997022629, 0.02075234241783619, -0.26580604910850525, 0.03935526683926582, -0.044610943645238876, 0.08119470626115799, -0.11222858726978302, -0.0664544329047203, -0.00938414130359888, 0.009229804389178753, 0.0389048233628273, 0.15538324415683746, -0.1838255673646927, -0.052384257316589355, 0.08684355020523071, -0.08499263972043991, -0.15257611870765686, 0.06980711966753006, -0.08538544178009033, 0.027938902378082275, 0.0565669871866703, 0.21709267795085907, 0.021759454160928726, -0.01913396455347538, 0.010333213955163956, 0.0493878498673439, -0.08348976820707321, -0.093425452709198, 0.10369901359081268, -0.024538381025195122, -0.03524564206600189, -0.004933997057378292, -0.015101599507033825, 0.0235346220433712, -0.13034752011299133, -0.06313471496105194, -0.001531768823042512, -0.0677039623260498, 0.08894788473844528, 0.017590520903468132, 0.02904626354575157, -0.060805149376392365, 0.01320637483149767, 0.09036875516176224, 0.046676043421030045, -0.0065004862844944, -0.025984887033700943, -0.12261532992124557, 0.12709563970565796, -0.188330739736557, -0.011687138117849827, -0.21679948270320892, -0.09269944578409195, -0.008817795664072037, 0.13960883021354675, 0.037552908062934875, 0.012743011116981506, 0.061824094504117966, -0.03751527518033981, -0.007440312299877405, -0.017139701172709465, 0.06489692628383636, 0.03796602040529251, -0.06523473560810089, -0.16993656754493713, -0.07534658163785934, -0.05442100390791893, 0.025000102818012238, -0.0739780142903328, -0.0481412373483181, -0.055742405354976654, 0.12717945873737335, 0.0027953386306762695, 0.03675733879208565, 0.03184026479721069, 0.008109544403851032, 0.038432616740465164, -0.01740190014243126, 0.09350091218948364, -0.03975943848490715, -0.07913094758987427, -0.02301189862191677, -0.05962831526994705, 0.08883830904960632, 0.11256580054759979, -0.23829452693462372, -0.0008330223499797285, 0.03532981872558594, -0.02650400996208191, 0.012853211723268032, -0.027739381417632103, 0.018195414915680885, 0.2038556933403015, 0.01845400407910347, 0.04400698095560074, -0.09337936341762543, -0.0035509865265339613, 0.011030081659555435, -0.05239659175276756, 0.0656508356332779, 0.0601363331079483, 0.18497249484062195, -0.274867445230484, 0.06625941395759583, 0.21358738839626312, 0.03810007497668266, 0.009450984187424183, -0.05344438925385475, -0.054361313581466675, -0.04783352464437485, -0.06361742317676544, -0.05968102812767029, 0.14009980857372284, -0.152690127491951, -0.000550431665033102, 0.07037524878978729, -0.03038448840379715, 0.044307827949523926, -0.12423274666070938, -0.02440354786813259, 0.029904287308454514, 0.013780930079519749, -0.0686301589012146, 0.023058973252773285, 0.0556451715528965, 0.08980594575405121, 0.027821730822324753, -0.08557987213134766, 0.05696689337491989, -0.016956765204668045, -0.07662318646907806, 0.20749090611934662, -0.09298011660575867, -0.19018636643886566, -0.0027906219474971294, -0.0009795797523111105, -0.005550486035645008, -0.007237997837364674, 0.01466368231922388, -0.07892892509698868, -0.040887486189603806, 0.015390658751130104, 0.10614889860153198, -0.007495262194424868, -0.0008645744528621435, -0.014198487624526024, -0.019844580441713333, 0.00138157419860363, -0.09778706729412079, -0.032207779586315155, -0.10529571026563644, -0.043242208659648895, 0.06383698433637619, 0.016891907900571823, 0.08179788291454315, 0.18159258365631104, -0.03062203899025917, 0.028988048434257507, -0.005918162874877453, 0.2853301167488098, -0.033837176859378815, 0.009775851853191853, 0.19280198216438293, -0.06995852291584015, 0.008606684394180775, 0.19770818948745728, 0.08272673189640045, -0.08500935137271881, -0.026727156713604927, 0.024344254285097122, -0.042161908000707626, -0.21496690809726715, -0.12168263643980026, -0.047522224485874176, 0.015168785117566586, 0.02336718700826168, -0.022422147914767265, -0.026822270825505257, 0.09212283045053482, 0.06835499405860901, -0.06447607278823853, -0.10274442285299301, 0.021817486733198166, 0.15565729141235352, -0.013205355033278465, 0.10630657523870468, -0.0099202124401927, -0.08769998699426651, 0.07596363127231598, -0.03807660564780235, 0.09960076212882996, 0.06886868178844452, 0.050084229558706284, 0.06455490738153458, 0.18047137558460236, 0.0760049894452095, 0.13647174835205078, -0.03922926262021065, -0.07071968913078308, -0.015376386232674122, -0.02710648812353611, -0.09907632321119308, -0.04035747051239014, 0.03051936812698841, 0.009183403104543686, -0.07448893785476685, 0.024721316993236542, 0.048992861062288284, 0.01710689812898636, 0.1355930119752884, -0.21545983850955963, -0.0450315922498703, -0.010700933635234833, -0.007870512083172798, -0.07218973338603973, 0.05717338249087334, 0.06645212322473526, -0.07422938942909241, -0.04985926300287247, -0.04718281701207161, 0.1337524950504303, -0.0482100248336792, 0.05927829071879387, -0.029306698590517044, 0.036477066576480865, 0.007784323766827583, 0.09701904654502869, -0.11420682817697525, 0.18646985292434692, 0.04601048305630684, -0.009033994749188423, -0.04479730874300003, -0.04146602377295494, -0.02611505426466465, 0.08790417015552521, 0.10326315462589264, 0.008261931128799915, 0.004939563572406769, -0.06748563796281815, -0.07834099233150482, 0.08089378476142883, 0.07716356962919235, -0.04723556339740753, 0.045898981392383575, 0.008283112198114395, -0.013283277861773968, 0.04052037373185158, -0.0027303413953632116, -0.10084588825702667, -0.04150579869747162, -0.0011990368366241455, -0.024239957332611084, -0.052098795771598816, -0.013086702674627304, -0.03727147355675697, 0.04717479646205902, 0.11744572222232819, 0.1367858350276947, -0.07113771140575409, -0.11826758086681366, 0.062436722218990326, 0.1808422952890396, -0.0739879384636879, 0.0591437928378582, -0.013796310871839523, 0.007202193606644869, 0.03791768103837967, -0.17292414605617523, 0.14666050672531128, -0.10653802007436752, -0.0012171705020591617, -0.046161502599716187, 0.15895438194274902, 0.008577553555369377, 0.04581940174102783, 0.043035171926021576, 0.032254409044981, -0.031760066747665405, -0.10481476038694382, -0.0040977392345666885, -0.030042698606848717, 0.12069569528102875, 0.08592385053634644, 0.011406228877604008, -0.022091127932071686, 0.016982942819595337, 0.1134185865521431, 0.25214827060699463, 0.10003402829170227, -0.0883236899971962, 0.07437793910503387, 0.1367000788450241, -0.014055189676582813, -0.2686800956726074, -0.00118681148160249, -0.025324411690235138, -0.0174398273229599, 0.030707495287060738, -0.12248272448778152, 0.23373790085315704, -0.0030602323822677135, -0.012514352798461914, -0.012007847428321838, -0.3033337891101837, -0.06701812893152237, 0.16087140142917633, 0.08368245512247086, 0.2359580248594284, -0.06715545058250427, -0.07873456180095673, -0.017304912209510803, -0.2629348635673523, 0.25568923354148865, -0.13244794309139252, 0.05362774804234505, -0.01751423440873623, 0.13304659724235535, 0.03741130977869034, -0.0549798347055912, 0.08508018404245377, 0.011908749118447304, 0.05200564116239548, -0.05853952467441559, -0.15234996378421783, 0.11079972237348557, 0.014254557900130749, 0.044357143342494965, 0.029175015166401863, 0.09409818798303604, -0.15335232019424438, -0.012109778821468353, -0.07537216693162918, 0.01128047052770853, -0.018143046647310257, -0.07886791974306107, -0.041397809982299805, -0.015489568002521992, 0.005696437321603298, -0.004306832328438759, 0.10841994732618332, 0.0010587117867544293, 0.09876500070095062, 0.027893448248505592, 0.14799010753631592, -0.15206292271614075, -0.09535465389490128, -0.017355451360344887, -0.03646009787917137, 0.0872361958026886, -0.1542975902557373, 0.06334184110164642, 0.18323303759098053, 0.036434073001146317, 0.07175298035144806, 0.0685763955116272, 0.0005098316469229758, -0.04932306334376335, 0.06928207725286484, -0.224580317735672, -0.16006071865558624, -0.0005187756032682955, -0.026295436546206474, -0.07737462222576141, 0.10542120039463043, 0.09909185022115707, 0.006230753380805254, -0.07053028792142868, 0.0077502834610641, -0.005434958729892969, -0.09882589429616928, 0.15102317929267883, 0.10829515755176544, 0.050470612943172455, -0.1792762130498886, 0.07233665138483047, 0.009644715115427971, -0.07375340163707733, -0.023169642314314842, 0.08565324544906616, -0.10644664615392685, -0.07671767473220825, 0.08684363961219788, 0.307077556848526, -0.18803346157073975, -0.016202354803681374, -0.07913126051425934, -0.10686621069908142, 0.0417192168533802, 0.24970336258411407, 0.10101726651191711, 0.01885286718606949, -0.028821952641010284, -0.04148586466908455, -0.054899249225854874, 0.038664210587739944, 0.04859134927392006, 0.0028103990480303764, -0.06309937685728073, -0.012127861380577087, -0.02736244723200798, 0.08995489776134491, -0.0882815346121788, -0.00364419212564826, -0.11267324537038803, 0.019797587767243385, -0.24399647116661072, -0.031004775315523148, -0.01049755234271288, -0.00960562564432621, 0.020711200311779976, -0.02607191912829876, -0.03890720009803772, -0.01990821771323681, -0.09479263424873352, 0.01725160703063011, 0.020256491377949715, -0.007183972280472517, -0.1536666452884674, -0.009976524859666824, 0.041271768510341644, 0.034219615161418915, 0.12085556238889694, 0.11280359327793121, -0.008002549409866333, 0.06945224106311798, -0.12727956473827362, -0.1700383424758911, 0.03683612868189812, 0.026881838217377663, 0.14668454229831696, -0.026650091633200645, -0.004128304310142994, 0.03983847424387932, -0.029240000993013382, 0.00616792868822813, 0.03545895963907242, -0.08445897698402405, 0.013469048775732517, -0.04195341467857361, -0.05461185798048973, -0.04044199362397194, -0.06001104414463043, 0.1015307605266571, 0.0823802575469017, 0.10742508620023727, 0.01723620854318142, 0.10276175290346146, -0.16961151361465454, -0.011455523781478405, -0.03398466855287552, -0.0792573019862175, -0.13411517441272736, -0.012892702594399452, 0.046722110360860825, -0.06589533388614655, 0.13961750268936157, 0.009216231293976307, 0.08826405555009842, 0.009526806883513927, 0.1497601568698883, 0.11579661071300507, 0.05098355934023857, 0.24398739635944366, 0.038624852895736694, -0.0667538121342659, -0.03225407749414444, 0.11060149222612381, 0.034196458756923676, 0.03890620172023773, 0.16116569936275482, 0.0773361474275589, 0.11097914725542068, 0.035450488328933716, 0.06277470290660858, 0.02062958851456642, -0.035260435193777084, -0.052762407809495926, 0.008965088054537773, 0.007013523019850254, 0.018787875771522522, 0.1680728644132614, 0.10400644689798355, -0.05199113115668297, 0.06077047064900398, -0.05955025553703308, -0.09877505153417587, -0.11971104145050049, -0.11698132753372192, -0.07179176062345505, -0.12881261110305786, -0.014787036925554276, -0.18031425774097443, -0.040652837604284286, 0.13327355682849884, 0.03954597935080528, -0.031167181208729744, 0.20148560404777527, -0.009573622606694698, -0.002640255494043231, 0.04234670475125313, 0.022775188088417053, 0.01756679080426693, 0.05364818125963211, 0.044914621859788895, -0.003175422316417098, 0.033543772995471954, -0.0015821984270587564, -0.03060014173388481, -0.060383621603250504, 0.03281901404261589, -0.05057842284440994, -0.12578457593917847, -0.02626999467611313, 0.01933705247938633, 0.006989653687924147, 0.11186280846595764, -0.004990509245544672, 0.038893528282642365, -0.00042280316120013595, 0.26666608452796936, -0.061197370290756226, -0.1124882847070694, -0.09335972368717194, 0.19157102704048157, -0.03965672850608826, 0.07186707109212875, 0.0048928456380963326, -0.06148975342512131, -0.03244777023792267, 0.20865201950073242, 0.2885169982910156, -0.15475831925868988, 0.004886860027909279, 0.021976545453071594, 0.009803328663110733, -0.007985640317201614, 0.07340159267187119, 0.023829830810427666, 0.13376353681087494, -0.10934751480817795, -0.05890776589512825, -0.06519196182489395, -0.041405029594898224, -0.025464186444878578, -0.04428460821509361, 0.13834448158740997, -0.01676369458436966, -0.0396878607571125, 0.13659469783306122, -0.13427719473838806, -0.08284036070108414, -0.030133768916130066, -0.1889820247888565, -0.12540662288665771, -0.08378949761390686, 0.11645963788032532, 0.04772236943244934, 0.10296403616666794, -0.050682831555604935, -0.0003695575869642198, 0.032243017107248306, 0.01934710703790188, -0.17016631364822388, -0.10119648277759552, 0.10180513560771942, -0.09679536521434784, 0.10183756798505783, 0.01937679946422577, 0.08989155292510986, 0.11030742526054382, 0.0018518689321354032, -0.08229749649763107, 0.023124180734157562, 0.04302532970905304, -0.04744034260511398, -0.010319714434444904, 0.0731939896941185, 0.04589853808283806, 0.007484113331884146, 0.044048767536878586, -0.24851705133914948, -0.015242904424667358, -0.08464237302541733, -0.03843946009874344, -0.07482631504535675, 0.0057790628634393215, -0.07033349573612213, 0.11812346428632736, 0.0870903804898262, -0.03784680739045143, 0.006055530626326799, -0.051201824098825455, 0.04445137828588486, 0.06859427690505981, 0.0288796778768301, -0.0904030054807663, -0.11865487694740295, 0.012033487670123577, 0.0676661804318428, -0.04386024549603462, -0.09581951051950455, -0.011030357331037521, -0.03720630705356598, 0.021764401346445084, -0.059025026857852936, 0.052992548793554306, 0.11287414282560349, 0.062334682792425156, -0.027249295264482498, -0.06904590874910355, -0.009795870631933212, 0.09624610841274261, -0.12232597917318344, -0.08574269711971283 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # distilbert-base-uncased-finetuned-cola This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the glue dataset. It achieves the following results on the evaluation set: - Loss: 0.8366 - Matthews Correlation: 0.5472 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 5 ### Training results | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation | |:-------------:|:-----:|:----:|:---------------:|:--------------------:| | 0.5224 | 1.0 | 535 | 0.5432 | 0.4243 | | 0.3447 | 2.0 | 1070 | 0.4968 | 0.5187 | | 0.2347 | 3.0 | 1605 | 0.6540 | 0.5280 | | 0.1747 | 4.0 | 2140 | 0.7547 | 0.5367 | | 0.1255 | 5.0 | 2675 | 0.8366 | 0.5472 | ### Framework versions - Transformers 4.16.2 - Pytorch 1.10.0+cu111 - Datasets 1.18.3 - Tokenizers 0.11.0
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["glue"], "metrics": ["matthews_correlation"], "model-index": [{"name": "distilbert-base-uncased-finetuned-cola", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "glue", "type": "glue", "args": "cola"}, "metrics": [{"type": "matthews_correlation", "value": 0.5471613867597194, "name": "Matthews Correlation"}]}]}]}
text-classification
JBNLRY/distilbert-base-uncased-finetuned-cola
[ "transformers", "pytorch", "tensorboard", "distilbert", "text-classification", "generated_from_trainer", "dataset:glue", "license:apache-2.0", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us
distilbert-base-uncased-finetuned-cola ====================================== This model is a fine-tuned version of distilbert-base-uncased on the glue dataset. It achieves the following results on the evaluation set: * Loss: 0.8366 * Matthews Correlation: 0.5472 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 2e-05 * train\_batch\_size: 16 * eval\_batch\_size: 16 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 5 ### Training results ### Framework versions * Transformers 4.16.2 * Pytorch 1.10.0+cu111 * Datasets 1.18.3 * Tokenizers 0.11.0
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ 67, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #dataset-glue #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5### Training results### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ -0.10348068922758102, 0.09148605167865753, -0.0022954836022108793, 0.12302655726671219, 0.16473764181137085, 0.029876047745347023, 0.11664267629384995, 0.1302110105752945, -0.0878436341881752, 0.02543756179511547, 0.12662576138973236, 0.16262155771255493, 0.020631218329072, 0.12087254971265793, -0.05344507843255997, -0.26481878757476807, -0.00954040139913559, 0.05130685120820999, -0.04174657538533211, 0.13426357507705688, 0.09329058229923248, -0.1231277585029602, 0.09115666896104813, 0.013420876115560532, -0.19516946375370026, 0.00201223767362535, -0.0007724217721261084, -0.05339557304978371, 0.14357911050319672, 0.02452739141881466, 0.11937303096055984, 0.0003319440584164113, 0.08145023137331009, -0.1945306956768036, 0.009916625916957855, 0.046701375395059586, 0.0018440545536577702, 0.09148869663476944, 0.04440341889858246, -0.0011416783090680838, 0.12547406554222107, -0.0883527398109436, 0.05178067460656166, 0.021715596318244934, -0.11551861464977264, -0.2127065807580948, -0.08081891387701035, 0.0405232310295105, 0.08268959075212479, 0.10872946679592133, -0.007196844555437565, 0.12247898429632187, -0.07745738327503204, 0.09489422291517258, 0.23106767237186432, -0.2972404956817627, -0.0659942477941513, 0.03629834204912186, 0.013412061147391796, 0.03745477646589279, -0.10173027217388153, -0.0377054437994957, 0.05005799978971481, 0.05379036068916321, 0.12692078948020935, -0.03019030950963497, -0.11055943369865417, 0.002316690282896161, -0.1385059505701065, -0.03447825089097023, 0.16383424401283264, 0.0412207655608654, -0.0308991689234972, -0.06073944643139839, -0.05710354447364807, -0.1502271145582199, -0.03864529728889465, -0.010285157710313797, 0.046585649251937866, -0.02382180094718933, -0.04229508712887764, -0.004785689990967512, -0.11021022498607635, -0.05849221721291542, -0.07634159922599792, 0.11212288588285446, 0.03714621812105179, 0.00965169258415699, -0.03245272859930992, 0.10942050069570541, -0.006381617393344641, -0.12516553699970245, 0.014764266088604927, 0.021977951750159264, 0.016854027286171913, -0.04099957272410393, -0.05396966263651848, -0.06450658291578293, 0.007764738518744707, 0.1275479942560196, -0.05921218544244766, 0.045907724648714066, 0.046832021325826645, 0.047279953956604004, -0.0910499319434166, 0.19001732766628265, -0.03149630129337311, -0.02014079876244068, 0.009288782253861427, 0.040842894464731216, 0.019353672862052917, -0.008877582848072052, -0.12351246923208237, 0.004562444984912872, 0.08937069028615952, 0.007729888428002596, -0.06502804160118103, 0.077152319252491, -0.054169218987226486, -0.021537424996495247, 0.004974089562892914, -0.0925840437412262, 0.026125459000468254, -0.0023696627467870712, -0.07028466463088989, -0.022876888513565063, 0.03493975102901459, 0.014959706924855709, -0.02497624047100544, 0.11131783574819565, -0.08554515242576599, 0.029842987656593323, -0.09330154955387115, -0.10611137002706528, 0.02050638571381569, -0.10477912425994873, 0.026218537241220474, -0.09508968144655228, -0.18332253396511078, -0.017160901799798012, 0.062236882746219635, -0.026304490864276886, -0.059443339705467224, -0.055562593042850494, -0.06969424337148666, 0.014923201873898506, -0.010747545398771763, 0.1182631254196167, -0.0635029524564743, 0.08913702517747879, 0.026541225612163544, 0.06336144357919693, -0.04123564437031746, 0.056380730122327805, -0.1029263436794281, 0.016929831355810165, -0.15925705432891846, 0.03990291431546211, -0.04568052291870117, 0.07734546065330505, -0.08471763879060745, -0.10755743831396103, 0.0045159063301980495, -0.004773437511175871, 0.06634347140789032, 0.09433982521295547, -0.17825455963611603, -0.07311838120222092, 0.1635434776544571, -0.07277669757604599, -0.12628166377544403, 0.11865793913602829, -0.05997232720255852, 0.05510609224438667, 0.05736212432384491, 0.17833933234214783, 0.0720689445734024, -0.08016322553157806, -0.003538931719958782, 0.022151730954647064, 0.046557385474443436, -0.07095295190811157, 0.06665494292974472, 0.009641564451158047, 0.02324853278696537, 0.03641578182578087, -0.02319316193461418, 0.06043113395571709, -0.08411320298910141, -0.094823457300663, -0.043874356895685196, -0.07993423193693161, 0.03350040689110756, 0.0764167308807373, 0.07151050120592117, -0.09737885743379593, -0.0809127688407898, 0.04480326920747757, 0.0776895210146904, -0.05769297108054161, 0.029527835547924042, -0.05515516549348831, 0.07536843419075012, -0.029270611703395844, -0.02229178138077259, -0.18096449971199036, -0.029233552515506744, 0.005905236583203077, 0.00461921002715826, 0.011473044753074646, 0.02054179273545742, 0.062115442007780075, 0.053953222930431366, -0.04901926591992378, -0.016520880162715912, -0.021534211933612823, -0.0016557901399210095, -0.12969975173473358, -0.1899591088294983, -0.03136550262570381, -0.024618536233901978, 0.1403314471244812, -0.206315815448761, 0.04675181582570076, -0.010046504437923431, 0.071916364133358, 0.00943793635815382, -0.005788105074316263, -0.037703968584537506, 0.06980443000793457, -0.045524198561906815, -0.05132804438471794, 0.08034015446901321, 0.021152136847376823, -0.08919230103492737, -0.042948246002197266, -0.0944969430565834, 0.15587735176086426, 0.12980902194976807, -0.10666801035404205, -0.07886876165866852, -0.01752552203834057, -0.06929495185613632, -0.03253386914730072, -0.046629101037979126, 0.03089221939444542, 0.19334089756011963, -0.0057763331569731236, 0.15134920179843903, -0.07007114589214325, -0.049630433320999146, 0.022067880257964134, -0.03617172688245773, 0.013486909680068493, 0.12855865061283112, 0.13056056201457977, -0.07010336965322495, 0.15201197564601898, 0.14409585297107697, -0.08407939225435257, 0.13985194265842438, -0.040423717349767685, -0.06506288051605225, -0.015965327620506287, -0.02710880897939205, -0.010020623914897442, 0.09792278707027435, -0.15398730337619781, -0.002388850785791874, 0.03264133632183075, 0.019953329116106033, 0.02561068721115589, -0.22168494760990143, -0.03851085156202316, 0.03620898723602295, -0.03936419263482094, -0.010801783762872219, -0.006293339654803276, 0.005123737268149853, 0.099776990711689, 0.004696644842624664, -0.08376874029636383, 0.04186678305268288, 0.004644679371267557, -0.08690396696329117, 0.2162937968969345, -0.07906312495470047, -0.17329132556915283, -0.12459393590688705, -0.07870804518461227, -0.043099645525217056, -0.0006197145557962358, 0.07219891995191574, -0.09086521714925766, -0.03347395732998848, -0.07394793629646301, 0.016268594190478325, 0.004127702210098505, 0.02735956944525242, 0.01253552921116352, 0.004940738435834646, 0.06401343643665314, -0.1063295230269432, -0.019773203879594803, -0.05651792883872986, -0.03786171227693558, 0.0446893535554409, 0.027988433837890625, 0.10908740013837814, 0.1475294679403305, -0.01488849613815546, 0.016142575070261955, -0.03245636075735092, 0.236946702003479, -0.05981217697262764, -0.020328663289546967, 0.1417233794927597, -0.009224441833794117, 0.05207998678088188, 0.12015313655138016, 0.06853050738573074, -0.08067213743925095, 0.005674567073583603, 0.03243220970034599, -0.038105472922325134, -0.23070302605628967, -0.05341356247663498, -0.05923246592283249, 0.007216841448098421, 0.0935586467385292, 0.026574047282338142, 0.027094939723610878, 0.07268910109996796, 0.04202091693878174, 0.07887616008520126, -0.039956413209438324, 0.06022903323173523, 0.1276325136423111, 0.03587205708026886, 0.12549570202827454, -0.0485922247171402, -0.06260202825069427, 0.04125089943408966, -0.012665070593357086, 0.22441771626472473, 0.0036260392516851425, 0.12858140468597412, 0.060763128101825714, 0.16073182225227356, -0.006428951397538185, 0.08137209713459015, -0.013494585640728474, -0.04077665135264397, -0.015004271641373634, -0.036497749388217926, -0.03784942254424095, 0.027807995676994324, -0.07401497662067413, 0.060699883848428726, -0.12397698312997818, 0.01996294967830181, 0.060566410422325134, 0.2576342821121216, 0.03713158145546913, -0.323432058095932, -0.10025621950626373, 0.00282878614962101, -0.03632260859012604, -0.025572864338755608, 0.029513590037822723, 0.08909446001052856, -0.09776820987462997, 0.03476474806666374, -0.07485097646713257, 0.09763772040605545, -0.04730924963951111, 0.04995490610599518, 0.08224654942750931, 0.08347439765930176, 0.012666335329413414, 0.09324385225772858, -0.2918814420700073, 0.2761648893356323, -0.00007573797483928502, 0.0620449036359787, -0.08132880181074142, 0.010391105897724628, 0.03727884590625763, 0.06091126799583435, 0.09131623059511185, -0.012225004844367504, -0.04733143001794815, -0.17605245113372803, -0.06611157208681107, 0.02757733128964901, 0.06398440152406693, -0.030406340956687927, 0.08697547018527985, -0.03065989352762699, 0.007524167653173208, 0.06976216286420822, 0.005401842761784792, -0.045676689594984055, -0.10834278911352158, -0.00778288533911109, 0.023803863674402237, -0.06611955165863037, -0.059602025896310806, -0.11702249944210052, -0.12276234477758408, 0.16779576241970062, -0.028637932613492012, -0.04264632984995842, -0.10973475873470306, 0.08625014871358871, 0.055805761367082596, -0.09044497460126877, 0.04301720857620239, 0.002081508282572031, 0.08180484920740128, 0.020375272259116173, -0.07547292858362198, 0.10499080270528793, -0.0771421492099762, -0.15239882469177246, -0.06422466784715652, 0.10794258862733841, 0.02980002574622631, 0.06435586512088776, -0.008842872455716133, 0.00901352521032095, -0.0486224964261055, -0.08938624709844589, 0.019282618537545204, -0.00013774285616818815, 0.08739374577999115, 0.00877909641712904, -0.07083219289779663, 0.012592953629791737, -0.0597652792930603, -0.032124925404787064, 0.2084427773952484, 0.2118198424577713, -0.10192637890577316, 0.026571858674287796, 0.01737801730632782, -0.07349719107151031, -0.19828394055366516, 0.031650908291339874, 0.05889834091067314, 0.009060108102858067, 0.035099007189273834, -0.1763526350259781, 0.13956797122955322, 0.102257639169693, -0.01299660187214613, 0.10153043270111084, -0.31127604842185974, -0.12243517488241196, 0.13350917398929596, 0.13117966055870056, 0.1107979342341423, -0.1280149519443512, -0.019227130338549614, -0.02045135386288166, -0.14110441505908966, 0.11007409542798996, -0.08445243537425995, 0.11649177223443985, -0.03637200966477394, 0.0832626223564148, 0.002716791583225131, -0.06038431450724602, 0.11320134252309799, 0.03001723624765873, 0.09173953533172607, -0.06272721290588379, -0.03565295785665512, 0.02873510681092739, -0.04839441180229187, 0.04129466414451599, -0.09495443850755692, 0.029764125123620033, -0.11069756001234055, -0.027970068156719208, -0.06641346961259842, 0.04448976367712021, -0.042088717222213745, -0.06358592212200165, -0.03718508407473564, 0.023409102112054825, 0.05508594214916229, -0.007334549445658922, 0.13400959968566895, 0.026072608307003975, 0.1427386850118637, 0.0996645838022232, 0.07817801833152771, -0.07685045152902603, -0.07546738535165787, -0.024036915972828865, -0.011588722467422485, 0.04755742475390434, -0.14280779659748077, 0.02313205972313881, 0.15387830138206482, 0.01909896917641163, 0.14599280059337616, 0.08460244536399841, -0.019058987498283386, 0.001374579151161015, 0.059949882328510284, -0.16713014245033264, -0.0878666341304779, -0.013119746930897236, -0.06208950653672218, -0.1194811686873436, 0.043869271874427795, 0.09051049500703812, -0.06727153062820435, -0.009456361643970013, -0.006581311114132404, 0.01648966409265995, -0.05074736848473549, 0.17930923402309418, 0.056837521493434906, 0.046653520315885544, -0.09937667101621628, 0.06777936965227127, 0.04454825818538666, -0.07685873657464981, 0.011012088507413864, 0.07821232080459595, -0.08650293946266174, -0.0552859865128994, 0.06975916773080826, 0.18555298447608948, -0.04588611051440239, -0.04852474480867386, -0.1402791440486908, -0.12592436373233795, 0.08435630053281784, 0.14124564826488495, 0.11801300942897797, 0.009990457445383072, -0.06496996432542801, 0.0005833751056343317, -0.11324189603328705, 0.10048721730709076, 0.04907653108239174, 0.06291599571704865, -0.14508862793445587, 0.13627180457115173, 0.014503736048936844, 0.05412086844444275, -0.018928060308098793, 0.02754272148013115, -0.0992475226521492, 0.008631311357021332, -0.09962839633226395, -0.01056043989956379, -0.03920818120241165, 0.00988402683287859, -0.005131166893988848, -0.04514012113213539, -0.058122653514146805, 0.014701725915074348, -0.10730111598968506, -0.022076278924942017, 0.02723095752298832, 0.06627681106328964, -0.10553426295518875, -0.036801356822252274, 0.02543506771326065, -0.0630459114909172, 0.0752045214176178, 0.04854367673397064, 0.014264537021517754, 0.04823144152760506, -0.13089507818222046, 0.01804414764046669, 0.07707779109477997, 0.02609756588935852, 0.06487300246953964, -0.1012471541762352, -0.005991428624838591, 0.0008756459574215114, 0.0364258699119091, 0.02079150080680847, 0.07286219298839569, -0.14232607185840607, 0.0032555432990193367, -0.019487107172608376, -0.08063076436519623, -0.06793943792581558, 0.02705864980816841, 0.08977404981851578, 0.017028121277689934, 0.19965432584285736, -0.07695881277322769, 0.048752423375844955, -0.21314099431037903, 0.006563444156199694, -0.007979915477335453, -0.10863091051578522, -0.09884380549192429, -0.06806447356939316, 0.056490324437618256, -0.05831785127520561, 0.1521150767803192, 0.04621584340929985, 0.02097199112176895, 0.027592875063419342, -0.014663904905319214, 0.013873129151761532, 0.012499130330979824, 0.18968160450458527, 0.02315196767449379, -0.03892238438129425, 0.060869134962558746, 0.04344213008880615, 0.10514671355485916, 0.11975841224193573, 0.20499777793884277, 0.14335976541042328, 0.0007634255453012884, 0.09935532510280609, 0.03613463044166565, -0.053582388907670975, -0.16469132900238037, 0.04401427507400513, -0.039850927889347076, 0.11092086881399155, -0.018751390278339386, 0.21082064509391785, 0.0682586207985878, -0.17147260904312134, 0.04892030730843544, -0.057178497314453125, -0.08601470291614532, -0.1134747788310051, -0.05985361710190773, -0.0800875797867775, -0.1297968029975891, -0.000034089443943230435, -0.11826374381780624, -0.0005235447897575796, 0.1174224391579628, 0.005633013788610697, -0.02731461264193058, 0.16010835766792297, 0.011170967482030392, 0.02594037726521492, 0.06165660545229912, 0.008989768102765083, -0.03613077849149704, -0.12293252348899841, -0.052642516791820526, -0.016276879236102104, -0.015594038181006908, 0.033774614334106445, -0.05931494012475014, -0.037554118782281876, 0.031184900552034378, -0.02027048170566559, -0.09173652529716492, 0.0036402372643351555, 0.016913199797272682, 0.057751670479774475, 0.048560429364442825, 0.009997212328016758, 0.019075101241469383, -0.0059278663247823715, 0.19885186851024628, -0.07337722182273865, -0.06241562217473984, -0.10892566293478012, 0.23533464968204498, 0.041218534111976624, -0.022455492988228798, 0.031782735139131546, -0.06612449139356613, 0.004328879527747631, 0.24956606328487396, 0.21047116816043854, -0.07244722545146942, -0.0065431902185082436, 0.012562385760247707, -0.007097634486854076, -0.017912808805704117, 0.0986594632267952, 0.14931195974349976, 0.05848231539130211, -0.09368746727705002, -0.05104219168424606, -0.059819914400577545, -0.017858268693089485, -0.039675503969192505, 0.07364355772733688, 0.0478375218808651, 0.007639316841959953, -0.032984185963869095, 0.05411234498023987, -0.07018603384494781, -0.08971085399389267, 0.05477668344974518, -0.21682670712471008, -0.16399972140789032, -0.009443135000765324, 0.09615889936685562, 0.00434968201443553, 0.06322154402732849, -0.027622783556580544, -0.006259012967348099, 0.09283244609832764, -0.019432447850704193, -0.09740570932626724, -0.06426984071731567, 0.08471661806106567, -0.11873972415924072, 0.22185829281806946, -0.045842207968235016, 0.0528714694082737, 0.12712854146957397, 0.0699344202876091, -0.07376046478748322, 0.06245974823832512, 0.03862829506397247, -0.038276441395282745, 0.02886485867202282, 0.07490130513906479, -0.035239145159721375, 0.05644586682319641, 0.04707338288426399, -0.1422886699438095, 0.01882581040263176, -0.051350630819797516, -0.06144268065690994, -0.04812309890985489, -0.021385405212640762, -0.060594189912080765, 0.13178621232509613, 0.218593567609787, -0.027916565537452698, -0.010838805697858334, -0.07056831568479538, 0.011763928458094597, 0.050375860184431076, 0.022016096860170364, -0.05682146176695824, -0.2126062661409378, 0.019520791247487068, 0.04937693104147911, -0.01826678402721882, -0.24639299511909485, -0.10040940344333649, 0.0044407895766198635, -0.0742439329624176, -0.09766552597284317, 0.07167235016822815, 0.08758994191884995, 0.05211486667394638, -0.05936238914728165, -0.04031859710812569, -0.07389482855796814, 0.14774809777736664, -0.1392611712217331, -0.09294098615646362 ]
null
null
transformers
# T5 Question Generation and Question Answering ## Model description This model is a T5 Transformers model (airklizz/t5-base-multi-fr-wiki-news) that was fine-tuned in french on 3 different tasks * question generation * question answering * answer extraction It obtains quite good results on FQuAD validation dataset. ## Intended uses & limitations This model functions for the 3 tasks mentionned earlier and was not tested on other tasks. ```python from transformers import T5ForConditionalGeneration, T5Tokenizer model = T5ForConditionalGeneration.from_pretrained("JDBN/t5-base-fr-qg-fquad") tokenizer = T5Tokenizer.from_pretrained("JDBN/t5-base-fr-qg-fquad") ``` ## Training data The initial model used was https://huggingface.co/airKlizz/t5-base-multi-fr-wiki-news. This model was finetuned on a dataset composed of FQuAD and PIAF on the 3 tasks mentioned previously. The data were preprocessed like this * question generation: "generate question: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. Il a été élu <hl> en 2009 <hl> pour devenir le 44ème président des Etats-Unis d'Amérique." * question answering: "question: Quand Barack Hussein Obamaa-t-il été élu président des Etats-Unis d’Amérique? context: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. Il a été élu en 2009 pour devenir le 44ème président des Etats-Unis d’Amérique." * answer extraction: "extract_answers: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. <hl> Il a été élu en 2009 pour devenir le 44ème président des Etats-Unis d’Amérique <hl>." The preprocessing we used was implemented in https://github.com/patil-suraj/question_generation ## Eval results #### On FQuAD validation set | BLEU_1 | BLEU_2 | BLEU_3 | BLEU_4 | METEOR | ROUGE_L | CIDEr | |--------|--------|--------|--------|--------|---------|-------| | 0.290 | 0.203 | 0.149 | 0.111 | 0.197 | 0.284 | 1.038 | #### Question Answering metrics For these metrics, the performance of this question answering model (https://huggingface.co/illuin/camembert-base-fquad) on FQuAD original question and on T5 generated questions are compared. | Questions | Exact Match | F1 Score | |------------------|--------|--------| |Original FQuAD | 54.015 | 77.466 | |Generated | 45.765 | 67.306 | ### BibTeX entry and citation info ```bibtex @misc{githubPatil, author = {Patil Suraj}, title = {question generation GitHub repository}, year = {2020}, howpublished={\url{https://github.com/patil-suraj/question_generation}} } @article{T5, title={Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer}, author={Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu}, year={2019}, eprint={1910.10683}, archivePrefix={arXiv}, primaryClass={cs.LG} } @misc{dhoffschmidt2020fquad, title={FQuAD: French Question Answering Dataset}, author={Martin d'Hoffschmidt and Wacim Belblidia and Tom Brendlé and Quentin Heinrich and Maxime Vidal}, year={2020}, eprint={2002.06071}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
{"language": "fr", "tags": ["pytorch", "t5", "question-generation", "seq2seq"], "datasets": ["fquad", "piaf"], "widget": [{"text": "generate question: Barack Hussein Obama, n\u00e9 le 4 aout 1961, est un homme politique am\u00e9ricain et avocat. Il a \u00e9t\u00e9 \u00e9lu <hl> en 2009 <hl> pour devenir le 44\u00e8me pr\u00e9sident des Etats-Unis d'Am\u00e9rique. </s>"}, {"text": "question: Quand Barack Obama a t'il \u00e9t\u00e9 \u00e9lu pr\u00e9sident? context: Barack Hussein Obama, n\u00e9 le 4 aout 1961, est un homme politique am\u00e9ricain et avocat. Il a \u00e9t\u00e9 \u00e9lu en 2009 pour devenir le 44\u00e8me pr\u00e9sident des Etats-Unis d'Am\u00e9rique. </s>"}]}
text2text-generation
JDBN/t5-base-fr-qg-fquad
[ "transformers", "pytorch", "jax", "t5", "text2text-generation", "question-generation", "seq2seq", "fr", "dataset:fquad", "dataset:piaf", "arxiv:1910.10683", "arxiv:2002.06071", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[ "1910.10683", "2002.06071" ]
[ "fr" ]
TAGS #transformers #pytorch #jax #t5 #text2text-generation #question-generation #seq2seq #fr #dataset-fquad #dataset-piaf #arxiv-1910.10683 #arxiv-2002.06071 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
T5 Question Generation and Question Answering ============================================= Model description ----------------- This model is a T5 Transformers model (airklizz/t5-base-multi-fr-wiki-news) that was fine-tuned in french on 3 different tasks * question generation * question answering * answer extraction It obtains quite good results on FQuAD validation dataset. Intended uses & limitations --------------------------- This model functions for the 3 tasks mentionned earlier and was not tested on other tasks. Training data ------------- The initial model used was URL This model was finetuned on a dataset composed of FQuAD and PIAF on the 3 tasks mentioned previously. The data were preprocessed like this * question generation: "generate question: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. Il a été élu en 2009 pour devenir le 44ème président des Etats-Unis d'Amérique." * question answering: "question: Quand Barack Hussein Obamaa-t-il été élu président des Etats-Unis d’Amérique? context: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. Il a été élu en 2009 pour devenir le 44ème président des Etats-Unis d’Amérique." * answer extraction: "extract\_answers: Barack Hussein Obama, né le 4 aout 1961, est un homme politique américain et avocat. Il a été élu en 2009 pour devenir le 44ème président des Etats-Unis d’Amérique ." The preprocessing we used was implemented in URL Eval results ------------ #### On FQuAD validation set #### Question Answering metrics For these metrics, the performance of this question answering model (URL on FQuAD original question and on T5 generated questions are compared. Questions: Original FQuAD, Exact Match: 54.015, F1 Score: 77.466 Questions: Generated, Exact Match: 45.765, F1 Score: 67.306 ### BibTeX entry and citation info
[ "#### On FQuAD validation set", "#### Question Answering metrics\n\n\nFor these metrics, the performance of this question answering model (URL on FQuAD original question and on T5 generated questions are compared.\n\n\nQuestions: Original FQuAD, Exact Match: 54.015, F1 Score: 77.466\nQuestions: Generated, Exact Match: 45.765, F1 Score: 67.306", "### BibTeX entry and citation info" ]
[ "TAGS\n#transformers #pytorch #jax #t5 #text2text-generation #question-generation #seq2seq #fr #dataset-fquad #dataset-piaf #arxiv-1910.10683 #arxiv-2002.06071 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "#### On FQuAD validation set", "#### Question Answering metrics\n\n\nFor these metrics, the performance of this question answering model (URL on FQuAD original question and on T5 generated questions are compared.\n\n\nQuestions: Original FQuAD, Exact Match: 54.015, F1 Score: 77.466\nQuestions: Generated, Exact Match: 45.765, F1 Score: 67.306", "### BibTeX entry and citation info" ]
[ 95, 9, 80, 11 ]
[ "passage: TAGS\n#transformers #pytorch #jax #t5 #text2text-generation #question-generation #seq2seq #fr #dataset-fquad #dataset-piaf #arxiv-1910.10683 #arxiv-2002.06071 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n#### On FQuAD validation set#### Question Answering metrics\n\n\nFor these metrics, the performance of this question answering model (URL on FQuAD original question and on T5 generated questions are compared.\n\n\nQuestions: Original FQuAD, Exact Match: 54.015, F1 Score: 77.466\nQuestions: Generated, Exact Match: 45.765, F1 Score: 67.306### BibTeX entry and citation info" ]
[ -0.07673418521881104, 0.1083921492099762, -0.005533802788704634, 0.09081786870956421, 0.059624239802360535, 0.019532131031155586, 0.09229472279548645, 0.15551972389221191, -0.04441395774483681, 0.03234250470995903, 0.06158222630620003, 0.12450620532035828, 0.08081548660993576, 0.08461902290582657, -0.09454742819070816, -0.13254402577877045, 0.0023361649364233017, 0.09232717752456665, 0.006593430880457163, 0.1784045249223709, 0.1216135323047638, -0.07926703989505768, 0.06318000704050064, 0.001837493502534926, -0.1324276477098465, 0.08636011928319931, 0.048551030457019806, -0.036460746079683304, 0.12092958390712738, 0.0797685757279396, 0.044102977961301804, 0.09284427016973495, 0.016195625066757202, -0.18832746148109436, 0.05354197323322296, 0.021792665123939514, -0.04182642698287964, 0.07114474475383759, 0.06905832886695862, -0.05878477916121483, 0.0204002782702446, 0.07924484461545944, 0.04446850344538689, 0.10084259510040283, -0.12804634869098663, -0.21429015696048737, -0.1063774973154068, 0.07317619025707245, 0.07404544949531555, 0.0886557474732399, -0.060160551220178604, 0.13424155116081238, -0.10051064193248749, 0.1256822943687439, 0.18783564865589142, -0.29192638397216797, -0.04916364327073097, 0.05023490637540817, -0.02011490799486637, 0.05804137885570526, -0.058588843792676926, 0.009138854220509529, 0.07298220694065094, 0.010926222428679466, 0.054946865886449814, -0.09292043000459671, -0.1232285425066948, 0.05918779596686363, -0.13017114996910095, -0.04689402878284454, 0.17956924438476562, 0.05390732362866402, -0.05740233510732651, -0.062333688139915466, -0.07044080644845963, -0.011348770000040531, -0.021946825087070465, -0.13585664331912994, 0.0022178273648023605, -0.053039826452732086, -0.015200681053102016, -0.015268842689692974, -0.09761694818735123, -0.10567021369934082, -0.11004853248596191, -0.0023035178892314434, 0.047713201493024826, 0.054440710693597794, -0.11775601655244827, 0.07788368314504623, -0.030383490025997162, -0.13182760775089264, -0.04986804351210594, -0.045405030250549316, -0.11180095374584198, -0.01941363699734211, -0.06321171671152115, -0.10865534096956253, 0.04239577054977417, 0.1871369481086731, -0.03164311498403549, 0.019890623167157173, -0.030505195260047913, -0.013936227187514305, 0.02612413465976715, 0.13955101370811462, -0.06460592150688171, -0.09483892470598221, 0.01222930196672678, 0.0062553053721785545, -0.061572588980197906, -0.027163660153746605, -0.07450442016124725, -0.08415676653385162, 0.10462905466556549, 0.07511036098003387, 0.06850438565015793, 0.03982776403427124, -0.042254820466041565, -0.04853299632668495, -0.0003657151246443391, -0.08823448419570923, -0.002832660684362054, 0.008181785233318806, -0.09050257503986359, -0.03089415654540062, 0.029254084452986717, 0.03253360092639923, -0.1152522936463356, 0.017932692542672157, -0.09233563393354416, -0.02707444503903389, 0.0064389375038445, -0.12051372975111008, 0.0563412569463253, -0.07518165558576584, -0.03737906366586685, -0.1178707703948021, -0.08546196669340134, -0.059823375195264816, -0.016892673447728157, -0.06619298458099365, -0.025847235694527626, -0.01847747713327408, 0.017546823248267174, 0.012599458917975426, -0.015810441225767136, 0.04637069255113602, -0.016136372461915016, 0.10000109672546387, 0.06254470348358154, 0.063614122569561, -0.006895322818309069, 0.0541713684797287, -0.12272187322378159, -0.050646472722291946, -0.04251817613840103, 0.04171973466873169, -0.06402136385440826, -0.08085174113512039, -0.1662226766347885, -0.08344317972660065, -0.04689129814505577, -0.018124282360076904, 0.05018847808241844, 0.22252725064754486, -0.11249673366546631, -0.03844670578837395, 0.18794357776641846, -0.05985909327864647, -0.18857793509960175, 0.12239958345890045, -0.03529093414545059, -0.020483100786805153, 0.08423659950494766, 0.11377841234207153, 0.09698640555143356, -0.08339007943868637, -0.007649127393960953, 0.002518285531550646, 0.01914774253964424, 0.06649444252252579, 0.10691938549280167, -0.01492210105061531, -0.05304805561900139, 0.01904306188225746, 0.019137592986226082, -0.05411989614367485, -0.07521139830350876, -0.05166054889559746, -0.051319669932127, 0.007049675565212965, 0.033359430730342865, 0.030929630622267723, 0.02133888378739357, -0.04159608483314514, -0.0775497630238533, -0.029724987223744392, 0.007012255489826202, -0.0026564609725028276, 0.0071855951100587845, -0.09506756067276001, 0.10458728671073914, -0.1435680389404297, 0.015362183563411236, -0.17155520617961884, -0.07143636792898178, 0.008940914645791054, 0.035312190651893616, 0.04228212311863899, 0.1097119003534317, 0.029908375814557076, -0.058277420699596405, -0.05611995607614517, 0.020938804373145103, -0.02751610241830349, -0.033766865730285645, -0.08118072897195816, -0.12743207812309265, -0.01321624219417572, -0.026693854480981827, 0.11736663430929184, -0.06003814935684204, -0.0057961647398769855, 0.08035646378993988, 0.10295022279024124, 0.00814195815473795, -0.017900414764881134, 0.0288102887570858, 0.0010063046356663108, -0.026890892535448074, 0.044160231947898865, 0.04870235547423363, -0.02775312401354313, -0.0818871408700943, 0.12073134630918503, -0.09117572754621506, 0.1423274576663971, 0.09428919851779938, -0.030785173177719116, -0.06772308796644211, -0.0686345174908638, -0.056045107543468475, -0.0001409576798323542, -0.06226347014307976, -0.04547857865691185, 0.09040752798318863, 0.019280405715107918, 0.1426720917224884, -0.13985010981559753, -0.11523056775331497, 0.019228581339120865, -0.013951976783573627, 0.006389489863067865, 0.15609776973724365, 0.06816375255584717, -0.17130514979362488, 0.1337694525718689, 0.09055179357528687, 0.08991897106170654, 0.09687759727239609, -0.016788937151432037, -0.0883423313498497, -0.04075571522116661, -0.014659198001027107, -0.04013442620635033, 0.060623008757829666, -0.05222855508327484, 0.05686604231595993, 0.08711180835962296, 0.024632912129163742, 0.040115173906087875, -0.09516537934541702, -0.02335791103541851, 0.0487174317240715, -0.07870034128427505, -0.13790281116962433, 0.08376512676477432, 0.07533291727304459, 0.1723092645406723, 0.011941187083721161, 0.035002853721380234, -0.024852629750967026, -0.03291524201631546, -0.1709481179714203, 0.20383623242378235, -0.05047513544559479, -0.24326995015144348, -0.08770927041769028, -0.001467929920181632, -0.06536157429218292, -0.0072846924886107445, 0.08835355937480927, -0.08352571725845337, -0.005047753918915987, -0.04191453009843826, 0.09014329314231873, -0.043861180543899536, -0.02542724274098873, -0.06098638474941254, -0.035837750881910324, 0.001010800595395267, -0.15681344270706177, -0.01950669474899769, -0.04568864777684212, -0.042560238391160965, 0.07812241464853287, -0.06713121384382248, 0.14621104300022125, 0.1253572404384613, -0.022609448060393333, 0.03775295242667198, -0.07045986503362656, 0.32963642477989197, -0.10432852059602737, 0.05957164615392685, 0.18158498406410217, -0.01282429601997137, 0.05431658774614334, 0.12529243528842926, 0.012404462322592735, -0.059059083461761475, 0.042479224503040314, 0.09149667620658875, -0.016841331496834755, -0.2942039668560028, -0.009448021650314331, -0.061954692006111145, 0.02599101886153221, 0.03411538526415825, 0.023069247603416443, 0.0828641802072525, 0.0678577721118927, -0.06475609540939331, -0.031977858394384384, 0.04966815933585167, 0.060576021671295166, 0.18791450560092926, 0.022045208141207695, 0.16564098000526428, -0.06561718136072159, -0.06309857964515686, 0.10463734716176987, 0.024980394169688225, 0.11761986464262009, 0.005276437383145094, 0.06204657256603241, 0.06747826933860779, 0.1141289472579956, 0.03371144086122513, 0.04257197305560112, -0.041945505887269974, 0.006186482962220907, -0.03028123266994953, -0.028796974569559097, -0.004011634737253189, 0.019027285277843475, -0.0008094165241345763, 0.004043054301291704, -0.10360101610422134, -0.08075547218322754, 0.055568672716617584, 0.20183327794075012, 0.09165742993354797, -0.18597276508808136, -0.0574742890894413, 0.03452963009476662, -0.05212778598070145, -0.04693758115172386, 0.0023807846009731293, 0.01994241774082184, -0.17547211050987244, 0.07141122221946716, -0.025369519367814064, 0.16564098000526428, 0.06835927814245224, 0.007329397834837437, -0.0531143918633461, -0.07695435732603073, -0.03094731830060482, 0.0970783606171608, -0.2906244993209839, 0.1980111449956894, 0.03985866904258728, -0.07406771183013916, -0.07847265899181366, -0.010973433032631874, -0.039868228137493134, 0.03356204554438591, 0.1601891964673996, -0.006732559762895107, 0.042132094502449036, -0.12989309430122375, -0.007580549456179142, 0.07488224655389786, 0.09856224060058594, -0.095645472407341, 0.10152284055948257, -0.052173320204019547, 0.03044387325644493, -0.015172001905739307, 0.13647249341011047, -0.0370795764029026, -0.09220374375581741, 0.06435178220272064, -0.0422380268573761, -0.028294987976551056, -0.005728620570152998, -0.06013358756899834, -0.03420431539416313, 0.11586886644363403, -0.08801479637622833, -0.07659552246332169, -0.1645413339138031, 0.08055201917886734, 0.09969811141490936, -0.10679540783166885, -0.004514101892709732, -0.057197555899620056, 0.09000971168279648, -0.011845788918435574, -0.1697891354560852, 0.03392061963677406, -0.035161763429641724, -0.12889929115772247, -0.0339646153151989, 0.17595644295215607, -0.006912671960890293, 0.05090591683983803, 0.06424485892057419, 0.015958281233906746, -0.06192746385931969, -0.09867924451828003, 0.05754519999027252, -0.07859417051076889, 0.08457783609628677, 0.011536276899278164, -0.02325904555618763, -0.02068469487130642, -0.09350255876779556, 0.022831114009022713, 0.13916155695915222, 0.18244676291942596, -0.09747877717018127, 0.06465598195791245, 0.07418978959321976, -0.06517212092876434, -0.18061691522598267, 0.007943719625473022, 0.04320212081074715, -0.01431290339678526, 0.03917841613292694, -0.07826890051364899, 0.06176032871007919, 0.0380304791033268, -0.021762773394584656, 0.028348444029688835, -0.21034574508666992, -0.09502927213907242, 0.09899211674928665, 0.055142372846603394, 0.16231466829776764, -0.16812685132026672, -0.06651764363050461, -0.0015359350945800543, -0.36689749360084534, 0.13375674188137054, -0.03221829608082771, 0.06670074909925461, -0.06365709751844406, 0.0544375441968441, 0.04948486387729645, -0.012799504213035107, 0.059073615819215775, 0.010115963406860828, 0.04401068761944771, -0.05279417335987091, -0.024690493941307068, -0.030087394639849663, 0.015331871807575226, 0.1348152905702591, 0.022900162264704704, 0.12085472792387009, -0.1817537397146225, -0.03091202862560749, -0.10397684574127197, 0.017497219145298004, -0.07045046240091324, -0.05655151605606079, -0.08508889377117157, 0.019542967900633812, 0.052122827619314194, -0.05678236111998558, 0.0766233503818512, -0.12677980959415436, 0.23761014640331268, 0.13801293075084686, 0.11545345187187195, -0.0428934246301651, -0.0764828771352768, -0.008857304230332375, -0.04205029830336571, 0.05066480487585068, -0.13292722404003143, 0.12657268345355988, 0.17988233268260956, 0.04653111845254898, 0.135216623544693, 0.03874972462654114, -0.04488566890358925, -0.021049516275525093, 0.047739461064338684, -0.16445420682430267, -0.17108193039894104, -0.05687645077705383, -0.1594323366880417, -0.10369931161403656, 0.027759874239563942, 0.16988372802734375, 0.01753345876932144, -0.06800723075866699, 0.04310709983110428, 0.008703860454261303, 0.02687462419271469, 0.1510845422744751, 0.08972838521003723, 0.06380658596754074, -0.09107187390327454, 0.09525469690561295, 0.051637087017297745, -0.06225718557834625, 0.016680452972650528, 0.048406168818473816, -0.061728525906801224, -0.05408596247434616, 0.01675678789615631, 0.08684976398944855, -0.10798726230859756, -0.01131097599864006, -0.1329875886440277, -0.11010034382343292, 0.08107542991638184, 0.25651705265045166, 0.044999297708272934, 0.041959989815950394, 0.050587061792612076, -0.032545167952775955, -0.048647671937942505, 0.11787710338830948, 0.058479879051446915, 0.019465919584035873, -0.029723141342401505, 0.026722855865955353, -0.03788292407989502, 0.1396232396364212, -0.0534214973449707, -0.0064072697423398495, -0.1300119012594223, 0.006689121015369892, -0.15882743895053864, -0.02056625485420227, -0.015138658694922924, -0.00689092930406332, -0.04907617345452309, -0.13135185837745667, -0.0705428272485733, 0.017128445208072662, -0.08816767483949661, 0.005889113061130047, 0.018354181200265884, 0.02626672200858593, -0.19966000318527222, -0.016997331753373146, 0.08213647454977036, -0.016162877902388573, 0.10108669102191925, 0.06346156448125839, -0.07082122564315796, 0.06255881488323212, -0.12137037515640259, -0.002232499187812209, -0.021660616621375084, 0.03688010200858116, 0.024097492918372154, -0.09477240592241287, 0.04656288027763367, 0.01099487952888012, -0.004526020027697086, 0.059630654752254486, 0.04395090043544769, -0.10182662308216095, -0.06601186096668243, -0.05641540512442589, -0.06521928310394287, -0.07008712738752365, 0.035938285291194916, 0.051800232380628586, 0.07496167719364166, 0.10839676111936569, -0.016350429505109787, 0.08119001239538193, -0.2694568932056427, -0.015164689160883427, 0.0020759881008416414, -0.06886034458875656, -0.07865269482135773, -0.047145526856184006, 0.05447134003043175, -0.04214995354413986, 0.12350476533174515, -0.03718288242816925, 0.15321564674377441, 0.05346928536891937, 0.0903453379869461, 0.053106289356946945, -0.041819699108600616, 0.08745568245649338, 0.020222069695591927, -0.06288426369428635, 0.010686726309359074, 0.045492276549339294, -0.05256033316254616, 0.03242507576942444, 0.1259492188692093, 0.12446129322052002, 0.04724935442209244, 0.006164682563394308, 0.04914643615484238, 0.01892615482211113, 0.06113192439079285, -0.04302573949098587, -0.0077157169580459595, 0.014648806303739548, -0.010723397135734558, 0.11234953254461288, 0.19468413293361664, -0.13409899175167084, 0.09886453300714493, -0.03716706112027168, -0.030763601884245872, -0.1819983720779419, -0.08274541050195694, -0.12149296700954437, -0.11831826716661453, 0.035227399319410324, -0.1742851585149765, 0.07065991312265396, 0.016975853592157364, 0.06783860921859741, -0.041045285761356354, 0.0847383365035057, 0.004614967852830887, -0.12177208811044693, 0.07867959141731262, 0.014765216037631035, 0.03736022114753723, 0.029086461290717125, 0.08788599818944931, 0.1060224324464798, 0.05341619998216629, 0.06328339874744415, 0.006927155423909426, -0.02465984597802162, -0.02159886248409748, -0.1246449276804924, -0.07681511342525482, -0.030459757894277573, 0.02222314476966858, 0.04109599441289902, 0.15173004567623138, 0.022843848913908005, 0.06614537537097931, -0.008182276971638203, 0.2961759865283966, -0.052906449884176254, -0.0217679925262928, -0.15256445109844208, 0.1578141152858734, 0.042488593608140945, 0.06211506202816963, 0.06270880252122879, -0.09534251689910889, -0.01181154977530241, 0.22930499911308289, 0.12283685803413391, -0.03145459294319153, 0.0030969970393925905, 0.04583325609564781, 0.03531567007303238, 0.11587312817573547, 0.024212049320340157, 0.06182771921157837, 0.20304352045059204, -0.05574675649404526, 0.04237904027104378, -0.0323636531829834, 0.004033219534903765, 0.09796454757452011, 0.24004948139190674, 0.035580962896347046, -0.04013798385858536, -0.03797983005642891, 0.11344578117132187, -0.04718293994665146, -0.1274328976869583, -0.06951642036437988, -0.1459948569536209, -0.13251304626464844, -0.02024323120713234, -0.022859904915094376, -0.009655182249844074, 0.019665483385324478, 0.016815342009067535, 0.013608049601316452, 0.09854000061750412, 0.05595851689577103, -0.09677810966968536, -0.14643946290016174, 0.13277766108512878, -0.10151926428079605, 0.09443343430757523, 0.019249094650149345, 0.11012846231460571, 0.09226679801940918, 0.013501287437975407, -0.04602131247520447, 0.06870509684085846, 0.07404197752475739, -0.011795182712376118, 0.008743329904973507, 0.07999728620052338, 0.08389861136674881, 0.030855732038617134, 0.08672000467777252, -0.08645620197057724, 0.04158691316843033, -0.08651559799909592, -0.04067886248230934, -0.1251852959394455, 0.11347414553165436, -0.077276811003685, 0.07157624512910843, 0.17487238347530365, -0.06233477219939232, 0.040329013019800186, -0.10815636813640594, 0.026214400306344032, 0.016484037041664124, 0.0035939400549978018, 0.028981316834688187, -0.10757426172494888, 0.06288162618875504, 0.026731597259640694, -0.02136855013668537, -0.20302370190620422, -0.0366518460214138, -0.014693355187773705, -0.04028499871492386, -0.016366370022296906, 0.11458665877580643, 0.054518718272447586, 0.03913314267992973, -0.023437663912773132, -0.20852114260196686, 0.02018856070935726, 0.13788023591041565, -0.10505327582359314, -0.02625272236764431 ]
null
null
transformers
@ Harry Potter DialoGPT Model
{"tags": ["conversational"]}
text-generation
JDS22/DialoGPT-medium-HarryPotterBot
[ "transformers", "pytorch", "gpt2", "text-generation", "conversational", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
@ Harry Potter DialoGPT Model
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 51 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.009697278961539268, 0.03208012506365776, -0.007204889785498381, 0.004809224978089333, 0.16726240515708923, 0.014898733235895634, 0.09765533357858658, 0.13672804832458496, -0.007841327227652073, -0.031050153076648712, 0.14490588009357452, 0.20411323010921478, -0.006439372431486845, 0.0661218985915184, -0.07572533935308456, -0.2683109939098358, 0.05759621039032936, 0.046649303287267685, 0.016515716910362244, 0.1200079694390297, 0.08573378622531891, -0.05473608896136284, 0.08714032918214798, -0.014583407901227474, -0.150366872549057, 0.017733458429574966, 0.043394338339567184, -0.12260226160287857, 0.11910516023635864, 0.05462685227394104, 0.07063519209623337, 0.014929565601050854, -0.07541623711585999, -0.1631229966878891, 0.03031250834465027, 0.01425902172923088, -0.0594632662832737, 0.04757995903491974, 0.059961482882499695, -0.10165371745824814, 0.10819483548402786, 0.09530027210712433, -0.013078106567263603, 0.06798283755779266, -0.16849711537361145, -0.020869607105851173, -0.01446688175201416, 0.009899779222905636, 0.05550243332982063, 0.09964893013238907, -0.03413357585668564, 0.10497362166643143, -0.09214533120393753, 0.11017382889986038, 0.10932035744190216, -0.32057443261146545, -0.005767723545432091, 0.09167823940515518, 0.039358653128147125, 0.07352814823389053, -0.04467793554067612, 0.06258884817361832, 0.018015462905168533, 0.017986174672842026, -0.014015024527907372, -0.07283061742782593, -0.11612214148044586, 0.04717336222529411, -0.08668071031570435, -0.059868961572647095, 0.2244078367948532, -0.05464440956711769, 0.06881742179393768, -0.05281897634267807, -0.10522868484258652, -0.04308144748210907, -0.029833965003490448, 0.00475557055324316, -0.07660607248544693, 0.08692064881324768, 0.00869679357856512, -0.09547875821590424, -0.1376667022705078, -0.02496783249080181, -0.1776352822780609, 0.16140350699424744, 0.02465328387916088, 0.05232657864689827, -0.2027255892753601, 0.09623090922832489, 0.017906051129102707, -0.08045592904090881, 0.022091427817940712, -0.10046248883008957, 0.029131146147847176, 0.013760408386588097, -0.04754498973488808, -0.061387211084365845, 0.0843690037727356, 0.11199145019054413, -0.01731434464454651, 0.025486016646027565, -0.039331406354904175, 0.08100687712430954, 0.03553595021367073, 0.09077847748994827, 0.007288969587534666, -0.028338588774204254, 0.025842782109975815, -0.13719046115875244, -0.003647835226729512, -0.07116208970546722, -0.16572439670562744, -0.021088803187012672, 0.02994808368384838, 0.08289173990488052, 0.015449047088623047, 0.11682453751564026, -0.03272046521306038, -0.025152435526251793, 0.03602350503206253, -0.047656361013650894, -0.012649794109165668, 0.016648368909955025, 0.013163427822291851, 0.12399329990148544, -0.0022096503525972366, 0.03235051408410072, -0.13653022050857544, 0.031423524022102356, -0.06793295592069626, -0.003740974934771657, -0.03486552834510803, -0.040637075901031494, 0.009043924510478973, -0.06862333416938782, 0.003486064961180091, -0.15030112862586975, -0.15063877403736115, 0.007587034720927477, -0.007836631499230862, -0.04107699543237686, -0.06370922178030014, -0.06952770054340363, -0.013550350442528725, 0.04251532256603241, -0.07093454152345657, -0.011352915316820145, -0.06403283774852753, 0.11004766076803207, -0.03197755664587021, 0.07921615242958069, -0.11953279376029968, 0.08390819281339645, -0.11260783672332764, -0.02386913076043129, -0.060801517218351364, 0.09317506104707718, -0.0006014376995153725, 0.09549830108880997, -0.006563255097717047, -0.017931854352355003, -0.07981178909540176, 0.06445012241601944, -0.042872510850429535, 0.21701598167419434, -0.0615808479487896, -0.11181682348251343, 0.28781595826148987, -0.052628401666879654, -0.1370542049407959, 0.11647392809391022, 0.008682746440172195, 0.05777018144726753, 0.10703510791063309, 0.19733482599258423, -0.015276194550096989, 0.004040541127324104, 0.09471915662288666, 0.11263324320316315, -0.11276852339506149, -0.033160366117954254, 0.013019153848290443, -0.04081077128648758, -0.10867965966463089, 0.04689536616206169, 0.09810488671064377, 0.07090286910533905, -0.04786505550146103, -0.03377414867281914, -0.01366397924721241, 0.0052589005790650845, 0.08885077387094498, -0.007157256826758385, 0.10962837189435959, -0.05819983780384064, -0.03796621412038803, -0.029282379895448685, -0.012126247398555279, -0.03951939567923546, 0.03137664496898651, -0.043376367539167404, 0.10821941494941711, -0.011204327456653118, 0.06364280730485916, -0.16185984015464783, -0.07691477984189987, -0.017002692446112633, 0.1581239402294159, 0.024538565427064896, 0.09859629720449448, 0.0552486926317215, -0.040398042649030685, -0.0012767292791977525, 0.012792680412530899, 0.15581141412258148, -0.022091681137681007, -0.065607450902462, -0.052166227251291275, 0.08642971515655518, -0.05641226842999458, 0.04504093527793884, -0.05937713757157326, 0.012367865070700645, 0.05064384639263153, 0.10342344641685486, -0.00018274025933351368, 0.03323284164071083, -0.008164864964783192, 0.002145637758076191, -0.058205123990774155, 0.007405933458358049, 0.10799351334571838, 0.00036868182360194623, -0.07365862280130386, 0.22074243426322937, -0.17796069383621216, 0.1765957772731781, 0.1893044263124466, -0.299345999956131, 0.017949223518371582, -0.10759581625461578, -0.04561871662735939, 0.014407722279429436, 0.05567655712366104, -0.0454222597181797, 0.1703362911939621, -0.009871348738670349, 0.18874616920948029, -0.04946064203977585, -0.04464937001466751, -0.0200483538210392, -0.05118836089968681, -0.0024189651012420654, 0.07781197130680084, 0.10685696452856064, -0.13992026448249817, 0.1964332014322281, 0.1621224284172058, 0.048237916082143784, 0.19945049285888672, 0.015346456319093704, -0.011589210480451584, 0.0909530371427536, 0.005220826715230942, -0.058739423751831055, -0.07409929484128952, -0.2594851851463318, -0.030033592134714127, 0.07992640137672424, 0.0422382652759552, 0.1212305948138237, -0.11349532753229141, -0.038956157863140106, -0.01763172075152397, -0.023146281018853188, 0.021672505885362625, 0.0914369598031044, 0.06075398623943329, 0.13201528787612915, -0.001710098935291171, -0.007300339173525572, 0.10524573177099228, 0.01783694699406624, -0.09354141354560852, 0.18308524787425995, -0.13652534782886505, -0.37097251415252686, -0.13911493122577667, -0.18057456612586975, -0.05449081212282181, 0.05712554603815079, 0.11679314076900482, -0.12011238187551498, -0.018752124160528183, 0.01578843593597412, 0.10931742936372757, -0.08449502289295197, 0.0021454424131661654, -0.06880278885364532, 0.0321490578353405, -0.10310184955596924, -0.09194442629814148, -0.055416494607925415, -0.031392451375722885, -0.08001253753900528, 0.1423761546611786, -0.10777941346168518, 0.04476889222860336, 0.20262959599494934, 0.04653622955083847, 0.05625178664922714, -0.044105201959609985, 0.19377262890338898, -0.11264272034168243, -0.01661740615963936, 0.19215328991413116, -0.048360925167798996, 0.07476246356964111, 0.1232115849852562, -0.006348740309476852, -0.08765771239995956, 0.03011748194694519, -0.02085109055042267, -0.07988511025905609, -0.23219464719295502, -0.13938382267951965, -0.12429051846265793, 0.09477275609970093, 0.028005298227071762, 0.056365787982940674, 0.17219258844852448, 0.06577219814062119, -0.038416244089603424, 0.006410336587578058, 0.02959546446800232, 0.08237514644861221, 0.23417828977108002, -0.06035616248846054, 0.1364797055721283, -0.03420931473374367, -0.14982740581035614, 0.08169995993375778, 0.0713929831981659, 0.10213395953178406, 0.06678459793329239, 0.0804823637008667, 0.0149586396291852, 0.06188136339187622, 0.1311223804950714, 0.08191446959972382, 0.019586285576224327, -0.02480296604335308, -0.03388110175728798, -0.025523077696561813, -0.05937909707427025, 0.040128443390131, 0.06589099019765854, -0.16763372719287872, -0.039227183908224106, -0.09338314831256866, 0.09657008945941925, 0.0873042419552803, 0.06609832495450974, -0.1842060089111328, -0.008006223477423191, 0.08488986641168594, -0.03854905813932419, -0.13727426528930664, 0.09535189718008041, 0.01523482333868742, -0.15144726634025574, 0.03139317408204079, -0.04061909019947052, 0.12188644707202911, -0.07804752141237259, 0.09809603542089462, -0.08108244836330414, -0.07448557764291763, 0.02123199962079525, 0.1261177361011505, -0.30527687072753906, 0.20240111649036407, -0.0024993624538183212, -0.06486981362104416, -0.1243603527545929, -0.0032166161108762026, 0.002410882618278265, 0.07357452809810638, 0.10519039630889893, -0.007196315098553896, 0.001897757756523788, -0.06300821900367737, -0.01829923689365387, 0.032471053302288055, 0.13080233335494995, -0.0401318334043026, -0.021158374845981598, -0.050194524228572845, -0.001653497340157628, -0.03173094615340233, -0.06934895366430283, 0.02002747356891632, -0.19509181380271912, 0.08751901984214783, 0.04166261479258537, 0.09648149460554123, 0.029994789510965347, 0.004265148192644119, -0.09651939570903778, 0.24698667228221893, -0.07148019969463348, -0.10072879493236542, -0.10919588059186935, -0.046813901513814926, 0.03569883480668068, -0.05628936365246773, 0.04309194162487984, -0.0788632407784462, 0.028997479006648064, -0.06352769583463669, -0.19235502183437347, 0.12410202622413635, -0.09027006477117538, -0.04412810131907463, -0.02371402643620968, 0.2110891044139862, -0.05598580464720726, 0.010335659608244896, 0.02930437959730625, 0.01208863127976656, -0.11645778268575668, -0.09678568691015244, 0.031018631532788277, -0.007351789623498917, 0.050603240728378296, 0.041841957718133926, -0.05915454775094986, -0.017138581722974777, -0.052199993282556534, -0.022926922887563705, 0.3496883809566498, 0.14231905341148376, -0.043836336582899094, 0.19347235560417175, 0.12347975373268127, -0.07452994585037231, -0.3159443140029907, -0.1066238060593605, -0.10937739163637161, -0.04680149629712105, -0.07012093812227249, -0.2002030611038208, 0.06474938243627548, 0.00662544509395957, -0.013415241613984108, 0.12749312818050385, -0.2561831772327423, -0.07571036368608475, 0.15906259417533875, -0.017980827018618584, 0.3745945692062378, -0.1168576180934906, -0.10926306992769241, -0.03950892388820648, -0.14175476133823395, 0.16968177258968353, -0.01989765651524067, 0.11221715062856674, -0.009765521623194218, 0.14388824999332428, 0.05548359826207161, -0.023479344323277473, 0.08544106781482697, 0.004999885335564613, -0.03290518373250961, -0.10304180532693863, -0.05676887184381485, 0.007092386484146118, 0.02477436140179634, 0.018026655539870262, -0.041834570467472076, 0.02227151393890381, -0.11731979995965958, -0.04657655209302902, -0.08982590585947037, 0.04431166127324104, 0.03899754583835602, -0.07325074821710587, -0.002380647463724017, -0.07165111601352692, -0.012272949330508709, 0.022334342822432518, 0.20356793701648712, -0.08029330521821976, 0.16448934376239777, 0.09239562600851059, 0.12419285625219345, -0.14376309514045715, -0.00019283240544609725, -0.0762530043721199, -0.05611240118741989, 0.07737895101308823, -0.09433035552501678, 0.058893077075481415, 0.10901971161365509, -0.04567738622426987, 0.08828683942556381, 0.10377411544322968, 0.008936077356338501, 0.003213887568563223, 0.10916902124881744, -0.2667325437068939, -0.0296600554138422, -0.07532413303852081, 0.000883326749317348, 0.09092561900615692, 0.08562852442264557, 0.18840822577476501, 0.025361526757478714, -0.04293036088347435, -0.002770674182102084, 0.028597986325621605, -0.039021048694849014, 0.051667019724845886, 0.001123449532315135, 0.01947369985282421, -0.1530752182006836, 0.072522833943367, 0.01490565575659275, -0.15215420722961426, 0.021316176280379295, 0.16572684049606323, -0.11656328290700912, -0.1283872276544571, -0.06520111113786697, 0.08313824236392975, -0.11755692958831787, -0.01578943058848381, -0.03279297426342964, -0.13145680725574493, 0.07992171496152878, 0.12629036605358124, 0.05557859688997269, 0.0972496047616005, -0.06061713397502899, -0.020469192415475845, -0.018721895292401314, -0.014099318534135818, -0.012384648434817791, -0.007667020428925753, -0.055978111922740936, 0.0590752474963665, -0.026677248999476433, 0.1425808072090149, -0.09221141785383224, -0.1037059873342514, -0.16142144799232483, 0.0374140702188015, -0.11013076454401016, -0.08825794607400894, -0.08821134269237518, -0.050188567489385605, 0.002360827289521694, -0.019856395199894905, -0.04037635400891304, -0.05829505994915962, -0.12300454825162888, 0.0338277705013752, -0.040771447122097015, 0.024727050215005875, -0.07512269169092178, 0.015856385231018066, 0.08507686108350754, -0.03285100311040878, 0.15655414760112762, 0.1450488418340683, -0.1006515845656395, 0.10741901397705078, -0.14806775748729706, -0.09138492494821548, 0.11116421222686768, 0.015329592861235142, 0.0449691042304039, 0.09723787009716034, 0.013362943194806576, 0.0635865181684494, 0.032776717096567154, 0.05308786407113075, 0.027619892731308937, -0.11959987878799438, 0.06483134627342224, -0.03626115620136261, -0.14700546860694885, -0.049338050186634064, -0.05282869189977646, 0.01647452637553215, 0.013054544106125832, 0.09622690081596375, -0.05301849544048309, 0.10698331147432327, -0.04055701196193695, 0.0346808135509491, 0.017554637044668198, -0.1730053424835205, -0.03816922754049301, -0.08538098633289337, 0.03681723028421402, 0.014741539023816586, 0.25266793370246887, 0.030072299763560295, 0.012416383251547813, 0.032671261578798294, 0.08285367488861084, 0.03899408504366875, 0.010228337720036507, 0.17482228577136993, 0.1162426546216011, -0.06621865928173065, -0.10445023328065872, 0.0729617029428482, 0.016332454979419708, 0.01286179106682539, 0.13617953658103943, 0.008365051820874214, 0.005795429926365614, 0.08649782836437225, -0.016865963116288185, 0.009968153201043606, -0.10052056610584259, -0.13426925241947174, -0.022176474332809448, 0.05151832848787308, -0.04655967652797699, 0.11727844923734665, 0.1406494379043579, -0.01806013658642769, 0.03222079202532768, -0.021771740168333054, -0.05699979141354561, -0.1683429479598999, -0.1429590880870819, -0.06883849948644638, -0.13416796922683716, 0.00897989235818386, -0.11180389672517776, 0.05395037308335304, 0.06001098081469536, 0.06750501692295074, -0.06899319589138031, 0.10220931470394135, 0.04626858979463577, -0.11440542340278625, 0.06264589726924896, -0.0296088308095932, 0.09430401772260666, -0.02759445086121559, -0.019505485892295837, -0.09039592742919922, 0.014574515633285046, 0.011419114656746387, 0.06245238706469536, -0.04707273095846176, 0.007463190704584122, -0.14696238934993744, -0.08972041308879852, -0.0523175448179245, 0.0718572810292244, -0.050409089773893356, 0.14282815158367157, 0.00775480642914772, -0.0170906875282526, 0.039554283022880554, 0.22787313163280487, -0.07476283609867096, -0.04778539761900902, -0.05269690603017807, 0.20717895030975342, 0.02975541539490223, 0.1171872541308403, -0.022938819602131844, -0.006106364540755749, -0.0919521227478981, 0.3764844834804535, 0.30030161142349243, -0.09031439572572708, 0.011794124729931355, 0.02137952297925949, 0.04502861574292183, 0.1316293478012085, 0.1216534823179245, 0.10318691283464432, 0.3006802201271057, -0.07452366501092911, -0.04653361067175865, -0.012629742734134197, -0.023858042433857918, -0.09059546142816544, 0.1021224707365036, 0.04839762672781944, -0.06382183730602264, -0.03313443064689636, 0.0954432487487793, -0.25862133502960205, 0.1277991235256195, -0.12311873584985733, -0.17578600347042084, -0.06654827296733856, 0.009760108776390553, 0.10465722531080246, 0.015642458572983742, 0.0946015790104866, 0.007128213066607714, -0.11252258718013763, 0.06305865943431854, 0.03397420793771744, -0.22762253880500793, 0.0006893770187161863, 0.06642123311758041, -0.07006710022687912, -0.0024247700348496437, -0.026499588042497635, 0.05657242611050606, 0.0656052976846695, 0.054629553109407425, -0.00971333310008049, 0.03816632181406021, 0.0034184439573436975, -0.0585215799510479, 0.016623929142951965, 0.05121519789099693, 0.02472509816288948, -0.09763528406620026, 0.06927435845136642, -0.1574270874261856, 0.04766253009438515, -0.0030655991286039352, -0.04124255105853081, 0.006064958870410919, 0.008823691867291927, -0.06491616368293762, 0.05165379121899605, 0.07916834205389023, -0.0016257909592241049, -0.0062433634884655476, -0.057178743183612823, -0.02632102556526661, -0.027755750343203545, -0.09291748702526093, -0.10495562851428986, -0.14682936668395996, -0.11640441417694092, 0.09368976950645447, -0.01011267676949501, -0.1848134547472, 0.022154374048113823, -0.08606051653623581, 0.08319322764873505, -0.1670055389404297, 0.08040720224380493, 0.07041648775339127, 0.013038921169936657, -0.0031511052511632442, -0.02002427540719509, 0.054132770746946335, 0.086809903383255, -0.10407156497240067, -0.07400695979595184 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-finetuned-nli This model is a fine-tuned version of [klue/bert-base](https://huggingface.co/klue/bert-base) on the klue dataset. It achieves the following results on the evaluation set: - Loss: 0.6210 - Accuracy: 0.085 ## 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: 128 - eval_batch_size: 128 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 5 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 196 | 0.6210 | 0.085 | | No log | 2.0 | 392 | 0.5421 | 0.0643 | | 0.5048 | 3.0 | 588 | 0.5523 | 0.062 | | 0.5048 | 4.0 | 784 | 0.5769 | 0.0533 | | 0.5048 | 5.0 | 980 | 0.5959 | 0.052 | ### Framework versions - Transformers 4.16.2 - Pytorch 1.10.0+cu111 - Datasets 1.18.3 - Tokenizers 0.11.0
{"tags": ["generated_from_trainer"], "datasets": ["klue"], "metrics": ["accuracy"], "model-index": [{"name": "bert-base-finetuned-nli", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "klue", "type": "klue", "args": "nli"}, "metrics": [{"type": "accuracy", "value": 0.085, "name": "Accuracy"}]}]}]}
text-classification
JIWON/bert-base-finetuned-nli
[ "transformers", "pytorch", "bert", "text-classification", "generated_from_trainer", "dataset:klue", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #bert #text-classification #generated_from_trainer #dataset-klue #model-index #autotrain_compatible #endpoints_compatible #region-us
bert-base-finetuned-nli ======================= This model is a fine-tuned version of klue/bert-base on the klue dataset. It achieves the following results on the evaluation set: * Loss: 0.6210 * Accuracy: 0.085 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: 128 * eval\_batch\_size: 128 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 5 ### Training results ### Framework versions * Transformers 4.16.2 * Pytorch 1.10.0+cu111 * Datasets 1.18.3 * Tokenizers 0.11.0
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 128\n* eval\\_batch\\_size: 128\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ "TAGS\n#transformers #pytorch #bert #text-classification #generated_from_trainer #dataset-klue #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 128\n* eval\\_batch\\_size: 128\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5", "### Training results", "### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ 53, 98, 4, 35 ]
[ "passage: TAGS\n#transformers #pytorch #bert #text-classification #generated_from_trainer #dataset-klue #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 128\n* eval\\_batch\\_size: 128\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5### Training results### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.10.0+cu111\n* Datasets 1.18.3\n* Tokenizers 0.11.0" ]
[ -0.09798229485750198, 0.06294521689414978, -0.0006091445684432983, 0.12007969617843628, 0.20726899802684784, 0.03471340984106064, 0.0939624011516571, 0.11239465326070786, -0.09474998712539673, 0.005376458168029785, 0.12819935381412506, 0.17081843316555023, -0.0010147057473659515, 0.1387052685022354, -0.06435191631317139, -0.2879981994628906, -0.02468680776655674, 0.03636010363698006, -0.061347708106040955, 0.1323409527540207, 0.09279569238424301, -0.15465909242630005, 0.08971502631902695, -0.011664710007607937, -0.22097833454608917, 0.016630617901682854, 0.029406271874904633, -0.06096718832850456, 0.143964946269989, 0.009538152255117893, 0.14198368787765503, -0.006473223213106394, 0.0901002287864685, -0.16579526662826538, 0.010899036191403866, 0.04475296661257744, 0.02879670448601246, 0.07185686379671097, 0.041202936321496964, -0.012112918309867382, 0.10977990180253983, -0.12405738234519958, 0.04838535562157631, 0.002421475248411298, -0.12852680683135986, -0.18361566960811615, -0.07497408986091614, 0.005583231803029776, 0.06886778026819229, 0.09398651123046875, -0.010906142182648182, 0.1374685913324356, -0.10108289867639542, 0.10479434579610825, 0.21372799575328827, -0.2779596149921417, -0.06819496303796768, 0.017916878685355186, -0.018487609922885895, 0.07379690557718277, -0.11330189555883408, -0.005306611303240061, 0.060621365904808044, 0.04311061277985573, 0.11497479677200317, -0.051472608000040054, -0.1381455361843109, 0.02001676708459854, -0.14176690578460693, -0.01655818708240986, 0.13538461923599243, 0.029686907306313515, -0.027654968202114105, -0.01574600674211979, -0.04202975705265999, -0.14449994266033173, -0.037153154611587524, -0.003953948616981506, 0.029954001307487488, -0.06995699554681778, -0.09550438076257706, 0.0077285501174628735, -0.09624901413917542, -0.06006969138979912, -0.06392009556293488, 0.17405934631824493, 0.04117044433951378, 0.008102470077574253, -0.02740502916276455, 0.11150631308555603, -0.006111299619078636, -0.13282378017902374, 0.03795638307929039, 0.01969478838145733, -0.004574766848236322, -0.06691540777683258, -0.08422473818063736, -0.0654003694653511, -0.004629878792911768, 0.0705205500125885, -0.040062639862298965, 0.0457862913608551, 0.05835847929120064, 0.015895316377282143, -0.06640942394733429, 0.20532363653182983, -0.0229206383228302, -0.027334487065672874, 0.008046075701713562, 0.04863736405968666, -0.01956033706665039, -0.004347644280642271, -0.10632931441068649, -0.019006185233592987, 0.12533360719680786, 0.015920931473374367, -0.09724295884370804, 0.08191006630659103, -0.04185326024889946, -0.03693252429366112, -0.03463730588555336, -0.0977012887597084, 0.04034939035773277, -0.014190931804478168, -0.0939091369509697, -0.022292470559477806, -0.0003759395331144333, 0.02652578614652157, -0.016169434413313866, 0.13788314163684845, -0.0883430615067482, 0.03936700522899628, -0.10019733756780624, -0.12079113721847534, -0.0075746625661849976, -0.10149878263473511, 0.04006713256239891, -0.1042838916182518, -0.15754567086696625, -0.025251716375350952, 0.042349621653556824, -0.019447019323706627, -0.0637781172990799, -0.06591332703828812, -0.06397423893213272, 0.005873652640730143, -0.0065931822173297405, 0.1663312464952469, -0.058365415781736374, 0.10882031172513962, 0.040611665695905685, 0.07249364256858826, -0.048073943704366684, 0.06165553256869316, -0.09273996949195862, -0.0036351128946989775, -0.20892226696014404, 0.06793368607759476, -0.04230599105358124, 0.06717904657125473, -0.08082892000675201, -0.11383987218141556, 0.030817249789834023, -0.00043334407382644713, 0.08445993810892105, 0.09945403784513474, -0.16177941858768463, -0.0764114260673523, 0.1354232281446457, -0.04379137232899666, -0.10384003072977066, 0.0976933166384697, -0.0815090462565422, 0.06667900830507278, 0.09823339432477951, 0.16719631850719452, 0.092974953353405, -0.05536721274256706, 0.018223635852336884, -0.00997960940003395, 0.06560060381889343, -0.05713196471333504, 0.043290894478559494, 0.027806544676423073, -0.04563936963677406, 0.041475098580121994, -0.018721843138337135, 0.06550203263759613, -0.11132631450891495, -0.08704114705324173, -0.029703907668590546, -0.12384844571352005, 0.07990632206201553, 0.06470026075839996, 0.10888697952032089, -0.09982139617204666, -0.04544025659561157, 0.08311551809310913, 0.06976692378520966, -0.053260255604982376, 0.020712947472929955, -0.03490208461880684, 0.04264432191848755, -0.040593069046735764, -0.03109094500541687, -0.19256240129470825, -0.02817380428314209, 0.011574535630643368, 0.054196085780858994, 0.020913587883114815, 0.020512500777840614, 0.06555026024580002, 0.051596611738204956, -0.06690749526023865, -0.007209219504147768, -0.014549251645803452, 0.004942156374454498, -0.1664452850818634, -0.17535720765590668, -0.01457973849028349, -0.012556477449834347, 0.112790547311306, -0.20392416417598724, 0.016817886382341385, -0.038489315658807755, 0.07233083248138428, -0.0016069955890998244, -0.0007115844637155533, -0.0444117933511734, 0.10199951380491257, -0.01350154634565115, -0.034374091774225235, 0.07963518053293228, -0.012240397743880749, -0.07788071036338806, -0.05692783370614052, -0.07852407544851303, 0.1435806155204773, 0.1255592703819275, -0.1263372004032135, -0.09952325373888016, -0.001906602643430233, -0.04969942942261696, -0.02346242219209671, -0.055113401263952255, 0.04121582210063934, 0.22716498374938965, -0.01368128601461649, 0.1497134566307068, -0.05660957470536232, -0.0498131699860096, 0.016303405165672302, -0.02987000159919262, 0.040308523923158646, 0.13530445098876953, 0.11197774857282639, -0.11489006876945496, 0.11611663550138474, 0.14039789140224457, -0.09995269030332565, 0.1372605413198471, -0.03922920674085617, -0.06476039439439774, -0.010164001025259495, -0.048721808940172195, -0.017141005024313927, 0.09260504692792892, -0.12845894694328308, -0.025929586961865425, 0.011356278322637081, 0.026333481073379517, 0.017337409779429436, -0.2174520492553711, -0.04765615984797478, 0.03139882534742355, -0.011958434246480465, -0.020480381324887276, -0.0015040901489555836, 0.02479400485754013, 0.11909332126379013, 0.01296280324459076, -0.07527787983417511, 0.03688058629631996, 0.002628937130793929, -0.07465203106403351, 0.22612278163433075, -0.08748140931129456, -0.13290224969387054, -0.08795388787984848, -0.07423227280378342, -0.056024495512247086, 0.006002964451909065, 0.04796142876148224, -0.10930079966783524, -0.015721643343567848, -0.04222951456904411, 0.031607430428266525, -0.00809480156749487, 0.051847074180841446, -0.013796011917293072, -0.013838149607181549, 0.04355766251683235, -0.09196823835372925, -0.020869141444563866, -0.06446733325719833, -0.07284055650234222, 0.056039873510599136, 0.030633509159088135, 0.11201503872871399, 0.15620474517345428, -0.0474824458360672, 0.011111409403383732, -0.03409506753087044, 0.2556011378765106, -0.06192253157496452, -0.030970850959420204, 0.09801612049341202, -0.013952616602182388, 0.04578843712806702, 0.11525464057922363, 0.06042267382144928, -0.0885760486125946, 0.03193430230021477, 0.040739234536886215, -0.034512631595134735, -0.20349091291427612, -0.04871257022023201, -0.05241771414875984, -0.043987806886434555, 0.09265315532684326, 0.0023324545472860336, 0.009594249539077282, 0.08145079761743546, 0.06479346752166748, 0.09975016862154007, -0.06333019584417343, 0.04505772516131401, 0.11973390728235245, 0.04334444925189018, 0.12134488672018051, -0.03854075074195862, -0.08933831006288528, 0.03024916909635067, -0.04095990210771561, 0.232918381690979, -0.019621314480900764, 0.05220267176628113, 0.04876074194908142, 0.1578681617975235, 0.0038963062688708305, 0.0925983265042305, -0.0005858649383299053, -0.04650823399424553, -0.014337445609271526, -0.026466572657227516, -0.05553393438458443, 0.017926817759871483, -0.04208940640091896, 0.04465208947658539, -0.1598053127527237, -0.005723563488572836, 0.04971576854586601, 0.2388293594121933, 0.06308002024888992, -0.3019917607307434, -0.08429336547851562, 0.011648508720099926, -0.03621189296245575, -0.02357853390276432, 0.022311389446258545, 0.09516683220863342, -0.12750351428985596, 0.024499529972672462, -0.06855049729347229, 0.095292828977108, -0.05682528018951416, 0.04858722910284996, 0.042797502130270004, 0.09256408363580704, -0.008821976371109486, 0.08117356896400452, -0.3140784502029419, 0.281504362821579, 0.0020140642300248146, 0.07220415025949478, -0.08833643049001694, -0.030172206461429596, 0.04340583458542824, 0.0600651316344738, 0.03203683719038963, 0.003856727620586753, -0.04258033260703087, -0.22969882190227509, -0.026593012735247612, 0.04744851589202881, 0.10980674624443054, -0.035935308784246445, 0.10471145063638687, -0.025050349533557892, 0.008535878732800484, 0.06731319427490234, -0.01740388572216034, -0.07969639450311661, -0.07173646986484528, -0.03334775194525719, 0.026761144399642944, -0.034920018166303635, -0.04523847624659538, -0.11610133200883865, -0.11304467171430588, 0.13280032575130463, 0.044902503490448, -0.04040403664112091, -0.11330220103263855, 0.10950305312871933, 0.07805517315864563, -0.0964394137263298, 0.03606804832816124, 0.01599128730595112, 0.04293670132756233, 0.03735518455505371, -0.0661725178360939, 0.10179498046636581, -0.049077361822128296, -0.15427768230438232, -0.05480144917964935, 0.08569147437810898, 0.049966588616371155, 0.05810193344950676, -0.00457154493778944, 0.020142417401075363, -0.027040662243962288, -0.09172242879867554, 0.02459394931793213, -0.013772244565188885, 0.08640589565038681, 0.0536959134042263, -0.07517003268003464, 0.027553750202059746, -0.07896900922060013, -0.021733805537223816, 0.2240617275238037, 0.21694226562976837, -0.0948265790939331, 0.0020554366055876017, 0.012482968159019947, -0.0687347799539566, -0.20720727741718292, 0.07502127438783646, 0.08620648831129074, 0.015375976450741291, 0.03307602182030678, -0.1829516440629959, 0.14875295758247375, 0.07186067849397659, 0.0017723063938319683, 0.10173431038856506, -0.29760828614234924, -0.13970941305160522, 0.12400033324956894, 0.16419504582881927, 0.18168823421001434, -0.12000960111618042, -0.004375179298222065, -0.032688338309526443, -0.09689775109291077, 0.0992250144481659, -0.05795827507972717, 0.1292988359928131, -0.027216577902436256, 0.12144442647695541, 0.015488659031689167, -0.04506745561957359, 0.10240665823221207, 0.041607655584812164, 0.09516104310750961, -0.06449434906244278, -0.08000488579273224, 0.016562219709157944, -0.04888908937573433, -0.0015617698663845658, -0.052316341549158096, 0.04117980971932411, -0.1373244822025299, -0.015106656588613987, -0.09864190220832825, 0.04280718043446541, -0.027608996257185936, -0.06574580818414688, -0.02439364604651928, 0.031706854701042175, 0.05371163412928581, -0.012791809625923634, 0.08628580719232559, 0.006750843022018671, 0.14418865740299225, 0.05544136092066765, 0.08257514983415604, -0.03912658616900444, -0.021859029307961464, -0.0017627701163291931, -0.012632145546376705, 0.04961109161376953, -0.12234117835760117, 0.027707666158676147, 0.15588846802711487, 0.025597872212529182, 0.12783358991146088, 0.08678745478391647, -0.001765672699548304, 0.010479830205440521, 0.06023296341300011, -0.16768090426921844, -0.04646952822804451, -0.028457840904593468, -0.08977637439966202, -0.11446090787649155, 0.04313597455620766, 0.09859999269247055, -0.06314342468976974, -0.025289779528975487, -0.03913593292236328, -0.01500627864152193, -0.06655610352754593, 0.2052973359823227, 0.08598392456769943, 0.04912497475743294, -0.1028689444065094, 0.05992227792739868, 0.04211881756782532, -0.057676125317811966, 0.01929517835378647, 0.0693434402346611, -0.08914905041456223, -0.03885714337229729, 0.11762300133705139, 0.20847256481647491, -0.069752536714077, -0.01638847030699253, -0.12542308866977692, -0.12105059623718262, 0.07355871796607971, 0.184126079082489, 0.11458379030227661, -0.0011033023474738002, -0.06528180092573166, 0.00047449395060539246, -0.1312093585729599, 0.09251735359430313, 0.05880210921168327, 0.0688575804233551, -0.14090941846370697, 0.1817261427640915, -0.014159423299133778, 0.06970833986997604, -0.02990477718412876, 0.021196112036705017, -0.12085520476102829, 0.015540827065706253, -0.12689287960529327, -0.039047013968229294, 0.0011081971460953355, 0.0025338493287563324, -0.011068318039178848, -0.07355784624814987, -0.054230865091085434, 0.010112881660461426, -0.1318920999765396, -0.018577823415398598, 0.030588412657380104, 0.05349675193428993, -0.09877371788024902, -0.06299106031656265, 0.02694310061633587, -0.05359325185418129, 0.059333059936761856, 0.05728079006075859, 0.01901262067258358, 0.0833221897482872, -0.1292233020067215, -0.004595823585987091, 0.057871539145708084, 0.005173793062567711, 0.08143851906061172, -0.07613981515169144, 0.0011339383199810982, -0.01019621454179287, 0.10893791168928146, 0.03776917979121208, 0.08234964311122894, -0.12966212630271912, -0.0009505238267593086, -0.01084955781698227, -0.08954673260450363, -0.06358309835195541, 0.026564279571175575, 0.0697183683514595, 0.02334805577993393, 0.18439103662967682, -0.0848565474152565, 0.0544460266828537, -0.19127792119979858, -0.00776156410574913, -0.02338777668774128, -0.11932790279388428, -0.11603441834449768, -0.08107764273881912, 0.0826859399676323, -0.04241872951388359, 0.12571924924850464, 0.06102536618709564, 0.07087249308824539, 0.02088046260178089, -0.023023152723908424, 0.011589664965867996, 0.03926501050591469, 0.2218705266714096, 0.04371302202343941, -0.04982958734035492, 0.06466340273618698, 0.08335208892822266, 0.10024309158325195, 0.14423500001430511, 0.23120121657848358, 0.1306159794330597, -0.011918418109416962, 0.08103417605161667, 0.011974231339991093, -0.03986179828643799, -0.13433854281902313, -0.008643853478133678, -0.055147141218185425, 0.09167525172233582, -0.03706586733460426, 0.2010514885187149, 0.012401091866195202, -0.1835087537765503, 0.043346062302589417, -0.07474850863218307, -0.11063602566719055, -0.11359498649835587, -0.024278899654746056, -0.0931866243481636, -0.1284923553466797, 0.011474872939288616, -0.11786939948797226, 0.013002374209463596, 0.1077154278755188, -0.0010077109327539802, -0.020839666947722435, 0.1706250160932541, 0.007003546226769686, 0.03046645224094391, 0.09607671946287155, -0.0007440124754793942, -0.014563266187906265, -0.09239259362220764, -0.05412851274013519, -0.037980739027261734, -0.01711908169090748, 0.02466594986617565, -0.07272277027368546, -0.10427840799093246, 0.020475970581173897, -0.010975174605846405, -0.10305148363113403, 0.008500996045768261, 0.021510345861315727, 0.08151412755250931, 0.033155303448438644, 0.01977425441145897, 0.016448359936475754, -0.02380611188709736, 0.24603231251239777, -0.07616667449474335, -0.08066681027412415, -0.09958461672067642, 0.30055901408195496, 0.05288905277848244, -0.0015933160902932286, 0.031372856348752975, -0.07509098947048187, 0.011247004382312298, 0.2548978626728058, 0.2029554396867752, -0.11751040071249008, 0.00328801735304296, -0.017899954691529274, -0.006325079128146172, 0.0016908053075894713, 0.13668005168437958, 0.12208003550767899, 0.024284392595291138, -0.11339149624109268, -0.02506398595869541, -0.05193981155753136, -0.01522325724363327, -0.032609645277261734, 0.05927889421582222, 0.06499110162258148, -0.0010254619410261512, -0.054972175508737564, 0.06779280304908752, -0.08107542246580124, -0.1016249880194664, 0.04147273674607277, -0.22114627063274384, -0.16436553001403809, -0.0243136677891016, 0.06519154459238052, 0.020928556099534035, 0.07909559458494186, -0.03445925563573837, 0.008303019218146801, 0.05323784425854683, -0.018367845565080643, -0.07407838106155396, -0.09115219861268997, 0.11414241045713425, -0.1111254021525383, 0.15993718802928925, -0.04070882126688957, 0.08465593308210373, 0.12181001901626587, 0.057820651680231094, -0.05273162201046944, 0.055807311087846756, 0.03650398924946785, -0.06903671473264694, 0.03476753458380699, 0.11384707689285278, -0.04078182578086853, 0.03528760001063347, 0.03635405749082565, -0.13185398280620575, 0.03828335180878639, -0.06345319747924805, -0.035637017339468, -0.047656431794166565, -0.03916098549962044, -0.0689605176448822, 0.13544128835201263, 0.24864666163921356, -0.02529984526336193, 0.02761290967464447, -0.06961102038621902, -0.0016218433156609535, 0.043647680431604385, 0.025418462231755257, -0.09740220755338669, -0.22400294244289398, -0.008786165155470371, 0.09528962522745132, -0.02963954769074917, -0.2380414605140686, -0.07712679356336594, -0.017055105417966843, -0.06457258760929108, -0.08000469207763672, 0.10215368866920471, 0.054809752851724625, 0.03789700195193291, -0.05396534875035286, -0.10942921042442322, -0.08312646299600601, 0.1616497039794922, -0.15622909367084503, -0.09866412729024887 ]
null
null
transformers
# aristoBERTo aristoBERTo is a transformer model for ancient Greek, a low resource language. We initialized the pre-training with weights from [GreekBERT](https://huggingface.co/nlpaueb/bert-base-greek-uncased-v1), a Greek version of BERT which was trained on a large corpus of modern Greek (~ 30 GB of texts). We continued the pre-training with an ancient Greek corpus of about 900 MB, which was scrapped from the web and post-processed. Duplicate texts and editorial punctuation were removed. Applied to the processing of ancient Greek, aristoBERTo outperforms xlm-roberta-base and mdeberta in most downstream tasks like the labeling of POS, MORPH, DEP and LEMMA. aristoBERTo is provided by the [Diogenet project](https://diogenet.ucsd.edu) of the University of California, San Diego. ## Intended uses This model was created for fine-tuning with spaCy and the ancient Greek Universal Dependency datasets as well as a NER corpus produced by the [Diogenet project](https://diogenet.ucsd.edu). As a fill-mask model, AristoBERTo can also be used in the restoration of damaged Greek papyri, inscriptions, and manuscripts. It achieves the following results on the evaluation set: - Loss: 1.6323 ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-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: 20.0 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:-------:|:---------------:| | 1.377 | 20.0 | 3414220 | 1.6314 | ### Framework versions - Transformers 4.14.0.dev0 - Pytorch 1.10.0+cu102 - Datasets 1.16.1 - Tokenizers 0.10.3
{"language": ["grc"], "widget": [{"text": "\u03a0\u03bb\u03ac\u03c4\u03c9\u03bd \u1f41 \u03a0\u03b5\u03c1\u03b9\u03ba\u03c4\u03b9\u03cc\u03bd\u03b7\u03c2 [MASK] \u03b3\u03ad\u03bd\u03bf\u03c2 \u1f00\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5\u03bd \u03b5\u1f30\u03c2 \u03a3\u03cc\u03bb\u03c9\u03bd\u03b1."}, {"text": "\u1f41 \u039a\u03c1\u03b9\u03c4\u03af\u03b1\u03c2 \u1f00\u03c0\u03ad\u03b2\u03bb\u03b5\u03c8\u03b5 [MASK] \u03c4\u1f74\u03bd \u03b8\u03cd\u03c1\u03b1\u03bd."}, {"text": "\u03c0\u03c1\u1ff6\u03c4\u03bf\u03b9 \u03b4\u1f72 \u03ba\u03b1\u1f76 \u03bf\u1f50\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u1f31\u03c1\u1f70 \u1f14\u03b3\u03bd\u03c9\u03c3\u03b1\u03bd \u03ba\u03b1\u1f76 [MASK] \u1f31\u03c1\u03bf\u1f7a\u03c2 \u1f14\u03bb\u03b5\u03be\u03b1\u03bd."}], "model-index": [{"name": "aristoBERTo", "results": []}]}
fill-mask
Jacobo/aristoBERTo
[ "transformers", "pytorch", "bert", "fill-mask", "grc", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "grc" ]
TAGS #transformers #pytorch #bert #fill-mask #grc #autotrain_compatible #endpoints_compatible #region-us
aristoBERTo =========== aristoBERTo is a transformer model for ancient Greek, a low resource language. We initialized the pre-training with weights from GreekBERT, a Greek version of BERT which was trained on a large corpus of modern Greek (~ 30 GB of texts). We continued the pre-training with an ancient Greek corpus of about 900 MB, which was scrapped from the web and post-processed. Duplicate texts and editorial punctuation were removed. Applied to the processing of ancient Greek, aristoBERTo outperforms xlm-roberta-base and mdeberta in most downstream tasks like the labeling of POS, MORPH, DEP and LEMMA. aristoBERTo is provided by the Diogenet project of the University of California, San Diego. Intended uses ------------- This model was created for fine-tuning with spaCy and the ancient Greek Universal Dependency datasets as well as a NER corpus produced by the Diogenet project. As a fill-mask model, AristoBERTo can also be used in the restoration of damaged Greek papyri, inscriptions, and manuscripts. It achieves the following results on the evaluation set: * Loss: 1.6323 Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 5e-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: 20.0 * mixed\_precision\_training: Native AMP ### Training results ### Framework versions * Transformers 4.14.0.dev0 * Pytorch 1.10.0+cu102 * Datasets 1.16.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.14.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #bert #fill-mask #grc #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.14.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ 39, 114, 4, 36 ]
[ "passage: TAGS\n#transformers #pytorch #bert #fill-mask #grc #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.14.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.16.1\n* Tokenizers 0.10.3" ]
[ -0.10261187702417374, -0.006388036534190178, -0.002035397570580244, 0.09576065838336945, 0.18752944469451904, 0.03686103969812393, 0.09718678891658783, 0.09589946269989014, -0.10722286254167557, 0.019301380962133408, 0.1351657509803772, 0.14835666120052338, 0.0028252461925148964, 0.1445840746164322, -0.05520906671881676, -0.26598626375198364, -0.007994115352630615, 0.01998578943312168, -0.09540870040655136, 0.12019436061382294, 0.08839370310306549, -0.15459328889846802, 0.07089490443468094, 0.0013781902380287647, -0.21334846317768097, 0.02394685335457325, 0.031907398253679276, -0.06376001983880997, 0.14150455594062805, 0.023718336597085, 0.1614953875541687, -0.008145829662680626, 0.10429918020963669, -0.1677243411540985, 0.012581697665154934, 0.05955405533313751, 0.011952321045100689, 0.06280773878097534, 0.05140099674463272, -0.015703421086072922, 0.10373640805482864, -0.12716996669769287, 0.07267633080482483, 0.008160695433616638, -0.15009690821170807, -0.2534807324409485, -0.07985813170671463, -0.023045869544148445, 0.05707065388560295, 0.09579634666442871, -0.009346733801066875, 0.15284915268421173, -0.127369686961174, 0.09867101162672043, 0.238583043217659, -0.2538805603981018, -0.08878067135810852, 0.02375008352100849, 0.015758423134684563, 0.04588283225893974, -0.11004100739955902, -0.005295739974826574, 0.05477985367178917, 0.052320465445518494, 0.12254229187965393, -0.023817408829927444, -0.10156544297933578, 0.024991052225232124, -0.14071595668792725, -0.024059617891907692, 0.07021953910589218, 0.020097361877560616, -0.04002795368432999, 0.008321248926222324, -0.05671408399939537, -0.15797097980976105, -0.05425812676548958, -0.02534591034054756, 0.05252658575773239, -0.05525021627545357, -0.1098485141992569, 0.014281483367085457, -0.08446918427944183, -0.07772088795900345, -0.07478311657905579, 0.2239934802055359, 0.042044032365083694, 0.008520768024027348, -0.03617551550269127, 0.09255025535821915, -0.07989213615655899, -0.1327729970216751, 0.011625871993601322, 0.03665730729699135, -0.04289126396179199, -0.06365902721881866, -0.08806459605693817, -0.061470877379179, 0.00018017446564044803, 0.13641424477100372, -0.05698318034410477, 0.07284701615571976, 0.03336474671959877, 0.02140466496348381, -0.10885889828205109, 0.19463510811328888, -0.023654401302337646, -0.015284877270460129, 0.006806494202464819, 0.024687713012099266, -0.006706765852868557, -0.011909878812730312, -0.07693622261285782, -0.000678909826092422, 0.0881580039858818, 0.0018075756961479783, -0.08870583772659302, 0.05517950281500816, -0.042631227523088455, 0.010263326577842236, -0.022343464195728302, -0.09558680653572083, 0.059049736708402634, -0.01552306953817606, -0.07573092728853226, -0.027112239971756935, 0.024759825319051743, 0.03131411224603653, -0.00047598668606951833, 0.17895372211933136, -0.0780753493309021, 0.043826788663864136, -0.12661094963550568, -0.1344486027956009, -0.004515234846621752, -0.059054985642433167, 0.02865658700466156, -0.09410139173269272, -0.14658068120479584, -0.005031300242990255, 0.06317374110221863, -0.03462772071361542, -0.02210446074604988, -0.048432815819978714, -0.0631084069609642, 0.03426837921142578, -0.008649736642837524, 0.1966538429260254, -0.06330683082342148, 0.10560092329978943, 0.07506711035966873, 0.08859686553478241, -0.024691259488463402, 0.04358519986271858, -0.07164382934570312, -0.007548060733824968, -0.246229887008667, 0.03775498643517494, -0.05912945419549942, 0.05816221982240677, -0.06567610055208206, -0.12313739210367203, 0.006893694866448641, 0.00026224993052892387, 0.11463186889886856, 0.09745743870735168, -0.17531587183475494, -0.08666761219501495, 0.1795169711112976, -0.06054828688502312, -0.05608513206243515, 0.12678416073322296, -0.06502294540405273, -0.006427827291190624, 0.0685393363237381, 0.12801524996757507, 0.030629796907305717, -0.12537966668605804, 0.031227106228470802, -0.04532015696167946, 0.048393916338682175, -0.02422058954834938, 0.0537480004131794, 0.008272908627986908, -0.02174827642738819, 0.017241397872567177, -0.010657047852873802, 0.06926608830690384, -0.1263403743505478, -0.07821724563837051, -0.04652448371052742, -0.09211864322423935, 0.0774058997631073, 0.056718047708272934, 0.07203266024589539, -0.14091002941131592, -0.09187779575586319, 0.049008943140506744, 0.0642155334353447, -0.034498076885938644, 0.030378662049770355, -0.06514784693717957, 0.05449235439300537, -0.0545000359416008, -0.027084046974778175, -0.1773437261581421, -0.020016497001051903, 0.0027930676005780697, 0.046932484954595566, 0.02104916237294674, 0.0009409962804056704, 0.10149427503347397, 0.0797322541475296, -0.07003287971019745, -0.009001105092465878, -0.05719475448131561, -0.008714479394257069, -0.1389334797859192, -0.20615291595458984, -0.02241472341120243, -0.017392998561263084, 0.08734666556119919, -0.19638356566429138, 0.011635886505246162, -0.03815700486302376, 0.08365415036678314, 0.00950447004288435, -0.008310268633067608, -0.06869063526391983, 0.09693949669599533, -0.005131877958774567, -0.04936598613858223, 0.047415416687726974, -0.005988566670566797, -0.0634501501917839, -0.0481097437441349, -0.09219168871641159, 0.17487993836402893, 0.13309356570243835, -0.14746567606925964, -0.10502586513757706, 0.02370777167379856, -0.05598992109298706, -0.025181682780385017, -0.06300613284111023, 0.06328064948320389, 0.2254488468170166, -0.012796196155250072, 0.1386587768793106, -0.05894489958882332, -0.03731124475598335, 0.03126439452171326, -0.043063223361968994, 0.03805585578083992, 0.10537787526845932, 0.10514561831951141, -0.060466621071100235, 0.11045543104410172, 0.13050565123558044, -0.11472020298242569, 0.12582339346408844, -0.013511810451745987, -0.08288030326366425, -0.022840969264507294, -0.04686235263943672, 0.009808256290853024, 0.11221454292535782, -0.13047486543655396, -0.008623644709587097, 0.007117241621017456, 0.03329632431268692, 0.01640547811985016, -0.23058971762657166, -0.04604005068540573, 0.04667719453573227, -0.023211242631077766, -0.060508400201797485, -0.013834546320140362, 0.020385684445500374, 0.11228180676698685, 0.006598421838134527, -0.05131843686103821, 0.017540086060762405, 0.006171396933495998, -0.06281183660030365, 0.20968842506408691, -0.09908390790224075, -0.1135844886302948, -0.07812133431434631, -0.12074814736843109, -0.01745457388460636, 0.01862996071577072, 0.06202466040849686, -0.15152104198932648, -0.04250689595937729, -0.010518616065382957, 0.027732549235224724, -0.010990270413458347, 0.06128539890050888, 0.010148977860808372, -0.015410354360938072, 0.07021337002515793, -0.09839445352554321, -0.022918961942195892, -0.05765433982014656, -0.07028952986001968, 0.08327583223581314, 0.07281368225812912, 0.11406151205301285, 0.12320293486118317, -0.04321419820189476, 0.01749761961400509, -0.02651120163500309, 0.2441156655550003, -0.07691163569688797, -0.06142568215727806, 0.09842076152563095, -0.009893443435430527, 0.04644140601158142, 0.07625611871480942, 0.06335721909999847, -0.11118607968091965, 0.020995037630200386, 0.04266494885087013, -0.0373394638299942, -0.20259469747543335, -0.029187241569161415, -0.05760830640792847, -0.08510693907737732, 0.08299589157104492, 0.0030842141713947058, 0.02493450790643692, 0.04974178969860077, 0.04277252405881882, 0.08978328853845596, -0.05930957943201065, 0.05196969583630562, 0.0921785905957222, 0.04773884266614914, 0.13168911635875702, -0.03637325018644333, -0.08245687186717987, 0.03072568029165268, -0.06423486769199371, 0.25156378746032715, 0.02046150527894497, 0.0426737517118454, 0.049821119755506516, 0.16869772970676422, 0.011265155859291553, 0.09277583658695221, 0.013628749176859856, -0.07836086302995682, -0.007884821854531765, -0.040648430585861206, -0.050269223749637604, 0.018370172008872032, -0.020649990066885948, 0.05180186405777931, -0.13851848244667053, -0.002985437633469701, 0.04326498135924339, 0.25189319252967834, 0.031170157715678215, -0.31576114892959595, -0.07884161174297333, -0.007967863231897354, -0.034229639917612076, -0.0195324644446373, -0.005397359374910593, 0.09022051841020584, -0.09714826941490173, 0.056059710681438446, -0.05741585046052933, 0.09038484841585159, 0.013409898616373539, 0.04346104711294174, 0.04249991476535797, 0.1353117674589157, -0.01282206829637289, 0.0557919442653656, -0.34728652238845825, 0.31739649176597595, 0.0018457991536706686, 0.09979573637247086, -0.07857834547758102, -0.00653707655146718, 0.04871536046266556, 0.02652367763221264, 0.033840544521808624, -0.012667655944824219, -0.08196691423654556, -0.21474555134773254, -0.04331069812178612, 0.04756779223680496, 0.12763921916484833, 0.005828239489346743, 0.10968302190303802, -0.01807139627635479, -0.0033955043181777, 0.08585503697395325, -0.0025650898460298777, -0.1123221293091774, -0.06342490017414093, -0.02758685126900673, 0.008858205750584602, -0.0502590574324131, -0.07488521188497543, -0.12529180943965912, -0.10120712965726852, 0.14953483641147614, 0.055315662175416946, -0.0014579002745449543, -0.13016748428344727, 0.10709494352340698, 0.08748873323202133, -0.07828430831432343, 0.061675217002630234, 0.03272206708788872, 0.05725618079304695, 0.027947459369897842, -0.04474012553691864, 0.12200350314378738, -0.08402994275093079, -0.1429409384727478, -0.06934138387441635, 0.07317566871643066, 0.05482740327715874, 0.08577106893062592, -0.025685472413897514, 0.043807253241539, -0.016147321090102196, -0.07964827865362167, 0.046536028385162354, -0.023871244862675667, 0.07746180146932602, 0.05451435595750809, -0.03393665701150894, 0.024202926084399223, -0.04936274141073227, -0.034133631736040115, 0.18481437861919403, 0.276455283164978, -0.0839657187461853, 0.0024461159482598305, 0.0031062266789376736, -0.05834615230560303, -0.17828688025474548, 0.08514714241027832, 0.08332167565822601, 0.02477658912539482, 0.015090081840753555, -0.17422299087047577, 0.10846137255430222, 0.09147019684314728, 0.009541400708258152, 0.09830722212791443, -0.2751898467540741, -0.1401493400335312, 0.1167798638343811, 0.15418100357055664, 0.16890276968479156, -0.11973937600851059, -0.001961955102160573, -0.03409549593925476, -0.11343961954116821, 0.06148765608668327, -0.06738337129354477, 0.12598276138305664, -0.022036394104361534, 0.09187419712543488, 0.008075241930782795, -0.06680546700954437, 0.1143512949347496, -0.022148407995700836, 0.10835368186235428, -0.06621935218572617, -0.010012454353272915, 0.018948473036289215, -0.0293132197111845, -0.030692068859934807, -0.03462095931172371, 0.007979605346918106, -0.06163464114069939, -0.020759927108883858, -0.08234461396932602, 0.0350026972591877, -0.032427433878183365, -0.054721586406230927, -0.017365837469697, 0.02342868410050869, 0.03922761604189873, -0.026126405224204063, 0.07757849991321564, 0.0003000696888193488, 0.17615416646003723, 0.0123952217400074, 0.07994885742664337, -0.07894916832447052, -0.034211013466119766, 0.027714254334568977, -0.01124891359359026, 0.0517958328127861, -0.12403234094381332, 0.018661292269825935, 0.13843435049057007, 0.02225836180150509, 0.12441667169332504, 0.0913953110575676, -0.02207215316593647, 0.019533170387148857, 0.07457510381937027, -0.15416286885738373, -0.05428876727819443, 0.009378201328217983, -0.0536385104060173, -0.08337743580341339, 0.01166072953492403, 0.0753951370716095, -0.07588032633066177, -0.012896458618342876, -0.0316358357667923, -0.008959843777120113, -0.08274995535612106, 0.23755903542041779, 0.050874680280685425, 0.047547776252031326, -0.10462512820959091, 0.051608044654130936, 0.03247913345694542, -0.09282855689525604, 0.020206641405820847, 0.084965281188488, -0.05725793540477753, -0.021394560113549232, 0.12288118153810501, 0.22251799702644348, -0.03478353098034859, -0.02766312099993229, -0.14434197545051575, -0.1118953600525856, 0.09203744679689407, 0.18888112902641296, 0.09749080240726471, -0.023637935519218445, -0.0463239811360836, 0.043499741703271866, -0.12887802720069885, 0.06237036734819412, 0.06778989732265472, 0.0730270966887474, -0.11426685005426407, 0.2136990875005722, 0.002205527387559414, 0.04267825186252594, -0.02428669109940529, 0.03407099470496178, -0.12025260180234909, 0.028036827221512794, -0.12251459807157516, -0.043760769069194794, 0.00816796999424696, -0.003513522446155548, -0.003740169806405902, -0.08495472371578217, -0.06922581791877747, 0.012061520479619503, -0.12469533085823059, -0.021820848807692528, 0.04207098111510277, 0.019976824522018433, -0.10570450872182846, -0.047838788479566574, 0.04478219896554947, -0.061776161193847656, 0.035749830305576324, 0.08191308379173279, 0.023437412455677986, 0.07128578424453735, -0.16441065073013306, -0.02487945556640625, 0.06490511447191238, -0.010253160260617733, 0.0941396951675415, -0.10348661988973618, 0.008123194798827171, -0.012378443032503128, 0.11278621852397919, 0.02626527100801468, 0.09339311718940735, -0.12494686990976334, -0.0004891906282864511, -0.02624853141605854, -0.11483060568571091, -0.047804851084947586, 0.014520960859954357, 0.0839124247431755, 0.015089335851371288, 0.16305066645145416, -0.10933863371610641, 0.05707568675279617, -0.21112972497940063, -0.007436406798660755, -0.028278915211558342, -0.1063288077712059, -0.09674973785877228, -0.0558011531829834, 0.09511741995811462, -0.04901113733649254, 0.11912880092859268, 0.024557605385780334, 0.08387981355190277, 0.03329481929540634, -0.05377943068742752, 0.003510409966111183, 0.025999946519732475, 0.19106999039649963, 0.0506611205637455, -0.042147621512413025, 0.07554613798856735, 0.08868151158094406, 0.1215142086148262, 0.10010768473148346, 0.24026276171207428, 0.1606067419052124, 0.031967245042324066, 0.10459718853235245, 0.003892991691827774, -0.09470468014478683, -0.13155652582645416, 0.014296367764472961, -0.06336826831102371, 0.08429022878408432, -0.02382086217403412, 0.18882589042186737, 0.0617377944290638, -0.17237818241119385, 0.05999482050538063, -0.07274416089057922, -0.09095557779073715, -0.12607772648334503, 0.02221580408513546, -0.09459738433361053, -0.14784350991249084, 0.022738110274076462, -0.11017690598964691, 0.05017024651169777, 0.08817742019891739, 0.014185719192028046, -0.003015266265720129, 0.18682649731636047, 0.03026501089334488, 0.050930432975292206, 0.05898963287472725, -0.0025889170356094837, -0.014060701243579388, -0.07240808755159378, -0.08360632508993149, -0.01061368640512228, -0.03176065534353256, 0.04087202996015549, -0.06253410875797272, -0.10344584286212921, 0.049395300447940826, 0.00622369023039937, -0.10902266204357147, 0.017114100977778435, 0.020883668214082718, 0.07837094366550446, 0.03364366292953491, 0.006763762794435024, 0.034473203122615814, -0.02423737198114395, 0.21456167101860046, -0.08690733462572098, -0.10418090969324112, -0.0999009758234024, 0.26825615763664246, 0.06071975454688072, 0.0095873037353158, 0.017826735973358154, -0.05787219852209091, 0.003311621490865946, 0.2272910475730896, 0.17704308032989502, -0.07987229526042938, 0.0014988984912633896, 0.0020031773019582033, -0.015905002132058144, -0.026007018983364105, 0.12469194084405899, 0.1530231386423111, 0.017429020255804062, -0.11568838357925415, -0.060529254376888275, -0.05978987738490105, -0.009774266742169857, -0.03479597717523575, 0.031595099717378616, 0.05145152658224106, 0.006718816701322794, -0.030126556754112244, 0.05338839441537857, -0.02315794676542282, -0.0819447934627533, 0.06043703109025955, -0.21510185301303864, -0.1621430367231369, -0.0034925309009850025, 0.08834520727396011, 0.009296267293393612, 0.08107104152441025, -0.024875661358237267, -0.017061743885278702, 0.07029923051595688, -0.019418440759181976, -0.05771254003047943, -0.12864208221435547, 0.09873419255018234, -0.09153866022825241, 0.19406279921531677, -0.03940734267234802, 0.07211655378341675, 0.13183604180812836, 0.0771285891532898, -0.05697259306907654, 0.0563952699303627, 0.030959095805883408, -0.11558204144239426, 0.013979388400912285, 0.13477598130702972, -0.05543741211295128, 0.02948685735464096, 0.039613913744688034, -0.1443033218383789, 0.05075609311461449, -0.09652812033891678, -0.03634389117360115, -0.020563792437314987, -0.021863939240574837, -0.0735204815864563, 0.10789158195257187, 0.23741020262241364, -0.007834017276763916, 0.030600115656852722, -0.08795630931854248, 0.02520768530666828, 0.046692922711372375, 0.07591427862644196, -0.10713504254817963, -0.26016464829444885, 0.02010469138622284, 0.07930969446897507, -0.036677487194538116, -0.23479101061820984, -0.10521140694618225, 0.003182249842211604, -0.07885324954986572, -0.08122381567955017, 0.09193845838308334, 0.07338045537471771, 0.06384018808603287, -0.05127054452896118, -0.14658795297145844, -0.06190599873661995, 0.17282108962535858, -0.14676111936569214, -0.07616099715232849 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # axiothea This is an experimental roberta model trained with an ancient Greek corpus of about 900 MB, which was scrapped from the web and post-processed. Duplicate texts and editorial punctuation were removed. The training dataset will be soon available in the Huggingface datasets hub. Training a model of ancient Greek is challenging given that it is a low resource language from which 50% of the register has only survived in fragmentary texts. The model is provided by the Diogenet project at the University of California, San Diego. It achieves the following results on the evaluation set: - Loss: 3.3351 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 10.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:-------:|:---------------:| | 4.7013 | 1.0 | 341422 | 4.8813 | | 4.2866 | 2.0 | 682844 | 4.4422 | | 4.0496 | 3.0 | 1024266 | 4.2132 | | 3.8503 | 4.0 | 1365688 | 4.0246 | | 3.6917 | 5.0 | 1707110 | 3.8756 | | 3.4917 | 6.0 | 2048532 | 3.7381 | | 3.3907 | 7.0 | 2389954 | 3.6107 | | 3.2876 | 8.0 | 2731376 | 3.5044 | | 3.1994 | 9.0 | 3072798 | 3.3980 | | 3.0806 | 10.0 | 3414220 | 3.3095 | ### Framework versions - Transformers 4.13.0.dev0 - Pytorch 1.10.0+cu102 - Datasets 1.14.0 - Tokenizers 0.10.3
{"language": ["grc"], "tags": ["generated_from_trainer"], "widget": [{"text": "\u03a0\u03bb\u03ac\u03c4\u03c9\u03bd \u1f41 \u03a0\u03b5\u03c1\u03b9\u03ba\u03c4\u03b9\u03cc\u03bd\u03b7\u03c2 <mask> \u03b3\u03ad\u03bd\u03bf\u03c2 \u1f00\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5\u03bd \u03b5\u1f30\u03c2 \u03a3\u03cc\u03bb\u03c9\u03bd\u03b1."}, {"text": "\u1f41 \u039a\u03c1\u03b9\u03c4\u03af\u03b1\u03c2 \u1f00\u03c0\u03ad\u03b2\u03bb\u03b5\u03c8\u03b5 <mask> \u03c4\u1f74\u03bd \u03b8\u03cd\u03c1\u03b1\u03bd."}, {"text": "\u1f6e \u03c6\u03af\u03bb\u03b5 \u039a\u03bb\u03b5\u03b9\u03bd\u03af\u03b1, \u03ba\u03b1\u03bb\u1ff6\u03c2 \u03bc\u1f72\u03bd <mask>."}], "model-index": [{"name": "dioBERTo", "results": []}]}
fill-mask
Jacobo/axiothea
[ "transformers", "pytorch", "roberta", "fill-mask", "generated_from_trainer", "grc", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "grc" ]
TAGS #transformers #pytorch #roberta #fill-mask #generated_from_trainer #grc #autotrain_compatible #endpoints_compatible #region-us
axiothea ======== This is an experimental roberta model trained with an ancient Greek corpus of about 900 MB, which was scrapped from the web and post-processed. Duplicate texts and editorial punctuation were removed. The training dataset will be soon available in the Huggingface datasets hub. Training a model of ancient Greek is challenging given that it is a low resource language from which 50% of the register has only survived in fragmentary texts. The model is provided by the Diogenet project at the University of California, San Diego. It achieves the following results on the evaluation set: * Loss: 3.3351 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 5e-05 * train\_batch\_size: 8 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * num\_epochs: 10.0 ### Training results ### Framework versions * Transformers 4.13.0.dev0 * Pytorch 1.10.0+cu102 * Datasets 1.14.0 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 10.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.13.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #roberta #fill-mask #generated_from_trainer #grc #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 10.0", "### Training results", "### Framework versions\n\n\n* Transformers 4.13.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ 47, 99, 4, 36 ]
[ "passage: TAGS\n#transformers #pytorch #roberta #fill-mask #generated_from_trainer #grc #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 10.0### Training results### Framework versions\n\n\n* Transformers 4.13.0.dev0\n* Pytorch 1.10.0+cu102\n* Datasets 1.14.0\n* Tokenizers 0.10.3" ]
[ -0.10221599787473679, 0.016668546944856644, -0.0018742028623819351, 0.11503934115171432, 0.20093776285648346, 0.04316980391740799, 0.09890982508659363, 0.08746876567602158, -0.11696285009384155, 0.027291348204016685, 0.13907304406166077, 0.14129941165447235, -0.0031425708439201117, 0.1404769867658615, -0.044452305883169174, -0.2481544315814972, -0.011273274198174477, 0.017679724842309952, -0.0981612280011177, 0.12810982763767242, 0.08291041851043701, -0.1473890244960785, 0.08365405350923538, -0.0026951071340590715, -0.2561682462692261, 0.007188761606812477, 0.03958367928862572, -0.07117624580860138, 0.13669203221797943, 0.0015717250062152743, 0.16360285878181458, -0.021111318841576576, 0.10261732339859009, -0.14036564528942108, 0.01605595089495182, 0.0571768581867218, 0.010563293471932411, 0.07563924789428711, 0.040213484317064285, -0.009513880126178265, 0.1080036535859108, -0.11606096476316452, 0.06658991426229477, 0.015623125247657299, -0.1526099145412445, -0.221281960606575, -0.07979867607355118, -0.00890651810914278, 0.046102721244096756, 0.10509788244962692, -0.004464278928935528, 0.14879170060157776, -0.12078435719013214, 0.08969972282648087, 0.25320959091186523, -0.24786332249641418, -0.08889612555503845, 0.044122692197561264, 0.003591233165934682, 0.04099154844880104, -0.11405790597200394, -0.005224427208304405, 0.0484878346323967, 0.0516270212829113, 0.12757760286331177, -0.03148742765188217, -0.08968819677829742, 0.01903822273015976, -0.14210107922554016, -0.02254531718790531, 0.03830346837639809, 0.019962919875979424, -0.0357820987701416, 0.0005389272700995207, -0.06996490806341171, -0.1615283191204071, -0.052692100405693054, -0.008362064138054848, 0.03975978493690491, -0.06566007435321808, -0.12059946358203888, 0.00907735526561737, -0.07595743238925934, -0.08539926260709763, -0.07150410115718842, 0.23780162632465363, 0.03432445228099823, 0.026616130024194717, -0.035386841744184494, 0.10459844022989273, -0.04645320773124695, -0.1417221873998642, 0.026132887229323387, 0.027006885036826134, -0.03780714422464371, -0.03942170739173889, -0.09026499837636948, -0.049763165414333344, 0.010598563589155674, 0.13452483713626862, -0.03475334122776985, 0.03959191218018532, 0.0687989890575409, 0.026594815775752068, -0.10983993858098984, 0.19985397160053253, -0.036245197057724, -0.03889169916510582, 0.017719794064760208, 0.03423445671796799, 0.0019981178920716047, -0.013252641074359417, -0.09121717512607574, -0.02049688994884491, 0.0933665856719017, 0.003746434347704053, -0.06620806455612183, 0.05297354608774185, -0.036288004368543625, -0.0021771888714283705, -0.021163810044527054, -0.09255518764257431, 0.04114917293190956, -0.022704968228936195, -0.08467629551887512, -0.004793283063918352, 0.02588374726474285, 0.0065316990949213505, 0.0019483972573652864, 0.16564567387104034, -0.09884043037891388, 0.038682837039232254, -0.12213889509439468, -0.11469566076993942, -0.012792622670531273, -0.08177465200424194, 0.020789533853530884, -0.10722751915454865, -0.15744802355766296, -0.00701183220371604, 0.053797412663698196, -0.03027014061808586, -0.02532157674431801, -0.03823927417397499, -0.0849645659327507, 0.014731788076460361, -0.0008914087666198611, 0.16674329340457916, -0.05472744256258011, 0.1192927435040474, 0.08041848242282867, 0.09140884876251221, -0.060167912393808365, 0.04372542351484299, -0.08517981320619583, -0.0020789618138223886, -0.2354637086391449, 0.03254050388932228, -0.03879173845052719, 0.061908453702926636, -0.06236327812075615, -0.13313212990760803, 0.014787944033741951, -0.010808772407472134, 0.10592857003211975, 0.09937101602554321, -0.14204585552215576, -0.08434776216745377, 0.15793269872665405, -0.053489189594984055, -0.07415643334388733, 0.11886710673570633, -0.058259714394807816, 0.00022592494497075677, 0.06496114283800125, 0.11054888367652893, 0.04499613866209984, -0.10732600837945938, 0.02499500662088394, -0.04649294167757034, 0.046571142971515656, -0.049006137996912, 0.05934890732169151, 0.015650201588869095, -0.015222613699734211, 0.03187907859683037, -0.030752461403608322, 0.07614591717720032, -0.12636619806289673, -0.08929179608821869, -0.04701931029558182, -0.10961148887872696, 0.0844937190413475, 0.05912841111421585, 0.08070522546768188, -0.11177961528301239, -0.07857748121023178, 0.04849221184849739, 0.06694821268320084, -0.029794368892908096, 0.01990346610546112, -0.06168769299983978, 0.07412072271108627, -0.07451552152633667, -0.026803920045495033, -0.18915525078773499, -0.04206842929124832, -0.004292742814868689, 0.029360288754105568, 0.024410275742411613, -0.016055505722761154, 0.09309729188680649, 0.0805036723613739, -0.06515748798847198, -0.007053738459944725, -0.07726002484560013, -0.01624571718275547, -0.12743903696537018, -0.1862727403640747, -0.03590361028909683, -0.009074137546122074, 0.1123713031411171, -0.17491458356380463, 0.013708815909922123, -0.07036295533180237, 0.08270186930894852, 0.007444079965353012, -0.019919855520129204, -0.06362856179475784, 0.10518240183591843, -0.0020499282982200384, -0.05466733127832413, 0.04895350709557533, -0.021102512255311012, -0.07250194996595383, -0.08724022656679153, -0.08815588802099228, 0.19117337465286255, 0.13609981536865234, -0.13468721508979797, -0.10392571240663528, 0.05717737600207329, -0.06816880404949188, -0.013931138440966606, -0.06366033107042313, 0.0560055710375309, 0.19105654954910278, -0.005225354805588722, 0.13182497024536133, -0.04958631470799446, -0.027644723653793335, 0.03592372685670853, -0.03425495699048042, 0.054428886622190475, 0.08531592041254044, 0.1325465738773346, -0.023770486935973167, 0.11553417146205902, 0.1413893699645996, -0.13154006004333496, 0.11700192093849182, -0.010605057701468468, -0.07884353399276733, -0.023842671886086464, -0.05455783009529114, 0.010372741147875786, 0.12350323051214218, -0.09594126045703888, -0.016775060445070267, 0.009324111975729465, 0.01566954329609871, 0.016714483499526978, -0.22556057572364807, -0.056446295231580734, 0.028644245117902756, -0.01697695069015026, -0.04891187697649002, 0.006502164993435144, 0.021746939048171043, 0.11140124499797821, 0.017400255426764488, -0.06470557302236557, 0.01957634836435318, 0.007131118793040514, -0.04948715493083, 0.20923855900764465, -0.07214155048131943, -0.10773970186710358, -0.11039634793996811, -0.08610997349023819, -0.05283628776669502, 0.022853098809719086, 0.043301187455654144, -0.12781134247779846, -0.03002113476395607, -0.011166037060320377, 0.046025220304727554, 0.016050992533564568, 0.07543113082647324, 0.011290241032838821, -0.013732660561800003, 0.06620083004236221, -0.0965304970741272, -0.014810808002948761, -0.061266038566827774, -0.0885976254940033, 0.0689498782157898, 0.07624287158250809, 0.13931339979171753, 0.14018014073371887, -0.043119024485349655, 0.004713654518127441, -0.01877508871257305, 0.2664778232574463, -0.08714824914932251, -0.053892891854047775, 0.1272769421339035, 0.0006822688737884164, 0.0461595319211483, 0.0830603763461113, 0.06904540956020355, -0.10991334915161133, 0.019378909841179848, 0.02627585455775261, -0.048747118562459946, -0.18600033223628998, -0.03788957744836807, -0.06080871820449829, -0.07981762290000916, 0.08343780040740967, 0.006716523319482803, 0.03307323902845383, 0.063497394323349, 0.05375491827726364, 0.10462555289268494, -0.07651697099208832, 0.05325521156191826, 0.07835584878921509, 0.0630008801817894, 0.12592396140098572, -0.03357153385877609, -0.08974683284759521, 0.020029177889227867, -0.06217966228723526, 0.23507745563983917, -0.00886244885623455, 0.04784885421395302, 0.04478858783841133, 0.17812281847000122, 0.0027360275853425264, 0.09799175709486008, 0.025710638612508774, -0.06758639961481094, -0.00057446543360129, -0.040042273700237274, -0.05466245114803314, 0.005275842268019915, -0.027862317860126495, 0.07285064458847046, -0.12740786373615265, -0.011047388426959515, 0.0529220849275589, 0.24452590942382812, 0.02955717220902443, -0.3338497281074524, -0.09234659373760223, -0.015755875036120415, -0.013397791422903538, -0.018351763486862183, -0.004468451254069805, 0.08481522649526596, -0.10488517582416534, 0.03253898397088051, -0.06074600666761398, 0.08844125270843506, 0.014032180421054363, 0.04679041728377342, 0.04835522547364235, 0.14975257217884064, -0.0038238042034208775, 0.04928507283329964, -0.32078295946121216, 0.28848740458488464, 0.0013711246429011226, 0.09930924326181412, -0.07680951803922653, -0.007752870675176382, 0.04570312052965164, 0.02464437298476696, 0.038222119212150574, -0.008039848878979683, -0.0232115276157856, -0.2210368514060974, -0.03534407913684845, 0.0466952845454216, 0.13240069150924683, -0.013261658139526844, 0.10424122214317322, -0.021931670606136322, -0.00964352022856474, 0.0743940994143486, -0.00399964302778244, -0.08005806058645248, -0.050926562398672104, -0.018055353313684464, 0.013685524463653564, -0.052949875593185425, -0.06362719088792801, -0.11773428320884705, -0.1008119285106659, 0.1281452476978302, 0.03904695063829422, -0.001319010159932077, -0.13192884624004364, 0.10932691395282745, 0.1047990471124649, -0.08721217513084412, 0.07217741012573242, 0.01646551862359047, 0.05374665930867195, 0.02887924388051033, -0.06083548441529274, 0.10860457271337509, -0.06810494512319565, -0.16253440082073212, -0.06154235452413559, 0.07134261727333069, 0.04293576255440712, 0.07966579496860504, -0.027894606813788414, 0.04595803841948509, -0.030703747645020485, -0.08967611938714981, 0.04697520285844803, -0.017531750723719597, 0.046965762972831726, 0.06349685043096542, -0.01741744764149189, 0.005157611798495054, -0.04944119602441788, -0.006653997581452131, 0.1649661809206009, 0.2604750990867615, -0.09388244897127151, -0.011616770178079605, 0.0141312750056386, -0.037241075187921524, -0.19148261845111847, 0.08633415400981903, 0.07476058602333069, 0.024908382445573807, 0.017450790852308273, -0.1558157056570053, 0.134366974234581, 0.09989805519580841, 0.001138088759034872, 0.1270577609539032, -0.29912519454956055, -0.13109411299228668, 0.10206889361143112, 0.1670726239681244, 0.19090892374515533, -0.1347864866256714, 0.0023251185193657875, -0.044282618910074234, -0.13281826674938202, 0.058049313724040985, -0.05824092775583267, 0.12796847522258759, -0.03679227456450462, 0.10751998424530029, 0.004521791823208332, -0.06848221272230148, 0.11719168722629547, 0.0024519115686416626, 0.10411669313907623, -0.05771441012620926, -0.03600172698497772, 0.051169503480196, -0.022185591980814934, -0.020298169925808907, -0.017854690551757812, 0.025007927790284157, -0.03780871257185936, -0.009377664886415005, -0.10150845348834991, 0.04518107697367668, -0.022149570286273956, -0.061299968510866165, -0.021435827016830444, 0.02389528602361679, 0.03601154312491417, -0.02608661539852619, 0.0850730612874031, 0.01694950833916664, 0.1805071085691452, 0.013552675023674965, 0.028430452570319176, -0.054182179272174835, -0.05790114402770996, 0.021874498575925827, -0.010645683854818344, 0.06563818454742432, -0.1291741132736206, 0.008368300274014473, 0.13623616099357605, 0.041417624801397324, 0.10951691120862961, 0.09786513447761536, -0.016433678567409515, 0.024374064058065414, 0.08123800903558731, -0.1718669980764389, -0.04053376242518425, 0.007399544585496187, -0.083651103079319, -0.09966763108968735, 0.03539687395095825, 0.07655019313097, -0.08231878280639648, -0.010607283562421799, -0.029629405587911606, -0.013365577906370163, -0.08979116380214691, 0.2248857319355011, 0.0732412338256836, 0.05072334408760071, -0.1068207249045372, 0.048027824610471725, 0.03870641067624092, -0.06996023654937744, -0.00495681818574667, 0.07206715643405914, -0.06878045946359634, -0.009843681938946247, 0.1197156012058258, 0.18077850341796875, -0.061827052384614944, -0.008891298435628414, -0.1574593186378479, -0.10256775468587875, 0.07158344238996506, 0.19241617619991302, 0.10569373518228531, -0.011093592271208763, -0.04489140957593918, 0.03922012075781822, -0.13905411958694458, 0.04607916250824928, 0.050560884177684784, 0.07898294925689697, -0.1179555356502533, 0.1956285685300827, -0.00335026066750288, 0.05519063398241997, -0.03372404724359512, 0.03680022060871124, -0.11698653548955917, 0.024429770186543465, -0.10587548464536667, -0.06120060756802559, -0.0007677476387470961, -0.009876858443021774, -0.006840877700597048, -0.07712091505527496, -0.06586778908967972, 0.011517676524817944, -0.12669746577739716, -0.03693174943327904, 0.044866446405649185, 0.008664771914482117, -0.11556071788072586, -0.040338221937417984, 0.03570639342069626, -0.06099880114197731, 0.04576950520277023, 0.08400139212608337, 0.024728916585445404, 0.07804913073778152, -0.1629256159067154, -0.042780570685863495, 0.06132780760526657, -0.014913899824023247, 0.09623600542545319, -0.06707620620727539, 0.0041399248875677586, -0.02397502027451992, 0.11165636032819748, 0.029226675629615784, 0.08294114470481873, -0.138137549161911, 0.007818898186087608, -0.026746518909931183, -0.09476221352815628, -0.055686939507722855, 0.00297280284576118, 0.09003423154354095, 0.018779484555125237, 0.16515445709228516, -0.0946865901350975, 0.07171139121055603, -0.19888898730278015, -0.013355184346437454, -0.036855533719062805, -0.10251297056674957, -0.11574116349220276, -0.053168199956417084, 0.08820237219333649, -0.035402312874794006, 0.11444692313671112, 0.021439367905259132, 0.09457630664110184, 0.026162419468164444, -0.01366193126887083, -0.001779157086275518, 0.020576009526848793, 0.19056890904903412, 0.06391796469688416, -0.04931442439556122, 0.08918116986751556, 0.09163662791252136, 0.1142163798213005, 0.1057250052690506, 0.2325979769229889, 0.14449670910835266, 0.030741490423679352, 0.10085585713386536, 0.016368938609957695, -0.060194846242666245, -0.1319161206483841, -0.0020743205677717924, -0.0592774823307991, 0.07407455891370773, -0.030161509290337563, 0.16713188588619232, 0.05501163378357887, -0.16553543508052826, 0.05193385109305382, -0.060155726969242096, -0.08419425040483475, -0.10557322949171066, 0.029805129393935204, -0.08140388876199722, -0.14074259996414185, 0.029061786830425262, -0.09544672816991806, 0.020588943734765053, 0.1156080961227417, 0.002509914804250002, -0.007917707785964012, 0.21148675680160522, 0.024938708171248436, 0.04809780418872833, 0.05749531835317612, 0.004030957352370024, -0.016954336315393448, -0.060042329132556915, -0.07091276347637177, -0.031062735244631767, -0.02261556126177311, 0.05006219446659088, -0.0670292004942894, -0.12341634184122086, 0.05640026181936264, -0.005802770145237446, -0.11301300674676895, 0.026813780888915062, 0.025666087865829468, 0.06827743351459503, 0.034129682928323746, 0.002188361482694745, 0.030645454302430153, -0.031118769198656082, 0.22262145578861237, -0.09195694327354431, -0.0997142419219017, -0.09745648503303528, 0.2780003845691681, 0.051787588745355606, -0.006846812088042498, 0.006431249435991049, -0.06414295732975006, -0.015284600667655468, 0.22896818816661835, 0.20271632075309753, -0.10223932564258575, 0.003471539355814457, 0.005182183813303709, -0.0163063183426857, -0.03421196714043617, 0.13197894394397736, 0.13030341267585754, 0.04351125285029411, -0.10250497609376907, -0.0447494313120842, -0.062148042023181915, -0.01867983490228653, -0.02944619581103325, 0.017518548294901848, 0.040689852088689804, 0.007958400063216686, -0.0527486652135849, 0.06090531498193741, -0.07075231522321701, -0.10700475424528122, 0.09135731309652328, -0.22018946707248688, -0.1663309931755066, -0.010854541324079037, 0.08912133425474167, 0.014216721057891846, 0.09450291842222214, -0.029852846637368202, -0.007391235791146755, 0.054836440831422806, -0.01798793487250805, -0.05875259265303612, -0.12838396430015564, 0.10604765266180038, -0.07010762393474579, 0.1908046305179596, -0.042965907603502274, 0.07656653225421906, 0.1276620626449585, 0.07512030005455017, -0.06630993634462357, 0.060631487518548965, 0.03782772272825241, -0.1157548800110817, 0.008817587979137897, 0.14681264758110046, -0.04613827168941498, 0.024374641478061676, 0.033019937574863434, -0.13201579451560974, 0.03511572256684303, -0.08410003036260605, -0.02295553870499134, -0.03353564441204071, -0.044835302978754044, -0.0619799941778183, 0.11505798250436783, 0.24119922518730164, -0.017571069300174713, 0.02800128050148487, -0.086360402405262, 0.021497314795851707, 0.06443246454000473, 0.05026891827583313, -0.12131743878126144, -0.23578396439552307, 0.012928934767842293, 0.06007925048470497, -0.047826651483774185, -0.22418536245822906, -0.09215860813856125, -0.0014837917406111956, -0.07846660166978836, -0.0777788832783699, 0.089879110455513, 0.051713522523641586, 0.05623430386185646, -0.040324389934539795, -0.13580255210399628, -0.07138750702142715, 0.16185276210308075, -0.16687971353530884, -0.09991075843572617 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # wav2vec2-base-csa-10-rev3 This model is a fine-tuned version of [facebook/wav2vec2-base](https://huggingface.co/facebook/wav2vec2-base) on the None dataset. It achieves the following results on the evaluation set: - Loss: 3.5869 - Wer: 1.0 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0001 - train_batch_size: 16 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 1000 - num_epochs: 30 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:---:| | 18.7934 | 25.0 | 200 | 3.5869 | 1.0 | ### Framework versions - Transformers 4.11.3 - Pytorch 1.10.0+cu111 - Datasets 1.13.3 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "model-index": [{"name": "wav2vec2-base-csa-10-rev3", "results": []}]}
automatic-speech-recognition
Jainil30/wav2vec2-base-csa-10-rev3
[ "transformers", "pytorch", "tensorboard", "wav2vec2", "automatic-speech-recognition", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
wav2vec2-base-csa-10-rev3 ========================= This model is a fine-tuned version of facebook/wav2vec2-base on the None dataset. It achieves the following results on the evaluation set: * Loss: 3.5869 * Wer: 1.0 Model description ----------------- More information needed Intended uses & limitations --------------------------- More information needed Training and evaluation data ---------------------------- More information needed Training procedure ------------------ ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 0.0001 * train\_batch\_size: 16 * eval\_batch\_size: 8 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * lr\_scheduler\_warmup\_steps: 1000 * num\_epochs: 30 * mixed\_precision\_training: Native AMP ### Training results ### Framework versions * Transformers 4.11.3 * Pytorch 1.10.0+cu111 * Datasets 1.13.3 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 30\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.10.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 30\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.10.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ 56, 130, 4, 33 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #wav2vec2 #automatic-speech-recognition #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.0001\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 30\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.11.3\n* Pytorch 1.10.0+cu111\n* Datasets 1.13.3\n* Tokenizers 0.10.3" ]
[ -0.10880749672651291, 0.09804540872573853, -0.0033000141847878695, 0.06337306648492813, 0.10866135358810425, -0.020470187067985535, 0.12799671292304993, 0.15069246292114258, -0.0926758423447609, 0.0747927874326706, 0.12678809463977814, 0.15030537545681, 0.04228571057319641, 0.14645308256149292, -0.04998388886451721, -0.2826060354709625, 0.046156786382198334, 0.03537585213780403, -0.012520696967840195, 0.12697327136993408, 0.08418766409158707, -0.12501195073127747, 0.058063361793756485, 0.03501065447926521, -0.15844957530498505, -0.004465031437575817, -0.005114639177918434, -0.1045057401061058, 0.12325828522443771, 0.006732321809977293, 0.07085374742746353, 0.0486699715256691, 0.06569702923297882, -0.21799875795841217, 0.006622176617383957, 0.0439796969294548, 0.028549665585160255, 0.07487908005714417, 0.058877065777778625, -0.029286613687872887, 0.10352259129285812, -0.07477211207151413, 0.0802120715379715, 0.03746623918414116, -0.10572006553411484, -0.2908395528793335, -0.08573305606842041, 0.04725859686732292, 0.06884636729955673, 0.08864960074424744, -0.012130742892622948, 0.14361095428466797, -0.05532682687044144, 0.11060643196105957, 0.2812769412994385, -0.3134097158908844, -0.045356385409832, -0.03954525664448738, 0.05655047670006752, 0.05979921296238899, -0.10006334632635117, -0.017803361639380455, 0.015352750197052956, 0.044613927602767944, 0.13854771852493286, -0.015917528420686722, -0.06057332083582878, -0.00672385236248374, -0.14919616281986237, -0.060110706835985184, 0.11492057144641876, 0.022473078221082687, -0.03940583020448685, -0.0985572338104248, -0.05561406910419464, -0.21346212923526764, -0.06759196519851685, -0.01620243303477764, 0.04339379444718361, -0.04271397739648819, -0.10427427291870117, -0.011752414517104626, -0.0670616626739502, -0.07472024112939835, -0.04032832011580467, 0.19003930687904358, 0.056781794875860214, -0.0013734970707446337, -0.03891231119632721, 0.07628025114536285, -0.02140355296432972, -0.1384725570678711, -0.023877330124378204, 0.03747013583779335, -0.020853886380791664, -0.015295388177037239, -0.041736673563718796, -0.05963918939232826, 0.021272985264658928, 0.16092151403427124, -0.1031658798456192, 0.09557252377271652, -0.01993970386683941, 0.039852213114500046, -0.10272222012281418, 0.20830082893371582, -0.04255575314164162, 0.018171565607190132, -0.010022700764238834, 0.05572706460952759, 0.02925773710012436, -0.02612197957932949, -0.09470649808645248, 0.03111029602587223, 0.1213122308254242, 0.04680041968822479, -0.047271423041820526, 0.06502414494752884, -0.0341775119304657, -0.00989293958991766, 0.002261436078697443, -0.11183099448680878, 0.036081135272979736, 0.01949312910437584, -0.06599320471286774, 0.004420587792992592, 0.014455098658800125, 0.0068681733682751656, -0.054744116961956024, 0.08420868963003159, -0.062136221677064896, 0.033216942101716995, -0.05714831501245499, -0.1257590353488922, 0.025275228545069695, -0.11499133706092834, -0.0031625027768313885, -0.09984207153320312, -0.10097841173410416, -0.011520332656800747, 0.037504617124795914, -0.038586992770433426, -0.02636343613266945, -0.07828474044799805, -0.09082598984241486, 0.045897919684648514, -0.03448428958654404, 0.07184621691703796, -0.074468694627285, 0.09426791220903397, 0.03390785679221153, 0.08781176805496216, -0.014932484365999699, 0.0606677420437336, -0.0716312974691391, 0.027058346197009087, -0.20117048919200897, 0.07488051801919937, -0.08837541937828064, 0.05833856016397476, -0.12487084418535233, -0.11522840708494186, 0.021746601909399033, -0.007274157367646694, 0.09937197715044022, 0.09763798862695694, -0.1704472154378891, -0.08876100927591324, 0.20698021352291107, -0.08182188123464584, -0.08388277143239975, 0.1251465082168579, -0.024631422013044357, -0.0005974152591079473, 0.055513832718133926, 0.25837111473083496, 0.04565422609448433, -0.12624198198318481, 0.0078025260008871555, -0.03985106199979782, 0.04223564639687538, -0.03614495322108269, 0.058928050100803375, -0.027617033571004868, 0.0684947818517685, 0.018148457631468773, -0.0037664363626390696, 0.03761701658368111, -0.08758029341697693, -0.07718247920274734, -0.04383068531751633, -0.07838410884141922, 0.029840124770998955, 0.033040378242731094, 0.06415010243654251, -0.11699984967708588, -0.10806795209646225, 0.03878520801663399, 0.08138551563024521, -0.10331054776906967, 0.07171880453824997, -0.12008927762508392, 0.08407450467348099, -0.015527740120887756, -0.004952339921146631, -0.19057196378707886, 0.03576356917619705, 0.03751066327095032, -0.028138332068920135, 0.039940863847732544, -0.06389723718166351, 0.07761506736278534, 0.04538143426179886, -0.02609587274491787, -0.04682646691799164, -0.00909241009503603, 0.010067595168948174, -0.08973854035139084, -0.206834614276886, -0.03782504051923752, -0.03789939358830452, 0.07841364294290543, -0.13873818516731262, 0.034018028527498245, 0.07650799304246902, 0.09195224195718765, 0.03235737606883049, -0.03113790974020958, -0.0014490530593320727, 0.08948871493339539, -0.020891206339001656, -0.06424161791801453, 0.05814746394753456, 0.01997319795191288, -0.08639898151159286, 0.039193376898765564, -0.1485902965068817, 0.12802772223949432, 0.1474284827709198, -0.016008559614419937, -0.0670108050107956, 0.0006002235459163785, -0.04769774153828621, -0.03465406596660614, -0.0042980508878827095, 0.033853061497211456, 0.2154674381017685, 0.013774740509688854, 0.14363224804401398, -0.089571513235569, -0.04244166612625122, 0.05017971619963646, -0.021839553490281105, -0.006339594721794128, 0.11767444014549255, 0.04471147060394287, -0.05381058529019356, 0.11877097189426422, 0.09114929288625717, -0.07895058393478394, 0.12092465907335281, -0.06026674434542656, -0.07493685185909271, -0.020414087921380997, 0.005531234201043844, 0.023746801540255547, 0.09857527166604996, -0.16283825039863586, -0.03982695937156677, 0.02614859864115715, 0.025608308613300323, 0.02057821862399578, -0.20857730507850647, 0.014297070913016796, 0.02883523516356945, -0.0857456773519516, -0.04347552731633186, 0.0025892623234540224, 0.012829049490392208, 0.09443718940019608, 0.012838991358876228, -0.09422522038221359, 0.010623086243867874, 0.00442042900249362, -0.07344868779182434, 0.17628972232341766, -0.11640075594186783, -0.1769207864999771, -0.10530898720026016, -0.09228765219449997, -0.0401165597140789, -0.0029135080985724926, 0.0889563336968422, -0.09259509295225143, -0.03976394981145859, -0.08315066248178482, -0.015470252372324467, -0.026780303567647934, 0.04162749648094177, 0.03111119754612446, -0.011442999355494976, 0.06462664902210236, -0.11690320819616318, -0.021496709436178207, -0.03997337073087692, -0.0014371733414009213, 0.05437678471207619, 0.03755073621869087, 0.1087072491645813, 0.15859369933605194, -0.0109508465975523, 0.05014318972826004, -0.045947037637233734, 0.18840666115283966, -0.07478295266628265, -0.03733961284160614, 0.11137402057647705, -0.00523859728127718, 0.06868184357881546, 0.11771899461746216, 0.04832169786095619, -0.09795275330543518, -0.01341303065419197, 0.0037091472186148167, -0.04567822068929672, -0.21560820937156677, -0.03578848019242287, -0.04484390839934349, -0.0010991244344040751, 0.10589738935232162, 0.04102133959531784, 0.03776653856039047, 0.02188785932958126, 0.031888384371995926, 0.006316342856734991, 0.002359677106142044, 0.09629236906766891, 0.1298678070306778, 0.04007304459810257, 0.13341312110424042, -0.037950534373521805, -0.03726818040013313, 0.03005845472216606, 0.0044214120134711266, 0.2308676689863205, 0.019168566912412643, 0.1909935474395752, 0.05639136955142021, 0.17495650053024292, 0.04172300919890404, 0.06700358539819717, -0.0018802641425281763, -0.0117777269333601, 0.01111364271491766, -0.05266833305358887, -0.03947301581501961, 0.023494360968470573, 0.023794902488589287, 0.010575542226433754, -0.11460964381694794, -0.011148068122565746, 0.04699001833796501, 0.3517320454120636, 0.028091497719287872, -0.3379099667072296, -0.09131919592618942, -0.01272894162684679, -0.08538336306810379, -0.03092973865568638, 0.04595497250556946, 0.08818227797746658, -0.08042709529399872, 0.06379903852939606, -0.06244105100631714, 0.09046441316604614, -0.06371975690126419, 0.03435298427939415, 0.03719950467348099, 0.07198799401521683, 0.004164577461779118, 0.03392992541193962, -0.2925533354282379, 0.28273433446884155, 0.005608781240880489, 0.07698077708482742, -0.06106727570295334, 0.007727579679340124, 0.025222424417734146, 0.018646318465471268, 0.0876544788479805, -0.02551887556910515, -0.11963474750518799, -0.17522446811199188, -0.09296230226755142, 0.011038390919566154, 0.12827835977077484, 0.01463010162115097, 0.11022918671369553, -0.011059168726205826, -0.016837233677506447, 0.0494384840130806, -0.09591738879680634, -0.06495175510644913, -0.09178722649812698, 0.011583681218326092, 0.08180497586727142, 0.03295191377401352, -0.07257857173681259, -0.10317273437976837, -0.08912227302789688, 0.149196594953537, -0.051535431295633316, -0.04280328378081322, -0.11889126151800156, 0.009003490209579468, 0.10917055606842041, -0.07953188568353653, 0.06107249855995178, 0.009436010383069515, 0.10472298413515091, 0.011144213378429413, -0.06796472519636154, 0.11962279677391052, -0.06450541317462921, -0.16691255569458008, -0.02892453595995903, 0.1448042392730713, 0.02981220930814743, 0.06068608909845352, -0.008250520564615726, 0.038298722356557846, -0.022283261641860008, -0.0771329402923584, 0.0407814159989357, 0.025878658518195152, 0.04379090666770935, -0.013751477934420109, -0.018519653007388115, -0.006462564691901207, -0.09082851558923721, -0.01796606555581093, 0.20609065890312195, 0.24348409473896027, -0.09644810110330582, 0.09259264916181564, 0.07068450003862381, -0.041803255677223206, -0.1729014366865158, -0.0038296624552458525, 0.06547383964061737, 0.0000810620840638876, -0.02533995546400547, -0.19351930916309357, 0.024255074560642242, 0.06968672573566437, -0.02121959626674652, 0.08185137063264847, -0.3177185654640198, -0.14084011316299438, 0.1373795121908188, 0.11380636692047119, 0.059728849679231644, -0.14598283171653748, -0.055144116282463074, -0.010439679026603699, -0.10334593057632446, 0.09385726600885391, -0.07411809265613556, 0.13556309044361115, -0.02431614324450493, 0.09051401913166046, 0.011440141126513481, -0.058130327612161636, 0.1062203198671341, 0.012263458222150803, 0.060034625232219696, -0.0455070324242115, 0.017063423991203308, 0.04867471382021904, -0.06310171633958817, 0.054981574416160583, -0.07951498031616211, 0.028596477583050728, -0.08018701523542404, -0.03241962566971779, -0.0851123034954071, 0.014464524574577808, -0.009669091552495956, -0.03362679481506348, -0.03752637654542923, 0.0019068410620093346, 0.062229834496974945, -0.010251032188534737, 0.15533046424388885, -0.02701392211019993, 0.12628822028636932, 0.16229555010795593, 0.10101418197154999, -0.10562460124492645, -0.07689030468463898, 0.005795290227979422, -0.03395751118659973, 0.055571623146533966, -0.11821766942739487, 0.03725245222449303, 0.1364898979663849, 0.03195030987262726, 0.1222701296210289, 0.06972690671682358, -0.06561477482318878, 0.033223312348127365, 0.04181796312332153, -0.13789048790931702, -0.12784884870052338, 0.012904171831905842, 0.023539220914244652, -0.07217412441968918, 0.07321304827928543, 0.11486218869686127, -0.05578084662556648, -0.01398016419261694, -0.001973395235836506, 0.013703938573598862, -0.04083367809653282, 0.19569887220859528, 0.036856502294540405, 0.06200064718723297, -0.12469843775033951, 0.0804031640291214, 0.0393618643283844, -0.1342068463563919, 0.06025410443544388, 0.10590662062168121, -0.09471709281206131, -0.028874630108475685, 0.028848351910710335, 0.11204265803098679, -0.02731749787926674, -0.0738677829504013, -0.1424625813961029, -0.143196240067482, 0.10951871424913406, 0.20529510080814362, 0.0563989132642746, 0.01634254679083824, -0.058711472898721695, 0.01697499305009842, -0.11851349472999573, 0.06973893195390701, 0.040403276681900024, 0.06005723029375076, -0.12937381863594055, 0.14635390043258667, 0.017295654863119125, 0.04078388586640358, -0.01482506562024355, -0.011134554632008076, -0.11205906420946121, 0.03978012129664421, -0.12761779129505157, 0.005507407709956169, -0.06653131544589996, 0.0009383324650116265, 0.0035385109949856997, -0.049873948097229004, -0.06409074366092682, 0.03452977165579796, -0.11993328481912613, -0.023048367351293564, 0.0015041568549349904, 0.03684520348906517, -0.1286231428384781, -0.00967154186218977, 0.014877908863127232, -0.09343912452459335, 0.09729581326246262, 0.08684686571359634, -0.0324535109102726, 0.05092383176088333, -0.0609758086502552, -0.026484908536076546, 0.07819967716932297, -0.006502221338450909, 0.05174879729747772, -0.13050945103168488, -0.019442129880189896, 0.011030741035938263, 0.03434637933969498, 0.02383303828537464, 0.11146075278520584, -0.11638770252466202, 0.0004147528961766511, -0.027936799451708794, -0.0520244836807251, -0.06862835586071014, 0.050570327788591385, 0.10899218916893005, 0.027038952335715294, 0.16402193903923035, -0.0932130292057991, 0.028770694509148598, -0.16657884418964386, 0.006192926317453384, -0.015548739582300186, -0.12196530401706696, -0.050937753170728683, -0.03191056475043297, 0.07807812094688416, -0.06391213089227676, 0.12928566336631775, -0.02940124087035656, 0.025827618315815926, 0.037579167634248734, -0.0763140469789505, -0.054476406425237656, 0.03987394645810127, 0.20505303144454956, 0.03924678638577461, -0.042831309139728546, 0.07457941770553589, 0.02112758345901966, 0.08143004775047302, 0.1292860060930252, 0.1738385409116745, 0.16036994755268097, 0.06357923150062561, 0.11724373698234558, 0.05451459810137749, -0.05347679182887077, -0.17395107448101044, 0.09181374311447144, -0.0601973682641983, 0.13077561557292938, -0.013392818160355091, 0.24016056954860687, 0.12171041965484619, -0.15387000143527985, 0.06650583446025848, -0.019701531156897545, -0.08918724954128265, -0.11613484472036362, -0.06427037715911865, -0.0864643007516861, -0.17635035514831543, 0.008841556496918201, -0.10226155072450638, 0.0627811923623085, 0.04670688882470131, 0.037533532828092575, 0.016757216304540634, 0.13822020590305328, 0.01565501280128956, 0.003379994770511985, 0.09159304946660995, -0.0034502577036619186, -0.05556486174464226, -0.07363821566104889, -0.08465355634689331, 0.034681376069784164, -0.01354002021253109, 0.057944025844335556, -0.0043320804834365845, -0.06962842494249344, 0.047513000667095184, -0.03844832256436348, -0.09671482443809509, 0.023144684731960297, 0.021374598145484924, 0.06995102018117905, 0.050150588154792786, 0.03405177593231201, -0.04119652509689331, -0.002522360533475876, 0.19560778141021729, -0.09424459934234619, -0.09338860958814621, -0.10929485410451889, 0.25368425250053406, 0.039612315595149994, -0.015851164236664772, 0.021558579057455063, -0.06058618053793907, -0.03195035830140114, 0.21300716698169708, 0.17277611792087555, -0.01098889671266079, 0.004071451257914305, -0.014242766425013542, -0.006209567189216614, -0.03652631863951683, 0.07938383519649506, 0.14706924557685852, 0.062485676258802414, -0.06365864723920822, -0.05216609686613083, -0.05117124319076538, -0.034808024764060974, -0.06613480299711227, 0.07535019516944885, 0.007156591396778822, -0.025045957416296005, -0.04470904543995857, 0.0635264441370964, -0.09451355040073395, -0.08213048428297043, 0.024778906255960464, -0.19596600532531738, -0.14977425336837769, 0.006199439521878958, 0.07068225741386414, 0.012302760034799576, 0.035199131816625595, 0.003130850614979863, -0.009467698633670807, 0.08062044531106949, -0.0017800724599510431, -0.08080068230628967, -0.06594318896532059, 0.08427318930625916, -0.1325242817401886, 0.1667623668909073, -0.04217056185007095, 0.047674160450696945, 0.12337123602628708, 0.08870034664869308, -0.08080295473337173, 0.08660084009170532, 0.04242435470223427, -0.10686079412698746, 0.021863814443349838, 0.15356287360191345, -0.03342001512646675, 0.09397277981042862, 0.0306705292314291, -0.11575543880462646, 0.014908195473253727, -0.08994121104478836, -0.03787962347269058, -0.040897712111473083, -0.04964311048388481, -0.043811023235321045, 0.10937610268592834, 0.163410022854805, -0.043808672577142715, 0.0034480486065149307, -0.052458953112363815, 0.011787399649620056, 0.04733417183160782, -0.00037748986505903304, -0.06125618517398834, -0.2786572575569153, 0.011555940844118595, 0.03676026314496994, 0.0030001553241163492, -0.25746238231658936, -0.09620635211467743, 0.01345998514443636, -0.04320085793733597, -0.08825340121984482, 0.08564481884241104, 0.07482621818780899, 0.04628995433449745, -0.05247197300195694, -0.057096995413303375, -0.035821087658405304, 0.18878214061260223, -0.17499762773513794, -0.05978512763977051 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # sagemaker-distilbert-emotion This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the emotion dataset. It achieves the following results on the evaluation set: - Loss: 0.2469 - Accuracy: 0.9165 ## 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: 3e-05 - train_batch_size: 32 - eval_batch_size: 64 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 500 - num_epochs: 1 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.9351 | 1.0 | 500 | 0.2469 | 0.9165 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.15.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["emotion"], "metrics": ["accuracy"], "model-index": [{"name": "sagemaker-distilbert-emotion", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "emotion", "type": "emotion", "args": "default"}, "metrics": [{"type": "accuracy", "value": 0.9165, "name": "Accuracy"}]}]}]}
text-classification
JaviBJ/sagemaker-distilbert-emotion
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:emotion", "license:apache-2.0", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #distilbert #text-classification #generated_from_trainer #dataset-emotion #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us
sagemaker-distilbert-emotion ============================ This model is a fine-tuned version of distilbert-base-uncased on the emotion dataset. It achieves the following results on the evaluation set: * Loss: 0.2469 * Accuracy: 0.9165 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: 3e-05 * train\_batch\_size: 32 * eval\_batch\_size: 64 * seed: 42 * optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 * lr\_scheduler\_type: linear * lr\_scheduler\_warmup\_steps: 500 * num\_epochs: 1 * mixed\_precision\_training: Native AMP ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.15.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 500\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.15.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #distilbert #text-classification #generated_from_trainer #dataset-emotion #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 500\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.15.1\n* Tokenizers 0.10.3" ]
[ 63, 131, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #distilbert #text-classification #generated_from_trainer #dataset-emotion #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 500\n* num\\_epochs: 1\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.15.1\n* Tokenizers 0.10.3" ]
[ -0.11837613582611084, 0.1543351113796234, -0.003603972727432847, 0.11183581501245499, 0.12739664316177368, 0.022878220304846764, 0.10721538960933685, 0.16699880361557007, -0.10111086815595627, 0.06387995183467865, 0.11303813010454178, 0.1483011543750763, 0.043047476559877396, 0.1800822913646698, -0.07202117890119553, -0.28924816846847534, 0.023244589567184448, 0.032159626483917236, -0.013603254221379757, 0.1261374056339264, 0.10769407451152802, -0.11838165670633316, 0.09594909101724625, 0.0010638361563906074, -0.14941614866256714, -0.007261131890118122, -0.01208103820681572, -0.057330116629600525, 0.10750635713338852, 0.0014201451558619738, 0.07195501029491425, 0.03991401568055153, 0.07995164394378662, -0.22014452517032623, 0.012164656072854996, 0.04840351268649101, 0.015382297337055206, 0.09114862233400345, 0.058430466800928116, -0.058908965438604355, 0.14157436788082123, -0.09782223403453827, 0.08080454915761948, 0.02933705970644951, -0.12579043209552765, -0.2903655767440796, -0.1011161059141159, 0.04775403067469597, 0.08300988376140594, 0.08396870642900467, -0.021364055573940277, 0.14067555963993073, -0.07596412301063538, 0.11064133048057556, 0.2744048535823822, -0.24716363847255707, -0.054917991161346436, 0.005511750467121601, 0.017445571720600128, 0.04044044017791748, -0.1113806664943695, -0.03889385610818863, 0.03182241693139076, 0.04706019535660744, 0.14486002922058105, -0.024018313735723495, -0.0740620419383049, -0.007533211261034012, -0.12171243131160736, -0.0633034035563469, 0.16323760151863098, 0.03745148330926895, -0.02962128259241581, -0.09584372490644455, -0.04318343847990036, -0.17879915237426758, -0.04851372539997101, 0.00667280750349164, 0.056851621717214584, -0.03543173149228096, -0.08462603390216827, 0.03528746962547302, -0.08264046162366867, -0.031160978600382805, -0.017575401812791824, 0.11850959062576294, 0.03588465601205826, 0.008479141630232334, -0.01874055340886116, 0.0899289920926094, -0.011930983513593674, -0.158717080950737, -0.020114438608288765, 0.0030990380328148603, -0.0031545378733426332, -0.04256492480635643, -0.04705759882926941, -0.038762595504522324, 0.006422210484743118, 0.15545488893985748, -0.11857292056083679, 0.08842629194259644, 0.012996894307434559, 0.007682775612920523, -0.03404007852077484, 0.1736244559288025, -0.027913648635149002, -0.018383368849754333, -0.013358066789805889, 0.07133235037326813, 0.03232838958501816, -0.008974552154541016, -0.08438459038734436, 0.047629330307245255, 0.09521305561065674, 0.0383065827190876, -0.06879504770040512, 0.06931496411561966, -0.07647304981946945, -0.016467349603772163, 0.01397458091378212, -0.10510764271020889, 0.0430348701775074, 0.02499917522072792, -0.08724648505449295, -0.031164446845650673, 0.002788531593978405, -0.009516514837741852, -0.03220942243933678, 0.09179986268281937, -0.07090102136135101, 0.024775264784693718, -0.07785706967115402, -0.12903408706188202, 0.04065423458814621, -0.10105662792921066, 0.00963031966239214, -0.06942633539438248, -0.17784561216831207, -0.038965292274951935, 0.06810345500707626, -0.05729544162750244, -0.038596637547016144, -0.07722818106412888, -0.07238946855068207, 0.042007025331258774, -0.009164949879050255, 0.09392977505922318, -0.08157063275575638, 0.07733868062496185, 0.023606736212968826, 0.09834159165620804, 0.012647953815758228, 0.05767158046364784, -0.1123456358909607, 0.029518958181142807, -0.1950959861278534, 0.08706353604793549, -0.08051420003175735, 0.07977759838104248, -0.10023565590381622, -0.11927729845046997, 0.06214994937181473, -0.018791886046528816, 0.0882602110505104, 0.13789469003677368, -0.1989341825246811, -0.08109022676944733, 0.1874118447303772, -0.09164733439683914, -0.1158265471458435, 0.1065397784113884, -0.05862856283783913, 0.043826110661029816, 0.06908378005027771, 0.22259867191314697, 0.04803643748164177, -0.0827505812048912, -0.038985978811979294, -0.02437431365251541, 0.06559756398200989, -0.015065304934978485, 0.053651563823223114, 0.03099905140697956, 0.07602955400943756, 0.028325917199254036, 0.001142260618507862, 0.03702513873577118, -0.10235582292079926, -0.0862097293138504, -0.039290837943553925, -0.07971367985010147, 0.023167163133621216, 0.0724732056260109, 0.048356588929891586, -0.13896535336971283, -0.09049472212791443, 0.03247474506497383, 0.10335296392440796, -0.07529491931200027, 0.04016033560037613, -0.07861742377281189, 0.06997567415237427, 0.017843758687376976, -0.005587626714259386, -0.18841251730918884, -0.007240258157253265, 0.030585063621401787, 0.0016626478172838688, -0.004395666066557169, -0.049733731895685196, 0.07025570422410965, 0.045390885323286057, -0.05947435647249222, -0.04165800288319588, -0.023398151621222496, 0.0075073097832500935, -0.09686305373907089, -0.24679021537303925, -0.04165744036436081, -0.04643191397190094, 0.12916356325149536, -0.1773872673511505, 0.04002687707543373, 0.058347634971141815, 0.10489656776189804, 0.04189150780439377, -0.04356949031352997, 0.014493320137262344, 0.061084989458322525, -0.04397936537861824, -0.07461843639612198, 0.056644365191459656, 0.013763496652245522, -0.07663474977016449, 0.0045542954467237, -0.12263242900371552, 0.11598627269268036, 0.11511194705963135, -0.001906289136968553, -0.08724113553762436, -0.02875882014632225, -0.0692279115319252, -0.013547703623771667, -0.04575734585523605, 0.05855436623096466, 0.14891910552978516, 0.015346912667155266, 0.1367952674627304, -0.07775311172008514, -0.04299632087349892, 0.03867389261722565, -0.034631580114364624, -0.007141605485230684, 0.13975439965724945, 0.03596067801117897, -0.08201639354228973, 0.14243470132350922, 0.10314483940601349, -0.04581154137849808, 0.13645175099372864, -0.06408238410949707, -0.06139000877737999, -0.03766321390867233, -0.03011254407465458, 0.0006627661059610546, 0.11162186414003372, -0.1258595734834671, -0.021620837971568108, 0.034058600664138794, 0.019893422722816467, -0.01158282533288002, -0.1868378072977066, -0.019171809777617455, 0.038299042731523514, -0.05880694463849068, -0.047663457691669464, -0.011641432531177998, 0.018677890300750732, 0.10764066129922867, 0.003986363299190998, -0.055185310542583466, 0.009195665828883648, 0.0028655354399234056, -0.07642689347267151, 0.19908322393894196, -0.12159758806228638, -0.17786571383476257, -0.07665104418992996, -0.07649917155504227, -0.05434083566069603, -0.016904905438423157, 0.08014795184135437, -0.12079811096191406, -0.0411948561668396, -0.10055164992809296, -0.0008590462384745479, 0.008758091367781162, 0.019678879529237747, 0.02470877207815647, 0.004008642863482237, 0.0454113632440567, -0.11157272011041641, -0.027560485526919365, -0.04230765253305435, -0.002857549348846078, 0.0769641101360321, 0.014526997692883015, 0.09557095915079117, 0.1401277482509613, -0.0013876197626814246, 0.04866979271173477, -0.05239533260464668, 0.22267955541610718, -0.07544218748807907, -0.006031872238963842, 0.1071099266409874, 0.004186802078038454, 0.0721597820520401, 0.1333232969045639, 0.050544291734695435, -0.11408083140850067, 0.008745088241994381, 0.03685984015464783, -0.04053723067045212, -0.22257384657859802, -0.03704514354467392, -0.03992819786071777, 0.020139485597610474, 0.1042783111333847, 0.027278758585453033, 0.005482812877744436, 0.052087362855672836, 0.023433586582541466, -0.017469104379415512, -0.015712963417172432, 0.09295354783535004, 0.10768511146306992, 0.030773909762501717, 0.11299581080675125, -0.04381914809346199, -0.015720488503575325, 0.06628048419952393, -0.011439019814133644, 0.2233322262763977, -0.03464122116565704, 0.1589147001504898, 0.04811767488718033, 0.1493292897939682, -0.018851323053240776, 0.0694626197218895, -0.012259836308658123, -0.017061851918697357, -0.015374460257589817, -0.04035329446196556, -0.049273695796728134, 0.03298238292336464, -0.04660562798380852, 0.04422784596681595, -0.1512918323278427, 0.014314874075353146, 0.07183079421520233, 0.3302708864212036, 0.0589555986225605, -0.34346017241477966, -0.11173069477081299, 0.013120951130986214, -0.0428515262901783, -0.02635222300887108, 0.009747270494699478, 0.08257672190666199, -0.08503390848636627, 0.09766539931297302, -0.05262461304664612, 0.09564774483442307, -0.07680870592594147, 0.0361005999147892, 0.03936290368437767, 0.08292390406131744, -0.01231981161981821, 0.06103919446468353, -0.2909838855266571, 0.27077189087867737, 0.010940955020487309, 0.07318498194217682, -0.08081170916557312, 0.008950899355113506, 0.047714028507471085, 0.05568809434771538, 0.07670014351606369, 0.000006953746378712822, -0.11198442429304123, -0.1783648431301117, -0.08167610317468643, 0.015564302913844585, 0.08265890926122665, -0.00588970584794879, 0.10358839482069016, -0.003525681793689728, -0.0032993813510984182, 0.048775266855955124, -0.0531260184943676, -0.06408720463514328, -0.09419245272874832, 0.008202844299376011, 0.029899228364229202, -0.01646074838936329, -0.06377828866243362, -0.11641669273376465, -0.03497447073459625, 0.16022245585918427, 0.02565125934779644, -0.06161787733435631, -0.14062124490737915, 0.0689857080578804, 0.08391270786523819, -0.08637922257184982, 0.022689804434776306, 0.002772259758785367, 0.1096462681889534, 0.013663090765476227, -0.06999297440052032, 0.10933694988489151, -0.06911008805036545, -0.18869486451148987, -0.04719846323132515, 0.11738148331642151, 0.06046763435006142, 0.07299277186393738, -0.0038077894132584333, 0.0315268412232399, -0.02446954883635044, -0.08080863207578659, 0.05297119542956352, 0.03195960447192192, 0.08176760375499725, 0.011373446322977543, -0.03340031951665878, 0.022487932816147804, -0.06869642436504364, -0.0307016521692276, 0.16960974037647247, 0.2629065215587616, -0.09611620754003525, 0.0872335359454155, 0.03145379573106766, -0.06567491590976715, -0.17972074449062347, 0.04460444673895836, 0.07519912719726562, -0.00024864799343049526, 0.015201414935290813, -0.21626658737659454, 0.06182254105806351, 0.07966611534357071, -0.009729016572237015, 0.0681985393166542, -0.2905254364013672, -0.11711744964122772, 0.11910469084978104, 0.11460644751787186, 0.07299523800611496, -0.1515073925256729, -0.01971275545656681, -0.02064916305243969, -0.10996430367231369, 0.13154596090316772, -0.07878710329532623, 0.11792054772377014, -0.028099937364459038, 0.10213853418827057, 0.020324520766735077, -0.045450806617736816, 0.12259246408939362, 0.033844154328107834, 0.09771598130464554, -0.05779586359858513, 0.018801843747496605, 0.06296809017658234, -0.08221397548913956, 0.0674949586391449, -0.09313590824604034, 0.03408272564411163, -0.1389821320772171, -0.015654917806386948, -0.093145452439785, 0.02080852910876274, -0.03764854744076729, -0.052348822355270386, -0.05797258019447327, 0.04278038442134857, 0.10190743207931519, -0.025698086246848106, 0.1333283931016922, 0.005760887172073126, 0.12026791274547577, 0.13177889585494995, 0.09839772433042526, -0.09058015793561935, -0.05844483524560928, 0.007070167921483517, -0.016856076195836067, 0.03183398023247719, -0.18063884973526, 0.037690624594688416, 0.14328686892986298, 0.018046490848064423, 0.1486673653125763, 0.06972695142030716, -0.049082983285188675, 0.014150657691061497, 0.06275259703397751, -0.1383049637079239, -0.08541978895664215, 0.004360504914075136, -0.017115797847509384, -0.13802103698253632, 0.026750091463327408, 0.09348145872354507, -0.05954287573695183, -0.016794737428426743, -0.007997254841029644, 0.04708428308367729, -0.012471656315028667, 0.19100423157215118, 0.024301907047629356, 0.051281802356243134, -0.12916436791419983, 0.10173992812633514, 0.02499849908053875, -0.12302640825510025, 0.062201015651226044, 0.11744813621044159, -0.0925678238272667, -0.03540899604558945, 0.07276899367570877, 0.18206922709941864, -0.05268663167953491, -0.05029132589697838, -0.1615176945924759, -0.13878220319747925, 0.10869903117418289, 0.15774159133434296, 0.0825851634144783, 0.022886332124471664, -0.044025320559740067, 0.011712602339684963, -0.12630650401115417, 0.09506743401288986, 0.08651246875524521, 0.05231746658682823, -0.11164930462837219, 0.12111131846904755, -0.003965741954743862, 0.03271762281656265, -0.015358959324657917, -0.004825884010642767, -0.11675626784563065, 0.009485473856329918, -0.12980639934539795, -0.0069797751493752, -0.07128564268350601, 0.013277019374072552, -0.007787046954035759, -0.03179322928190231, -0.043717239052057266, 0.01376134529709816, -0.12043898552656174, -0.026978667825460434, 0.004508053418248892, 0.061205703765153885, -0.13844263553619385, -0.041000496596097946, 0.006765751633793116, -0.09196198731660843, 0.10163606703281403, 0.05801330879330635, -0.005373474210500717, 0.026491383090615273, -0.08311029523611069, -0.004849073011428118, 0.07716238498687744, -0.01412529032677412, 0.06808032840490341, -0.13256385922431946, -0.014777755364775658, -0.007917745970189571, 0.008419463410973549, 0.029371142387390137, 0.10639815032482147, -0.11208819597959518, 0.02575114369392395, -0.0019627632573246956, -0.06521273404359818, -0.062467120587825775, 0.07209564000368118, 0.09943100810050964, 0.017558665946125984, 0.17507526278495789, -0.08254262059926987, 0.034964419901371, -0.20692650973796844, -0.012348880991339684, -0.0011038414668291807, -0.1236477941274643, -0.10039031505584717, -0.037640418857336044, 0.08573988080024719, -0.06129469349980354, 0.12877348065376282, 0.03895843029022217, 0.006093417294323444, 0.03583093360066414, -0.02027837559580803, -0.017640287056565285, 0.02333320491015911, 0.14525777101516724, 0.01790521666407585, -0.05678962916135788, 0.09238801151514053, 0.04573407396674156, 0.09581481665372849, 0.12464381754398346, 0.21681421995162964, 0.12954676151275635, 0.0830640196800232, 0.09286683797836304, 0.01819639839231968, -0.05779906362295151, -0.16253724694252014, 0.07260998338460922, -0.04267285391688347, 0.14041000604629517, -0.012748371809720993, 0.2006291151046753, 0.07843073457479477, -0.1765861064195633, 0.08515732735395432, -0.047791868448257446, -0.08835535496473312, -0.1149892583489418, -0.0679900199174881, -0.09158860892057419, -0.15626230835914612, -0.0040159691125154495, -0.14893268048763275, 0.04185378924012184, 0.05038124695420265, 0.02336333878338337, 0.002437800634652376, 0.0959417074918747, 0.014424346387386322, 0.02176879718899727, 0.09789475798606873, 0.005082043819129467, -0.060347188264131546, -0.06804761290550232, -0.05849951505661011, 0.004710895009338856, -0.005629145074635744, 0.04984884709119797, -0.014791627414524555, -0.045716166496276855, 0.03775022178888321, -0.03004000522196293, -0.10855578631162643, 0.015347364358603954, 0.017828311771154404, 0.06680692732334137, 0.04981262981891632, 0.01979895494878292, -0.004206622950732708, -0.0026987676974385977, 0.21402043104171753, -0.0733867883682251, -0.02979242242872715, -0.13238458335399628, 0.2621976435184479, 0.026569610461592674, -0.03176701068878174, 0.048486821353435516, -0.07207082211971283, -0.030228544026613235, 0.175558939576149, 0.19087213277816772, -0.027840644121170044, -0.004068813286721706, -0.03574039041996002, -0.0014217686839401722, -0.03389324992895126, 0.09978348016738892, 0.13023768365383148, 0.011857615783810616, -0.09112060815095901, -0.011114929802715778, -0.05494571849703789, -0.04664573073387146, -0.0459960512816906, 0.0710899829864502, 0.045706186443567276, 0.001936300890520215, -0.03808143362402916, 0.06844818592071533, -0.07579191029071808, -0.0714210569858551, 0.060162097215652466, -0.21802693605422974, -0.16615860164165497, -0.02034897170960903, 0.04306776449084282, 0.03574448823928833, 0.06552550196647644, 0.013666756451129913, -0.004965460859239101, 0.12732325494289398, -0.01480206847190857, -0.09256330877542496, -0.11389236152172089, 0.11374516785144806, -0.15393441915512085, 0.1912686675786972, -0.05101769417524338, 0.01951257511973381, 0.13197007775306702, 0.03952339291572571, -0.10324212163686752, 0.05166172608733177, 0.05417279154062271, -0.05462360754609108, 0.002384183695539832, 0.14519453048706055, -0.04710952937602997, 0.08871696144342422, 0.04123096913099289, -0.13678009808063507, -0.0051964325830340385, -0.057282187044620514, -0.05457058176398277, -0.03973320499062538, -0.017201481387019157, -0.040711838752031326, 0.10954301804304123, 0.2188241332769394, -0.04361145943403244, 0.010944243520498276, -0.07149084657430649, 0.01361110433936119, 0.043276604264974594, -0.008871621452271938, -0.047616828233003616, -0.24529977142810822, 0.01836584508419037, 0.10463471710681915, 0.0043829986825585365, -0.23500698804855347, -0.09399379044771194, 0.008361619897186756, -0.050332095474004745, -0.08896009624004364, 0.09696648269891739, 0.04677649214863777, 0.0587175115942955, -0.057566385716199875, -0.056300994008779526, -0.04263915866613388, 0.18627896904945374, -0.1378536820411682, -0.059317294508218765 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-semeval2020-task4a-append-e2-b32-l5e5 This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.5466 - Accuracy: 0.8890 ## 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: 4e-05 - 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: 4 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 344 | 0.3057 | 0.8630 | | 0.4091 | 2.0 | 688 | 0.2964 | 0.8880 | | 0.1322 | 3.0 | 1032 | 0.4465 | 0.8820 | | 0.1322 | 4.0 | 1376 | 0.5466 | 0.8890 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-semeval2020-task4a-append-e2-b32-l5e5
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-semeval2020-task4a-append-e2-b32-l5e5 ================================================================= This model is a fine-tuned version of bert-base-uncased on an unknown dataset. It achieves the following results on the evaluation set: * Loss: 0.5466 * Accuracy: 0.8890 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: 4e-05 * 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: 4 ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 48, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.08484116941690445, 0.05078434571623802, -0.001812847563996911, 0.11255830526351929, 0.17951700091362, 0.038746386766433716, 0.12259835749864578, 0.10391149669885635, -0.11441726982593536, 0.02531929686665535, 0.10116814821958542, 0.17127299308776855, 0.010907926596701145, 0.07220199704170227, -0.038858167827129364, -0.2465752810239792, -0.015360175631940365, 0.033297568559646606, -0.09927613288164139, 0.12930132448673248, 0.07311437278985977, -0.15315449237823486, 0.0642530545592308, 0.002215938875451684, -0.22813978791236877, 0.019044270738959312, 0.012373065575957298, -0.04951499029994011, 0.15319819748401642, 0.0005315968883223832, 0.14541347324848175, -0.007052576635032892, 0.09576450288295746, -0.1910264641046524, 0.010968565009534359, 0.06255355477333069, 0.010425759479403496, 0.07388138025999069, 0.05350346490740776, 0.008256541565060616, 0.11237005889415741, -0.07063768059015274, 0.06338073313236237, 0.01365370862185955, -0.12097416073083878, -0.2671070992946625, -0.09254971146583557, 0.006166048813611269, 0.05223996937274933, 0.09832525253295898, 0.001560667878948152, 0.15600281953811646, -0.10026673227548599, 0.08361738920211792, 0.23945893347263336, -0.2992270290851593, -0.07454594224691391, 0.04744190350174904, 0.012200682424008846, 0.08672113716602325, -0.11145197600126266, -0.024867333471775055, 0.0494229793548584, 0.06088133156299591, 0.12893612682819366, -0.034913431853055954, -0.09721055626869202, 0.03314898535609245, -0.15001772344112396, -0.008752653375267982, 0.08176708966493607, 0.036144718527793884, -0.021634025499224663, -0.012734543532133102, -0.05545320734381676, -0.12773540616035461, -0.043524641543626785, -0.013140012510120869, 0.05759747698903084, -0.04633130133152008, -0.08886120468378067, 0.002441081451252103, -0.105067677795887, -0.06691774725914001, -0.06408876925706863, 0.15485221147537231, 0.04679708182811737, 0.035735875368118286, -0.033603448420763016, 0.10729547590017319, -0.013606691733002663, -0.13198032975196838, 0.04840622469782829, 0.027180945500731468, -0.02697819657623768, -0.04353022947907448, -0.07213836163282394, -0.07324683666229248, 0.026231158524751663, 0.08801630884408951, -0.06121985241770744, 0.05233736336231232, 0.030720634385943413, 0.04435154050588608, -0.10583089292049408, 0.16706956923007965, -0.06040439009666443, -0.01941758394241333, -0.006288876291364431, 0.05336291342973709, 0.016285113990306854, 0.0016733939992263913, -0.09817212074995041, 0.01673761010169983, 0.09125315397977829, 0.010994660668075085, -0.06704191118478775, 0.05651777237653732, -0.043689291924238205, -0.01136702299118042, -0.032078780233860016, -0.09454561769962311, 0.04517496004700661, 0.007521080318838358, -0.08948033303022385, 0.005761899519711733, 0.009739573113620281, 0.013642377220094204, -0.009409783408045769, 0.14612077176570892, -0.08764415234327316, 0.05191860347986221, -0.11714378744363785, -0.11811763048171997, 0.022138290107250214, -0.032000016421079636, 0.01762370951473713, -0.07715772092342377, -0.14814795553684235, -0.006708760745823383, 0.07307596504688263, -0.03475404158234596, -0.029996739700436592, -0.024827389046549797, -0.08387508243322372, -0.009578069671988487, -0.020897381007671356, 0.17409834265708923, -0.062359731644392014, 0.11903063207864761, 0.0448521263897419, 0.06955219060182571, -0.05092398822307587, 0.046668943017721176, -0.08394823968410492, 0.0034441309981048107, -0.2118450403213501, 0.02692575938999653, -0.06875298172235489, 0.0836368128657341, -0.08239040523767471, -0.12344358116388321, 0.0194307342171669, -0.014249763451516628, 0.08444619923830032, 0.07020845264196396, -0.18040624260902405, -0.07393056899309158, 0.15644310414791107, -0.06899574398994446, -0.11365767568349838, 0.10320054739713669, -0.06204495206475258, 0.0179296862334013, 0.08166022598743439, 0.16391591727733612, 0.05320480838418007, -0.10148598998785019, 0.026166345924139023, -0.007897930219769478, 0.052866868674755096, -0.08206653594970703, 0.05757413059473038, 0.014180091209709644, 0.010906808078289032, 0.035704318434000015, -0.04930237680673599, 0.07472441345453262, -0.11406075209379196, -0.08880484104156494, -0.04212140664458275, -0.1094842478632927, 0.03204397112131119, 0.08127309381961823, 0.08357837051153183, -0.10893665254116058, -0.07230023294687271, 0.09851805120706558, 0.07690834999084473, -0.057610876858234406, 0.028278861194849014, -0.049473054707050323, 0.06160543113946915, -0.05595885589718819, -0.02380690723657608, -0.19530393183231354, -0.030796682462096214, 0.003616966074332595, -0.011628268286585808, 0.021965188905596733, 0.045012932270765305, 0.08434497565031052, 0.06327953934669495, -0.06553879380226135, -0.004926660563796759, -0.036303821951150894, -0.0019551741424947977, -0.1289353221654892, -0.2107052356004715, -0.04277820140123367, -0.014591503888368607, 0.07950107008218765, -0.18218472599983215, 0.025175904855132103, -0.03815107047557831, 0.08047736436128616, 0.0017776443855836987, -0.01179109513759613, -0.059490978717803955, 0.09621512144804001, -0.008218384347856045, -0.05255180224776268, 0.07111191004514694, 0.0018755013588815928, -0.0751790776848793, -0.07875575870275497, -0.08398214727640152, 0.18086722493171692, 0.14474473893642426, -0.14514926075935364, -0.07279320806264877, 0.02759658358991146, -0.06384353339672089, -0.02735980413854122, -0.05021698400378227, 0.050827689468860626, 0.16004054248332977, 0.0006978336023166776, 0.14023494720458984, -0.06798232346773148, -0.03883405029773712, 0.014294070191681385, -0.0217671450227499, 0.05112048611044884, 0.10565786808729172, 0.13483184576034546, -0.05009833723306656, 0.12944112718105316, 0.145512655377388, -0.1141229048371315, 0.10276472568511963, -0.05573045834898949, -0.07641936093568802, -0.0256949495524168, -0.00899606291204691, -0.0018371507758274674, 0.11506877094507217, -0.11151629686355591, 0.010143261402845383, 0.014713101089000702, 0.01951313018798828, 0.02205941267311573, -0.2519340217113495, -0.05096517503261566, 0.018584445118904114, -0.037745483219623566, -0.010214651003479958, -0.03196176141500473, 0.012945791706442833, 0.10775576531887054, -0.009740069508552551, -0.07034002989530563, 0.02934006042778492, -0.006336933933198452, -0.05928836762905121, 0.21254757046699524, -0.08376731723546982, -0.0987406000494957, -0.09360833466053009, -0.07834159582853317, -0.04202456399798393, -0.007738330867141485, 0.05767785757780075, -0.10480638593435287, -0.024892674759030342, -0.039933089166879654, 0.03181144967675209, 0.000936333613935858, 0.03999725356698036, 0.019450832158327103, -0.0006189621053636074, 0.08637980371713638, -0.12409056723117828, -0.0002681365003809333, -0.0671214610338211, -0.07330529391765594, 0.03987165540456772, 0.08117631077766418, 0.10631713271141052, 0.15025344491004944, -0.01914115995168686, 0.0014795154565945268, -0.014014927670359612, 0.241824671626091, -0.05525624379515648, -0.04428073391318321, 0.11966428905725479, 0.0013571394374594092, 0.0622529499232769, 0.09605784714221954, 0.09747876226902008, -0.09651538729667664, 0.005660833325237036, 0.0448526069521904, -0.03738800063729286, -0.22802212834358215, -0.03348022326827049, -0.05284186452627182, -0.06119047850370407, 0.06843314319849014, 0.0283829215914011, 0.005049077793955803, 0.05835074931383133, 0.057680271565914154, 0.08068609237670898, -0.055819906294345856, 0.03891151398420334, 0.12056206911802292, 0.04671483486890793, 0.11655718833208084, -0.0518522746860981, -0.07466743886470795, 0.0307308416813612, -0.016601769253611565, 0.241994246840477, -0.006105110514909029, 0.10020247846841812, 0.07509590685367584, 0.19268380105495453, -0.018953055143356323, 0.09270434826612473, -0.006226036231964827, -0.05802721902728081, -0.007995319552719593, -0.044373173266649246, -0.018159044906497, 0.006511013489216566, -0.049541085958480835, 0.07007438689470291, -0.09360715001821518, -0.03653145208954811, 0.06351684778928757, 0.2593451142311096, 0.011258875951170921, -0.30102670192718506, -0.06291893869638443, -0.0029853282030671835, -0.04380408674478531, 0.011510264128446579, 0.014728402718901634, 0.11137084662914276, -0.07836709916591644, 0.038592007011175156, -0.07521115988492966, 0.09093039482831955, -0.017318060621619225, 0.04476943239569664, 0.08887609094381332, 0.11255563050508499, 0.0068045007064938545, 0.07173755764961243, -0.31371259689331055, 0.268143892288208, 0.0027685624081641436, 0.09121276438236237, -0.07366681843996048, -0.0023830351419746876, 0.030543290078639984, 0.03609629347920418, 0.035893410444259644, -0.018558943644165993, -0.0032810962293297052, -0.18085125088691711, -0.01954769156873226, 0.039909038692712784, 0.09618796408176422, -0.00013569730799645185, 0.09747972339391708, -0.015692096203565598, 0.0038611001800745726, 0.07952826470136642, 0.005034247878938913, -0.05863615497946739, -0.07667531818151474, -0.025701381266117096, 0.014590277336537838, -0.0776408240199089, -0.06965789943933487, -0.12480837106704712, -0.13767947256565094, 0.12824420630931854, 0.026845665648579597, -0.02764357626438141, -0.116084024310112, 0.10622884333133698, 0.10051140189170837, -0.06991364061832428, 0.033013079315423965, 0.015662409365177155, 0.041886184364557266, 0.031613972038030624, -0.0700661838054657, 0.09669166058301926, -0.06154213473200798, -0.1466647982597351, -0.05610703304409981, 0.0951542854309082, 0.037533339112997055, 0.06956139206886292, -0.026708107441663742, 0.006526736542582512, -0.02498704567551613, -0.10406389087438583, 0.02811797522008419, -0.02948790416121483, 0.07406693696975708, 0.013440830633044243, -0.04711358994245529, 0.018146265298128128, -0.04575324058532715, -0.01683986559510231, 0.16909809410572052, 0.23931175470352173, -0.08923598378896713, 0.002534055383875966, 0.04510828107595444, -0.05631072074174881, -0.17354783415794373, 0.0618206150829792, 0.0708719864487648, -0.011255753226578236, 0.06859726458787918, -0.16823014616966248, 0.1611434370279312, 0.11178084462881088, -0.014792447909712791, 0.1172846183180809, -0.3508955240249634, -0.11577927321195602, 0.07937337458133698, 0.18759237229824066, 0.14583569765090942, -0.17209605872631073, -0.021025972440838814, -0.020151635631918907, -0.1452597677707672, 0.10109773278236389, -0.09610742330551147, 0.11790657788515091, -0.02173076942563057, 0.09474437683820724, -0.002695089904591441, -0.06995923817157745, 0.12337657809257507, 0.02176741510629654, 0.11553051322698593, -0.05411675572395325, -0.018863890320062637, 0.06666819006204605, -0.0193571038544178, -0.008364719338715076, -0.06467466801404953, 0.01861393079161644, -0.057248104363679886, -0.018218399956822395, -0.10480207204818726, 0.026454957202076912, -0.02859967201948166, -0.05845573917031288, -0.03209810331463814, 0.028039637953042984, 0.04611524939537048, -0.02185150794684887, 0.1055297926068306, 0.03678375110030174, 0.16033196449279785, 0.08941257745027542, 0.04468180984258652, -0.05042074993252754, -0.09487010538578033, -0.014650559984147549, -0.009866086766123772, 0.06014586240053177, -0.1462532877922058, 0.016934456303715706, 0.1445687860250473, 0.02738502062857151, 0.11745455861091614, 0.08984825015068054, -0.04298016428947449, 0.016810128465294838, 0.0706545040011406, -0.15737758576869965, -0.10948089510202408, 0.023110004141926765, -0.06960764527320862, -0.09179471433162689, 0.06047268584370613, 0.07144667953252792, -0.06633014231920242, -0.006998869124799967, -0.010838945396244526, -0.006023912690579891, -0.0826023742556572, 0.2218637764453888, 0.06452765315771103, 0.04848131164908409, -0.11468421667814255, 0.07048867642879486, 0.049060922116041183, -0.08641903102397919, -0.014252793975174427, 0.07294881343841553, -0.06787117570638657, -0.023883629590272903, 0.12005869299173355, 0.18748174607753754, -0.04007479548454285, -0.035234905779361725, -0.1484907865524292, -0.11973688751459122, 0.07392691820859909, 0.1544087827205658, 0.11115656793117523, 0.004149443004280329, -0.05756010115146637, 0.027431035414338112, -0.12153515219688416, 0.07278527319431305, 0.03017657995223999, 0.06690144538879395, -0.13882628083229065, 0.16380836069583893, 0.018222151324152946, 0.03523416817188263, -0.022959694266319275, 0.04355241358280182, -0.10896839201450348, 0.027910761535167694, -0.1497231274843216, -0.04626642167568207, -0.021544180810451508, -0.004717590752989054, 0.003048322629183531, -0.0792526826262474, -0.06736602634191513, 0.019048675894737244, -0.13804420828819275, -0.022048059850931168, 0.04375472292304039, 0.04387481510639191, -0.1330166757106781, -0.03620126098394394, 0.017690384760499, -0.053412631154060364, 0.044539161026477814, 0.053361766040325165, 0.01237818319350481, 0.08450399339199066, -0.15717428922653198, -0.03179793432354927, 0.06910506635904312, 0.007616310380399227, 0.08237893879413605, -0.06579263508319855, -0.013008764944970608, 0.0043635559268295765, 0.08887918293476105, 0.01301178615540266, 0.05118659883737564, -0.14567039906978607, -0.01220123004168272, -0.037972498685121536, -0.10334856063127518, -0.05329936742782593, 0.005899630021303892, 0.10147092491388321, 0.016866561025381088, 0.19549085199832916, -0.07496189326047897, 0.04632997140288353, -0.2186853587627411, -0.014736068435013294, -0.017028797417879105, -0.10298818349838257, -0.10926976054906845, -0.05076706409454346, 0.06727831065654755, -0.04918414726853371, 0.14274100959300995, 0.02155487611889839, 0.05024387314915657, 0.026163846254348755, -0.02838197909295559, 0.0041610077023506165, 0.02966929040849209, 0.23995736241340637, 0.024474576115608215, -0.026681240648031235, 0.06690903753042221, 0.061698347330093384, 0.08846492320299149, 0.10529322177171707, 0.20467634499073029, 0.17620375752449036, 0.006197730544954538, 0.07951606065034866, 0.04748067632317543, -0.05613207817077637, -0.1445820927619934, 0.044855356216430664, -0.05465230345726013, 0.09608146548271179, -0.03293726220726967, 0.22611501812934875, 0.04866568744182587, -0.16722482442855835, 0.05399935320019722, -0.0624379999935627, -0.08728421479463577, -0.09437114745378494, -0.00873654242604971, -0.0704963430762291, -0.16413724422454834, 0.017997145652770996, -0.10555878281593323, 0.02566186711192131, 0.16527941823005676, 0.01708201877772808, -0.01391216553747654, 0.17320415377616882, 0.0520964153110981, 0.037240415811538696, 0.046538859605789185, 0.006891672499477863, -0.037699323147535324, -0.07964659482240677, -0.06165347620844841, -0.024544648826122284, -0.022980064153671265, 0.03244906663894653, -0.05675744265317917, -0.09779985249042511, 0.039244577288627625, -0.019640838727355003, -0.09523376822471619, 0.027565814554691315, 0.008817349560558796, 0.08581330627202988, 0.04104945436120033, 0.003808892099186778, 0.01772942766547203, -0.027185531333088875, 0.21996928751468658, -0.08788931369781494, -0.09077797830104828, -0.0949002131819725, 0.25490009784698486, 0.027837637811899185, -0.013151171617209911, 0.03295612707734108, -0.06349270790815353, -0.008796975016593933, 0.23660020530223846, 0.1955527365207672, -0.11242541670799255, -0.01651993952691555, 0.008779216557741165, -0.015429346822202206, -0.04370681568980217, 0.13176150619983673, 0.13743115961551666, 0.0424816869199276, -0.11367179453372955, -0.03312145546078682, -0.07004731893539429, -0.013770930469036102, -0.04711116850376129, 0.04563296586275101, 0.0560205914080143, 0.004750256426632404, -0.04648950323462486, 0.07533318549394608, -0.0437110960483551, -0.15051423013210297, 0.09560023993253708, -0.18737192451953888, -0.1753544807434082, -0.017789676785469055, 0.14572197198867798, -0.002381298691034317, 0.0680498331785202, -0.03585154190659523, 0.008603001944720745, 0.06866372376680374, -0.02888561226427555, -0.08511248975992203, -0.10566519945859909, 0.11340563744306564, -0.11132378876209259, 0.17843548953533173, -0.04133611172437668, 0.07695431262254715, 0.12336074560880661, 0.05866669490933418, -0.056033093482255936, 0.07162465155124664, 0.048726554960012436, -0.12626713514328003, 0.003812218550592661, 0.08912525326013565, -0.02996324561536312, 0.054429084062576294, 0.030714595690369606, -0.12345940619707108, 0.021557044237852097, -0.04995203763246536, -0.04799164459109306, -0.049474019557237625, -0.05888320878148079, -0.061875201761722565, 0.11182761937379837, 0.2237454354763031, -0.023173866793513298, 0.029589680954813957, -0.076267771422863, 0.020878519862890244, 0.057208698242902756, 0.05263281613588333, -0.0978044793009758, -0.24189382791519165, 0.019675089046359062, 0.04994268715381622, -0.02878209762275219, -0.20933139324188232, -0.09445749223232269, 0.021876882761716843, -0.07401429861783981, -0.09694226831197739, 0.07657494395971298, 0.07625845819711685, 0.052936162799596786, -0.04912739619612694, -0.12272357195615768, -0.08637721836566925, 0.15540450811386108, -0.15825960040092468, -0.084368035197258 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-semeval2020-task4a This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the ComVE dataset which was part of SemEval 2020 Task 4. It achieves the following results on the test set: - Loss: 0.2782 - Accuracy: 0.9040 ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - 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: 2 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 344 | 0.2700 | 0.8940 | | 0.349 | 2.0 | 688 | 0.2782 | 0.9040 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-semeval2020-task4a
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-semeval2020-task4a ============================================== This model is a fine-tuned version of bert-base-uncased on the ComVE dataset which was part of SemEval 2020 Task 4. It achieves the following results on the test set: * Loss: 0.2782 * Accuracy: 0.9040 ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 5e-05 * 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: 2 ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 48, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.083693727850914, 0.051278844475746155, -0.0018776051001623273, 0.11094808578491211, 0.17900562286376953, 0.03792696073651314, 0.1231539249420166, 0.10390378534793854, -0.11364011466503143, 0.0259530171751976, 0.10162092745304108, 0.17217552661895752, 0.011545269750058651, 0.07436758279800415, -0.04016820341348648, -0.2473057359457016, -0.01449650526046753, 0.032806385308504105, -0.09887902438640594, 0.1302124261856079, 0.0741216242313385, -0.1529828906059265, 0.0631621778011322, 0.0024198824539780617, -0.2273942530155182, 0.019232455641031265, 0.013004211708903313, -0.049648936837911606, 0.15285077691078186, 0.0005242163897491992, 0.14573892951011658, -0.006214610766619444, 0.09597187489271164, -0.19375793635845184, 0.01093299686908722, 0.06327163428068161, 0.010788514278829098, 0.0739767923951149, 0.05426563695073128, 0.007617624942213297, 0.11446142941713333, -0.0699600875377655, 0.06336197257041931, 0.013964669778943062, -0.12075988948345184, -0.2630874514579773, -0.09183433651924133, 0.008005316369235516, 0.053707171231508255, 0.0963687151670456, 0.0016464872751384974, 0.15773308277130127, -0.10107040405273438, 0.08352948725223541, 0.24245308339595795, -0.2972109913825989, -0.0747811421751976, 0.048291388899087906, 0.012013057246804237, 0.08702412247657776, -0.10949605703353882, -0.0259036086499691, 0.04850396513938904, 0.0590396523475647, 0.1301039457321167, -0.03481091186404228, -0.09892993420362473, 0.032945167273283005, -0.150608628988266, -0.010786795057356358, 0.0789722353219986, 0.035906922072172165, -0.02119223214685917, -0.012253155931830406, -0.05676573887467384, -0.12657317519187927, -0.04254402965307236, -0.0149547653272748, 0.05693044140934944, -0.04458141699433327, -0.08734629303216934, -0.00022341172734741122, -0.10564498603343964, -0.06928611546754837, -0.06449207663536072, 0.15624406933784485, 0.04694768413901329, 0.036175064742565155, -0.035563044250011444, 0.10761253535747528, -0.01529350783675909, -0.13200539350509644, 0.04773678630590439, 0.026866823434829712, -0.028372522443532944, -0.04387497901916504, -0.0719078853726387, -0.07881090044975281, 0.025832021608948708, 0.08652038872241974, -0.05944155529141426, 0.051480844616889954, 0.029025882482528687, 0.04550468921661377, -0.10437045991420746, 0.16787724196910858, -0.05952391028404236, -0.016790591180324554, -0.007178840227425098, 0.054093435406684875, 0.017006421461701393, 0.0015749133890494704, -0.09801454097032547, 0.01602250151336193, 0.09259521961212158, 0.011039999313652515, -0.06598149240016937, 0.053998883813619614, -0.04568485543131828, -0.012025409378111362, -0.03398220241069794, -0.09421338886022568, 0.04608554020524025, 0.00786377303302288, -0.08909823000431061, 0.004999952390789986, 0.00909336842596531, 0.015166781842708588, -0.00981492456048727, 0.1480245590209961, -0.08772042393684387, 0.05336223170161247, -0.11766577512025833, -0.11768069118261337, 0.022665847092866898, -0.035557568073272705, 0.016445185989141464, -0.07696117460727692, -0.14921686053276062, -0.004622036125510931, 0.0733550414443016, -0.03498859331011772, -0.030595777556300163, -0.026067929342389107, -0.08330484479665756, -0.010072631761431694, -0.02107175439596176, 0.1738130897283554, -0.06188409775495529, 0.12011988461017609, 0.043055400252342224, 0.06875763833522797, -0.050762634724378586, 0.046937547624111176, -0.0851811021566391, 0.0037600838113576174, -0.21030694246292114, 0.028326136991381645, -0.06835584342479706, 0.08082357794046402, -0.08406951278448105, -0.1217685341835022, 0.01596495695412159, -0.015199794434010983, 0.08559613674879074, 0.07097878307104111, -0.18210764229297638, -0.07408367842435837, 0.1593565046787262, -0.07053455710411072, -0.1129700094461441, 0.10326240956783295, -0.06217433884739876, 0.018459336832165718, 0.08087136596441269, 0.16365735232830048, 0.05262397229671478, -0.1015218198299408, 0.027151014655828476, -0.0072083622217178345, 0.052766356617212296, -0.08309593796730042, 0.059490736573934555, 0.013057567179203033, 0.010846535675227642, 0.03476916626095772, -0.05128125101327896, 0.07508763670921326, -0.11475969851016998, -0.08932986855506897, -0.042911335825920105, -0.10986724495887756, 0.032740358263254166, 0.08108187466859818, 0.08406592905521393, -0.1069616749882698, -0.07200485467910767, 0.10116562247276306, 0.07668732851743698, -0.0567590668797493, 0.029237132519483566, -0.049171339720487595, 0.06068864464759827, -0.0564989410340786, -0.02399505116045475, -0.1968778371810913, -0.028142303228378296, 0.005041738506406546, -0.014481285586953163, 0.022239839658141136, 0.04382546246051788, 0.08336281031370163, 0.06242065131664276, -0.06459800153970718, -0.0047747124917805195, -0.03892771527171135, -0.002337721409276128, -0.12891721725463867, -0.21039414405822754, -0.04247662425041199, -0.015725107863545418, 0.07832445949316025, -0.18004702031612396, 0.025532670319080353, -0.039099447429180145, 0.08118830621242523, 0.0025399073492735624, -0.01304893009364605, -0.060158871114254, 0.09618750959634781, -0.009119858965277672, -0.05187864229083061, 0.07040946930646896, 0.0012374420184642076, -0.07610172778367996, -0.07874758541584015, -0.08401074260473251, 0.17955635488033295, 0.14308343827724457, -0.14381103217601776, -0.07113940268754959, 0.02686181664466858, -0.0637272521853447, -0.027175506576895714, -0.053042877465486526, 0.05228518322110176, 0.15735039114952087, 0.002552382880821824, 0.14016056060791016, -0.06964176148176193, -0.03873163461685181, 0.014098129235208035, -0.022861069068312645, 0.04923711717128754, 0.10561180859804153, 0.13971571624279022, -0.054751694202423096, 0.12988227605819702, 0.1472923755645752, -0.11544422805309296, 0.10340889543294907, -0.054741207510232925, -0.0783095508813858, -0.02656461112201214, -0.00801477674394846, -0.0016257786191999912, 0.11431970447301865, -0.11224974691867828, 0.01130584441125393, 0.01461651548743248, 0.01969829946756363, 0.02204715460538864, -0.25284337997436523, -0.05093145743012428, 0.019359778612852097, -0.038417257368564606, -0.010078164748847485, -0.032071229070425034, 0.014088264666497707, 0.10817219316959381, -0.01076795719563961, -0.06928778439760208, 0.02858276665210724, -0.006517758127301931, -0.060123126953840256, 0.2131391167640686, -0.08285477012395859, -0.10082623362541199, -0.09262043982744217, -0.0746295154094696, -0.04157185181975365, -0.007590389810502529, 0.05814337730407715, -0.10247214138507843, -0.02431597001850605, -0.04121054708957672, 0.0329548716545105, 0.0009926976636052132, 0.03992563113570213, 0.019522447139024734, 0.00007973684841999784, 0.08529762923717499, -0.12493128329515457, -0.00014708508388139307, -0.06708478927612305, -0.07331167906522751, 0.038760751485824585, 0.08119925856590271, 0.10574688017368317, 0.151841402053833, -0.01997554302215576, 0.002043286571279168, -0.014423795975744724, 0.24049916863441467, -0.054153941571712494, -0.045635249465703964, 0.11885238438844681, 0.000037661993701476604, 0.06322435289621353, 0.09729849547147751, 0.09609689563512802, -0.0955604836344719, 0.006128523964434862, 0.045131292194128036, -0.03777952119708061, -0.2282819300889969, -0.03438049182295799, -0.05286412313580513, -0.060366030782461166, 0.06859318166971207, 0.02833094634115696, 0.004446990787982941, 0.0579402893781662, 0.05703163519501686, 0.07796267420053482, -0.05476893112063408, 0.039474111050367355, 0.11703301221132278, 0.04748727008700371, 0.11659442633390427, -0.051462434232234955, -0.07439832389354706, 0.03071839176118374, -0.016779199242591858, 0.24042253196239471, -0.005347888451069593, 0.09862105548381805, 0.07486478984355927, 0.1924486607313156, -0.019360879436135292, 0.09244480729103088, -0.0056212292984128, -0.057112351059913635, -0.008689391426742077, -0.04411420226097107, -0.020235981792211533, 0.007470619399100542, -0.04712304472923279, 0.07063466310501099, -0.09320847690105438, -0.03419998660683632, 0.06402909010648727, 0.2599989175796509, 0.011860968545079231, -0.2974637448787689, -0.06083180382847786, -0.002018570899963379, -0.0447993166744709, 0.01161187607795, 0.014156819321215153, 0.1122669130563736, -0.07855499535799026, 0.037116192281246185, -0.07564802467823029, 0.09165742248296738, -0.015600713901221752, 0.04364536702632904, 0.08516038209199905, 0.11173857003450394, 0.007518111728131771, 0.0718294307589531, -0.3155335485935211, 0.27119651436805725, 0.0025524706579744816, 0.09060098975896835, -0.07434903085231781, -0.0024783543776720762, 0.02888166718184948, 0.03377041593194008, 0.03631197661161423, -0.018366586416959763, -0.0029996675439178944, -0.17983412742614746, -0.020844288170337677, 0.0390758290886879, 0.09732961654663086, -0.0014237463474273682, 0.09625452756881714, -0.01673099584877491, 0.0047453236766159534, 0.08007850497961044, 0.007728210650384426, -0.05973552167415619, -0.07583870738744736, -0.02503357268869877, 0.013216786086559296, -0.07925914973020554, -0.0704004168510437, -0.12463152408599854, -0.1340833306312561, 0.127685084939003, 0.02419065497815609, -0.02662331983447075, -0.11554881930351257, 0.10915713757276535, 0.0997420996427536, -0.07118293642997742, 0.033013902604579926, 0.014880829490721226, 0.042670369148254395, 0.030439559370279312, -0.07038745284080505, 0.09692147374153137, -0.060884758830070496, -0.14698900282382965, -0.0558888278901577, 0.09506855905056, 0.038327042013406754, 0.07037431001663208, -0.02668120712041855, 0.0059052701108157635, -0.022921118885278702, -0.10366471856832504, 0.027058705687522888, -0.025697385892271996, 0.07163488864898682, 0.01564950682222843, -0.04608811438083649, 0.01435134932398796, -0.0462401881814003, -0.017119569703936577, 0.17199841141700745, 0.24265342950820923, -0.09009864926338196, 0.004815138876438141, 0.045576274394989014, -0.05746665224432945, -0.17439134418964386, 0.06147140637040138, 0.07245277613401413, -0.011165541596710682, 0.07180464267730713, -0.16764067113399506, 0.15909543633460999, 0.11318500339984894, -0.01601199060678482, 0.1115114688873291, -0.35750916600227356, -0.11621538549661636, 0.08052868396043777, 0.18811556696891785, 0.14552538096904755, -0.17111782729625702, -0.021300386637449265, -0.01973242498934269, -0.1450115293264389, 0.10456544160842896, -0.09235528856515884, 0.11740049719810486, -0.021371886134147644, 0.09295915067195892, -0.0015796414809301496, -0.06995180994272232, 0.12297996133565903, 0.019344449043273926, 0.11499129980802536, -0.053005967289209366, -0.020204218104481697, 0.06714450567960739, -0.019562669098377228, -0.007791057229042053, -0.06554356217384338, 0.019309133291244507, -0.05494416505098343, -0.018864529207348824, -0.10434858500957489, 0.02674359269440174, -0.028366344049572945, -0.05937276780605316, -0.03238069638609886, 0.027585545554757118, 0.04773354157805443, -0.021557234227657318, 0.10791681706905365, 0.03735654428601265, 0.16021427512168884, 0.0913819894194603, 0.045386433601379395, -0.049306657165288925, -0.09215399622917175, -0.016135048121213913, -0.009303677827119827, 0.06040935218334198, -0.14546573162078857, 0.01869426853954792, 0.1439608335494995, 0.02843950130045414, 0.1183278039097786, 0.08948265761137009, -0.043538764119148254, 0.016877029091119766, 0.06991074979305267, -0.15693561732769012, -0.11360256373882294, 0.023135144263505936, -0.06386221200227737, -0.09228047728538513, 0.06033344939351082, 0.07122616469860077, -0.06683114916086197, -0.008137804456055164, -0.011038510128855705, -0.0053218151442706585, -0.0825904905796051, 0.22114871442317963, 0.06304433196783066, 0.048603303730487823, -0.11296521127223969, 0.0720062255859375, 0.049545422196388245, -0.08720945566892624, -0.013623327948153019, 0.0716833621263504, -0.06579316407442093, -0.023277631029486656, 0.12196493148803711, 0.1856985092163086, -0.0405559167265892, -0.0337601900100708, -0.14683173596858978, -0.1184382289648056, 0.07459967583417892, 0.15882207453250885, 0.11176931858062744, 0.004490936640650034, -0.058103859424591064, 0.028198035433888435, -0.12070025503635406, 0.07330844551324844, 0.03213351592421532, 0.0662173330783844, -0.13913317024707794, 0.16454368829727173, 0.01845822110772133, 0.03484433516860008, -0.022876933217048645, 0.04328794777393341, -0.10910473018884659, 0.02816612273454666, -0.14867660403251648, -0.04578034207224846, -0.021927565336227417, -0.005672150757163763, 0.00401817774400115, -0.08114548772573471, -0.06746748834848404, 0.018458256497979164, -0.13819998502731323, -0.02209773100912571, 0.041394323110580444, 0.04374874755740166, -0.13493339717388153, -0.03637554496526718, 0.019370868802070618, -0.05282646417617798, 0.044438477605581284, 0.05346747860312462, 0.012219823896884918, 0.08475863188505173, -0.16179300844669342, -0.03093792125582695, 0.07020799815654755, 0.008562165312469006, 0.08153732120990753, -0.06585435569286346, -0.012446139939129353, 0.005563587881624699, 0.08893998712301254, 0.012396052479743958, 0.052695583552122116, -0.146089568734169, -0.012705313973128796, -0.0391407310962677, -0.10544826090335846, -0.05291793867945671, 0.005378073547035456, 0.10060858726501465, 0.0180808138102293, 0.1962975263595581, -0.07415230572223663, 0.047124654054641724, -0.21850009262561798, -0.013619448989629745, -0.016649505123496056, -0.10076519846916199, -0.11116380989551544, -0.05104862153530121, 0.0663132295012474, -0.048581186681985855, 0.14094164967536926, 0.022905945777893066, 0.05045855790376663, 0.02679118514060974, -0.028587980195879936, 0.006493950728327036, 0.030090415850281715, 0.24165679514408112, 0.025263432413339615, -0.026610558852553368, 0.0677652657032013, 0.06043018400669098, 0.08935390412807465, 0.10490916669368744, 0.2085658609867096, 0.17812331020832062, 0.003907348960638046, 0.07999789714813232, 0.04746874421834946, -0.05568423494696617, -0.1454664021730423, 0.04274546727538109, -0.05438857153058052, 0.09472417831420898, -0.03276633471250534, 0.23063702881336212, 0.04949554055929184, -0.1686105877161026, 0.05417582020163536, -0.06043701991438866, -0.08713982999324799, -0.09666691720485687, -0.012624821625649929, -0.07155763357877731, -0.16390305757522583, 0.017976611852645874, -0.10543742775917053, 0.026768319308757782, 0.16313396394252777, 0.016527967527508736, -0.0130951888859272, 0.17126144468784332, 0.051557909697294235, 0.036785658448934555, 0.04637851193547249, 0.006926905829459429, -0.03683297708630562, -0.08125976473093033, -0.06183953210711479, -0.02406466379761696, -0.021318966522812843, 0.03324328735470772, -0.05655309185385704, -0.09820768237113953, 0.03780631348490715, -0.02112521603703499, -0.09532325714826584, 0.027944622561335564, 0.007419958245009184, 0.08469878882169724, 0.04135429486632347, 0.0050214482471346855, 0.018149474635720253, -0.026640193536877632, 0.22256092727184296, -0.08838669210672379, -0.09210758656263351, -0.09483345597982407, 0.25544285774230957, 0.02895691618323326, -0.01151032093912363, 0.0345899797976017, -0.06447295099496841, -0.010926821269094944, 0.23331288993358612, 0.1935298889875412, -0.11224150657653809, -0.015888134017586708, 0.008476657792925835, -0.015431836247444153, -0.043878670781850815, 0.13059957325458527, 0.1372152715921402, 0.044484060257673264, -0.11397941410541534, -0.03127245232462883, -0.06954357773065567, -0.013979255221784115, -0.046297572553157806, 0.04496857523918152, 0.055415600538253784, 0.004419352859258652, -0.04726846516132355, 0.07556293904781342, -0.0450761616230011, -0.1478804647922516, 0.09280253946781158, -0.18827387690544128, -0.1751631498336792, -0.017173783853650093, 0.1470198780298233, -0.0038160874973982573, 0.06765718013048172, -0.0363636314868927, 0.008749556727707386, 0.06564599275588989, -0.028256971389055252, -0.08597215265035629, -0.10610013455152512, 0.11321277171373367, -0.11132194101810455, 0.1792980283498764, -0.0405549481511116, 0.07601555436849594, 0.12284798920154572, 0.05904402956366539, -0.05557415261864662, 0.07094737887382507, 0.049395665526390076, -0.12449324131011963, 0.0028960739728063345, 0.09033236652612686, -0.030777543783187866, 0.05680748075246811, 0.031871456652879715, -0.1256875842809677, 0.021138248965144157, -0.05175885930657387, -0.04769395664334297, -0.04942838102579117, -0.05763855576515198, -0.06176687404513359, 0.11087018251419067, 0.22166255116462708, -0.02274835854768753, 0.029767269268631935, -0.07686915993690491, 0.021385541185736656, 0.05604606494307518, 0.0572306253015995, -0.0970192402601242, -0.24246491491794586, 0.019830483943223953, 0.04939841851592064, -0.028022490441799164, -0.20742632448673248, -0.09531375765800476, 0.02176477573812008, -0.07398784160614014, -0.09782476723194122, 0.0763922929763794, 0.07706481218338013, 0.05172615870833397, -0.049239031970500946, -0.12931911647319794, -0.0864955261349678, 0.1559070348739624, -0.15778453648090363, -0.08322618156671524 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-semeval2020-task4b-append-e3-b32-l4e5 This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.5121 - Accuracy: 0.8700 ## 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: 4e-05 - 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: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 344 | 0.3603 | 0.8550 | | 0.3894 | 2.0 | 688 | 0.4011 | 0.8630 | | 0.1088 | 3.0 | 1032 | 0.5121 | 0.8700 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-semeval2020-task4b-append-e3-b32-l4e5
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-semeval2020-task4b-append-e3-b32-l4e5 ================================================================= This model is a fine-tuned version of bert-base-uncased on an unknown dataset. It achieves the following results on the evaluation set: * Loss: 0.5121 * Accuracy: 0.8700 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: 4e-05 * 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: 3 ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 48, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 4e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.08359528332948685, 0.04865279421210289, -0.0018264508107677102, 0.11178601533174515, 0.1793418675661087, 0.03817156329751015, 0.12305352836847305, 0.10408062487840652, -0.11602725833654404, 0.024864157661795616, 0.10145169496536255, 0.17273560166358948, 0.01089304219931364, 0.07324004173278809, -0.03921469300985336, -0.24676203727722168, -0.014296222478151321, 0.032429613173007965, -0.09796825051307678, 0.13014499843120575, 0.07423095405101776, -0.1523689478635788, 0.06378920376300812, 0.0019320641877129674, -0.22642886638641357, 0.018861236050724983, 0.011471010744571686, -0.04959283769130707, 0.15280666947364807, 0.0002940551203209907, 0.14505672454833984, -0.006380617152899504, 0.09579258412122726, -0.1930420845746994, 0.011078258976340294, 0.06291285902261734, 0.010805957019329071, 0.07321915030479431, 0.05378516763448715, 0.008265788666903973, 0.1136232390999794, -0.06968874484300613, 0.06438682228326797, 0.013949688524007797, -0.12113053351640701, -0.2629552185535431, -0.09324300289154053, 0.007368484046310186, 0.053514737635850906, 0.09799487143754959, 0.0020568985491991043, 0.15827491879463196, -0.10119270533323288, 0.08404820412397385, 0.24242986738681793, -0.29648110270500183, -0.07521242648363113, 0.049399275332689285, 0.01296922005712986, 0.08646931499242783, -0.10958719253540039, -0.02501000463962555, 0.04832262173295021, 0.06140338256955147, 0.12919220328330994, -0.03497999161481857, -0.0972757413983345, 0.032792698591947556, -0.15147893130779266, -0.009400793351233006, 0.08050598949193954, 0.03569555655121803, -0.021495135501027107, -0.014164049178361893, -0.055048052221536636, -0.12769758701324463, -0.04327838122844696, -0.014197650365531445, 0.05678283050656319, -0.04605512693524361, -0.08858280628919601, 0.0016959914937615395, -0.1049606129527092, -0.06776418536901474, -0.0637669712305069, 0.15563265979290009, 0.046618569642305374, 0.03547169268131256, -0.03409414738416672, 0.10785535722970963, -0.012576283887028694, -0.13135193288326263, 0.0476360060274601, 0.02613445371389389, -0.027039438486099243, -0.04460635408759117, -0.07178135961294174, -0.07611076533794403, 0.026266351342201233, 0.08784346282482147, -0.06059231609106064, 0.05235845968127251, 0.03126431256532669, 0.04489218071103096, -0.10477761179208755, 0.16717348992824554, -0.06075527146458626, -0.018217751756310463, -0.007062799762934446, 0.05455540865659714, 0.01689000427722931, 0.0016162014799192548, -0.0978102833032608, 0.01751851476728916, 0.09171303361654282, 0.012220037169754505, -0.06597724556922913, 0.05593366548418999, -0.04450994357466698, -0.012326489202678204, -0.03089435212314129, -0.09389015287160873, 0.044525958597660065, 0.007053873501718044, -0.0890711098909378, 0.006499108858406544, 0.009432732127606869, 0.014650816097855568, -0.009056108072400093, 0.14722199738025665, -0.08688769489526749, 0.05255786329507828, -0.1171516552567482, -0.11742573231458664, 0.022489605471491814, -0.0327005609869957, 0.016611959785223007, -0.07751636207103729, -0.1489214450120926, -0.005984763614833355, 0.07326383888721466, -0.03487822785973549, -0.02975989505648613, -0.024866631254553795, -0.0832759365439415, -0.009942001663148403, -0.021374404430389404, 0.17375987768173218, -0.06257307529449463, 0.11919938772916794, 0.04403247311711311, 0.06833982467651367, -0.05110703781247139, 0.0468536913394928, -0.08424387127161026, 0.0037553301081061363, -0.21166104078292847, 0.02763223834335804, -0.06884115934371948, 0.08293336629867554, -0.08292156457901001, -0.1233866736292839, 0.0185399167239666, -0.014301749877631664, 0.08505891263484955, 0.07024087756872177, -0.18139934539794922, -0.07314759492874146, 0.15496216714382172, -0.06944926828145981, -0.11423789709806442, 0.10286913812160492, -0.061532363295555115, 0.017169149592518806, 0.0807243064045906, 0.16279517114162445, 0.05273650214076042, -0.10190615803003311, 0.027071449905633926, -0.007777972146868706, 0.052551135420799255, -0.08285918831825256, 0.05855118855834007, 0.013659650459885597, 0.011445826850831509, 0.03528856113553047, -0.050994012504816055, 0.07498551160097122, -0.11431186646223068, -0.08905337005853653, -0.04175383597612381, -0.10948124527931213, 0.03049781732261181, 0.08115427941083908, 0.08257371187210083, -0.10861266404390335, -0.07156491279602051, 0.09934341907501221, 0.07690877467393875, -0.05709712207317352, 0.0291316956281662, -0.04946174472570419, 0.061213418841362, -0.05493469908833504, -0.024197598919272423, -0.19558168947696686, -0.03074832819402218, 0.0038932308088988066, -0.011728078126907349, 0.02172781527042389, 0.04391752555966377, 0.08386971056461334, 0.06302358955144882, -0.06523067504167557, -0.004902328830212355, -0.036403995007276535, -0.001955866813659668, -0.12813328206539154, -0.21028251945972443, -0.04326058551669121, -0.015336669981479645, 0.07749292999505997, -0.1794760823249817, 0.025186562910676003, -0.03966296464204788, 0.08015228062868118, 0.0012118119047954679, -0.012434201315045357, -0.05901847034692764, 0.09674612432718277, -0.008973786607384682, -0.052915167063474655, 0.07135871797800064, 0.0014562575379386544, -0.07554801553487778, -0.07818059623241425, -0.08470644056797028, 0.17994913458824158, 0.14356598258018494, -0.14458446204662323, -0.07287601381540298, 0.026097465306520462, -0.06416255235671997, -0.02683086134493351, -0.05094606801867485, 0.05131553113460541, 0.15929433703422546, 0.002115734852850437, 0.13962754607200623, -0.06853583455085754, -0.03947348892688751, 0.013485831208527088, -0.022267499938607216, 0.04881603643298149, 0.10520266741514206, 0.1372605562210083, -0.052355095744132996, 0.12934504449367523, 0.1465139240026474, -0.11392408609390259, 0.10260137170553207, -0.054784465581178665, -0.0763074979186058, -0.025486638769507408, -0.008249263279139996, -0.0012542285257950425, 0.11421415954828262, -0.11048436909914017, 0.010909917764365673, 0.013960507698357105, 0.020538365468382835, 0.0223921500146389, -0.25167572498321533, -0.052236270159482956, 0.01895379088819027, -0.03805876895785332, -0.008720235899090767, -0.031449608504772186, 0.01298433542251587, 0.107810378074646, -0.009778211824595928, -0.07072997838258743, 0.02917199581861496, -0.006573156453669071, -0.06000921130180359, 0.21316879987716675, -0.0833359882235527, -0.1002422571182251, -0.09312880784273148, -0.07899952679872513, -0.043113064020872116, -0.008109219372272491, 0.05759968236088753, -0.10428034514188766, -0.02501392923295498, -0.041366688907146454, 0.0324152335524559, 0.0007573839975520968, 0.039237819612026215, 0.01975294202566147, -0.0009726106654852629, 0.08590438961982727, -0.12468581646680832, -0.0007444893126375973, -0.06722704321146011, -0.07317414879798889, 0.03962073475122452, 0.08031272888183594, 0.10651414096355438, 0.15122760832309723, -0.018749503418803215, 0.0018478799611330032, -0.014461958780884743, 0.24135643243789673, -0.05383874475955963, -0.04542713984847069, 0.1200840026140213, 0.0016497429460287094, 0.06275159865617752, 0.09617983549833298, 0.09690580517053604, -0.09662745147943497, 0.00667496956884861, 0.04512424021959305, -0.03836967423558235, -0.22764460742473602, -0.03411407023668289, -0.05293913930654526, -0.06096632033586502, 0.06752587109804153, 0.028960859403014183, 0.004923490807414055, 0.05820555239915848, 0.05704957991838455, 0.07822751998901367, -0.05472145602107048, 0.039567094296216965, 0.11848033964633942, 0.04721171036362648, 0.11698315292596817, -0.050787441432476044, -0.0743543729186058, 0.03111281245946884, -0.016180600970983505, 0.23997747898101807, -0.006135436240583658, 0.09809287637472153, 0.07598786056041718, 0.19124871492385864, -0.019777489826083183, 0.09297049045562744, -0.006225890945643187, -0.05821556970477104, -0.00873091071844101, -0.04474778473377228, -0.01909348927438259, 0.005430331453680992, -0.04831130802631378, 0.0707487016916275, -0.09325392544269562, -0.034733131527900696, 0.06418699026107788, 0.26060229539871216, 0.01056855358183384, -0.2999638617038727, -0.061061467975378036, -0.0026644072495400906, -0.044058043509721756, 0.012264443561434746, 0.014777987264096737, 0.10991881042718887, -0.07889328896999359, 0.038845233619213104, -0.07521073520183563, 0.09104061871767044, -0.01639832742512226, 0.04402631148695946, 0.08883721381425858, 0.1129322499036789, 0.006916498765349388, 0.0713915228843689, -0.3155564069747925, 0.2689330279827118, 0.002174544846639037, 0.09080252051353455, -0.0735626220703125, -0.0023476695641875267, 0.030380139127373695, 0.03555108234286308, 0.03598518669605255, -0.018713241443037987, -0.0007464017835445702, -0.18190816044807434, -0.02042051963508129, 0.039028510451316833, 0.09662891179323196, 0.00041765073547139764, 0.09703192114830017, -0.0163553599268198, 0.004789654165506363, 0.07990535348653793, 0.0076111722737550735, -0.0590926893055439, -0.07653789967298508, -0.025278503075242043, 0.013363935053348541, -0.07961100339889526, -0.06997436285018921, -0.12484991550445557, -0.1379295140504837, 0.12852726876735687, 0.028127003461122513, -0.027262143790721893, -0.11603771150112152, 0.1056404635310173, 0.10013047605752945, -0.06995540857315063, 0.032169852405786514, 0.014661922119557858, 0.041316159069538116, 0.030604127794504166, -0.07045675814151764, 0.09632978588342667, -0.06248956173658371, -0.14630763232707977, -0.0562894381582737, 0.09503587335348129, 0.03823753446340561, 0.07026837766170502, -0.02695826254785061, 0.0058731031604111195, -0.02381042391061783, -0.10444042086601257, 0.02704908885061741, -0.027989376336336136, 0.07302958518266678, 0.014724730513989925, -0.04622705280780792, 0.017916882410645485, -0.046764519065618515, -0.01695629209280014, 0.17048391699790955, 0.24117514491081238, -0.08875293284654617, 0.0032591386698186398, 0.045089706778526306, -0.05607403814792633, -0.17402610182762146, 0.06146164610981941, 0.07098172605037689, -0.011989128775894642, 0.07079092413187027, -0.16657108068466187, 0.16000767052173615, 0.11300220340490341, -0.015291670337319374, 0.11324707418680191, -0.35385552048683167, -0.11588955670595169, 0.07996715605258942, 0.18864969909191132, 0.1430472880601883, -0.17229945957660675, -0.019915223121643066, -0.019736388698220253, -0.14472678303718567, 0.10276253521442413, -0.09265048801898956, 0.11834262311458588, -0.02200515754520893, 0.0931205153465271, -0.0025487574748694897, -0.07043856382369995, 0.1230069175362587, 0.02038893848657608, 0.11536940187215805, -0.05448676273226738, -0.018880978226661682, 0.06655752658843994, -0.019822703674435616, -0.007854931987822056, -0.06540514528751373, 0.019063018262386322, -0.05613265186548233, -0.01882571168243885, -0.10495790094137192, 0.026409227401018143, -0.028705473989248276, -0.05931650847196579, -0.03240238502621651, 0.02898954227566719, 0.04695754125714302, -0.022128788754343987, 0.10701054334640503, 0.0363418273627758, 0.16057942807674408, 0.08902021497488022, 0.046520281583070755, -0.051020167768001556, -0.09362772107124329, -0.01583027094602585, -0.009710711427032948, 0.05909932404756546, -0.14376266300678253, 0.016907580196857452, 0.14395634829998016, 0.027284445241093636, 0.1175936833024025, 0.0899350717663765, -0.043407589197158813, 0.016674628481268883, 0.07048006355762482, -0.15660002827644348, -0.10904902964830399, 0.023127099499106407, -0.06592342257499695, -0.09248460084199905, 0.06062189117074013, 0.07042484730482101, -0.06591250002384186, -0.007204269990324974, -0.010410094633698463, -0.0054093291983008385, -0.0827377438545227, 0.22191111743450165, 0.06397616118192673, 0.048559002578258514, -0.11403968930244446, 0.07059964537620544, 0.0475960448384285, -0.08419391512870789, -0.014039753936231136, 0.07407080382108688, -0.06704840064048767, -0.023563697934150696, 0.12129130959510803, 0.18523047864437103, -0.041568152606487274, -0.03400484845042229, -0.1476607769727707, -0.11986669152975082, 0.07417575269937515, 0.15587036311626434, 0.11149454116821289, 0.004143595229834318, -0.05787882208824158, 0.027589192613959312, -0.12098830193281174, 0.07198624312877655, 0.02986353449523449, 0.06660642474889755, -0.1390359103679657, 0.16280663013458252, 0.01863843947649002, 0.03510384261608124, -0.022962303832173347, 0.04325201362371445, -0.10892927646636963, 0.02861827239394188, -0.14943759143352509, -0.04737459868192673, -0.02292013168334961, -0.004685307387262583, 0.0031374008394777775, -0.0793953686952591, -0.06760900467634201, 0.018895670771598816, -0.13752228021621704, -0.022433223202824593, 0.0426291860640049, 0.04339580610394478, -0.13371646404266357, -0.03609723970293999, 0.017548302188515663, -0.05300134792923927, 0.04442068189382553, 0.052634019404649734, 0.012008451856672764, 0.0845322236418724, -0.16037006676197052, -0.03226159140467644, 0.06963241100311279, 0.007847437635064125, 0.08191853761672974, -0.06612146645784378, -0.013264221139252186, 0.005281911697238684, 0.08841807395219803, 0.013519316911697388, 0.05095254257321358, -0.1456037163734436, -0.01187854539602995, -0.03854674473404884, -0.10419312119483948, -0.052497200667858124, 0.005944551434367895, 0.10209891200065613, 0.017791753634810448, 0.19638653099536896, -0.07514602690935135, 0.04701269790530205, -0.21828137338161469, -0.014509011059999466, -0.016708282753825188, -0.10185866802930832, -0.11169864237308502, -0.05015997588634491, 0.06673303246498108, -0.0482809878885746, 0.14295417070388794, 0.021770721301436424, 0.05043647810816765, 0.02676241286098957, -0.02773701213300228, 0.00690113240852952, 0.029107196256518364, 0.239742711186409, 0.024350997060537338, -0.026373445987701416, 0.06818868964910507, 0.061458781361579895, 0.08881991356611252, 0.10352114588022232, 0.20720185339450836, 0.17682293057441711, 0.004956488497555256, 0.07948663085699081, 0.04775631055235863, -0.05594295635819435, -0.14340730011463165, 0.04219292476773262, -0.05384949594736099, 0.0946517065167427, -0.03287361562252045, 0.2268103063106537, 0.048894595354795456, -0.16806815564632416, 0.05363304540514946, -0.06227963790297508, -0.08685735613107681, -0.09555617719888687, -0.010373828932642937, -0.06998860836029053, -0.16347897052764893, 0.018068445846438408, -0.10582280904054642, 0.02552434243261814, 0.1650063544511795, 0.01790674589574337, -0.013230799697339535, 0.17235319316387177, 0.052025627344846725, 0.037660151720047, 0.04577475041151047, 0.0065228198654949665, -0.036958109587430954, -0.0802110880613327, -0.061554934829473495, -0.02477088011801243, -0.02270234189927578, 0.0332770049571991, -0.05657738074660301, -0.09826766699552536, 0.03891918435692787, -0.020576609298586845, -0.09600381553173065, 0.027737455442547798, 0.00805981457233429, 0.08566463738679886, 0.04269327223300934, 0.00447884202003479, 0.018042899668216705, -0.026665588840842247, 0.21931053698062897, -0.08749193698167801, -0.09221189469099045, -0.09471111744642258, 0.2565702199935913, 0.02798992395401001, -0.01236927229911089, 0.03309295326471329, -0.06316057592630386, -0.010662413202226162, 0.2352246344089508, 0.19606859982013702, -0.11349453777074814, -0.016159459948539734, 0.008487451821565628, -0.015125120989978313, -0.04418221488595009, 0.13169284164905548, 0.13817454874515533, 0.04291578382253647, -0.11371635645627975, -0.03227110207080841, -0.07009503990411758, -0.013742738403379917, -0.04581034556031227, 0.04382599517703056, 0.057466309517621994, 0.005187895614653826, -0.04664435610175133, 0.07580570876598358, -0.04540126398205757, -0.14754396677017212, 0.0930015966296196, -0.18754327297210693, -0.1749664545059204, -0.01774771511554718, 0.1449321210384369, -0.0032051310408860445, 0.06828248500823975, -0.03551291301846504, 0.00910442229360342, 0.06595921516418457, -0.028798755258321762, -0.08526714146137238, -0.1058289185166359, 0.11430756747722626, -0.10837593674659729, 0.17905868589878082, -0.04129250720143318, 0.07632511109113693, 0.12336906045675278, 0.0584661141037941, -0.05591791868209839, 0.07254798710346222, 0.049114543944597244, -0.1254730075597763, 0.0034406324848532677, 0.08838207274675369, -0.030094120651483536, 0.05585668981075287, 0.03117266111075878, -0.12457536160945892, 0.02237916924059391, -0.0506683886051178, -0.04723281413316727, -0.0495329387485981, -0.057578008621931076, -0.06173958256840706, 0.11226168274879456, 0.2232595980167389, -0.02289506606757641, 0.02916206605732441, -0.0766109898686409, 0.021227020770311356, 0.05595657601952553, 0.05417432263493538, -0.09790969640016556, -0.2423592507839203, 0.019612262025475502, 0.048041511327028275, -0.029120028018951416, -0.20924334228038788, -0.0953606367111206, 0.022267954424023628, -0.07420581579208374, -0.09772603958845139, 0.07657172530889511, 0.07542527467012405, 0.05304313451051712, -0.04895775020122528, -0.12202827632427216, -0.08684074878692627, 0.15563255548477173, -0.15857532620429993, -0.08319184929132462 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-semeval2020-task4b-base-e2-b32-l3e5 This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.4114 - Accuracy: 0.8700 ## 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: 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: 2 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 344 | 0.3773 | 0.8490 | | 0.3812 | 2.0 | 688 | 0.4114 | 0.8700 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-semeval2020-task4b-base-e2-b32-l3e5
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-semeval2020-task4b-base-e2-b32-l3e5 =============================================================== This model is a fine-tuned version of bert-base-uncased on an unknown dataset. It achieves the following results on the evaluation set: * Loss: 0.4114 * Accuracy: 0.8700 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: 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: 2 ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 48, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 32\n* eval\\_batch\\_size: 32\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.083693727850914, 0.051278844475746155, -0.0018776051001623273, 0.11094808578491211, 0.17900562286376953, 0.03792696073651314, 0.1231539249420166, 0.10390378534793854, -0.11364011466503143, 0.0259530171751976, 0.10162092745304108, 0.17217552661895752, 0.011545269750058651, 0.07436758279800415, -0.04016820341348648, -0.2473057359457016, -0.01449650526046753, 0.032806385308504105, -0.09887902438640594, 0.1302124261856079, 0.0741216242313385, -0.1529828906059265, 0.0631621778011322, 0.0024198824539780617, -0.2273942530155182, 0.019232455641031265, 0.013004211708903313, -0.049648936837911606, 0.15285077691078186, 0.0005242163897491992, 0.14573892951011658, -0.006214610766619444, 0.09597187489271164, -0.19375793635845184, 0.01093299686908722, 0.06327163428068161, 0.010788514278829098, 0.0739767923951149, 0.05426563695073128, 0.007617624942213297, 0.11446142941713333, -0.0699600875377655, 0.06336197257041931, 0.013964669778943062, -0.12075988948345184, -0.2630874514579773, -0.09183433651924133, 0.008005316369235516, 0.053707171231508255, 0.0963687151670456, 0.0016464872751384974, 0.15773308277130127, -0.10107040405273438, 0.08352948725223541, 0.24245308339595795, -0.2972109913825989, -0.0747811421751976, 0.048291388899087906, 0.012013057246804237, 0.08702412247657776, -0.10949605703353882, -0.0259036086499691, 0.04850396513938904, 0.0590396523475647, 0.1301039457321167, -0.03481091186404228, -0.09892993420362473, 0.032945167273283005, -0.150608628988266, -0.010786795057356358, 0.0789722353219986, 0.035906922072172165, -0.02119223214685917, -0.012253155931830406, -0.05676573887467384, -0.12657317519187927, -0.04254402965307236, -0.0149547653272748, 0.05693044140934944, -0.04458141699433327, -0.08734629303216934, -0.00022341172734741122, -0.10564498603343964, -0.06928611546754837, -0.06449207663536072, 0.15624406933784485, 0.04694768413901329, 0.036175064742565155, -0.035563044250011444, 0.10761253535747528, -0.01529350783675909, -0.13200539350509644, 0.04773678630590439, 0.026866823434829712, -0.028372522443532944, -0.04387497901916504, -0.0719078853726387, -0.07881090044975281, 0.025832021608948708, 0.08652038872241974, -0.05944155529141426, 0.051480844616889954, 0.029025882482528687, 0.04550468921661377, -0.10437045991420746, 0.16787724196910858, -0.05952391028404236, -0.016790591180324554, -0.007178840227425098, 0.054093435406684875, 0.017006421461701393, 0.0015749133890494704, -0.09801454097032547, 0.01602250151336193, 0.09259521961212158, 0.011039999313652515, -0.06598149240016937, 0.053998883813619614, -0.04568485543131828, -0.012025409378111362, -0.03398220241069794, -0.09421338886022568, 0.04608554020524025, 0.00786377303302288, -0.08909823000431061, 0.004999952390789986, 0.00909336842596531, 0.015166781842708588, -0.00981492456048727, 0.1480245590209961, -0.08772042393684387, 0.05336223170161247, -0.11766577512025833, -0.11768069118261337, 0.022665847092866898, -0.035557568073272705, 0.016445185989141464, -0.07696117460727692, -0.14921686053276062, -0.004622036125510931, 0.0733550414443016, -0.03498859331011772, -0.030595777556300163, -0.026067929342389107, -0.08330484479665756, -0.010072631761431694, -0.02107175439596176, 0.1738130897283554, -0.06188409775495529, 0.12011988461017609, 0.043055400252342224, 0.06875763833522797, -0.050762634724378586, 0.046937547624111176, -0.0851811021566391, 0.0037600838113576174, -0.21030694246292114, 0.028326136991381645, -0.06835584342479706, 0.08082357794046402, -0.08406951278448105, -0.1217685341835022, 0.01596495695412159, -0.015199794434010983, 0.08559613674879074, 0.07097878307104111, -0.18210764229297638, -0.07408367842435837, 0.1593565046787262, -0.07053455710411072, -0.1129700094461441, 0.10326240956783295, -0.06217433884739876, 0.018459336832165718, 0.08087136596441269, 0.16365735232830048, 0.05262397229671478, -0.1015218198299408, 0.027151014655828476, -0.0072083622217178345, 0.052766356617212296, -0.08309593796730042, 0.059490736573934555, 0.013057567179203033, 0.010846535675227642, 0.03476916626095772, -0.05128125101327896, 0.07508763670921326, -0.11475969851016998, -0.08932986855506897, -0.042911335825920105, -0.10986724495887756, 0.032740358263254166, 0.08108187466859818, 0.08406592905521393, -0.1069616749882698, -0.07200485467910767, 0.10116562247276306, 0.07668732851743698, -0.0567590668797493, 0.029237132519483566, -0.049171339720487595, 0.06068864464759827, -0.0564989410340786, -0.02399505116045475, -0.1968778371810913, -0.028142303228378296, 0.005041738506406546, -0.014481285586953163, 0.022239839658141136, 0.04382546246051788, 0.08336281031370163, 0.06242065131664276, -0.06459800153970718, -0.0047747124917805195, -0.03892771527171135, -0.002337721409276128, -0.12891721725463867, -0.21039414405822754, -0.04247662425041199, -0.015725107863545418, 0.07832445949316025, -0.18004702031612396, 0.025532670319080353, -0.039099447429180145, 0.08118830621242523, 0.0025399073492735624, -0.01304893009364605, -0.060158871114254, 0.09618750959634781, -0.009119858965277672, -0.05187864229083061, 0.07040946930646896, 0.0012374420184642076, -0.07610172778367996, -0.07874758541584015, -0.08401074260473251, 0.17955635488033295, 0.14308343827724457, -0.14381103217601776, -0.07113940268754959, 0.02686181664466858, -0.0637272521853447, -0.027175506576895714, -0.053042877465486526, 0.05228518322110176, 0.15735039114952087, 0.002552382880821824, 0.14016056060791016, -0.06964176148176193, -0.03873163461685181, 0.014098129235208035, -0.022861069068312645, 0.04923711717128754, 0.10561180859804153, 0.13971571624279022, -0.054751694202423096, 0.12988227605819702, 0.1472923755645752, -0.11544422805309296, 0.10340889543294907, -0.054741207510232925, -0.0783095508813858, -0.02656461112201214, -0.00801477674394846, -0.0016257786191999912, 0.11431970447301865, -0.11224974691867828, 0.01130584441125393, 0.01461651548743248, 0.01969829946756363, 0.02204715460538864, -0.25284337997436523, -0.05093145743012428, 0.019359778612852097, -0.038417257368564606, -0.010078164748847485, -0.032071229070425034, 0.014088264666497707, 0.10817219316959381, -0.01076795719563961, -0.06928778439760208, 0.02858276665210724, -0.006517758127301931, -0.060123126953840256, 0.2131391167640686, -0.08285477012395859, -0.10082623362541199, -0.09262043982744217, -0.0746295154094696, -0.04157185181975365, -0.007590389810502529, 0.05814337730407715, -0.10247214138507843, -0.02431597001850605, -0.04121054708957672, 0.0329548716545105, 0.0009926976636052132, 0.03992563113570213, 0.019522447139024734, 0.00007973684841999784, 0.08529762923717499, -0.12493128329515457, -0.00014708508388139307, -0.06708478927612305, -0.07331167906522751, 0.038760751485824585, 0.08119925856590271, 0.10574688017368317, 0.151841402053833, -0.01997554302215576, 0.002043286571279168, -0.014423795975744724, 0.24049916863441467, -0.054153941571712494, -0.045635249465703964, 0.11885238438844681, 0.000037661993701476604, 0.06322435289621353, 0.09729849547147751, 0.09609689563512802, -0.0955604836344719, 0.006128523964434862, 0.045131292194128036, -0.03777952119708061, -0.2282819300889969, -0.03438049182295799, -0.05286412313580513, -0.060366030782461166, 0.06859318166971207, 0.02833094634115696, 0.004446990787982941, 0.0579402893781662, 0.05703163519501686, 0.07796267420053482, -0.05476893112063408, 0.039474111050367355, 0.11703301221132278, 0.04748727008700371, 0.11659442633390427, -0.051462434232234955, -0.07439832389354706, 0.03071839176118374, -0.016779199242591858, 0.24042253196239471, -0.005347888451069593, 0.09862105548381805, 0.07486478984355927, 0.1924486607313156, -0.019360879436135292, 0.09244480729103088, -0.0056212292984128, -0.057112351059913635, -0.008689391426742077, -0.04411420226097107, -0.020235981792211533, 0.007470619399100542, -0.04712304472923279, 0.07063466310501099, -0.09320847690105438, -0.03419998660683632, 0.06402909010648727, 0.2599989175796509, 0.011860968545079231, -0.2974637448787689, -0.06083180382847786, -0.002018570899963379, -0.0447993166744709, 0.01161187607795, 0.014156819321215153, 0.1122669130563736, -0.07855499535799026, 0.037116192281246185, -0.07564802467823029, 0.09165742248296738, -0.015600713901221752, 0.04364536702632904, 0.08516038209199905, 0.11173857003450394, 0.007518111728131771, 0.0718294307589531, -0.3155335485935211, 0.27119651436805725, 0.0025524706579744816, 0.09060098975896835, -0.07434903085231781, -0.0024783543776720762, 0.02888166718184948, 0.03377041593194008, 0.03631197661161423, -0.018366586416959763, -0.0029996675439178944, -0.17983412742614746, -0.020844288170337677, 0.0390758290886879, 0.09732961654663086, -0.0014237463474273682, 0.09625452756881714, -0.01673099584877491, 0.0047453236766159534, 0.08007850497961044, 0.007728210650384426, -0.05973552167415619, -0.07583870738744736, -0.02503357268869877, 0.013216786086559296, -0.07925914973020554, -0.0704004168510437, -0.12463152408599854, -0.1340833306312561, 0.127685084939003, 0.02419065497815609, -0.02662331983447075, -0.11554881930351257, 0.10915713757276535, 0.0997420996427536, -0.07118293642997742, 0.033013902604579926, 0.014880829490721226, 0.042670369148254395, 0.030439559370279312, -0.07038745284080505, 0.09692147374153137, -0.060884758830070496, -0.14698900282382965, -0.0558888278901577, 0.09506855905056, 0.038327042013406754, 0.07037431001663208, -0.02668120712041855, 0.0059052701108157635, -0.022921118885278702, -0.10366471856832504, 0.027058705687522888, -0.025697385892271996, 0.07163488864898682, 0.01564950682222843, -0.04608811438083649, 0.01435134932398796, -0.0462401881814003, -0.017119569703936577, 0.17199841141700745, 0.24265342950820923, -0.09009864926338196, 0.004815138876438141, 0.045576274394989014, -0.05746665224432945, -0.17439134418964386, 0.06147140637040138, 0.07245277613401413, -0.011165541596710682, 0.07180464267730713, -0.16764067113399506, 0.15909543633460999, 0.11318500339984894, -0.01601199060678482, 0.1115114688873291, -0.35750916600227356, -0.11621538549661636, 0.08052868396043777, 0.18811556696891785, 0.14552538096904755, -0.17111782729625702, -0.021300386637449265, -0.01973242498934269, -0.1450115293264389, 0.10456544160842896, -0.09235528856515884, 0.11740049719810486, -0.021371886134147644, 0.09295915067195892, -0.0015796414809301496, -0.06995180994272232, 0.12297996133565903, 0.019344449043273926, 0.11499129980802536, -0.053005967289209366, -0.020204218104481697, 0.06714450567960739, -0.019562669098377228, -0.007791057229042053, -0.06554356217384338, 0.019309133291244507, -0.05494416505098343, -0.018864529207348824, -0.10434858500957489, 0.02674359269440174, -0.028366344049572945, -0.05937276780605316, -0.03238069638609886, 0.027585545554757118, 0.04773354157805443, -0.021557234227657318, 0.10791681706905365, 0.03735654428601265, 0.16021427512168884, 0.0913819894194603, 0.045386433601379395, -0.049306657165288925, -0.09215399622917175, -0.016135048121213913, -0.009303677827119827, 0.06040935218334198, -0.14546573162078857, 0.01869426853954792, 0.1439608335494995, 0.02843950130045414, 0.1183278039097786, 0.08948265761137009, -0.043538764119148254, 0.016877029091119766, 0.06991074979305267, -0.15693561732769012, -0.11360256373882294, 0.023135144263505936, -0.06386221200227737, -0.09228047728538513, 0.06033344939351082, 0.07122616469860077, -0.06683114916086197, -0.008137804456055164, -0.011038510128855705, -0.0053218151442706585, -0.0825904905796051, 0.22114871442317963, 0.06304433196783066, 0.048603303730487823, -0.11296521127223969, 0.0720062255859375, 0.049545422196388245, -0.08720945566892624, -0.013623327948153019, 0.0716833621263504, -0.06579316407442093, -0.023277631029486656, 0.12196493148803711, 0.1856985092163086, -0.0405559167265892, -0.0337601900100708, -0.14683173596858978, -0.1184382289648056, 0.07459967583417892, 0.15882207453250885, 0.11176931858062744, 0.004490936640650034, -0.058103859424591064, 0.028198035433888435, -0.12070025503635406, 0.07330844551324844, 0.03213351592421532, 0.0662173330783844, -0.13913317024707794, 0.16454368829727173, 0.01845822110772133, 0.03484433516860008, -0.022876933217048645, 0.04328794777393341, -0.10910473018884659, 0.02816612273454666, -0.14867660403251648, -0.04578034207224846, -0.021927565336227417, -0.005672150757163763, 0.00401817774400115, -0.08114548772573471, -0.06746748834848404, 0.018458256497979164, -0.13819998502731323, -0.02209773100912571, 0.041394323110580444, 0.04374874755740166, -0.13493339717388153, -0.03637554496526718, 0.019370868802070618, -0.05282646417617798, 0.044438477605581284, 0.05346747860312462, 0.012219823896884918, 0.08475863188505173, -0.16179300844669342, -0.03093792125582695, 0.07020799815654755, 0.008562165312469006, 0.08153732120990753, -0.06585435569286346, -0.012446139939129353, 0.005563587881624699, 0.08893998712301254, 0.012396052479743958, 0.052695583552122116, -0.146089568734169, -0.012705313973128796, -0.0391407310962677, -0.10544826090335846, -0.05291793867945671, 0.005378073547035456, 0.10060858726501465, 0.0180808138102293, 0.1962975263595581, -0.07415230572223663, 0.047124654054641724, -0.21850009262561798, -0.013619448989629745, -0.016649505123496056, -0.10076519846916199, -0.11116380989551544, -0.05104862153530121, 0.0663132295012474, -0.048581186681985855, 0.14094164967536926, 0.022905945777893066, 0.05045855790376663, 0.02679118514060974, -0.028587980195879936, 0.006493950728327036, 0.030090415850281715, 0.24165679514408112, 0.025263432413339615, -0.026610558852553368, 0.0677652657032013, 0.06043018400669098, 0.08935390412807465, 0.10490916669368744, 0.2085658609867096, 0.17812331020832062, 0.003907348960638046, 0.07999789714813232, 0.04746874421834946, -0.05568423494696617, -0.1454664021730423, 0.04274546727538109, -0.05438857153058052, 0.09472417831420898, -0.03276633471250534, 0.23063702881336212, 0.04949554055929184, -0.1686105877161026, 0.05417582020163536, -0.06043701991438866, -0.08713982999324799, -0.09666691720485687, -0.012624821625649929, -0.07155763357877731, -0.16390305757522583, 0.017976611852645874, -0.10543742775917053, 0.026768319308757782, 0.16313396394252777, 0.016527967527508736, -0.0130951888859272, 0.17126144468784332, 0.051557909697294235, 0.036785658448934555, 0.04637851193547249, 0.006926905829459429, -0.03683297708630562, -0.08125976473093033, -0.06183953210711479, -0.02406466379761696, -0.021318966522812843, 0.03324328735470772, -0.05655309185385704, -0.09820768237113953, 0.03780631348490715, -0.02112521603703499, -0.09532325714826584, 0.027944622561335564, 0.007419958245009184, 0.08469878882169724, 0.04135429486632347, 0.0050214482471346855, 0.018149474635720253, -0.026640193536877632, 0.22256092727184296, -0.08838669210672379, -0.09210758656263351, -0.09483345597982407, 0.25544285774230957, 0.02895691618323326, -0.01151032093912363, 0.0345899797976017, -0.06447295099496841, -0.010926821269094944, 0.23331288993358612, 0.1935298889875412, -0.11224150657653809, -0.015888134017586708, 0.008476657792925835, -0.015431836247444153, -0.043878670781850815, 0.13059957325458527, 0.1372152715921402, 0.044484060257673264, -0.11397941410541534, -0.03127245232462883, -0.06954357773065567, -0.013979255221784115, -0.046297572553157806, 0.04496857523918152, 0.055415600538253784, 0.004419352859258652, -0.04726846516132355, 0.07556293904781342, -0.0450761616230011, -0.1478804647922516, 0.09280253946781158, -0.18827387690544128, -0.1751631498336792, -0.017173783853650093, 0.1470198780298233, -0.0038160874973982573, 0.06765718013048172, -0.0363636314868927, 0.008749556727707386, 0.06564599275588989, -0.028256971389055252, -0.08597215265035629, -0.10610013455152512, 0.11321277171373367, -0.11132194101810455, 0.1792980283498764, -0.0405549481511116, 0.07601555436849594, 0.12284798920154572, 0.05904402956366539, -0.05557415261864662, 0.07094737887382507, 0.049395665526390076, -0.12449324131011963, 0.0028960739728063345, 0.09033236652612686, -0.030777543783187866, 0.05680748075246811, 0.031871456652879715, -0.1256875842809677, 0.021138248965144157, -0.05175885930657387, -0.04769395664334297, -0.04942838102579117, -0.05763855576515198, -0.06176687404513359, 0.11087018251419067, 0.22166255116462708, -0.02274835854768753, 0.029767269268631935, -0.07686915993690491, 0.021385541185736656, 0.05604606494307518, 0.0572306253015995, -0.0970192402601242, -0.24246491491794586, 0.019830483943223953, 0.04939841851592064, -0.028022490441799164, -0.20742632448673248, -0.09531375765800476, 0.02176477573812008, -0.07398784160614014, -0.09782476723194122, 0.0763922929763794, 0.07706481218338013, 0.05172615870833397, -0.049239031970500946, -0.12931911647319794, -0.0864955261349678, 0.1559070348739624, -0.15778453648090363, -0.08322618156671524 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-semeval2020-task4b This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the ComVE dataset which was part of SemEval 2020 Task 4. It achieves the following results on the test set: - Loss: 0.6760 - Accuracy: 0.8760 ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 3e-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: 4 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.5016 | 1.0 | 688 | 0.3502 | 0.8600 | | 0.2528 | 2.0 | 1376 | 0.5769 | 0.8620 | | 0.0598 | 3.0 | 2064 | 0.6720 | 0.8700 | | 0.0197 | 4.0 | 2752 | 0.6760 | 0.8760 | ### Framework versions - Transformers 4.12.3 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-semeval2020-task4b
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-semeval2020-task4b ============================================== This model is a fine-tuned version of bert-base-uncased on the ComVE dataset which was part of SemEval 2020 Task 4. It achieves the following results on the test set: * Loss: 0.6760 * Accuracy: 0.8760 ### Training hyperparameters The following hyperparameters were used during training: * learning\_rate: 3e-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: 4 ### Training results ### Framework versions * Transformers 4.12.3 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 48, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 3e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 4### Training results### Framework versions\n\n\n* Transformers 4.12.3\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.08441212773323059, 0.04522351175546646, -0.0018171851988881826, 0.11237913370132446, 0.1806591898202896, 0.037251099944114685, 0.120200015604496, 0.10426123440265656, -0.11477407813072205, 0.025364024564623833, 0.10285168886184692, 0.17121504247188568, 0.010140916332602501, 0.07404649257659912, -0.03822014853358269, -0.24591310322284698, -0.014294499531388283, 0.03381264954805374, -0.09970541298389435, 0.1292993128299713, 0.07408155500888824, -0.15372683107852936, 0.06483427435159683, 0.004420803394168615, -0.22761952877044678, 0.01776343770325184, 0.01206776313483715, -0.04950154572725296, 0.15235239267349243, 0.0013283450389280915, 0.14526666700839996, -0.006151737179607153, 0.09350866079330444, -0.18909955024719238, 0.010636541061103344, 0.06240525096654892, 0.011164969764649868, 0.07495658844709396, 0.05549704283475876, 0.007420581765472889, 0.11021723598241806, -0.06866294890642166, 0.06525419652462006, 0.014633378013968468, -0.12147893756628036, -0.2636334300041199, -0.09168609976768494, 0.005429187323898077, 0.05399032309651375, 0.09703286737203598, 0.0015875173266977072, 0.1547456532716751, -0.10319176316261292, 0.08387928456068039, 0.24074821174144745, -0.2946736216545105, -0.07595307379961014, 0.049526866525411606, 0.012769525870680809, 0.08489043265581131, -0.11069145798683167, -0.024313082918524742, 0.0499892458319664, 0.06044735014438629, 0.13161270320415497, -0.03414231538772583, -0.10235386341810226, 0.03353656083345413, -0.15089744329452515, -0.009681114926934242, 0.0819079726934433, 0.0347239188849926, -0.021398715674877167, -0.013477742671966553, -0.05533195286989212, -0.1283857375383377, -0.0432773232460022, -0.014489980414509773, 0.05747037008404732, -0.04707282781600952, -0.08911341428756714, -0.00023529438476543874, -0.10538147389888763, -0.06733766943216324, -0.06389185786247253, 0.1554829478263855, 0.045708827674388885, 0.03593232110142708, -0.03259972482919693, 0.10678492486476898, -0.014698187820613384, -0.1310606449842453, 0.04808509722352028, 0.02790939435362816, -0.026726331561803818, -0.04420613497495651, -0.07223447412252426, -0.07585150003433228, 0.025319937616586685, 0.08757249265909195, -0.06225833296775818, 0.050313521176576614, 0.03140495717525482, 0.044923651963472366, -0.10581335425376892, 0.1700325757265091, -0.06388342380523682, -0.0135194668546319, -0.005371722858399153, 0.05391840636730194, 0.015479695983231068, 0.001655275234952569, -0.09881741553544998, 0.01797585003077984, 0.09246684610843658, 0.011630712077021599, -0.06544369459152222, 0.057879138737916946, -0.0451187789440155, -0.012945697642862797, -0.028322814032435417, -0.0946783646941185, 0.04469892010092735, 0.00632117222994566, -0.08915465325117111, 0.005705183371901512, 0.010842832736670971, 0.013615981675684452, -0.009234258905053139, 0.14945288002490997, -0.08896911144256592, 0.05253150314092636, -0.11728011816740036, -0.11715272814035416, 0.021347174420952797, -0.03224359452724457, 0.01783852092921734, -0.07741034030914307, -0.1497720330953598, -0.00467274896800518, 0.07332327216863632, -0.035493023693561554, -0.03206866234540939, -0.024840885773301125, -0.08610674738883972, -0.01039138063788414, -0.020995987579226494, 0.175645649433136, -0.061587005853652954, 0.11942685395479202, 0.04587250202894211, 0.06859324872493744, -0.04839875176548958, 0.0480625219643116, -0.08564271777868271, 0.0044645885936915874, -0.2180188149213791, 0.027523400261998177, -0.06909516453742981, 0.08608657866716385, -0.08166080713272095, -0.1230473741889, 0.017919134348630905, -0.014351178891956806, 0.08479350060224533, 0.07084643840789795, -0.17806106805801392, -0.07387173920869827, 0.15242697298526764, -0.0687711089849472, -0.11482523381710052, 0.10549672693014145, -0.060811836272478104, 0.017587607726454735, 0.07999758422374725, 0.1654304563999176, 0.05244821682572365, -0.10434278100728989, 0.026412667706608772, -0.006401455029845238, 0.05149901285767555, -0.08264727145433426, 0.05831410363316536, 0.013950634747743607, 0.011513996869325638, 0.0371849350631237, -0.050329022109508514, 0.07508445531129837, -0.11443845927715302, -0.08884317427873611, -0.04257475212216377, -0.11052118986845016, 0.03384463116526604, 0.08218606561422348, 0.08291489630937576, -0.10905905067920685, -0.07295455038547516, 0.10000378638505936, 0.07560315728187561, -0.056185439229011536, 0.028765320777893066, -0.048758797347545624, 0.06430767476558685, -0.05909031257033348, -0.02373206987977028, -0.195111483335495, -0.030274327844381332, 0.00316419149748981, -0.010029798373579979, 0.02053464762866497, 0.044397927820682526, 0.0837114080786705, 0.0624225027859211, -0.06568194180727005, -0.005303495563566685, -0.03638441860675812, -0.0021847933530807495, -0.12882255017757416, -0.2091948539018631, -0.042751625180244446, -0.014678141102194786, 0.07943587005138397, -0.18115223944187164, 0.025627881288528442, -0.038598399609327316, 0.08004699647426605, 0.0012643246445804834, -0.011332809925079346, -0.05874362960457802, 0.09460804611444473, -0.008909703232347965, -0.052380938082933426, 0.07033593952655792, 0.0016592926112934947, -0.07413875311613083, -0.07679804414510727, -0.0836644321680069, 0.18265590071678162, 0.1453673392534256, -0.14697512984275818, -0.07282973825931549, 0.028823500499129295, -0.06417471915483475, -0.026356078684329987, -0.05096355453133583, 0.04980877414345741, 0.16046953201293945, 0.00037623930256813765, 0.1410006731748581, -0.06995698064565659, -0.040253881365060806, 0.015002505853772163, -0.022179046645760536, 0.048953671008348465, 0.10510274767875671, 0.13513633608818054, -0.04713970050215721, 0.13090205192565918, 0.14641936123371124, -0.11428780853748322, 0.102005735039711, -0.05473961681127548, -0.07652311027050018, -0.024871448054909706, -0.008580122143030167, -0.0011648314539343119, 0.11447408050298691, -0.1118202656507492, 0.01047421246767044, 0.015308399684727192, 0.019419776275753975, 0.022630855441093445, -0.25108739733695984, -0.05089612305164337, 0.018817216157913208, -0.038112569600343704, -0.007383166812360287, -0.03230475261807442, 0.013547725044190884, 0.10789638757705688, -0.009396151639521122, -0.06992349773645401, 0.02980017103254795, -0.005134378559887409, -0.05908261984586716, 0.21339458227157593, -0.08386263251304626, -0.10103458911180496, -0.09373532235622406, -0.07695646584033966, -0.04459570720791817, -0.007284118793904781, 0.057789791375398636, -0.10455157607793808, -0.026217231526970863, -0.041059378534555435, 0.03296700492501259, -0.0013905965024605393, 0.03831883892416954, 0.018661798909306526, -0.0007378849550150335, 0.08696189522743225, -0.12488958984613419, 0.00023491871252190322, -0.06653852760791779, -0.07558995485305786, 0.039950739592313766, 0.08165457099676132, 0.10722047090530396, 0.15062125027179718, -0.020165203139185905, 0.0009181645000353456, -0.014903795905411243, 0.24273529648780823, -0.05484350770711899, -0.04537346214056015, 0.11985254287719727, 0.0018080415902659297, 0.062286555767059326, 0.09751829504966736, 0.09640002995729446, -0.09669686108827591, 0.0046472386457026005, 0.04373494163155556, -0.03823311626911163, -0.2283458411693573, -0.03411602973937988, -0.05323835462331772, -0.05929356440901756, 0.06723524630069733, 0.028443779796361923, 0.0073169320821762085, 0.059119611978530884, 0.05523376911878586, 0.08047457039356232, -0.05498124659061432, 0.03903252258896828, 0.12225162237882614, 0.04602924734354019, 0.11771461367607117, -0.050500765442848206, -0.0748327374458313, 0.02996627427637577, -0.016964606940746307, 0.24040955305099487, -0.00775309419259429, 0.10017591714859009, 0.07506810128688812, 0.19108736515045166, -0.019542742520570755, 0.09366574138402939, -0.007576093543320894, -0.0589296892285347, -0.008319788612425327, -0.04442554712295532, -0.018862904980778694, 0.004129943437874317, -0.048299554735422134, 0.07189039140939713, -0.09398280084133148, -0.03557390719652176, 0.06581735610961914, 0.2579948902130127, 0.00934095773845911, -0.3008526861667633, -0.06337534636259079, -0.003896061098203063, -0.04358222708106041, 0.011673379689455032, 0.01448382344096899, 0.1114872619509697, -0.07839503139257431, 0.03809172287583351, -0.0752284824848175, 0.09127038717269897, -0.014825272373855114, 0.045621614903211594, 0.08924698829650879, 0.11410200595855713, 0.006711948662996292, 0.07365115731954575, -0.31685343384742737, 0.2699965536594391, 0.0036732524167746305, 0.09176860004663467, -0.07339061796665192, -0.002964043291285634, 0.02911168709397316, 0.03598959743976593, 0.036665547639131546, -0.01804305985569954, -0.00039424269925802946, -0.18234801292419434, -0.019660934805870056, 0.03803467005491257, 0.09482631087303162, -0.000023509310267399997, 0.09617144614458084, -0.015792345628142357, 0.00366396177560091, 0.07918452471494675, 0.009343404322862625, -0.05848440155386925, -0.07674504816532135, -0.02588714472949505, 0.010646951384842396, -0.08080285787582397, -0.06899390369653702, -0.12413165718317032, -0.14014028012752533, 0.12809962034225464, 0.029427023604512215, -0.02867860719561577, -0.11695150285959244, 0.10672365874052048, 0.10067083686590195, -0.07022210210561752, 0.033909570425748825, 0.014302716590464115, 0.04303152114152908, 0.029648432508111, -0.07025598734617233, 0.09648138284683228, -0.0633288025856018, -0.14759109914302826, -0.05605458840727806, 0.09523341804742813, 0.03530937060713768, 0.0699937716126442, -0.02718460187315941, 0.007105383090674877, -0.024740779772400856, -0.10366751253604889, 0.027338726446032524, -0.028887247666716576, 0.07224348932504654, 0.012575140222907066, -0.04549461975693703, 0.01829518750309944, -0.046846937388181686, -0.016430919989943504, 0.16852791607379913, 0.24019654095172882, -0.08932957798242569, 0.0032042860984802246, 0.047010719776153564, -0.05525534227490425, -0.1746606081724167, 0.061288218945264816, 0.07131114602088928, -0.012208057567477226, 0.07019822299480438, -0.1649775207042694, 0.16137216985225677, 0.1127723976969719, -0.015970205888152122, 0.11420150846242905, -0.3494415581226349, -0.11698198318481445, 0.07969933748245239, 0.18787358701229095, 0.1433681845664978, -0.17182011902332306, -0.020153429359197617, -0.019923603162169456, -0.14434485137462616, 0.10082948207855225, -0.0922706201672554, 0.11695712804794312, -0.022056248039007187, 0.09446673840284348, -0.001988065429031849, -0.06946288794279099, 0.12294919043779373, 0.020699897781014442, 0.11509545892477036, -0.05411386862397194, -0.02046786993741989, 0.06872148811817169, -0.01924552395939827, -0.007401930633932352, -0.06301965564489365, 0.01917611062526703, -0.05700848624110222, -0.018359320238232613, -0.10516320914030075, 0.02704157866537571, -0.029516931623220444, -0.059779152274131775, -0.033188797533512115, 0.02780521661043167, 0.04541045427322388, -0.02161797508597374, 0.10400079190731049, 0.03752938285470009, 0.16047774255275726, 0.09190147370100021, 0.04579238221049309, -0.05490268021821976, -0.09412407875061035, -0.013923765160143375, -0.009481443092226982, 0.060157410800457, -0.14467106759548187, 0.017136478796601295, 0.14425411820411682, 0.027492906898260117, 0.11674026399850845, 0.09033304452896118, -0.04523826390504837, 0.015855543315410614, 0.06980068236589432, -0.15793168544769287, -0.11004214733839035, 0.021141860634088516, -0.06666551530361176, -0.09367968887090683, 0.05968047305941582, 0.06898601353168488, -0.06820517033338547, -0.008214023895561695, -0.010955380275845528, -0.005108026787638664, -0.0820237249135971, 0.2215498685836792, 0.06515717506408691, 0.049615420401096344, -0.11462718993425369, 0.07047825306653976, 0.05092930793762207, -0.08768445253372192, -0.015765657648444176, 0.0716245099902153, -0.066861093044281, -0.0248251985758543, 0.12074293196201324, 0.1867830604314804, -0.03866921737790108, -0.033890001475811005, -0.14768317341804504, -0.1214449405670166, 0.0750160962343216, 0.15368710458278656, 0.11223602294921875, 0.0033436312805861235, -0.05544918403029442, 0.027739251032471657, -0.12155446410179138, 0.0749722495675087, 0.02897822856903076, 0.06694529950618744, -0.13998477160930634, 0.1624058485031128, 0.01807619258761406, 0.03784731402993202, -0.023485654965043068, 0.04420376196503639, -0.10936793684959412, 0.02825300022959709, -0.14382988214492798, -0.045738283544778824, -0.022163908928632736, -0.004897061735391617, 0.003726012073457241, -0.08103612810373306, -0.06779100745916367, 0.01791771501302719, -0.13816587626934052, -0.02129564993083477, 0.04358479008078575, 0.04352008178830147, -0.13347384333610535, -0.0373954139649868, 0.018333084881305695, -0.05346931889653206, 0.04493321478366852, 0.05275813490152359, 0.012036611326038837, 0.08488663285970688, -0.1619836837053299, -0.032891713082790375, 0.06851699948310852, 0.007349629886448383, 0.08346220850944519, -0.06490538269281387, -0.01287111546844244, 0.004831627476960421, 0.08889883011579514, 0.012423321604728699, 0.04893793165683746, -0.1470072716474533, -0.012549607083201408, -0.037364713847637177, -0.10343389958143234, -0.05365972965955734, 0.006293174810707569, 0.09979337453842163, 0.01663852669298649, 0.19683076441287994, -0.07485482841730118, 0.047261498868465424, -0.22018004953861237, -0.014890141785144806, -0.017747551202774048, -0.10338203608989716, -0.11066175997257233, -0.049760375171899796, 0.06705473363399506, -0.04887700080871582, 0.1437828093767166, 0.024915801361203194, 0.05140126496553421, 0.027260029688477516, -0.02638540044426918, 0.004674490075558424, 0.030128762125968933, 0.23819543421268463, 0.023636896163225174, -0.025255460292100906, 0.06716024875640869, 0.061370860785245895, 0.08978456258773804, 0.10665971040725708, 0.20553484559059143, 0.17554430663585663, 0.0029702589381486177, 0.08034196496009827, 0.04728757590055466, -0.05544668808579445, -0.14280705153942108, 0.04288402572274208, -0.05460366606712341, 0.09637800604104996, -0.03155285865068436, 0.22317835688591003, 0.052156344056129456, -0.16892091929912567, 0.05557193234562874, -0.06308698654174805, -0.08630208671092987, -0.09475374221801758, -0.010813410393893719, -0.06971294432878494, -0.16535545885562897, 0.017696069553494453, -0.10687414556741714, 0.0250900536775589, 0.16651643812656403, 0.017151175066828728, -0.014100139029324055, 0.1738424003124237, 0.052821673452854156, 0.03928510099649429, 0.04488913342356682, 0.005800067447125912, -0.03642905876040459, -0.08090119063854218, -0.061041828244924545, -0.02457495778799057, -0.021702244877815247, 0.033090706914663315, -0.056704647839069366, -0.0991833508014679, 0.03912394866347313, -0.01963236927986145, -0.09679350256919861, 0.02817627042531967, 0.00758227426558733, 0.08477829396724701, 0.040819063782691956, 0.002766952384263277, 0.01819612830877304, -0.027439599856734276, 0.22095026075839996, -0.08689192682504654, -0.0906623899936676, -0.09507100284099579, 0.2544034421443939, 0.02871387079358101, -0.013469592668116093, 0.03297900781035423, -0.06378276646137238, -0.010438970290124416, 0.24010565876960754, 0.19719794392585754, -0.11172709614038467, -0.016802143305540085, 0.007685297634452581, -0.015286126174032688, -0.042575232684612274, 0.13066525757312775, 0.13700319826602936, 0.04197518900036812, -0.11431953310966492, -0.032353468239307404, -0.06926684826612473, -0.014100408181548119, -0.04704957455396652, 0.044403597712516785, 0.057389359921216965, 0.005272773094475269, -0.046027231961488724, 0.07428091764450073, -0.04491565376520157, -0.1478452980518341, 0.09283430874347687, -0.18875224888324738, -0.17413237690925598, -0.01969551295042038, 0.14509904384613037, -0.0012844458688050508, 0.0695323571562767, -0.03586343675851822, 0.008413740433752537, 0.06530778855085373, -0.029350019991397858, -0.08556099981069565, -0.10501156002283096, 0.1132228821516037, -0.1073727011680603, 0.18041756749153137, -0.04131116345524788, 0.07590658962726593, 0.12348026037216187, 0.058252520859241486, -0.056792858988046646, 0.07021743804216385, 0.04888634756207466, -0.12428939342498779, 0.005394804757088423, 0.08956697583198547, -0.029330510646104813, 0.051319342106580734, 0.0304064080119133, -0.12660816311836243, 0.0227227620780468, -0.04997383803129196, -0.04649671912193298, -0.04847382754087448, -0.05739704146981239, -0.061201710253953934, 0.1111094281077385, 0.22373799979686737, -0.02343936823308468, 0.028020191937685013, -0.07718611508607864, 0.020636437460780144, 0.05572851747274399, 0.05362837016582489, -0.09648352116346359, -0.24214445054531097, 0.0194978266954422, 0.049057427793741226, -0.02997463010251522, -0.20919005572795868, -0.09236413985490799, 0.02208445966243744, -0.0749056488275528, -0.09799651056528091, 0.07658477127552032, 0.07670419663190842, 0.053342387080192566, -0.04930867627263069, -0.11784429848194122, -0.08739884942770004, 0.15521414577960968, -0.15781760215759277, -0.0828990638256073 ]
null
null
transformers
<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-base-uncased-finetuned-swag-e1-b16-l5e5 This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the swag dataset. It achieves the following results on the evaluation set: - Loss: 0.5202 - Accuracy: 0.7997 ## 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: 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: 1 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.701 | 1.0 | 4597 | 0.5202 | 0.7997 | ### Framework versions - Transformers 4.12.2 - Pytorch 1.9.1 - Datasets 1.12.1 - Tokenizers 0.10.3
{"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["swag"], "metrics": ["accuracy"], "model-index": [{"name": "bert-base-uncased-finetuned-swag-e1-b16-l5e5", "results": []}]}
multiple-choice
JazibEijaz/bert-base-uncased-finetuned-swag-e1-b16-l5e5
[ "transformers", "pytorch", "tensorboard", "bert", "multiple-choice", "generated_from_trainer", "dataset:swag", "license:apache-2.0", "endpoints_compatible", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[]
TAGS #transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #dataset-swag #license-apache-2.0 #endpoints_compatible #region-us
bert-base-uncased-finetuned-swag-e1-b16-l5e5 ============================================ This model is a fine-tuned version of bert-base-uncased on the swag dataset. It achieves the following results on the evaluation set: * Loss: 0.5202 * Accuracy: 0.7997 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: 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: 1 ### Training results ### Framework versions * Transformers 4.12.2 * Pytorch 1.9.1 * Datasets 1.12.1 * Tokenizers 0.10.3
[ "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.2\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ "TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #dataset-swag #license-apache-2.0 #endpoints_compatible #region-us \n", "### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1", "### Training results", "### Framework versions\n\n\n* Transformers 4.12.2\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ 54, 98, 4, 31 ]
[ "passage: TAGS\n#transformers #pytorch #tensorboard #bert #multiple-choice #generated_from_trainer #dataset-swag #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 5e-05\n* train\\_batch\\_size: 16\n* eval\\_batch\\_size: 16\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 1### Training results### Framework versions\n\n\n* Transformers 4.12.2\n* Pytorch 1.9.1\n* Datasets 1.12.1\n* Tokenizers 0.10.3" ]
[ -0.10391159355640411, 0.05585082992911339, -0.0020585800521075726, 0.1131148487329483, 0.17113511264324188, 0.04076974838972092, 0.12118707597255707, 0.11254722625017166, -0.09977438300848007, 0.012758931145071983, 0.11550266295671463, 0.18649493157863617, 0.006868424825370312, 0.06540418416261673, -0.03349712863564491, -0.24631336331367493, -0.004882350564002991, 0.036061182618141174, -0.09805320203304291, 0.13843372464179993, 0.08136551827192307, -0.14664120972156525, 0.0741930902004242, 0.01791398413479328, -0.20653317868709564, 0.014369390904903412, 0.0055585759691894054, -0.04489541053771973, 0.15771134197711945, 0.005077502690255642, 0.12950173020362854, 0.0007698977715335786, 0.0735594630241394, -0.19718563556671143, 0.014531265944242477, 0.044747695326805115, 0.007281809113919735, 0.07794954627752304, 0.05587262287735939, -0.009992258623242378, 0.13362233340740204, -0.0641544759273529, 0.05529367923736572, 0.02704053744673729, -0.1240614652633667, -0.2740218937397003, -0.08842194825410843, 0.0037801016587764025, 0.0546799972653389, 0.1007910743355751, 0.0005645622150041163, 0.14504286646842957, -0.10291629284620285, 0.08447274565696716, 0.25317808985710144, -0.29307228326797485, -0.06533096730709076, 0.030354896560311317, 0.01997540332376957, 0.07996649295091629, -0.10676807165145874, -0.024788379669189453, 0.03854277357459068, 0.053225044161081314, 0.12816596031188965, -0.042101386934518814, -0.09316840022802353, 0.04521901160478592, -0.1465698927640915, -0.031971778720617294, 0.13971170783042908, 0.04372554272413254, -0.03031548485159874, -0.030527954921126366, -0.04954667016863823, -0.11827247589826584, -0.030976559966802597, 0.002650107955560088, 0.04585324600338936, -0.037849489599466324, -0.08666140586137772, -0.019160045310854912, -0.11570948362350464, -0.07333116233348846, -0.05914758890867233, 0.16070790588855743, 0.04206711798906326, 0.037289097905159, -0.027559615671634674, 0.11321847885847092, 0.016183463856577873, -0.1268039345741272, 0.028605859726667404, 0.02231837809085846, -0.027816973626613617, -0.029651401564478874, -0.07487715780735016, -0.05893095210194588, 0.033494025468826294, 0.09680930525064468, -0.0455307736992836, 0.04393644630908966, 0.05325039476156235, 0.04229487478733063, -0.10342244803905487, 0.16847606003284454, -0.06656507402658463, -0.005579619202762842, -0.010199222713708878, 0.04162425920367241, 0.018172375857830048, 0.00020732631674036384, -0.11156879365444183, 0.008785631507635117, 0.07962453365325928, 0.01429139357060194, -0.05557285249233246, 0.055258892476558685, -0.06280406564474106, -0.03236699849367142, 0.0009621056960895658, -0.08732864260673523, 0.032307978719472885, 0.012577145360410213, -0.08127409964799881, -0.010809600353240967, 0.003994272090494633, 0.022060107439756393, -0.00884292647242546, 0.1160905510187149, -0.08687037229537964, 0.04738669842481613, -0.10072788596153259, -0.11402226239442825, 0.018809324130415916, -0.057261668145656586, 0.032229043543338776, -0.07268109172582626, -0.17541223764419556, 0.00006565136573044583, 0.0664760023355484, -0.023640962317585945, -0.04751496762037277, -0.03126540035009384, -0.07696545869112015, -0.007674361113458872, -0.01271231472492218, 0.1700475811958313, -0.06696727126836777, 0.11645559221506119, 0.037678662687540054, 0.05554771050810814, -0.041327305138111115, 0.05237636715173721, -0.09247364103794098, 0.004794865846633911, -0.1760556846857071, 0.047011129558086395, -0.05548085272312164, 0.08436484634876251, -0.09083831310272217, -0.11670529097318649, 0.01968078501522541, -0.015048223547637463, 0.06983020901679993, 0.08480697870254517, -0.17423206567764282, -0.07585204392671585, 0.14759330451488495, -0.06718429177999496, -0.12822188436985016, 0.10838393867015839, -0.06784997135400772, 0.027572328224778175, 0.07265330106019974, 0.16124126315116882, 0.08190321177244186, -0.08750531822443008, 0.033915236592292786, 0.01434365939348936, 0.03670785203576088, -0.09131917357444763, 0.08539541810750961, 0.004859131295233965, -0.0047796377912163734, 0.036652762442827225, -0.05767754092812538, 0.07498128712177277, -0.10320887714624405, -0.0977395698428154, -0.04373079165816307, -0.10563688725233078, 0.0417109839618206, 0.07945521175861359, 0.07265064865350723, -0.10706142336130142, -0.076081283390522, 0.07912919670343399, 0.09130600839853287, -0.05817631632089615, 0.02999698370695114, -0.04486671835184097, 0.05826088413596153, -0.06316173076629639, -0.02663731388747692, -0.19266055524349213, -0.025493968278169632, 0.002827754709869623, -0.018914205953478813, 0.0019506590906530619, 0.06131013110280037, 0.08021646738052368, 0.06349451094865799, -0.05803538113832474, -0.02149573154747486, -0.03809815272688866, -0.005583066027611494, -0.11211609095335007, -0.20878750085830688, -0.05344172567129135, -0.023117749020457268, 0.1107671707868576, -0.17480577528476715, 0.02864091843366623, -0.02354379929602146, 0.06421566754579544, 0.00019442624761722982, -0.019469603896141052, -0.039265524595975876, 0.07930482178926468, -0.020800963044166565, -0.05224810540676117, 0.0757635235786438, 0.012672962620854378, -0.09933076053857803, -0.05343024805188179, -0.0698346197605133, 0.17531152069568634, 0.13480116426944733, -0.13585247099399567, -0.05182678624987602, 0.010817043483257294, -0.06576970964670181, -0.030921567231416702, -0.049205441027879715, 0.04931965097784996, 0.1606305092573166, 0.0009160217014141381, 0.1354854255914688, -0.07587459683418274, -0.04150771722197533, 0.016025982797145844, -0.023142952471971512, 0.03668426349759102, 0.12364740669727325, 0.10667520016431808, -0.059697218239307404, 0.13397350907325745, 0.14191868901252747, -0.08157529681921005, 0.1122070774435997, -0.062136210501194, -0.07703736424446106, -0.03283800557255745, 0.0016371840611100197, -0.005077207460999489, 0.11516651511192322, -0.15150734782218933, 0.011499021202325821, 0.03319791704416275, 0.015583033673465252, 0.016886983066797256, -0.24881716072559357, -0.05527416244149208, 0.031839750707149506, -0.05111714452505112, -0.020064856857061386, -0.024931736290454865, 0.0059785074554383755, 0.09617195278406143, -0.00911493506282568, -0.06287015974521637, 0.04529447853565216, -0.0017355092568323016, -0.06459276378154755, 0.22014053165912628, -0.08630054444074631, -0.12412554770708084, -0.11423561722040176, -0.07681519538164139, -0.05585906654596329, -0.004371043294668198, 0.07030142098665237, -0.08937954902648926, -0.02785254269838333, -0.04484385997056961, 0.031441427767276764, -0.02678900584578514, 0.02932470291852951, 0.0015060794539749622, -0.003876633709296584, 0.07871437072753906, -0.12797236442565918, 0.001280292752198875, -0.05649909749627113, -0.07206529378890991, 0.040783122181892395, 0.06717678904533386, 0.1122090145945549, 0.12949171662330627, 0.002996517810970545, 0.008931311778724194, -0.014540301635861397, 0.23305794596672058, -0.0550977885723114, -0.04951154440641403, 0.12703673541545868, 0.011161419562995434, 0.059565458446741104, 0.0948382169008255, 0.09262868016958237, -0.08119918406009674, -0.00017116116941906512, 0.0382906012237072, -0.040178459137678146, -0.2362058311700821, -0.03793640807271004, -0.06009439006447792, -0.053408194333314896, 0.06926252692937851, 0.03282523155212402, 0.01964017190039158, 0.07136892527341843, 0.03619234263896942, 0.060144469141960144, -0.053212039172649384, 0.04412828013300896, 0.1221645176410675, 0.04419725760817528, 0.11339238286018372, -0.05577177554368973, -0.061261557042598724, 0.04072577506303787, -0.01491900347173214, 0.25180506706237793, -0.005925838369876146, 0.1621960997581482, 0.08198418468236923, 0.201711505651474, -0.02288040518760681, 0.09915856271982193, -0.002026644069701433, -0.04746690019965172, -0.011212565936148167, -0.040420833975076675, -0.017225472256541252, 0.009387200698256493, -0.05023341625928879, 0.07756263017654419, -0.09630075842142105, -0.027761081233620644, 0.05940079689025879, 0.27089181542396545, 0.017097212374210358, -0.3014110028743744, -0.07264792919158936, 0.0011368413688614964, -0.034982964396476746, 0.00043632619781419635, 0.012206087820231915, 0.11591031402349472, -0.09164778888225555, 0.03832954913377762, -0.07630988210439682, 0.0917566791176796, -0.03063422627747059, 0.04181778430938721, 0.07884422689676285, 0.09983484447002411, 0.006092517636716366, 0.09394367039203644, -0.3198527991771698, 0.2731034457683563, 0.0018053014064207673, 0.07364384829998016, -0.08155924081802368, -0.004065306857228279, 0.031053248792886734, 0.04524647817015648, 0.05840301141142845, -0.0066902050748467445, 0.012121805921196938, -0.169388547539711, -0.02995653823018074, 0.036833085119724274, 0.07321250438690186, -0.029843207448720932, 0.09049070626497269, -0.019485358148813248, 0.0056501999497413635, 0.07150426506996155, 0.032885290682315826, -0.04437423497438431, -0.09474965184926987, -0.01851234957575798, 0.016096729785203934, -0.06879294663667679, -0.07503335922956467, -0.1171087846159935, -0.11124479025602341, 0.13200636208057404, 0.009593813680112362, -0.045479290187358856, -0.12292454391717911, 0.08737795054912567, 0.1046929806470871, -0.08272650092840195, 0.03435203433036804, 0.005451197270303965, 0.048905737698078156, 0.03012557327747345, -0.07022056728601456, 0.08923309296369553, -0.06332504004240036, -0.1518312394618988, -0.04594963788986206, 0.10234049707651138, 0.03889768198132515, 0.06672076880931854, -0.02851947583258152, 0.003609909676015377, -0.05180263891816139, -0.10765282809734344, 0.021070094779133797, -0.02809871919453144, 0.07762449234724045, 0.0218539759516716, -0.03813708946108818, 0.039395593106746674, -0.048614419996738434, -0.026645276695489883, 0.18471595644950867, 0.23307612538337708, -0.09361986815929413, 0.023612383753061295, 0.038685109466314316, -0.05341204255819321, -0.16737611591815948, 0.031028876081109047, 0.0642094686627388, -0.004629765637218952, 0.06341815739870071, -0.18811143934726715, 0.14953093230724335, 0.10791637003421783, -0.014031260274350643, 0.10760084539651871, -0.3526364266872406, -0.11275636404752731, 0.0997929573059082, 0.1799321472644806, 0.16164755821228027, -0.16404972970485687, -0.03142686188220978, -0.0147100780159235, -0.15159283578395844, 0.1004256084561348, -0.08933694660663605, 0.121843621134758, -0.033053070306777954, 0.08583272993564606, -0.0009782396955415606, -0.06454432010650635, 0.13953253626823425, 0.039006203413009644, 0.10915904492139816, -0.04719167575240135, -0.017073731869459152, 0.0805758386850357, -0.02068149298429489, 0.00154628767631948, -0.08881281316280365, 0.02371201105415821, -0.08872078359127045, -0.024691183120012283, -0.1063598245382309, 0.03567610681056976, -0.02912141941487789, -0.060244590044021606, -0.031220685690641403, 0.01558168325573206, 0.0440179742872715, -0.01585759036242962, 0.12644509971141815, 0.043188419193029404, 0.13349804282188416, 0.08221882581710815, 0.04908217117190361, -0.05039201304316521, -0.10784287750720978, -0.036021675914525986, -0.005137843545526266, 0.05332786217331886, -0.14251363277435303, 0.020094506442546844, 0.12970219552516937, 0.034892112016677856, 0.12571726739406586, 0.08383059501647949, -0.0432656854391098, 0.018322402611374855, 0.05895198881626129, -0.15601575374603271, -0.12746182084083557, -0.0020742169581353664, -0.07447269558906555, -0.1053134873509407, 0.05936305597424507, 0.06917719542980194, -0.04992516711354256, -0.015790140256285667, -0.02204238623380661, -0.005101143382489681, -0.07864896953105927, 0.20508256554603577, 0.06251314282417297, 0.056102171540260315, -0.1266048699617386, 0.07045304030179977, 0.04357338324189186, -0.07584704458713531, -0.019946115091443062, 0.05433947592973709, -0.07435061782598495, -0.040710147470235825, 0.10602778196334839, 0.18602173030376434, -0.04722239077091217, -0.046630050987005234, -0.1413889080286026, -0.12321736663579941, 0.0818261206150055, 0.1314946860074997, 0.12176857143640518, 0.023870056495070457, -0.05652223154902458, 0.00696909986436367, -0.10905782878398895, 0.0821678638458252, 0.03734844550490379, 0.06102479621767998, -0.14449667930603027, 0.13922403752803802, 0.01796378381550312, 0.04722260311245918, -0.013672368600964546, 0.022412428632378578, -0.0893188938498497, 0.020340468734502792, -0.15572287142276764, -0.03248744457960129, -0.04411643370985985, 0.005333433859050274, 0.003995040897279978, -0.08672158420085907, -0.05778822302818298, 0.02369392290711403, -0.13485541939735413, -0.026989800855517387, 0.04084860533475876, 0.06048800051212311, -0.13224850594997406, -0.04100019857287407, 0.024032196030020714, -0.06196975335478783, 0.058065202087163925, 0.07101161032915115, 0.012647813186049461, 0.07086556404829025, -0.13143901526927948, -0.015528383664786816, 0.06845627725124359, 0.01300749834626913, 0.06706700474023819, -0.08435847610235214, -0.009799144230782986, 0.01000888366252184, 0.06686649471521378, 0.006376487668603659, 0.0509965717792511, -0.1517987996339798, -0.016055939719080925, -0.02880372665822506, -0.10164690017700195, -0.06297934800386429, 0.01315146405249834, 0.10494101792573929, 0.019590506330132484, 0.21047483384609222, -0.0606667697429657, 0.043882954865694046, -0.21556302905082703, -0.009693203493952751, -0.01792777329683304, -0.10973107069730759, -0.12213194370269775, -0.060161661356687546, 0.05710696056485176, -0.04375176876783371, 0.1456001251935959, 0.005873430520296097, 0.04800119251012802, 0.013844835571944714, 0.006471237167716026, 0.036449503153562546, 0.020656537264585495, 0.247020423412323, 0.020492639392614365, -0.030069423839449883, 0.07998351752758026, 0.05789749324321747, 0.09199868887662888, 0.12715403735637665, 0.17748413980007172, 0.17237278819084167, 0.005593933165073395, 0.08033693581819534, 0.040530502796173096, -0.05252427980303764, -0.140574112534523, 0.03615081310272217, -0.039336834102869034, 0.0933523029088974, -0.019525300711393356, 0.23268567025661469, 0.06031201407313347, -0.1828431636095047, 0.05861044302582741, -0.03112308494746685, -0.08322624117136002, -0.09609567373991013, -0.047014497220516205, -0.07095939666032791, -0.15589390695095062, 0.008284974843263626, -0.10909435898065567, 0.020678527653217316, 0.16324378550052643, 0.01059983391314745, -0.014225108548998833, 0.1604352593421936, 0.06965240091085434, 0.025438299402594566, 0.04071677848696709, 0.0014519909163936973, -0.03747553750872612, -0.07785588502883911, -0.059209924191236496, -0.011106161400675774, -0.03607410565018654, 0.02829054743051529, -0.06064637377858162, -0.08334659039974213, 0.04303444176912308, -0.03364374488592148, -0.1038319319486618, 0.017648901790380478, 0.002761667361482978, 0.07596331834793091, 0.04120141640305519, 0.014037438668310642, 0.017690040171146393, -0.01734474115073681, 0.2306264042854309, -0.07447806000709534, -0.08201846480369568, -0.0941065102815628, 0.23524023592472076, 0.03583773225545883, -0.0248122476041317, 0.052383676171302795, -0.05919764190912247, 0.0036421846598386765, 0.24487437307834625, 0.20014911890029907, -0.08467593789100647, -0.016624486073851585, 0.006499011069536209, -0.01571512408554554, -0.020813971757888794, 0.11197927594184875, 0.12027823179960251, 0.036629196256399155, -0.108970046043396, -0.036978717893362045, -0.06964448094367981, -0.01316874846816063, -0.04716167598962784, 0.059642575681209564, 0.05812966451048851, -0.011514408513903618, -0.040323879569768906, 0.0694146454334259, -0.040531788021326065, -0.11979345232248306, 0.10216385126113892, -0.166938915848732, -0.16342712938785553, -0.03301501274108887, 0.13201656937599182, 0.015347287990152836, 0.07397172600030899, -0.03337690979242325, 0.006299200467765331, 0.08273328840732574, -0.015499850735068321, -0.12402432411909103, -0.09438169747591019, 0.1195458322763443, -0.11958044767379761, 0.177668958902359, -0.04288986325263977, 0.060866232961416245, 0.1262894868850708, 0.06186509132385254, -0.07262057065963745, 0.07371421903371811, 0.045586928725242615, -0.09733966737985611, 0.017644278705120087, 0.07601668685674667, -0.023962419480085373, 0.043667882680892944, 0.023454930633306503, -0.11802972853183746, 0.025937151163816452, -0.03380505368113518, -0.04257378727197647, -0.04316595196723938, -0.04962641000747681, -0.05759969353675842, 0.11125974357128143, 0.20668981969356537, -0.03084072470664978, 0.01736670918762684, -0.07562368363142014, 0.018988916650414467, 0.06930488348007202, 0.04292258992791176, -0.08262772858142853, -0.22010290622711182, 0.01071228552609682, 0.04485069215297699, -0.024368181824684143, -0.2197227030992508, -0.09707887470722198, 0.017828337848186493, -0.07735862582921982, -0.08464689552783966, 0.06637012958526611, 0.07069221138954163, 0.05077361688017845, -0.048317596316337585, -0.06263011693954468, -0.0870981365442276, 0.15615005791187286, -0.1524847149848938, -0.08403381705284119 ]
null
null
transformers
# camembert-ner: model fine-tuned from camemBERT for NER task (including DATE tag). ## Introduction [camembert-ner-with-dates] is an extension of french camembert-ner model with an additionnal tag for dates. Model was trained on enriched version of wikiner-fr dataset (~170 634 sentences). On my test data (mix of chat and email), this model got an f1 score of ~83% (in comparison dateparser was ~70%). Dateparser library can still be be used on the output of this model in order to convert text to python datetime object (https://dateparser.readthedocs.io/en/latest/). ## How to use camembert-ner-with-dates with HuggingFace ##### Load camembert-ner-with-dates and its sub-word tokenizer : ```python from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Jean-Baptiste/camembert-ner-with-dates") model = AutoModelForTokenClassification.from_pretrained("Jean-Baptiste/camembert-ner-with-dates") ##### Process text sample (from wikipedia) from transformers import pipeline nlp = pipeline('ner', model=model, tokenizer=tokenizer, aggregation_strategy="simple") nlp("Apple est créée le 1er avril 1976 dans le garage de la maison d'enfance de Steve Jobs à Los Altos en Californie par Steve Jobs, Steve Wozniak et Ronald Wayne14, puis constituée sous forme de société le 3 janvier 1977 à l'origine sous le nom d'Apple Computer, mais pour ses 30 ans et pour refléter la diversification de ses produits, le mot « computer » est retiré le 9 janvier 2015.") [{'entity_group': 'ORG', 'score': 0.9776379466056824, 'word': 'Apple', 'start': 0, 'end': 5}, {'entity_group': 'DATE', 'score': 0.9793774570737567, 'word': 'le 1er avril 1976 dans le', 'start': 15, 'end': 41}, {'entity_group': 'PER', 'score': 0.9958226680755615, 'word': 'Steve Jobs', 'start': 74, 'end': 85}, {'entity_group': 'LOC', 'score': 0.995087186495463, 'word': 'Los Altos', 'start': 87, 'end': 97}, {'entity_group': 'LOC', 'score': 0.9953305125236511, 'word': 'Californie', 'start': 100, 'end': 111}, {'entity_group': 'PER', 'score': 0.9961076378822327, 'word': 'Steve Jobs', 'start': 115, 'end': 126}, {'entity_group': 'PER', 'score': 0.9960325956344604, 'word': 'Steve Wozniak', 'start': 127, 'end': 141}, {'entity_group': 'PER', 'score': 0.9957776467005411, 'word': 'Ronald Wayne', 'start': 144, 'end': 157}, {'entity_group': 'DATE', 'score': 0.994030773639679, 'word': 'le 3 janvier 1977 à', 'start': 198, 'end': 218}, {'entity_group': 'ORG', 'score': 0.9720810294151306, 'word': "d'Apple Computer", 'start': 240, 'end': 257}, {'entity_group': 'DATE', 'score': 0.9924157659212748, 'word': '30 ans et', 'start': 272, 'end': 282}, {'entity_group': 'DATE', 'score': 0.9934852868318558, 'word': 'le 9 janvier 2015.', 'start': 363, 'end': 382}] ``` ## Model performances (metric: seqeval) Global ``` 'precision': 0.928 'recall': 0.928 'f1': 0.928 ``` By entity ``` Label LOC: (precision:0.929, recall:0.932, f1:0.931, support:9510) Label PER: (precision:0.952, recall:0.965, f1:0.959, support:9399) Label MISC: (precision:0.878, recall:0.844, f1:0.860, support:5364) Label ORG: (precision:0.848, recall:0.883, f1:0.865, support:2299) Label DATE: Not relevant because of method used to add date tag on wikiner dataset (estimated f1 ~90%) ```
{"language": "fr", "license": "mit", "datasets": ["Jean-Baptiste/wikiner_fr"], "widget": [{"text": "Je m'appelle jean-baptiste et j'habite \u00e0 montr\u00e9al depuis fevr 2012"}]}
token-classification
Jean-Baptiste/camembert-ner-with-dates
[ "transformers", "pytorch", "onnx", "safetensors", "camembert", "token-classification", "fr", "dataset:Jean-Baptiste/wikiner_fr", "license:mit", "autotrain_compatible", "endpoints_compatible", "has_space", "region:us" ]
2022-03-02T23:29:04+00:00
[]
[ "fr" ]
TAGS #transformers #pytorch #onnx #safetensors #camembert #token-classification #fr #dataset-Jean-Baptiste/wikiner_fr #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us
# camembert-ner: model fine-tuned from camemBERT for NER task (including DATE tag). ## Introduction [camembert-ner-with-dates] is an extension of french camembert-ner model with an additionnal tag for dates. Model was trained on enriched version of wikiner-fr dataset (~170 634 sentences). On my test data (mix of chat and email), this model got an f1 score of ~83% (in comparison dateparser was ~70%). Dateparser library can still be be used on the output of this model in order to convert text to python datetime object (URL ## How to use camembert-ner-with-dates with HuggingFace ##### Load camembert-ner-with-dates and its sub-word tokenizer : ## Model performances (metric: seqeval) Global By entity
[ "# camembert-ner: model fine-tuned from camemBERT for NER task (including DATE tag).", "## Introduction\n\n[camembert-ner-with-dates] is an extension of french camembert-ner model with an additionnal tag for dates.\nModel was trained on enriched version of wikiner-fr dataset (~170 634 sentences).\n\nOn my test data (mix of chat and email), this model got an f1 score of ~83% (in comparison dateparser was ~70%).\nDateparser library can still be be used on the output of this model in order to convert text to python datetime object \n(URL", "## How to use camembert-ner-with-dates with HuggingFace", "##### Load camembert-ner-with-dates and its sub-word tokenizer :", "## Model performances (metric: seqeval)\n\nGlobal\n\n\nBy entity" ]
[ "TAGS\n#transformers #pytorch #onnx #safetensors #camembert #token-classification #fr #dataset-Jean-Baptiste/wikiner_fr #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us \n", "# camembert-ner: model fine-tuned from camemBERT for NER task (including DATE tag).", "## Introduction\n\n[camembert-ner-with-dates] is an extension of french camembert-ner model with an additionnal tag for dates.\nModel was trained on enriched version of wikiner-fr dataset (~170 634 sentences).\n\nOn my test data (mix of chat and email), this model got an f1 score of ~83% (in comparison dateparser was ~70%).\nDateparser library can still be be used on the output of this model in order to convert text to python datetime object \n(URL", "## How to use camembert-ner-with-dates with HuggingFace", "##### Load camembert-ner-with-dates and its sub-word tokenizer :", "## Model performances (metric: seqeval)\n\nGlobal\n\n\nBy entity" ]
[ 74, 27, 120, 19, 23, 15 ]
[ "passage: TAGS\n#transformers #pytorch #onnx #safetensors #camembert #token-classification #fr #dataset-Jean-Baptiste/wikiner_fr #license-mit #autotrain_compatible #endpoints_compatible #has_space #region-us \n# camembert-ner: model fine-tuned from camemBERT for NER task (including DATE tag).## Introduction\n\n[camembert-ner-with-dates] is an extension of french camembert-ner model with an additionnal tag for dates.\nModel was trained on enriched version of wikiner-fr dataset (~170 634 sentences).\n\nOn my test data (mix of chat and email), this model got an f1 score of ~83% (in comparison dateparser was ~70%).\nDateparser library can still be be used on the output of this model in order to convert text to python datetime object \n(URL## How to use camembert-ner-with-dates with HuggingFace##### Load camembert-ner-with-dates and its sub-word tokenizer :## Model performances (metric: seqeval)\n\nGlobal\n\n\nBy entity" ]
[ -0.08048323541879654, 0.18632711470127106, -0.005800274200737476, 0.06918863207101822, 0.07260236889123917, -0.005254650488495827, 0.07713090628385544, 0.06482979655265808, 0.013650455512106419, 0.07443079352378845, 0.10569703578948975, 0.031000077724456787, 0.03011954203248024, 0.12486027181148529, -0.03380340337753296, -0.20003238320350647, 0.07661999017000198, -0.0696122944355011, 0.005789169576019049, 0.07097132503986359, 0.05774238705635071, -0.04599369317293167, 0.09582607448101044, 0.03863389790058136, -0.03380167484283447, 0.011860305443406105, -0.027935581281781197, -0.04984060302376747, 0.07409623265266418, 0.03959156945347786, 0.0295620858669281, -0.013545003719627857, 0.08617820590734482, -0.14782069623470306, 0.004759528208523989, 0.046211786568164825, -0.005402507726103067, 0.008235148154199123, 0.019790466874837875, -0.055205900222063065, 0.16140392422676086, -0.10143687576055527, 0.05641739070415497, 0.01851700246334076, -0.08412786573171616, 0.04547889903187752, -0.12031141668558121, -0.03156658262014389, 0.057639461010694504, 0.11859502643346786, -0.015623683109879494, 0.14181460440158844, -0.09289661049842834, 0.09601850807666779, 0.0813656896352768, -0.16054636240005493, -0.016515230759978294, 0.0764494314789772, 0.021256983280181885, -0.038724612444639206, -0.07884981483221054, -0.02020019292831421, 0.011267280206084251, 0.0028584892861545086, 0.10016129910945892, -0.05461575463414192, -0.01983063481748104, -0.003100684145465493, -0.14876633882522583, -0.07955434918403625, 0.024586208164691925, 0.0856906920671463, -0.07206132262945175, -0.07274848967790604, -0.10847267508506775, -0.008167116902768612, -0.08146015554666519, -0.026051104068756104, 0.054333072155714035, -0.013273065909743309, -0.013281160965561867, -0.0930996909737587, -0.073744997382164, -0.03035065159201622, -0.04843109846115112, 0.10832667350769043, 0.028684236109256744, 0.06509041786193848, -0.08870737254619598, 0.033254384994506836, -0.16091619431972504, -0.04680337756872177, -0.03974210470914841, -0.01630074344575405, -0.0687633752822876, -0.021705130115151405, -0.03905608877539635, -0.07412532716989517, 0.03949554264545441, 0.11566416919231415, -0.17249427735805511, 0.043754901736974716, 0.08188273757696152, -0.03914972022175789, 0.06883402168750763, 0.19365350902080536, -0.02132517471909523, -0.10698588192462921, 0.06416850537061691, -0.010933649726212025, -0.006922961212694645, 0.028751090168952942, -0.034417033195495605, -0.025822671130299568, 0.06812289357185364, -0.03155330941081047, -0.037960704416036606, 0.07022234052419662, 0.02045910432934761, 0.024702832102775574, 0.20242665708065033, -0.09582477062940598, 0.03625928983092308, 0.01566014252603054, -0.12375424802303314, -0.014021703042089939, 0.11052519828081131, 0.007680250331759453, -0.06683861464262009, -0.020249826833605766, -0.09026921540498734, -0.031222060322761536, -0.02325884811580181, -0.11437556147575378, 0.024189025163650513, -0.06509128957986832, -0.04309603199362755, -0.13480651378631592, -0.2135142982006073, -0.06017464026808739, 0.025884417816996574, 0.042147208005189896, -0.014596116729080677, -0.11905722320079803, -0.028087949380278587, 0.004638991318643093, 0.048248790204524994, -0.08491241186857224, -0.06976804882287979, 0.00736702885478735, -0.028297940269112587, 0.03934667259454727, -0.00785773154348135, 0.023522406816482544, -0.1401183158159256, -0.0145111670717597, -0.13395200669765472, 0.11798752099275589, -0.023588664829730988, 0.010198002681136131, -0.10093025863170624, -0.051142506301403046, -0.046157192438840866, 0.00008192747191060334, 0.045620378106832504, 0.22741203010082245, -0.10177987813949585, -0.05703754723072052, 0.21699120104312897, -0.056401945650577545, -0.03385160118341446, 0.1366279125213623, -0.03198105841875076, -0.023745644837617874, 0.09078633785247803, 0.08052368462085724, 0.15972279012203217, -0.1551203727722168, -0.04894894361495972, 0.04506145790219307, -0.04443627968430519, -0.013748415745794773, 0.017687661573290825, -0.026386402547359467, 0.025083638727664948, 0.019564148038625717, 0.008815835230052471, 0.05859401822090149, -0.02949381247162819, -0.02989107370376587, -0.0327763669192791, -0.0363176092505455, 0.04967445135116577, -0.018565956503152847, 0.03452245518565178, 0.012148335576057434, -0.0617910735309124, 0.06626427918672562, 0.09590659290552139, -0.015611173585057259, 0.03776691481471062, -0.0507650226354599, 0.06511268764734268, -0.032434798777103424, 0.01999574340879917, -0.14137664437294006, -0.15575085580348969, 0.0011616564588621259, -0.0050737569108605385, 0.10669159144163132, -0.0539826825261116, 0.04892799258232117, 0.04797036945819855, 0.054923318326473236, -0.005308121908456087, -0.0022270968183875084, -0.02345774509012699, -0.08989454060792923, -0.05461693927645683, 0.005340056028217077, -0.04505031555891037, 0.1860637217760086, -0.17962639033794403, 0.023457104340195656, 0.0325455404818058, 0.08847600966691971, 0.03700824826955795, -0.06543286144733429, 0.05053321272134781, -0.020534459501504898, 0.015024373307824135, -0.032490238547325134, -0.0307957511395216, 0.0130431167781353, -0.03610997274518013, 0.07985600084066391, -0.10324426740407944, -0.11697956174612045, 0.032625969499349594, 0.14740963280200958, -0.07596315443515778, -0.03399020433425903, -0.04188407212495804, 0.015721667557954788, -0.09153901785612106, -0.006640909239649773, 0.1489877551794052, 0.08265696465969086, 0.1387435346841812, -0.05914958938956261, -0.02379113994538784, 0.04881532862782478, -0.07929256558418274, -0.053045034408569336, 0.1192411407828331, -0.006671900860965252, -0.10377080738544464, 0.04552623629570007, -0.004186181351542473, -0.049401216208934784, 0.1577741950750351, -0.0016570703592151403, -0.04548783227801323, -0.008192131295800209, 0.009519705548882484, -0.036267779767513275, -0.0027933120727539062, -0.03420278802514076, -0.026428086683154106, 0.01569497585296631, 0.05557898432016373, 0.02591213397681713, -0.08153187483549118, 0.06813967972993851, 0.025967083871364594, -0.05046321824193001, -0.04066597297787666, 0.05091030150651932, 0.03410899639129639, 0.03388096019625664, 0.034183964133262634, -0.07686164230108261, -0.021173078566789627, 0.01298549398779869, -0.1309664398431778, 0.18251845240592957, -0.1186155304312706, -0.08437568694353104, -0.12700533866882324, -0.012152280658483505, -0.16401687264442444, -0.02805301360785961, 0.07105331122875214, -0.01949906162917614, -0.00597371393814683, -0.10274485498666763, 0.03218931704759598, 0.039687156677246094, 0.0009210905991494656, -0.12388850748538971, -0.05427528917789459, -0.03249799460172653, -0.11547819525003433, -0.032714467495679855, -0.03792344778776169, -0.04837806895375252, 0.053782057017087936, -0.04533998295664787, 0.06897011399269104, 0.09357242286205292, -0.06850288063287735, 0.014260703697800636, -0.009958343580365181, 0.38520753383636475, -0.07156132161617279, 0.054031651467084885, 0.1500052660703659, 0.09423833340406418, 0.0975067988038063, 0.018796365708112717, -0.005970788653939962, -0.04477843642234802, 0.023352202028036118, 0.11187156289815903, -0.05134375020861626, -0.1313071995973587, -0.11458763480186462, -0.021981658414006233, 0.004152312874794006, 0.035522498190402985, 0.0423864983022213, -0.025081520900130272, 0.010576586239039898, -0.008026535622775555, 0.006915350444614887, 0.05723487213253975, 0.04341134428977966, 0.07124241441488266, 0.04513198509812355, 0.04013762250542641, -0.02392692305147648, -0.027704626321792603, 0.07764158397912979, 0.04981883987784386, 0.0823294073343277, -0.04895408824086189, -0.008633227087557316, 0.05262478068470955, 0.06617603451013565, -0.039161860942840576, -0.007141289301216602, -0.018841804936528206, 0.015012589283287525, 0.011134973727166653, -0.05464404448866844, -0.06080114096403122, 0.06964603811502457, 0.04695158079266548, -0.05559249967336655, -0.08478669822216034, 0.08611677587032318, 0.06964316219091415, 0.25614306330680847, 0.041050925850868225, -0.26657751202583313, -0.07558068633079529, -0.0029486906714737415, -0.05923312529921532, -0.06425473093986511, 0.014884041622281075, 0.007374010514467955, -0.13420872390270233, 0.06070731207728386, -0.023506376892328262, 0.09612910449504852, -0.06198548898100853, -0.0008634579135105014, -0.05132090300321579, 0.09990297257900238, -0.004830624908208847, 0.046611327677965164, -0.0216045118868351, 0.12260247766971588, 0.01788613758981228, 0.0738738551735878, -0.027536679059267044, 0.021327588707208633, 0.022964835166931152, 0.11483200639486313, 0.12266916781663895, 0.033004190772771835, -0.01877971552312374, -0.0443771630525589, -0.051306989043951035, 0.01886121742427349, 0.04340273514389992, 0.017323391512036324, 0.08223297446966171, -0.0030703640077263117, -0.04125826433300972, -0.04267222434282303, 0.028706863522529602, -0.07990450412034988, -0.07764863967895508, -0.02243613451719284, 0.06241810321807861, -0.06641269475221634, 0.008956189267337322, 0.02749904803931713, -0.10601919889450073, 0.15199542045593262, 0.061976358294487, -0.060196034610271454, -0.13633234798908234, -0.019470831379294395, 0.06905137002468109, -0.09598330408334732, 0.03087664395570755, -0.054101165384054184, 0.11568493396043777, -0.049410995095968246, -0.08678613603115082, 0.008073819801211357, -0.06597312539815903, -0.025777865201234818, 0.011766455136239529, 0.03338697925209999, 0.08419013023376465, -0.021677345037460327, 0.014575229957699776, 0.023706629872322083, -0.049333393573760986, -0.09083150327205658, -0.046958062797784805, 0.1296585202217102, 0.040697336196899414, 0.012661566957831383, -0.03579114004969597, -0.09763967245817184, -0.020208001136779785, 0.07860089838504791, 0.09089979529380798, 0.18003720045089722, -0.047765977680683136, 0.027298012748360634, 0.19776630401611328, -0.01942366547882557, -0.20331637561321259, 0.023967398330569267, 0.06366804987192154, 0.002824789611622691, -0.010947206057608128, -0.10734938830137253, 0.04749910160899162, 0.0903528481721878, -0.016891997307538986, -0.0198119655251503, -0.2592674195766449, -0.08539638668298721, 0.07295092940330505, 0.01692054234445095, 0.12250027805566788, -0.048423994332551956, -0.03964071348309517, -0.016461161896586418, -0.16677913069725037, 0.10035393387079239, -0.08278336375951767, 0.03845019266009331, 0.04259367287158966, 0.17312394082546234, 0.044957954436540604, -0.01789931207895279, 0.05781569331884384, 0.027365470305085182, 0.04933096095919609, 0.01681644469499588, 0.009084136225283146, -0.005590914748609066, -0.11750596016645432, 0.20631127059459686, -0.021543093025684357, 0.11294928938150406, -0.16482000052928925, -0.008587145246565342, -0.0708923488855362, 0.1033153384923935, 0.01250352431088686, -0.02582942508161068, -0.043512292206287384, 0.026895174756646156, 0.1290365755558014, -0.021223288029432297, 0.08125864714384079, -0.029029985889792442, -0.04862726479768753, 0.1416555792093277, -0.05378642678260803, -0.04054878652095795, -0.06029897928237915, -0.01280270703136921, -0.024479063227772713, 0.04855694621801376, -0.18049095571041107, 0.05628911778330803, 0.06822765618562698, 0.0339055061340332, 0.12206185609102249, -0.02883101813495159, -0.06453726440668106, -0.026211991906166077, 0.01667047291994095, -0.15773552656173706, -0.09189300984144211, -0.01816282607614994, -0.07367410510778427, -0.0740024596452713, 0.044425733387470245, 0.19521920382976532, -0.05425397306680679, -0.015506519004702568, -0.04008407145738602, 0.051509175449609756, -0.015423871576786041, 0.09581778198480606, 0.002421164885163307, 0.018080761656165123, -0.08735854178667068, 0.12558887898921967, 0.05700969696044922, -0.07076532393693924, 0.02639590948820114, 0.1160636842250824, -0.09419313073158264, -0.07112909853458405, -0.04191592335700989, 0.14740481972694397, -0.16761624813079834, -0.04922228679060936, -0.031566374003887177, 0.012207083404064178, 0.02528303675353527, 0.18440690636634827, 0.010013091377913952, 0.04100140556693077, -0.012303403578698635, 0.020748211070895195, -0.11259691417217255, 0.05111616849899292, 0.08489591628313065, 0.0060856095515191555, -0.06912752985954285, 0.07397511601448059, -0.05448727682232857, 0.09382238239049911, -0.009872917085886002, -0.02521311491727829, -0.06291484087705612, -0.022143082693219185, 0.026172157377004623, 0.021696237847208977, -0.07066957652568817, 0.04692670330405235, -0.026884909719228745, 0.010493678972125053, 0.012812151573598385, 0.012982745654881, -0.03673933446407318, -0.04241413250565529, -0.05365404859185219, 0.06582798063755035, -0.16048666834831238, -0.023929957300424576, 0.026645271107554436, -0.07579478621482849, 0.06664358079433441, 0.08598904311656952, -0.02000945247709751, 0.02515825629234314, -0.1047491729259491, 0.019513055682182312, 0.05922630429267883, 0.005818573758006096, 0.08151648938655853, 0.003861077595502138, 0.03144730255007744, -0.007539504207670689, 0.019593723118305206, -0.018564244732260704, 0.03193999454379082, -0.09464824199676514, 0.010100561194121838, -0.02005709894001484, -0.02443903312087059, -0.08824700117111206, 0.027733469381928444, 0.07053837925195694, 0.06222496181726456, 0.13007128238677979, -0.042333364486694336, 0.024677617475390434, -0.0779496505856514, -0.03061177209019661, 0.03387231379747391, -0.07063619047403336, -0.05336609482765198, -0.022975081577897072, 0.05347040668129921, -0.01693662814795971, 0.05917457863688469, 0.08115445077419281, 0.1036866158246994, 0.01556226797401905, 0.042702436447143555, -0.009282665327191353, -0.0009964260971173644, -0.026259269565343857, 0.022323083132505417, -0.010765871033072472, -0.0067526306957006454, 0.04174071177840233, 0.022305389866232872, 0.004412373993545771, 0.07113748788833618, 0.07679135352373123, 0.014975554309785366, 0.1549951732158661, 0.008753214962780476, 0.030297493562102318, -0.07461602240800858, -0.056900929659605026, -0.08183050900697708, 0.07726982235908508, -0.07956641167402267, 0.12497390061616898, 0.10015647113323212, -0.10936242341995239, 0.07913635671138763, 0.05964106321334839, -0.06314021348953247, -0.09583449363708496, -0.08650531619787216, -0.07123461365699768, -0.06233019754290581, 0.03460997715592384, -0.09656142443418503, 0.06982730329036713, -0.049165911972522736, 0.0010764842154458165, 0.034284807741642, 0.10258080810308456, -0.13665388524532318, -0.0588669553399086, 0.04757796600461006, -0.008829849772155285, -0.011045070365071297, 0.07244300097227097, -0.0372457280755043, 0.09038151800632477, -0.028119998052716255, 0.06361442804336548, 0.020194727927446365, 0.08014540374279022, 0.09075320512056351, -0.07061466574668884, -0.06187136843800545, -0.028190266340970993, 0.030374040827155113, -0.023667102679610252, 0.0678839385509491, 0.10099586844444275, -0.06246735528111458, -0.015410356223583221, 0.22260737419128418, -0.09689170122146606, -0.05051620304584503, -0.18900352716445923, 0.1736687570810318, 0.1069626733660698, 0.07130908221006393, -0.010084361769258976, -0.15356804430484772, -0.021202385425567627, 0.14762914180755615, 0.08414826542139053, -0.010174835100769997, -0.006130200810730457, -0.008504900150001049, -0.008882262744009495, 0.01422665361315012, 0.007884400896728039, -0.0035675137769430876, 0.21614155173301697, -0.01880546845495701, 0.013074069283902645, -0.04340857267379761, -0.037558164447546005, -0.05969463661313057, 0.11514618247747421, -0.040920719504356384, -0.005797375459223986, -0.016804568469524384, 0.05579536408185959, -0.11836396157741547, -0.2089276909828186, 0.024671645835042, -0.04950450733304024, -0.055934954434633255, -0.0007402221672236919, -0.07709147036075592, 0.06183494254946709, 0.12712915241718292, 0.019871003925800323, -0.006224800832569599, 0.0841807946562767, -0.013952959328889847, -0.08349725604057312, -0.14757081866264343, 0.0018025984754785895, 0.07631024718284607, 0.21380077302455902, 0.018327200785279274, 0.09415876865386963, 0.061167363077402115, 0.016832081601023674, -0.08106151223182678, 0.07935392111539841, 0.002739646239206195, -0.04078992083668709, -0.04007880389690399, 0.03359319642186165, -0.027353819459676743, 0.027666324749588966, 0.011951172724366188, -0.08917847275733948, 0.0013644365826621652, -0.010793554596602917, -0.0013712779618799686, -0.07990536093711853, 0.03969089314341545, -0.03503536805510521, 0.09182696044445038, 0.11983735114336014, 0.03720743954181671, 0.05801839753985405, -0.057795070111751556, 0.06116743013262749, 0.0069942050613462925, -0.06333096325397491, -0.028606262058019638, -0.16305869817733765, 0.034385960549116135, 0.015262383967638016, 0.030648281797766685, -0.148402139544487, -0.07179034501314163, 0.0062057445757091045, 0.04265649616718292, 0.04435233026742935, 0.1307729184627533, 0.09115002304315567, -0.0029475216288119555, -0.014769377186894417, -0.0526113361120224, 0.013507045805454254, 0.1034897193312645, -0.06550563126802444, -0.09531868249177933 ]